/* In Play Adventours - Main Stylesheet */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #374151;
    background: #f3f1ed;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
}

/* Accessibility: Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #0f172a;
    color: #f8e7c3;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Header - Luxury Refined Style */
header {
    position: sticky;
    top: 0;
    background: rgba(254, 253, 251, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 30px rgba(15, 23, 42, 0.08);
    border-bottom: 1px solid #f8e7c3;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(15, 23, 42, 0.12);
}

header.hide-mobile {
    transform: translateY(-100%);
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.nav-left {
    display: flex;
    gap: 25px;
    justify-content: flex-end;
    flex: 1;
}

.logo {
    flex: 0 0 auto;
}

.logo img {
    height: clamp(80px, 15vw, 180px);
    transition: height 0.3s ease;
}

.nav-right {
    display: flex;
    gap: 25px;
    justify-content: flex-start;
    flex: 1;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #0f172a;
    font-weight: 400;
    font-size: 17px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    position: relative;
    text-transform: uppercase;
    white-space: nowrap;
    font-family: 'Playfair Display', Georgia, serif;
}

nav a:hover {
    color: #f8e7c3;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: #f8e7c3;
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

/* Buttons - Elegant Refined Style */
.btn-primary {
    background: linear-gradient(135deg, #0f172a, #1a1a1a);
    color: #f8e7c3;
    padding: 18px 36px;
    border: 1px solid #f8e7c3;
    border-radius: 6px;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
}

.btn-primary:hover {
    background: #f8e7c3;
    color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.2);
}

.btn-secondary {
    background: #f8e7c3;
    color: #0f172a;
    padding: 18px 36px;
    border: 1px solid #f8e7c3;
    border-radius: 6px;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #0f172a;
    color: #f8e7c3;
    border-color: #0f172a;
}

/* Hero Section - Sophisticated Luxury */
#hero {
    position: relative;
    padding: 120px 0;
    color: #fefdfb;
    overflow: hidden;
    min-height: 100vh;
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #f8e7c3 0%, #475569 50%, #f8e7c3 100%);
    z-index: 3;
}

#hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-text {
    text-align: center;
}

.hero-text h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 8vw, 4.2rem);
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-text .subheadline {
    font-size: clamp(1rem, 3vw, 1.3rem);
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 300;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 50px;
    display: inline-block;
    text-align: left;
}

.hero-bullets li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
    font-weight: 300;
}

.hero-bullets li::before {
    content: "◆";
    position: absolute;
    left: 0;
    color: #f8e7c3;
    font-size: 1rem;
}

.hero-ctas {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Section Styles - Refined Elegance */
section {
    padding: 80px 0;
    position: relative;
}

#experiences {
    padding: 80px 0 40px 0;
}

#services {
    padding: 40px 0 80px 0;
}

section:nth-child(even) {
    background: #e8e5e0;
}

section:nth-child(odd) {
    background: #f3f1ed;
}

#services {
    background: #f8f7f5 !important;
}

section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: #f8e7c3;
}

h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 300;
    color: #0f172a;
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: -0.5px;
}

.section-intro {
    text-align: center;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 300;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #1f2937;
    line-height: 1.7;
}

/* Cards - Sophisticated Elements */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

.card {
    background: #faf9f7;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
    transition: all 0.3s;
    border: 1px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #f8e7c3, #475569);
}

.card:hover {
    transform: translateY(-5px);
    border-color: #f8e7c3;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

.card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #0f172a;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
}

.card p {
    font-weight: 300;
    line-height: 1.7;
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Image Carousel */
.card-carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 20px;
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
    max-width: 100%;
}

.carousel-images img {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 0;
    flex-shrink: 0;
}

.carousel-images video {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 0;
    flex-shrink: 0;
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
}

.carousel-dot:focus {
    outline: 2px solid #f8e7c3;
    outline-offset: 2px;
}

.carousel-dot.active {
    background: #f8e7c3;
    width: 24px;
    border-radius: 4px;
}

/* Section videos */
.section-video {
    width: 100%;
    height: clamp(220px, 40vw, 450px);
    object-fit: cover;
    display: block;
}

/* Card videos in services section */
.card-video {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 30px;
    display: block;
}

