        :root {
            --primary: #4285F4;
            --secondary: #9C27B0;
            --accent-red: #EA4335;
            --accent-yellow: #FBBC05;
            --accent-green: #34A853;
            --accent-pink: #E91E63;
            --accent-orange: #FF9800;
            --accent-teal: #009688;
            --white: #FFFFFF;
            --light-gray: #F8F9FA;
            --text-dark: #202124;
            --text-light: #5F6368;

            --light-primary: #ebf3ff;
            --secondary-green: #38A169;
            --primary-green: #2F855A;
        }
        /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--white);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        html {
          scroll-behavior: smooth;
          overflow-x: hidden;
        }

        /* Navigation Styles */
        .navbar {
            position: fixed;
            left: 50%;
            top: 20px;
            transform: translateX(-50%);
            width: 92vw;
            max-width: 1200px;
            margin: 0;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 40px;
            box-shadow: 0 8px 32px rgba(31, 38, 135, 0.18);
            border: 1px solid rgba(255, 255, 255, 0.18);
            z-index: 1000;
            transition: all 0.3s cubic-bezier(.4,0,.2,1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 7px;
        }

        .logo {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: 20px;
        }

        .logo-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 24px;
            color: var(--primary);
            letter-spacing: -0.5px;
        }

        .logo-text span {
            color: var(--secondary);
        }

        .nav-links {
            display: flex;
            gap: 40px;
            margin-left: auto; 
            margin-right: auto;
        }

        a, a:visited, a:active {
            color: inherit;
            text-decoration: none;
        }

        .nav-item {
            font-family: 'Poppins', sans-serif;
            position: relative;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            display: flex;
            align-items: center;
            color: #383e45;
            gap: 6px;
        }

        .nav-item::after {
            content: '';
            position: absolute;
            bottom: 0px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-item:hover::after {
            width: 100%;
        }

        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            padding: 15px 0;
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 100;
        }

        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            padding: 10px 25px;
            position: relative;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .dropdown-item i {
            width: 20px;
            color: var(--primary);
        }

        .nav-buttons {
            display: flex;
            gap: 15px;
        }

        .btn {
            padding: 16px 36px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-size: 17px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .btn-outline {
            background: transparent;
            border: 1px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background-color: rgba(66, 133, 244, 0.1);
            transform: translateY(-2px);
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--white);
            box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
        }

        .btn-primary:hover {
            background-color: #3367d6;
            box-shadow: 0 2px 24px rgba(66, 133, 244, 0.5);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh; /* Ensure hero takes full viewport height */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center; /* Center content vertically */
            padding: 70px 5% 40px; /* Reduced padding for better vertical fit */
            text-align: center;
            position: relative;
            overflow: hidden; /* keep overlay contained to first viewport */
        }
        
        .hero-content {
            max-width: 1100px;
            margin: 0 auto;
            margin-top: 80px;
            position: relative;
            z-index: 2;
            padding: 20px 0; /* Added padding for spacing */
            
        }

        .hero h1 {
            font-family: 'Roboto', sans-serif;
            font-size: 73px;
            letter-spacing: 1px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #ffffff; /* strong white headline */
            background: none;
            -webkit-background-clip: initial;
            -webkit-text-fill-color: initial;
        }

        .hero p {
            font-size: 20px;
            color: rgba(255,255,255,0.9); /* light grey/white copy on gradient */
            max-width: 700px;
            margin: 0 auto 50px;
            margin-bottom: 30px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-bottom: 50px;
        }

        .hero-video {
            width: 100%;
            max-width: 900px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            position: relative;
            height: auto; /* Make height flexible */
            aspect-ratio: 16/9; /* Maintain aspect ratio */
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 30px auto 0 auto; /* Center horizontally */
            z-index: 2;
        }

        .hero-video video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #5a9df8, #a545c0);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            text-align: center;
            padding: 20px;
            position: relative;
        }

        .play-btn {
            position: absolute;
            width: 90px;
            height: 90px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(5px);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .play-btn i {
            font-size: 36px;
            color: white;
        }

        .play-btn:hover {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.3);
        }

.hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: 0;
            pointer-events: none;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            background-size: cover;
        }


.blobs-bg { display: none !important; }
.blob, .blob1, .blob2, .blob3, .blob4 { display: none !important; }

/* More lively animation: add rotation and more movement */
@keyframes blobMove {
    0%   { transform: scale(1) translateY(0) translateX(0) rotate(0deg);}
    30%  { transform: scale(1.18) translateY(60px) translateX(40px) rotate(8deg);}
    60%  { transform: scale(0.95) translateY(-40px) translateX(-30px) rotate(-6deg);}
    100% { transform: scale(1.1) translateY(0) translateX(0) rotate(0deg);}
}

