        :root {
            --gold: #F8D37C;
            --gold-light: #E5D4A1;
            --gold-dark: #A88B3D;
            --dark: #1A1A1A;
            --dark-secondary: #2A2A2A;
            --dark-tertiary: #3A3A3A;
            --white: #FFFFFF;
            --gray: #666666;
            --gray-light: #F5F5F5;
            --gray-medium: #E8E8E8;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--white);
            color: var(--dark);
            line-height: 1.7;
            font-weight: 400;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(to bottom, rgba(10,10,10,0.95), transparent);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 1rem 5%;
        }

        .navbar.menu-open {
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            background: rgba(26, 26, 26, 0.98);
        }

        .logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--gold);
            text-decoration: none;
            letter-spacing: 3px;
            display: flex;
            align-items: center;
        }

        .logo-img {
            height: 160px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .logo-img:hover {
            transform: scale(1.05);
        }

        .logo-full {
            display: block;
        }

        .logo-mini {
            display: none;
            height: 50px;
        }

        .navbar.scrolled .logo-full {
            display: none;
        }

        .navbar.scrolled .logo-mini {
            display: block;
        }

        .footer-logo-img {
            height: 100px;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 400;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
            transition: color 0.3s ease;
        }

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

        .nav-links a:hover {
            color: var(--gold);
        }

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

        .lang-switch {
            display: flex;
            gap: 0.25rem;
            align-items: center;
        }

        .lang-switch a {
            text-decoration: none;
            font-size: 1.35rem;
            padding: 0.2rem 0.3rem;
            border-radius: 6px;
            transition: all 0.3s ease;
            opacity: 0.45;
            line-height: 1;
        }

        .lang-switch a.active,
        .lang-switch a:hover {
            opacity: 1;
        }

        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
        }

        .mobile-menu-btn span {
            width: 25px;
            height: 2px;
            background: var(--white);
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            background: var(--dark);
            overflow: hidden;
        }

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

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(10,10,10,0.7) 0%, rgba(26,26,26,0.6) 100%);
            z-index: 1;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A962' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 900px;
            padding: 0 2rem;
        }

        .hero-badge {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            border: 1px solid var(--gold);
            color: var(--gold);
            font-size: 0.75rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease;
        }

        .hero h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 600;
            line-height: 1.15;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease 0.2s both;
            color: var(--white);
            letter-spacing: 1px;
        }

        .hero h1 span {
            color: var(--gold);
        }

        .hero p {
            font-size: 1.1rem;
            color: var(--gray-light);
            max-width: 600px;
            margin: 0 auto 2.5rem;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .btn {
            padding: 1rem 2.5rem;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background: var(--gold);
            color: var(--dark);
        }

        .btn-primary:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
        }

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

        .btn-secondary:hover {
            background: var(--white);
            color: var(--dark);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
            z-index: 3;
        }

        .scroll-indicator span {
            display: block;
            width: 20px;
            height: 30px;
            border: 2px solid var(--gold);
            border-radius: 15px;
            position: relative;
        }

        .scroll-indicator span::before {
            content: '';
            position: absolute;
            top: 5px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 8px;
            background: var(--gold);
            border-radius: 2px;
            animation: scrollDown 2s infinite;
        }

        /* About Section */
        .section {
            padding: 6rem 5%;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .section-label {
            color: var(--gold);
            font-size: 0.8rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 600;
            margin-bottom: 1.5rem;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .section-desc {
            color: var(--gray);
            font-size: 1rem;
        }

        .about {
            background: var(--gray-light);
        }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-card {
            background: var(--white);
            padding: 2.5rem;
            text-align: center;
            border-bottom: 3px solid var(--gold);
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .about-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.12);
        }

        .about-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--gold);
            border-radius: 50%;
        }

        .about-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--gold);
            fill: none;
            stroke-width: 1.5;
        }

        .about-card h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .about-card p {
            color: var(--gray);
            font-size: 0.95rem;
        }

        /* Members Section */
        .members {
            background: var(--white);
        }

        .members-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .member-card {
            background: var(--white);
            padding: 2rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 1px solid var(--gray-medium);
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .member-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .member-card:hover {
            border-color: var(--gold);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }

        .member-card:hover::before {
            transform: scaleX(1);
        }

        .member-number {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            color: var(--dark-tertiary);
            font-weight: 700;
            line-height: 1;
        }

        .member-card h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 1;
        }

        .member-card p {
            color: var(--gray);
            font-size: 0.85rem;
            position: relative;
            z-index: 1;
        }

        .member-logo {
            width: 100%;
            height: 260px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            background: var(--white);
            padding: 1.5rem;
            border-radius: 8px;
        }

        .member-logo img {
            max-width: 100%;
            max-height: 220px;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .member-card:hover .member-logo img {
            transform: scale(1.05);
        }

        .member-card a {
            color: inherit;
            text-decoration: none;
        }

        .member-card h3 a {
            color: var(--dark);
            transition: color 0.3s ease;
            text-decoration: none;
        }

        .member-card h3 a:hover {
            color: var(--gold-dark);
        }

        /* Become Driver Section */
        .become-driver {
            background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark) 100%);
            position: relative;
            overflow: hidden;
        }

        .become-driver::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(201, 169, 98, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .driver-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .driver-text h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(2rem, 4vw, 2.8rem);
            margin-bottom: 1.5rem;
            color: var(--white);
        }

        .driver-text h2 span {
            color: var(--gold);
        }

        .driver-text h2 span.text-white {
            color: var(--white);
        }

        .driver-text p {
            color: var(--gray-light);
            margin-bottom: 2rem;
            font-size: 1rem;
        }

        .driver-features {
            list-style: none;
            margin-bottom: 2.5rem;
            display: inline-block;
            text-align: left;
        }

        .driver-features li {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            color: var(--gray-light);
        }

        .driver-features li svg {
            width: 20px;
            height: 20px;
            stroke: var(--gold);
            flex-shrink: 0;
        }

        .driver-image {
            position: relative;
        }

        .driver-image-box {
            background: var(--dark-tertiary);
            padding: 3rem;
            position: relative;
        }

        .driver-image-box::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: -20px;
            bottom: -20px;
            border: 2px solid var(--gold);
            z-index: -1;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            color: var(--gold);
            font-weight: 700;
            line-height: 1;
        }

        .stat-label {
            color: var(--gray);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 0.5rem;
        }

        /* Guarantees Section */
        .guarantees {
            background: var(--gray-light);
        }

        .guarantees-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .guarantee-card {
            text-align: center;
            padding: 2rem 1.5rem;
            background: var(--white);
            border: 1px solid var(--gray-medium);
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .guarantee-card:hover {
            border-color: var(--gold);
            box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        }

        .guarantee-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            border-radius: 50%;
        }

        .guarantee-icon svg {
            width: 32px;
            height: 32px;
            stroke: var(--dark);
            fill: none;
            stroke-width: 1.5;
        }

        .guarantee-card h3 {
            font-size: 1rem;
            font-weight: 500;
            margin-bottom: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .guarantee-card p {
            color: var(--gray);
            font-size: 0.9rem;
        }

        /* Events Section */
        .event-home-card:hover {
            background: rgba(255,255,255,0.1) !important;
            border-color: rgba(248,211,124,0.3) !important;
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.2);
        }

        /* Contact Section */
        .contact {
            background: var(--gray-light);
            padding: 6rem 5%;
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
            align-items: start;
        }

        .contact-left .section-label,
        .contact-left .section-title {
            text-align: left;
        }

        .contact-intro {
            color: var(--gray);
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 3rem;
        }

        .contact-cards {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-card {
            display: flex;
            align-items: flex-start;
            gap: 1.25rem;
            padding: 1.5rem;
            background: var(--white);
            border-radius: 12px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.04);
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
        }

        .contact-card-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gold);
            border-radius: 10px;
            flex-shrink: 0;
        }

        .contact-card-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--dark);
        }

        .contact-card-content h4 {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }

        .contact-card-content p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .contact-card-content a {
            color: var(--dark);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .contact-card-content a:hover {
            color: var(--gold-dark);
        }

        /* Contact Form */
        .contact-right {
            position: relative;
        }

        .contact-form-wrapper {
            background: var(--white);
            padding: 3rem;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }

        .contact-form-wrapper h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 2rem;
            color: var(--dark);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.25rem;
        }

        .form-group {
            margin-bottom: 1.25rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--dark);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem 1.25rem;
            background: var(--gray-light);
            border: 2px solid transparent;
            border-radius: 10px;
            color: var(--dark);
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--gray);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold);
            background: var(--white);
        }

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

        .contact-form-wrapper .btn {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            margin-top: 0.5rem;
        }

        .contact-form-wrapper .btn svg {
            width: 18px;
            height: 18px;
            stroke: currentColor;
            transition: transform 0.3s ease;
        }

        .contact-form-wrapper .btn:hover svg {
            transform: translate(3px, -3px);
        }

        @media (max-width: 992px) {
            .contact-wrapper {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .contact-left .section-label,
            .contact-left .section-title {
                text-align: center;
            }

            .contact-intro {
                text-align: center;
            }

            .form-row {
                grid-template-columns: 1fr;
            }
        }

        /* Footer */
        .footer {
            background: var(--dark);
            position: relative;
            overflow: hidden;
        }

        /* Footer CTA */
        .footer-cta {
            background: var(--gold);
            padding: 4rem 5%;
            text-align: center;
            position: relative;
        }

        .footer-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }

        .footer-cta-content {
            position: relative;
            z-index: 1;
            max-width: 600px;
            margin: 0 auto;
        }

        .footer-cta h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .footer-cta p {
            color: rgba(0,0,0,0.7);
            font-size: 1rem;
            margin-bottom: 2rem;
        }

        .footer-cta .btn-primary {
            background: var(--dark);
            color: var(--white);
        }

        .footer-cta .btn-primary:hover {
            background: var(--white);
            color: var(--dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        /* Footer Main */
        .footer-main {
            padding: 5rem 5%;
            background: linear-gradient(180deg, var(--dark) 0%, #0a0a0a 100%);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-brand {
            text-align: left;
        }

        .footer-brand .logo {
            display: inline-block;
            margin-bottom: 1.5rem;
        }

        .footer-brand p {
            color: rgba(255,255,255,0.6);
            font-size: 0.95rem;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .footer-social {
            display: flex;
            gap: 0.75rem;
        }

        .footer-social a {
            width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--gold);
            border-color: var(--gold);
            transform: translateY(-3px);
        }

        .footer-social a svg {
            width: 18px;
            height: 18px;
            stroke: rgba(255,255,255,0.7);
            transition: stroke 0.3s ease;
        }

        .footer-social a:hover svg {
            stroke: var(--dark);
        }

        /* Footer Columns */
        .footer-column h4 {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1.5rem;
            color: var(--white);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 0.85rem;
        }

        .footer-column a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-column a:hover {
            color: var(--gold);
            transform: translateX(5px);
        }

        /* Footer Contact */
        .footer-contact .contact-line {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.25rem;
        }

        .footer-contact .contact-line svg {
            width: 18px;
            height: 18px;
            stroke: var(--gold);
            flex-shrink: 0;
            margin-top: 3px;
        }

        .footer-contact .contact-line span,
        .footer-contact .contact-line a {
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
            line-height: 1.6;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-contact .contact-line a:hover {
            color: var(--gold);
        }

        /* Footer Bottom */
        .footer-bottom {
            background: rgba(0,0,0,0.3);
            padding: 1.5rem 5%;
        }

        .footer-bottom-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom p {
            color: rgba(255,255,255,0.4);
            font-size: 0.85rem;
            margin: 0;
        }

        .footer-bottom p span {
            color: var(--gold);
            font-weight: 600;
        }

        .footer-legal {
            display: flex;
            gap: 2rem;
        }

        .footer-legal a {
            color: rgba(255,255,255,0.4);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: var(--gold);
        }

        /* Footer Responsive */
        @media (max-width: 992px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
            }

            .footer-brand {
                grid-column: span 2;
                text-align: center;
            }

            .footer-brand p {
                max-width: 400px;
                margin-left: auto;
                margin-right: auto;
            }

            .footer-social {
                justify-content: center;
            }

            .footer-column {
                text-align: center;
            }

            .footer-column a:hover {
                transform: none;
            }

            .footer-contact .contact-line {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .footer-brand {
                grid-column: span 1;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-legal {
                gap: 1.5rem;
            }
        }

        /* Member Card CTA */
        .member-card-cta {
            display: inline-block;
            margin-top: 0.75rem;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--gold);
            font-weight: 600;
            border: 1px solid var(--gold);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            opacity: 0.8;
        }

        .member-card:hover .member-card-cta {
            opacity: 1;
            background: var(--gold);
            color: var(--dark);
        }

        /* Member Modal */
        .member-modal-overlay {
            position: fixed;
            inset: 0;
            z-index: 2000;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(6px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .member-modal-overlay.open {
            opacity: 1;
            pointer-events: all;
        }

        .member-modal {
            background: var(--white);
            border-radius: 20px;
            width: 100%;
            max-width: 580px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            transform: translateY(30px) scale(0.97);
            transition: transform 0.3s ease;
            box-shadow: 0 30px 80px rgba(0,0,0,0.25);
        }

        .member-modal-overlay.open .member-modal {
            transform: translateY(0) scale(1);
        }

        .member-modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: none;
            background: rgba(0,0,0,0.08);
            color: var(--dark);
            font-size: 1.25rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
            z-index: 10;
        }

        .member-modal-close:hover { background: rgba(0,0,0,0.15); }

        .member-modal-logo {
            background: var(--gray-light);
            border-radius: 20px 20px 0 0;
            padding: 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 180px;
        }

        .member-modal-logo img {
            max-height: 120px;
            max-width: 100%;
            object-fit: contain;
        }

        .member-modal-body {
            padding: 2.5rem;
        }

        .member-modal-badge {
            display: inline-block;
            background: rgba(248, 211, 124, 0.15);
            color: var(--gold-dark);
            border: 1px solid var(--gold);
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 0.35rem 1rem;
            border-radius: 20px;
            margin-bottom: 1rem;
        }

        .member-modal-body h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .member-modal-desc {
            color: var(--gray);
            line-height: 1.8;
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .member-modal-services {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 2rem;
        }

        .modal-service-tag {
            background: var(--gray-light);
            color: var(--dark);
            font-size: 0.8rem;
            padding: 0.4rem 0.9rem;
            border-radius: 20px;
            font-weight: 500;
        }

        .member-modal-info {
            border-top: 1px solid var(--gray-medium);
            padding-top: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .modal-info-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
            color: var(--gray);
            font-size: 0.9rem;
        }

        .modal-info-item svg {
            width: 18px;
            height: 18px;
            stroke: var(--gold);
            flex-shrink: 0;
        }

        .modal-info-item a { color: var(--dark); text-decoration: none; font-weight: 500; }
        .modal-info-item a:hover { color: var(--gold-dark); }

        .member-modal-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .member-modal-actions .btn {
            flex: 1;
            min-width: 140px;
            text-align: center;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        @keyframes scrollDown {
            0% {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
            100% {
                opacity: 0;
                transform: translateX(-50%) translateY(10px);
            }
        }

        /* Scroll animations */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* ─── RESPONSIVE ────────────────────────────────────────────── */

        /* Tablet */
        @media (max-width: 1024px) {
            .nav-links {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                flex-direction: column;
                background: rgba(26,26,26,0.98);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                justify-content: center;
                align-items: center;
                gap: 0;
                z-index: 999;
                padding: 2rem;
            }

            .nav-links.open {
                display: flex;
            }

            .nav-links li {
                width: 100%;
                text-align: center;
                border-bottom: 1px solid rgba(255,255,255,0.06);
            }

            .nav-links a {
                display: block;
                font-size: 1.2rem;
                padding: 1.25rem 0;
                letter-spacing: 3px;
            }

            .nav-links a::after { display: none; }

            .nav-member-btn {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
                z-index: 1001;
            }

            .mobile-menu-btn.open span:nth-child(1) {
                transform: translateY(7px) rotate(45deg);
            }
            .mobile-menu-btn.open span:nth-child(2) {
                opacity: 0;
            }
            .mobile-menu-btn.open span:nth-child(3) {
                transform: translateY(-7px) rotate(-45deg);
            }

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

            .driver-content {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .guarantees-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .members-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 1rem;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2.5rem;
            }

            .member-modal {
                width: 95vw;
                max-height: 92vh;
            }
        }

        /* Mobile */
        @media (max-width: 768px) {
            .section {
                padding: 3.5rem 5%;
            }

            .section-header {
                margin-bottom: 2.5rem;
            }

            .section-title {
                font-size: 1.6rem;
                letter-spacing: 1px;
            }

            .section-desc {
                font-size: 0.9rem;
            }

            .navbar {
                padding: 0.75rem 5%;
            }

            .navbar .logo-img.logo-full {
                height: 80px;
            }

            .navbar.scrolled {
                padding: 0.6rem 5%;
            }

            .hero {
                min-height: 85vh;
            }

            .hero h1 {
                font-size: 2rem;
                margin-bottom: 1rem;
            }

            .hero p {
                font-size: 0.95rem;
                margin-bottom: 1.5rem;
            }

            .hero-badge {
                font-size: 0.65rem;
                padding: 0.4rem 1rem;
                letter-spacing: 2px;
                margin-bottom: 1.25rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 0.75rem;
            }

            .hero-buttons .btn {
                width: 100%;
                max-width: 300px;
                text-align: center;
                justify-content: center;
                padding: 0.9rem 1.5rem;
                font-size: 0.8rem;
            }

            .scroll-indicator {
                bottom: 1rem;
            }

            .about-card {
                padding: 1.75rem;
            }

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

            .about-card p {
                font-size: 0.88rem;
            }

            .members-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0.75rem;
            }

            .member-card {
                padding: 1.25rem;
                text-align: center;
            }

            .member-logo {
                height: 160px;
                margin-bottom: 1rem;
                padding: 1rem;
            }

            .member-logo img {
                max-height: 130px;
            }

            .member-number {
                display: none;
            }

            .member-card h3 {
                font-size: 0.95rem;
            }

            .member-card p {
                font-size: 0.78rem;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            .member-card-cta {
                font-size: 0.6rem;
                padding: 0.25rem 0.75rem;
            }

            .driver-text h2 {
                font-size: 1.6rem;
                text-align: center;
            }

            .driver-text p {
                font-size: 0.9rem;
                text-align: center;
            }

            .driver-features li {
                font-size: 0.88rem;
            }

            .driver-text .btn {
                width: 100%;
                text-align: center;
                justify-content: center;
            }

            .driver-image-box {
                padding: 2rem;
            }

            .driver-image-box::before {
                top: 10px;
                left: 10px;
                right: -10px;
                bottom: -10px;
            }

            .stat-number {
                font-size: 2.2rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .guarantees-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .guarantee-card {
                display: flex;
                text-align: left;
                gap: 1.25rem;
                padding: 1.5rem;
                align-items: center;
            }

            .guarantee-icon {
                margin: 0;
                width: 55px;
                height: 55px;
                min-width: 55px;
            }

            .guarantee-icon svg {
                width: 26px;
                height: 26px;
            }

            .guarantee-card h3 {
                font-size: 0.88rem;
                margin-bottom: 0.25rem;
            }

            .guarantee-card p {
                font-size: 0.82rem;
            }

            .contact {
                padding: 3.5rem 5%;
            }

            .contact-form-wrapper {
                padding: 1.75rem;
            }

            .contact-form-wrapper h3 {
                font-size: 1.2rem;
                margin-bottom: 1.25rem;
            }

            .footer-cta {
                padding: 2.5rem 5%;
            }

            .footer-cta h3 {
                font-size: 1.2rem;
            }

            .footer-main {
                padding: 3rem 5%;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .footer-brand {
                text-align: center;
            }

            .footer-brand .logo {
                justify-content: center;
            }

            .footer-logo-img {
                height: 70px;
            }

            .footer-social {
                justify-content: center;
            }

            .footer-column h4 {
                margin-bottom: 1rem;
            }

            .footer-column li {
                margin-bottom: 0.5rem;
            }

            .footer-contact .contact-line {
                justify-content: center;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
                gap: 0.75rem;
            }

            .footer-legal {
                gap: 1rem;
            }

            .member-modal-overlay {
                padding: 0;
                align-items: flex-end;
            }

            .member-modal {
                width: 100%;
                max-height: 95vh;
                border-radius: 20px 20px 0 0;
            }

            .member-modal-body {
                padding: 1.5rem;
            }

            .member-modal-body h2 {
                font-size: 1.3rem;
            }

            .member-modal-actions {
                flex-direction: column;
            }

            .member-modal-actions .btn {
                text-align: center;
                justify-content: center;
            }
        }

        /* Small mobile */
        @media (max-width: 420px) {
            .members-grid {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 1.65rem;
            }

            .nav-links a {
                font-size: 1rem;
                padding: 1rem 0;
            }

            .stat-number {
                font-size: 1.8rem;
            }

            .about-card {
                padding: 1.25rem;
            }
        }