@media (max-width: 768px) {
    .card-video {
        height: 180px;
    }

    .section-video-block {
        border-radius: 0 !important;
    }

    .section-video-block video {
        display: block;
    }

    .section-video-overlay {
        position: static !important;
        background: #0f172a !important;
        padding: 25px 20px !important;
        border-radius: 0 0 8px 8px;
    }

    .section-video-overlay h2 {
        font-size: clamp(1.4rem, 5vw, 1.8rem) !important;
        margin-bottom: 12px !important;
    }

    .section-video-overlay p {
        font-size: 0.95rem !important;
    }
}


.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
}

.step {
    perspective: 1000px;
    height: 350px;
    cursor: pointer;
}

.step-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.step.flipped .step-inner {
    transform: rotateY(180deg);
}

.step-front, .step-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 8px;
    padding: 40px;
    background: linear-gradient(135deg, #0f172a, #1a1a1a);
    color: #f8e7c3;
    border: 2px solid #f8e7c3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.3);
    transition: all 0.3s;
}

.step-front::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 40px 40px;
    border-color: transparent transparent #f8e7c3 transparent;
    transition: all 0.3s;
}

.step:hover .step-front::after {
    border-width: 0 0 50px 50px;
}

.step:hover .step-front,
.step:hover .step-back {
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.4);
    border-color: #f8e7c3;
}

.step-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #f8e7c3;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.step h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #f8e7c3;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 1rem;
}

.step p {
    font-weight: 300;
    line-height: 1.7;
    color: #f8e7c3;
}

.step-back {
    transform: rotateY(180deg);
}

/* Sample Journeys */
.sample-journeys {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.journey-sample {
    background: #faf9f7;
    padding: 35px;
    border-radius: 8px;
    border-left: 2px solid #f8e7c3;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
}

.journey-sample h4 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #0f172a;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.journey-sample p {
    font-weight: 300;
    line-height: 1.6;
}

/* Pull Quote - Elegant Statement */
.pull-quote {
    background: linear-gradient(135deg, #0f172a, #1a1a1a);
    color: #f8e7c3;
    padding: 60px;
    border-radius: 8px;
    text-align: center;
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 300;
    margin: 60px 0;
    position: relative;
    border: 1px solid #475569;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

/* Features - Refined Qualities */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
}

.feature {
    perspective: 1000px;
    height: 300px;
    cursor: pointer;
}

.feature-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.feature.flipped .feature-inner {
    transform: rotateY(180deg);
}

.feature-front, .feature-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 8px;
    padding: 40px;
    background: linear-gradient(135deg, #0f172a, #1a1a1a);
    color: #f8e7c3;
    border: 2px solid #f8e7c3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.3);
    transition: all 0.3s;
}

.feature-front::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 40px 40px;
    border-color: transparent transparent #f8e7c3 transparent;
    transition: all 0.3s;
}

.feature:hover .feature-front::after {
    border-width: 0 0 50px 50px;
}

.feature:hover .feature-front,
.feature:hover .feature-back {
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.4);
    border-color: #f8e7c3;
}

.feature h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #f8e7c3;
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.feature p {
    font-weight: 300;
    line-height: 1.7;
    color: #f8e7c3;
}

.feature-back {
    transform: rotateY(180deg);
}

/* FAQ - Refined Guide */
.faq-item {
    background: #faf9f7;
    padding: 35px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 6px 25px rgba(15, 23, 42, 0.08);
    border-left: 2px solid #475569;
}

.faq-item h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #0f172a;
    margin-bottom: 18px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.faq-item p {
    font-weight: 300;
    line-height: 1.7;
}

/* Form - Luxury Registration */
.enquiry-form {
    background: #faf9f7;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(15, 23, 42, 0.12);
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid #f8e7c3;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-weight: 400;
    margin-bottom: 10px;
    color: #0f172a;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px;
    border: 1px solid #475569;
    border-radius: 4px;
    font-size: 15px;
    background: #fefdfb;
    font-weight: 300;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid #f8e7c3;
    outline-offset: 2px;
    border-color: #0f172a;
}

.form-group input[type="checkbox"] {
    width: auto;
    flex-shrink: 0;
}

/* Form status messages */
.form-message {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: center;
}

.form-message.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.form-loading {
    opacity: 0.6;
    pointer-events: none;
}

.location-autocomplete {
    position: relative;
}

.location-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fefdfb;
    border: 1px solid #475569;
    border-top: none;
    border-radius: 0 0 4px 4px;
    list-style: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 3000;
    display: none;
}