.secondary-hero-btn {
    padding: 17px 25px;
    font-family: 'Roboto', sans-serif;
    font-weight:800;
    background-color: var(--primary);
    opacity: 0.7;
    color: var(--white);
    border-width: 3px;
    border-style: solid;
    border-color: var(--primary);
    border-radius: 50px;
}

        /* Hero Icons Pattern */
        .hero-icons {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            display: flex;
            justify-content: space-between;
            padding: 0 8%;
            z-index: 1;
            opacity: 0.08;
        }

        .icon-column {
            display: flex;
            flex-direction: column;
            gap: 120px;
        }

        .icon-item {
            font-size: 36px;
            color: var(--primary);
            animation: float 6s ease-in-out infinite;
        }

        .icon-item:nth-child(2n) {
            color: var(--secondary);
            animation-delay: 1s;
        }

        .icon-item:nth-child(3n) {
            color: var(--accent-green);
            animation-delay: 2s;
        }

        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0); }
        }

        /* Features Section */
        .section {
            padding: 80px 8%;
            overflow-x: hidden;
        }

        /* Features Pill Slider */
        .features-pill-slider {
            max-width: 400px;
            margin: 40px auto;
            background: #fff;
            border-radius: 50px;
            padding: 6px;
            display: flex;
            gap: 6px;
            position: relative;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .features-pill-btn {
            flex: 1;
            padding: 12px 32px;
            background: transparent;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            color: #666;
            cursor: pointer;
            transition: color 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .features-pill-btn.active {
            color: #fff;
        }

        .features-pill-indicator {
            position: absolute;
            top: 6px;
            bottom: 6px;
            left: 6px;
            width: calc(50% - 9px);
            background: var(--primary);
            border-radius: 50px;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1;
            box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
        }

        .features-pill-indicator.slide-right {
            transform: translateX(calc(100% + 12px));
            width: calc(50% - 12px);
        }

        /* Features Panes */
        .features-pane {
            display: none;
            padding: 40px 0;
            animation: fadeIn 0.4s ease-out;
        }

        .features-pane.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Feature Sections */
        .feature-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-bottom: 100px;
        }

        .feature-section.reverse .feature-image {
            order: 2;
        }

        .feature-section.reverse .feature-text {
            order: 1;
        }

        .feature-image {
            width: 100%;
            height: auto;
            aspect-ratio: 16 / 9;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .feature-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .image-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.9);
            font-size: 18px;
            font-weight: 600;
        }

        .feature-text h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 24px;
            color: var(--text-dark);
            letter-spacing: -0.5px;
        }

        .feature-content-wrapper {
            min-height: 200px;
            margin-bottom: 32px;
        }

        .feature-text p {
            font-size: 20px;
            line-height: 1.8;
            color: var(--text-light);
        }

        .comparison-toggle-btn {
            padding: 14px 28px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 20px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
        }

        .comparison-toggle-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
        }

        .comparison-toggle-btn i {
            margin-right: 8px;
        }

        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .comparison-column h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .comparison-column.without h4 {
            color: #dc3545;
        }

        .comparison-column.without h4 i {
            color: #dc3545;
        }

        .comparison-column.with h4 {
            color: #28a745;
        }

        .comparison-column.with h4 i {
            color: #28a745;
        }

        .comparison-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .comparison-column ul li {
            padding: 12px 0;
            font-size: 16px;
            color: var(--text-light);
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .comparison-column.without ul li i {
            color: #dc3545;
            margin-top: 4px;
            font-size: 18px;
            flex-shrink: 0;
        }

        .comparison-column.with ul li i {
            color: #28a745;
            margin-top: 4px;
            font-size: 18px;
            flex-shrink: 0;
        }

        @media (max-width: 1024px) {
            .feature-section,
            .feature-section.reverse {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .feature-section.reverse .feature-image {
                order: 1;
            }

            .feature-section.reverse .feature-text {
                order: 2;
            }

            .feature-image {
                height: auto;
            }

            .feature-text h3 {
                font-size: 32px;
            }

            .comparison-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 60px 5%;
            }

            .features-pill-slider {
                max-width: 300px;
                margin: 30px auto;
            }

            .features-pill-btn {
                padding: 10px 20px;
                font-size: 14px;
            }

            .features-pane {
                padding: 20px 0;
            }

            .feature-section {
                gap: 30px;
                margin-bottom: 60px;
            }

            .feature-image {
                height: auto;
            }

            .feature-text h3 {
                font-size: 26px;
            }

            .feature-text p,
            .feature-description {
                font-size: 15px;
                line-height: 1.6;
            }

            .feature-content-wrapper {
                min-height: auto;
            }

            .comparison-column h4 {
                font-size: 16px;
            }

            .comparison-column ul li {
                font-size: 14px;
                padding: 8px 0;
            }

            .comparison-toggle-btn {
                padding: 12px 24px;
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .section {
                padding: 40px 4%;
            }

            .features-pill-slider {
                max-width: 280px;
            }

            .feature-section {
                gap: 20px;
                margin-bottom: 40px;
            }

            .feature-image {
                height: auto;
            }

            .feature-text h3 {
                font-size: 22px;
            }

            .feature-text p,
            .feature-description {
                font-size: 14px;
            }

            .comparison-column h4 {
                font-size: 14px;
            }

            .comparison-column ul li {
                font-size: 13px;
            }

            .comparison-toggle-btn {
                width: 100%;
                padding: 10px 20px;
            }
        }

        /* SpotSloth Section */
        .spotsloth-section {
            background: linear-gradient(135deg, #2f855a 0%, #276749 50%, #38a169 100%);
            color: white;
            padding: 80px 8%;
            position: relative;
            overflow: hidden;
        }

        /* Multiple decorative blobs */
        .spotsloth-blob {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
        }

        .spotsloth-blob.blob-1 {
            top: 50px;
            right: -50px;
            width: 450px;
            height: 450px;
            background: #68d391;
            opacity: 0.35;
            filter: blur(40px);
        }

        .spotsloth-blob.blob-2 {
            bottom: 100px;
            left: -100px;
            width: 550px;
            height: 550px;
            background: #9ae6b4;
            opacity: 0.3;
            filter: blur(45px);
        }

        .spotsloth-blob.blob-3 {
            top: 40%;
            left: 30%;
            width: 350px;
            height: 350px;
            background: #48bb78;
            opacity: 0.3;
            filter: blur(40px);
        }

        .spotsloth-blob.blob-4 {
            bottom: 20%;
            right: 20%;
            width: 400px;
            height: 400px;
            background: #c6f6d5;
            opacity: 0.35;
            filter: blur(45px);
        }

        .spotsloth-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .spotsloth-header {
            text-align: center;
            margin-bottom: 25px;
        }

        .spotsloth-logo {
            width: 100px;
            height: auto;
            margin-bottom: 15px;
            filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
        }

        .spotsloth-header h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 48px;
            font-weight: 800;
            margin: 0;
            color: white;
        }

        .spotsloth-description {
            text-align: center;
            font-size: 17px;
            line-height: 1.7;
            max-width: 800px;
            margin: 0 auto 40px;
            color: rgba(255, 255, 255, 0.95);
        }

        .spotsloth-hero-image {
            width: 100%;
            height: 300px;
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 50px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .spotsloth-tools {
            display: grid;
            gap: 35px;
        }

        .tools-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 32px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 30px;
            color: white;
        }

        .spotsloth-tool {
            padding: 30px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .spotsloth-tool:last-child {
            border-bottom: none;
        }

        .spotsloth-tool h4 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
            color: white;
        }

        .spotsloth-tool p {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 25px;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Interactive Calendar */
        .interactive-calendar {
            background: white;
            border-radius: 16px;
            padding: 20px;
            color: #333;
        }

        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        /* Calendar Container - from SpotSloth */
        .calendar-container {
            background: white;
            border-radius: 20px;
            padding: 1.5rem;
            display: flex;
            flex-direction: row;
            gap: 1.5rem;
            min-height: 400px;
        }

        .calendar-wrapper {
            flex: 2;
            display: flex;
            flex-direction: column;
        }

        .calendar-nav {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .calendar-nav button {
            background: #2f855a;
            color: white;
            border: none;
            border-radius: 8px;
            width: 40px;
            height: 40px;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .calendar-nav button:hover {
            background: #276749;
            transform: scale(1.1);
        }

        .calendar-month {
            font-size: 20px;
            font-weight: 700;
            color: #2d3748;
        }

        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            grid-auto-rows: 1fr;
            gap: 0.3rem;
            flex: 1;
            height: 100%;
            overflow-y: auto;
        }

        .calendar-weekday {
            font-weight: 700;
            text-align: center;
            padding: 10px 0;
            color: #4a5568;
            font-size: 12px;
        }

        .calendar-day {
            border: 1px solid #edf2f7;
            border-radius: 8px;
            padding: 0.4rem;
            background: white;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            min-height: 60px;
            transition: all 0.3s ease;
        }

        .calendar-day:hover {
            background: #f7fafc;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .calendar-day.other-month {
            opacity: 0.5;
        }

        .calendar-day.today {
            background: rgba(47, 133, 90, 0.05);
            border-color: rgba(47, 133, 90, 0.3);
            border-width: 2px;
        }

        .calendar-day.selected {
            background: rgba(56, 161, 105, 0.25);
            border-color: #38A169;
            border-width: 2px;
        }

        .calendar-day-number {
            font-weight: 600;
            color: #2d3748;
            font-size: 0.75rem;
            margin-bottom: 0.2rem;
        }

        .calendar-booking-dot {
            display: inline-block;
            width: 5px;
            height: 5px;
            background: #ff6d3a;
            border-radius: 50%;
            margin-right: 0.1rem;
        }

        .calendar-day-bookings {
            display: flex;
            flex-wrap: wrap;
            gap: 2px;
        }

        .calendar-day-count {
            font-size: 0.6rem;
            color: #718096;
            margin-left: 2px;
        }

        .booking-details-section {
            border-left: 2px solid #edf2f7;
            padding-left: 1.5rem;
            overflow-y: auto;
            flex: 1;
            min-width: 200px;
        }

        .booking-details-empty {
            color: #a0aec0;
            font-style: italic;
            font-size: 0.9rem;
        }

        .booking-item {
            padding: 0.8rem;
            border-left: 3px solid #2f855a;
            background: #f7fafc;
            margin-bottom: 0.8rem;
            border-radius: 5px;
        }

        .booking-time {
            font-weight: 700;
            color: #2f855a;
            font-size: 0.9rem;
        }

        .booking-business {
            font-weight: 600;
            color: #2d3748;
        }

        .booking-service {
            font-size: 0.8rem;
            color: #718096;
        }

        @media (max-width: 768px) {
            .calendar-container {
                flex-direction: column;
            }
            .booking-details-section {
                border-left: none;
                border-top: 2px solid #edf2f7;
                padding-left: 0;
                padding-top: 1rem;
            }
        }

        /* Book Again Demo */
        .book-again-demo {
            background: white;
            border-radius: 16px;
            padding: 30px;
        }

        .previous-booking {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .booking-info {
            display: flex;
            align-items: center;
            gap: 20px;
            color: var(--text-dark);
        }

        .booking-info i {
            font-size: 32px;
            color: var(--primary);
        }

        .booking-info strong {
            display: block;
            font-size: 16px;
            margin-bottom: 5px;
        }

        .booking-info p {
            margin: 0;
            color: var(--text-light);
            font-size: 14px;
        }

        .book-again-btn {
            padding: 14px 28px;
            background: #2f855a;
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(47, 133, 90, 0.3);
        }

        .book-again-btn:hover {
            background: #38a169;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(47, 133, 90, 0.4);
        }

        .book-again-btn i {
            margin-right: 8px;
        }

        .rebook-confirmation {
            margin-top: 15px;
            padding: 12px;
            background: rgba(255, 255, 255, 0.95);
            color: #2f855a;
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
            font-size: 15px;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.4s ease;
            pointer-events: none;
        }

        .rebook-confirmation.show {
            opacity: 1;
            transform: translateY(0);
        }

        /* Loyalty Images */
        .loyalty-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 20px;
        }

        .loyalty-image {
            text-align: center;
        }

        .loyalty-image .image-placeholder {
            height: 200px;
            border-radius: 16px;
            margin-bottom: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .loyalty-image .image-placeholder i {
            font-size: 64px;
            color: white;
        }

        .loyalty-image span {
            display: block;
            font-size: 18px;
            font-weight: 600;
            color: white;
        }

        @media (max-width: 1024px) {
            .spotsloth-header h2 {
                font-size: 38px;
            }

            .previous-booking {
                flex-direction: column;
                text-align: center;
            }

            .loyalty-images {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }



        .section-title {
            text-align: center;
            margin-bottom: 30px;
        }

        .sub-section-title {
            text-align: center;
            margin-bottom: 20px;
            font-size: 17px;
            text-align: center;
        }

        .section-title h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 46px;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .section-title p {
            font-size: 20px;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .feature-video {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            height: 400px;
            background: linear-gradient(45deg, var(--accent-teal), var(--accent-green));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            text-align: center;
            padding: 20px;
            position: relative;
        }

        .feature-content {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .feature-item {
            display: flex;
            gap: 20px;
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            flex-shrink: 0;
        }

        .feature-text h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .feature-text p {
            color: var(--text-light);
            font-size: 20px;
        }

        /* Mobile App Section */
        .mobile-section {
            background: linear-gradient(135deg, rgba(66, 133, 244, 0.05) 0%, rgba(156, 39, 176, 0.05) 100%);
            border-radius: 40px;
            padding: 80px 8%;
            margin: 0 8% 100px;
        }

        .mobile-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .mobile-content h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 25px;
            color: var(--text-dark);
        }

        .mobile-content p {
            font-size: 18px;
            color: var(--text-light);
            margin-bottom: 30px;
        }

        .mobile-app-image {
            display: flex;
            justify-content: center;
        }

        .phone-mockup {
            width: 300px;
            height: 600px;
            background: linear-gradient(45deg, var(--secondary), var(--accent-pink));
            border-radius: 40px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            text-align: center;
            padding: 20px;
        }

        /* Simplified App Features Section */
        .app-features {
            display: flex;
            gap: 18px;
            margin-top: 24px;
            flex-wrap: wrap;
            justify-content: flex-start;
        }

        .app-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            background: #f5f7fa;
            border-radius: 10px;
            padding: 10px 18px;
            font-size: 16px;
            font-weight: 500;
            color: var(--primary);
            box-shadow: none;
            transition: background 0.18s;
        }

        .app-feature i {
            font-size: 18px;
            color: var(--secondary);
            background: none;
            border-radius: 50%;
            padding: 0;
            margin-right: 4px;
        }

        .app-feature:hover {
            background: #e3e9f6;
            color: var(--secondary);
        }

        .app-feature:hover i {
            color: var(--primary);
        }

        /* Pricing Section */
        .pricing-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .pricing-card {
            background: var(--white);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 50px 40px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            display: flex;
            flex-direction: column;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            border-color: var(--primary);
        }

        .pricing-card.popular {
            position: relative;
            border-color: var(--primary);
            background: linear-gradient(to bottom, var(--white) 90%, rgba(66, 133, 244, 0.1) 100%);
        }

        .popular-tag {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--primary);
            color: white;
            padding: 8px 25px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
        }

        .pricing-card h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .price {
            font-size: 52px;
            font-weight: 800;
            margin-bottom: 30px;
            color: var(--primary);
        }

        .price span {
            font-size: 18px;
            color: var(--text-light);
            font-weight: 400;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 40px;
            flex-grow: 1;
        }

        .pricing-card .btn {
            margin-top: auto;
        }

        .pricing-features li {
            padding: 14px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            color: var(--text-light);
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features li i {
            color: var(--accent-green);
            margin-right: 10px;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 60px auto 0;
        }

        .feature-card {
            background: var(--white);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.03);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .feature-card .icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 24px;
        }

        .feature-card h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .feature-card p {
            color: var(--text-light);
            font-size: 20px;
        }

        /* Stacked wide feature cards for the Additional Features section */
        .features-stack {
            max-width: 1200px;
            margin: 36px auto 0;
            display: flex;
            flex-direction: column;
            gap: 26px;
            padding: 0 1.5rem;
        }




        .stacked-card .icon { width: 80px; height: 80px; border-radius: 16px; font-size: 28px; flex: 0 0 80px; display:flex; align-items:center; justify-content:center; margin-top:6px; }

        .stacked-card .card-content h3 { font-size: 24px; margin: 0 0 8px; color: var(--text-dark); font-weight:800; }
        .stacked-card .card-content p { margin: 0; color: var(--text-light); font-size: 20px; }

        /* Center the card title vertically when the card is collapsed (default state)
           Keep the icon anchored at the top so it doesn't move when the card expands */
        .stacked-card .card-content {
            display: flex;
            flex-direction: column;
            justify-content: center; /* center title vertically by default */
            align-self: stretch; /* allow content column to stretch to card height */
            align-items: center; /* center titles horizontally */
            text-align: center; /* center text inside the column */
        }

        /* When hovering (card expands), let content flow from the top but keep text centered horizontally */
        .stacked-card:hover .card-content {
            justify-content: flex-start;
            align-items: center;
            text-align: center;
        }

        /* hide short description by default; reveal on hover alongside .card-extra */
        /* Simplify cards: always show description text (no hidden reveal) */
        .stacked-card .card-content > p {
            margin-top: 6px;
            opacity: 1;
            max-height: none;
            transition: none;
        }

        /* Extra hidden content revealed when card expands on hover */
        /* Keep extra details visible but simplified (no animated reveal) */
        .card-extra {
            display: block;
            opacity: 1;
            padding-top: 10px;
            color: var(--text-light);
            font-size: 15.5px;
        }

        /* 'More' card should appear faded and slightly recessed under the stack */
        .stacked-card.more-card {
            opacity: 0.6;
            transform: translateY(8px) scale(0.994);
            box-shadow: 0 8px 24px rgba(16,24,40,0.04);
            border-style: dashed;
            background: #fbfbfd;
        }

        @media (max-width: 900px) {
            .stacked-card { padding: 20px; gap: 14px; }
            .stacked-card .icon { width: 60px; height: 60px; flex: 0 0 60px; }
            .stacked-card .card-content h3 { font-size: 18px; }
            .hero h1 { font-size: 40px; }
        }

        /* Prebuilds Section */
        .prebuilds-section {
            background: linear-gradient(135deg, rgba(66, 133, 244, 0.05) 0%, rgba(156, 39, 176, 0.05) 100%);
            border-radius: 40px;
            padding: 100px 8%;
            margin: 100px 8%;
        }

        .prebuilds-container {
            display: flex;
            gap: 60px;
            align-items: center;
        }

        .prebuilds-content {
            flex: 1;
        }

        .prebuilds-content h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 25px;
            color: var(--text-dark);
        }

        .prebuilds-content p {
            font-size: 20px;
            color: var(--text-light);
            margin-bottom: 30px;
        }

        .prebuilds-gallery {
            width: 100%;
            min-width: 0;
            overflow-x: auto;
        }

        .gallery-container {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            padding: 20px 0;
            scrollbar-width: none;
            min-width: max-content; /* Ensures children don't wrap and container can overflow */
        }

        .gallery-container::-webkit-scrollbar {
            display: none;
        }

        .website-mockup {
            min-width: 300px;
            height: 400px;
            border-radius: 20px;
            background: linear-gradient(45deg, var(--accent-orange), var(--accent-yellow));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            text-align: center;
            padding: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .website-mockup::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0.1) 100%);
        }

        .btn-secondary {
            background-color: var(--secondary);
            color: var(--white);
            padding: 16px 36px;
            border-radius: 50px;
            font-weight: 600;
        }

        .btn-secondary:hover {
            background-color: #7b1fa2;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(156, 39, 176, 0.4);
        }

        /* Footer */
        .footer {
            background-color: var(--text-dark);
            color: var(--white);
            padding: 80px 8% 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 60px;
        }

        .footer-col h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary);
        }

        .footer-col p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links i {
            width: 20px;
            color: var(--accent-green);
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--white);
        }

        .footer-links a:hover::after {
            width: 100%;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero, .feature-grid, .mobile-grid, .prebuilds-container {
                flex-direction: column;
            }
            
            .pricing-container, .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .hero-video, .mobile-app-image {
                width: 100%;
            }

            .hero h1 {
                font-size: 46px;
            }
            .hero p {
                font-size: 20px;
            }
        }
        

        @media (max-width: 768px) {
            .pricing-container, .features-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .nav-links {
                display: none;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .hero-icons {
                display: none;
            }

            .hero {
                min-height: auto;
                padding: 80px 5% 30px;
            }
            
            .hero p {
                font-size: 18px;
                margin-bottom: 30px;
            }
            
            .hero-video {
                max-height: 35vh;
                margin-top: 20px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 32px;
            }

            .hero-video {
                max-height: 28vh;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .btn {
                padding: 14px 28px;
                font-size: 16px;
            }

            .feature-grid {
                grid-template-columns: 1fr;
            }

            .feature-card .icon {
                width: 10px;
                height: 10px;
            }

            .feature-card {
                transform: none;
            }

            .feature-card:hover {
                transform: none;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            }

            .blob {
                scale: 0.3;
            }

            .blob1 { top: -300px; left: -300px; }
            .blob2 { top: 80px; right: -250px; }
        }

        /* Modal Styles */
    #modal-bg {
        transition: opacity 0.2s;
    }
    .modal {
        position: fixed;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
        background: var(--white);
        border-radius: 18px;
        box-shadow: 0 8px 40px rgba(32,33,36,0.18);
        z-index: 2100;
        min-width: 340px;
        max-width: 95vw;
        width: 400px;
        padding: 0;
        animation: modalIn 0.2s;
    }
    @keyframes modalIn { from { opacity:0; transform:translate(-50%,-60%);} to { opacity:1; transform:translate(-50%,-50%);} }
    .modal-content {
        padding: 38px 32px 24px 32px;
        position: relative;
    }
    .close-modal {
        position: absolute;
        top: 18px; right: 22px;
        background: none;
        border: none;
        font-size: 28px;
        color: var(--text-light);
        cursor: pointer;
        transition: color 0.2s;
    }
    .close-modal:hover { color: var(--primary);}
    .modal h2 {
        margin-bottom: 22px;
        font-family: 'Montserrat',sans-serif;
        font-size: 28px;
        font-weight: 800;
        color: var(--primary);
        text-align: center;
    }
    .modal form {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 18px;
    }
    .modal input[type="email"], .modal input[type="password"], .modal input[type="text"] {
        padding: 13px 16px;
        border-radius: 8px;
        border: 1px solid #e0e0e0;
        font-size: 16px;
        outline: none;
        transition: border 0.2s;
    }
    .modal input:focus {
        border-color: var(--primary);
    }
    .modal-divider {
        text-align: center;
        margin: 18px 0 10px 0;
        color: var(--text-light);
        font-size: 15px;
        position: relative;
    }
    .modal-divider span {
        background: var(--white);
        padding: 0 12px;
        position: relative;
        z-index: 1;
    }
    .modal-divider:before {
        content: '';
        position: absolute;
        left: 0; right: 0; top: 50%;
        height: 1px;
        background: #e0e0e0;
        z-index: 0;
    }
    .quick-signup {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 10px;
    }
    .quick-signup .btn {
        width: 100%;
        justify-content: center;
        font-size: 16px;
    }
    .modal-footer {
        text-align: center;
        font-size: 15px;
        margin-top: 8px;
        color: var(--text-light);
    }
    .modal-footer a {
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
        margin-left: 4px;
    }
    @media (max-width: 500px) {
        .modal { min-width: 0; width: 98vw; }
        .modal-content { padding: 24px 8px 18px 8px; }
    }

    

    /* Resources Section Styles */
    .resources-section {
        background: linear-gradient(135deg, #f8f9fa 0%, #e3e9f6 100%);
        border-radius: 40px;
        margin: 30px 8% 100px;
        padding: 50px 1%;
    }
    .resources-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
    .resource-card {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        padding: 2.5rem;
        text-align: left;
        display: flex;
        flex-direction: column;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }
    .resource-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        border-color: var(--primary);
    }
    .resource-icon {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, rgba(66, 133, 244, 0.1) 0%, rgba(66, 133, 244, 0.05) 100%);
    }
    .resource-card h3 {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
        color: var(--text-dark);
    }
    .resource-card p {
        color: var(--text-light);
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        flex-grow: 1;
    }
    .resource-card a {
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
    }
    .resource-card a:hover {
        opacity: 0.8;
    }
    @media (max-width: 900px) {
        .resources-section {
            padding: 40px 4%;
            margin: 40px 2% 60px;
        }
        .resources-grid {
            gap: 24px;
        }
    }

    @media (max-width: 900px) {
        section, .about-unique-section, .resources-section {
            opacity: 1 !important;
            transform: none !important;
            animation: none !important;
        }
    }

    @keyframes popInSection {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

section:not(.hero),  .resources-section {
    opacity: 0;
    transform: translateY(40px);
    will-change: opacity, transform;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

section.pop-in, .resources-section.pop-in {
    animation: popInSection 0.6s ease-out forwards;
}

/* Fallback: ensure sections are visible after a delay if animation fails */
@media (prefers-reduced-motion: reduce) {
    section:not(.hero), .resources-section {
        opacity: 1;
        transform: none;
    }
}

/* Hide the language button on mobile */
@media (max-width: 700px) {
    .lang-btn {
        display: none !important;
    }
}

#langMenu .lang-option {
    display: inline-block;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    padding: 10px 18px;
    transition: color 0.2s;
    color: #202124;
    outline: none;
    position: relative;
}

#langMenu .lang-option::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 4px;
    height: 2px;
    width: 70%;
    background: var(--primary, #4285F4);
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.3s;
}

#langMenu .lang-option:hover,
#langMenu .lang-option:focus {
    color: var(--primary, #4285F4);
}

#langMenu .lang-option:hover::after,
#langMenu .lang-option:focus::after {
    transform: translateX(-50%) scaleX(1);
}