.location-suggestions li {
    padding: 12px 15px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 300;
    border-bottom: 1px solid #f3f1ed;
    line-height: 1.4;
}

.location-suggestions li:hover {
    background: #f8e7c3;
}

.location-suggestions li:last-child {
    border-bottom: none;
}

/* Transfer Booking Modal */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.7);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.modal-box {
    background: #fefdfb;
    border-radius: 8px;
    padding: 50px;
    max-width: 600px;
    width: 100%;
    position: relative;
    border: 1px solid #f8e7c3;
    box-shadow: 0 25px 80px rgba(15, 23, 42, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-box h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 300;
    color: #0f172a;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.modal-close {
    position: absolute;
    top: 15px; right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #6b7280;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.modal-close:hover { color: #0f172a; }

@media (max-width: 768px) {
    .modal-box {
        padding: 30px 20px;
    }
}

/* Chatbot - Refined Concierge */
.chatbot-launcher {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #0f172a, #1a1a1a);
    color: #f8e7c3;
    padding: 20px 28px;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.3);
    z-index: 1000;
    font-weight: 400;
    border: 1px solid #f8e7c3;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 13px;
}

.chatbot-launcher:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.4);
}

.chatbot-panel {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: #fefdfb;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 380px;
    z-index: 1000;
    border: 1px solid #f8e7c3;
}

.chatbot-panel h4 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #0f172a;
    margin-bottom: 18px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.chat-prompts {
    list-style: none;
}

.chat-prompts li {
    padding: 15px 0;
    color: #6b7280;
    cursor: pointer;
    border-bottom: 1px solid #f8f7f5;
    font-weight: 300;
    line-height: 1.5;
}

.chat-prompts li:hover {
    color: #0f172a;
    font-weight: 400;
}

.chat-close {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    font-size: 24px;
    color: #6b7280;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
}

.chat-close:hover {
    color: #0f172a;
}

.mobile-menu-toggle {
    display: none;
}

.mobile-menu {
    display: none;
}

.mobile-hero-content {
    display: none;
}