.menu-btn {
    display: none;
}

.lang-dropdown-btn {
    justify-content: space-between !important;
    width: 100vw !important;
    font-size: 1.15rem;
    background: none;
    border: none;
    color: #202124;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    border-radius: 0;
    padding-right: 2rem !important;
}

.lang-dropdown-btn .fa-chevron-down {
    margin-left: auto;
    font-size: 1.1em;
}

#arrow1.active, #arrow2.active {
    transition: transform 0.3s;
    transform: rotate(180deg);
}




@media (max-width: 700px) {
    .menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    .hero-content {
        max-width: 350px;
    }
    .section-title {
        line-height: 50px;    
    }

    #mobileMenu {
        position: fixed;
        left: 50%;
        top: 0px;
        transform: translateX(-50%);
        width: 92vw;
        max-width: 1200px;
        background: rgba(255, 255, 255, 1);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 33px;
        box-shadow: 0 8px 32px rgba(31, 38, 135, 0.18);
        border: 1px solid rgba(255, 255, 255, 0.18);
        z-index: 1001;
        pointer-events: none;
        overflow: hidden;
    }
    #mobileMenu.active {
        pointer-events: auto;
    }
    .mobile-menu-content {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 40px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
    }
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        pointer-events: auto;
        min-height: 64px;
    }
    .mobile-menu-expanded {
        max-height: 0;
        overflow: hidden;
        background: transparent;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: max-height;
    }
    #mobileMenu.active .mobile-menu-expanded {
        max-height: 80vh;
        overflow-y: auto;
    }

    @keyframes slideIn {
    from { opacity: 0; transform: translateX(30px) scale(0.97); }
    to { opacity: 1; transform: none; }
}
    
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    @keyframes menuPopIn {
        from { opacity: 0; transform: translateY(-30px) scale(0.97);}
        to { opacity: 1; transform: none;}
    }
    .mobile-menu-content nav {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin: 0;
        padding: 20px 24px 24px 24px;
        align-items: stretch;
    }
    .mobile-link {
        color: #202124;
        font-size: 1.2rem;
        text-decoration: none;
        font-weight: 600;
        padding: 5px 30px;
        border-radius: 12px;
        width: 100%;
        display: block;
        position: relative;
        text-align: left;
        cursor: pointer;
        outline: none;
    }
    .mobile-link:hover,
    .mobile-link:focus {
        border-color: rgba(66, 133, 244, 0.35);
        box-shadow: 0 10px 20px rgba(66, 133, 244, 0.12);
        transform: translateY(-1px);
        background: #f9fbff;
    }
    .mobile-link::after {
        display: none !important;
    }

    /* Mobile menu corner expansion animation */
    /* This adds an opening animation originating from the clicked button's position */
    #mobileMenu.corner-animate {
        transform-origin: var(--menu-origin-x, 50%) var(--menu-origin-y, 0);
        animation: mobileMenuCornerExpand 500ms cubic-bezier(.2,.8,.2,1) forwards;
        will-change: transform, opacity;
    }

    @keyframes mobileMenuCornerExpand {
        from { transform: scale(0.02); opacity: 0; }
        to { transform: scale(1); opacity: 1; }
    }
    .menu-btn-mobile {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: none;
        border: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
        padding: 0;
        transition: all 0.3s ease;
    }
    .hamburger-line {
        width: 24px;
        height: 3px;
        background: var(--text-dark);
        border-radius: 3px;
        transition: all 0.3s ease;
        transform-origin: center;
    }
    #mobileMenu.active .hamburger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    #mobileMenu.active .hamburger-line:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    #mobileMenu.active .hamburger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .mobile-lang-balls {
        display: flex;
        justify-content: center;
        gap: 16px;
        padding: 16px 0;
        flex-wrap: wrap;
    }
    .flag-ball {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: #ffffff;
        border: 2px solid #e8e9ea;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    .flag-ball img {
        width: 38px;
        height: 38px;
        object-fit: cover;
        border-radius: 50%;
    }
    .flag-ball:hover {
        transform: scale(1.15);
        border-color: var(--primary, #4285F4);
        box-shadow: 0 4px 16px rgba(66, 133, 244, 0.25);
        background: rgba(66, 133, 244, 0.05);
    }
    .flag-ball:active {
        transform: scale(0.95);
    }
    .mobile-login-btn {
        border: 1px solid var(--primary, #4285F4);
        color: var(--primary, #4285F4);
        background: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1rem;
        margin-top: 1.5rem;
        padding: 12px 20px;
        width: 100%;
        transition: background 0.2s, color 0.2s;
        cursor: pointer;
    }
    .mobile-login-btn:hover {
        background: rgba(66,133,244,0.08);
        color: #3367d6;
    }
    

    #mobileAccountBtn {
        width: 100%;
        padding: 14px 20px !important;
        font-size: 1.3rem !important;
        text-align: center !important;
    }
}
@media (min-width: 701px) {
    #mobileMenu {
        display: none !important;
    }
    .menu-btn {
        display: none !important;
    }
}

.features-dropdown-btn {
    position: relative;
    border-radius: 0;
    padding-left: 0;
}

.mobile-link .features-dropdown-btn {
    color:#202124;
}

.mobile-link:hover .features-dropdown-btn,
.mobile-link:focus .features-dropdown-btn {
    color: var(--primary, #4285F4) !important;
}

.mobile-features-menu {
    display: none;
    flex-direction: column;
    background: #f8f9fa;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    position: static;
    z-index: 100;
    align-self: stretch;
}
.features-option {
    display: block;
    width: 100%;
    background: none;
    border: none;
    text-align: center;
    font-size: 1rem;
    color: #202124;
    padding: 12px 1rem;
    cursor: pointer;
    outline: none;
    border-radius: 8px;
    transition: background 0.18s, color 0.18s;
    text-decoration: none;
}
.features-option:hover,
.features-option:focus {
    background: rgba(66, 133, 244, 0.08);
    color: var(--primary, #4285F4);
}

/* Contact Modal Background */
.contact-modal-bg {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(32, 33, 36, 0.45);
    z-index: 2000;
}

/* Contact Modal */
.contact-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 8px 40px rgba(32,33,36,0.18);
    z-index: 2100;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    animation: modalIn 0.2s;
}

/* Topic suggestions list */
.topic-suggestions-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 0 0 8px 8px;
    z-index: 10;
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 150px;
    overflow-y: auto;
}