/* Loading spinner */
.spinner {
    border: 2px solid #f8e7c3;
    border-top: 2px solid #0f172a;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-left: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Mobile Styles */
@media (max-width: 768px) {
    body {
        font-size: 16px;
        -webkit-text-size-adjust: 100%;
        overflow-x: hidden;
    }

    .container {
        padding: 0 15px;
    }

    /* Mobile Header with Burger Menu */
    header {
        padding: 12px 0;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .logo {
        order: 1;
    }

    .logo img {
        height: 60px;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        order: 2;
        background: none;
        border: none;
        font-size: 28px;
        color: #0f172a;
        cursor: pointer;
        padding: 5px;
    }

    .mobile-menu {
        display: none;
        position: fixed;
        top: 84px;
        left: 0;
        right: 0;
        background: rgba(254, 253, 251, 0.98);
        backdrop-filter: blur(15px);
        padding: 20px;
        box-shadow: 0 4px 20px rgba(15, 23, 42, 0.1);
        z-index: 999;
        max-height: calc(100vh - 84px);
        overflow-y: auto;
    }

    .mobile-menu.active {
        display: block;
    }

    .mobile-menu nav {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .mobile-menu nav a {
        padding: 15px 10px;
        border-bottom: 1px solid #f8e7c3;
        font-size: 14px;
        text-align: left;
    }

    .mobile-menu nav a:last-child {
        border-bottom: none;
    }

    /* Hero Section Mobile */
    #hero {
        padding: 0;
        min-height: auto;
    }

    #hero .container {
        padding: 0;
    }

    #hero-video {
        position: absolute;
        width: 100%;
        height: 67.44vw;
        object-fit: cover;
    }

    #hero .hero-content {
        min-height: 67.44vw;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #hero::after {
        background: rgba(0, 0, 0, 0.5);
        width: 100%;
        height: 67.44vw;
        left: 50%;
        right: auto;
        top: 0;
        position: absolute;
        transform: translateX(-50%);
    }

    .hero-text h1 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 0;
    }

    .hero-text .subheadline,
    .hero-bullets,
    .hero-ctas {
        display: none;
    }

    .mobile-hero-content {
        display: block;
        background: #faf9f7;
        padding: 40px 25px;
        margin: 0;
        position: relative;
        margin-top: 0;
        text-align: center;
        border-radius: 0;
        box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    }

    .mobile-hero-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #f8e7c3 0%, #475569 50%, #f8e7c3 100%);
    }

    .mobile-hero-content .subheadline {
        font-size: 1.05rem;
        margin-bottom: 35px;
        margin-top: 10px;
        color: #1f2937;
        opacity: 1;
        display: block;
        line-height: 1.7;
        padding: 0 5px;
        font-weight: 300;
        text-align: center;
    }

    .mobile-hero-content ul {
        list-style: none;
        margin-bottom: 35px;
        text-align: left;
        padding: 0 15px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .mobile-hero-content ul li {
        padding: 14px 0;
        padding-left: 30px;
        position: relative;
        font-size: 0.95rem;
        color: #374151;
        line-height: 1.7;
        font-weight: 300;
    }

    .mobile-hero-content ul li::before {
        content: "◆";
        position: absolute;
        left: 0;
        color: #f8e7c3;
        font-size: 0.9rem;
    }

    .mobile-hero-content .btn-secondary {
        width: calc(100% - 30px);
        max-width: 400px;
        margin: 0 auto;
        padding: 16px 24px;
        font-size: 13px;
        display: block;
    }

    section {
        padding: 40px 0;
    }

    #experiences {
        padding: 40px 0 20px 0;
    }

    #services {
        padding: 20px 0 40px 0;
    }

    h2 {
        margin-bottom: 25px;
        font-size: clamp(1.5rem, 5vw, 2rem);
        padding: 0 10px;
    }

    .section-intro {
        margin-bottom: 30px;
        font-size: 1rem;
        padding: 0 10px;
    }

    /* Mobile Carousel for Cards */
    .cards-grid {
        display: block;
        position: relative;
        overflow: hidden;
        margin-bottom: 30px;
    }

    .cards-grid .card {
        display: none;
        padding: 20px;
        margin: 0 5px;
    }

    .cards-grid .card.active {
        display: flex;
    }

    .mobile-carousel-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }

    .mobile-carousel-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #d1d5db;
        cursor: pointer;
        transition: all 0.3s;
        border: none;
        padding: 0;
    }

    .mobile-carousel-dot:focus {
        outline: 2px solid #0f172a;
        outline-offset: 2px;
    }

    .mobile-carousel-dot.active {
        background: #0f172a;
        width: 30px;
        border-radius: 5px;
    }

    .card h3 {
        font-size: 1.1rem;
    }

    .card p {
        font-size: 0.95rem;
    }

    .card-carousel {
        height: 180px;
    }

    .carousel-images img,
    .carousel-images video {
        height: 180px;
    }

    /* Mobile Carousel for Steps */
    .steps {
        display: block;
        position: relative;
        overflow: hidden;
    }

    .step {
        display: none;
        height: auto;
        min-height: 350px;
        margin: 0 5px;
    }

    .step.active {
        display: block;
    }

    .step-front, .step-back {
        padding: 40px 25px;
        min-height: 350px;
    }

    .step-number {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .step h3 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .step p {
        font-size: 1rem;
        line-height: 1.8;
    }

    /* Mobile Carousel for Features */
    .features {
        display: block;
        position: relative;
        overflow: hidden;
    }

    .feature {
        display: none;
        height: auto;
        min-height: 350px;
        margin: 0 5px;
    }

    .feature.active {
        display: block;
    }

    .feature-front, .feature-back {
        padding: 40px 25px;
        min-height: 350px;
    }

    .feature h3 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .feature p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .enquiry-form {
        padding: 25px 15px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 0.8rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        padding: 14px;
    }

    .pull-quote {
        padding: 25px 15px;
        font-size: 1rem;
    }

    .faq-item {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .faq-item h3 {
        font-size: 1rem;
    }

    .faq-item p {
        font-size: 0.95rem;
    }

    .chatbot-launcher {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 0;
        text-align: center;
        padding: 16px;
        font-size: 11px;
        z-index: 1001;
    }

    .chatbot-panel {
        bottom: 60px;
        left: 10px;
        right: 10px;
        width: auto;
        padding: 20px;
        max-height: 70vh;
        overflow-y: auto;
    }

    video {
        max-width: 100%;
        height: auto;
    }

    .btn-primary, .btn-secondary {
        padding: 14px 20px;
        font-size: 13px;
        touch-action: manipulation;
    }
}