.topic-suggestions-list li {
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.15s;
}

.topic-suggestions-list li:hover {
    background: #f5f5f5;
}

.contact-modal h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary);
    text-align: center;
}

.contact-form-group {
    margin-bottom: 10px;
}

.contact-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    font-size: 16px;
    outline: none;
    transition: border 0.2s;
    font-family: 'Inter', sans-serif;
}

.contact-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    border-color: var(--primary);
}

.contact-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 25px;
}

.contact-modal .btn {
    padding: 12px 24px;
}

.signup-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    color: var(--text-light);
    font-size: 18px;
}

.counter-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.counter-text {
    font-size: 16px;
    opacity: 0.9;
}

/* Animation for counter */
@keyframes counterPop {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.signup-counter {
    animation: counterPop 0.6s ease-out forwards;
}

#confirmation-message-bg {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(32,33,36,0.45);
    z-index: 2999;
    display: none;
}

/* Add this to your <style> section or CSS file */
#confirmation-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    color: var(--primary, #4285F4);
    border: 2px solid var(--primary, #4285F4);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(66,133,244,0.13);
    padding: 18px 38px;
    font-size: 1.15rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    z-index: 3000;
    display: none;
    animation: fadeInPop 0.4s;
    text-align: center;
}
@keyframes fadeInPop {
    0% { opacity: 0; transform: translate(-50%, -60%) scale(0.95);}
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1);}
}

#confirmation-message-bg,
#confirmation-message {
    opacity: 1;
    transition: opacity 0.8s;
}

#confirmation-message-bg.fade-out,
#confirmation-message.fade-out {
    opacity: 0;
}

.terms-section {
    padding: 80px 8% 60px 8%;
    background: linear-gradient(120deg, #f8fafc 60%, #e0e7ff 100%);
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.terms-title {
    text-align: center;
    margin-bottom: 40px;
}
.terms-title h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--primary);
}
.terms-title p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}
.terms-content {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(66,133,244,0.07);
    padding: 38px 38px 28px 38px;
    max-width: 900px;
    width: 100%;
    color: var(--text-dark);
}
.terms-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--primary);
}
.terms-content p, .terms-content ul {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 18px;
}
.terms-content ul {
    padding-left: 20px;
}
.terms-content li {
    margin-bottom: 10px;
}
.terms-content code {
    background: #f3f4f6;
    border-radius: 6px;
    padding: 2px 7px;
    font-size: 15px;
    color: var(--accent-red);
}
@media (max-width: 900px) {
    .terms-section { padding: 40px 4% 40px 4%; }
    .terms-content { padding: 22px 10px 18px 10px; }
    .terms-title h2 { font-size: 28px; }
    .terms-title p { font-size: 16px; }
}
@media (max-width: 600px) {
    .terms-section { padding: 24px 2% 24px 2%; }
    .terms-content { padding: 12px 2vw 10px 2vw; }
    .terms-title h2 { font-size: 22px; }
}

/* Ensure SpotSloth section is visible even if global section pop-in JS isn't running */
.spotsloth-section {
    opacity: 1 !important;
    transform: none !important;
}