/* ============================================================
   Golden Drive - Enhanced Stylesheet
   ============================================================ */

:root {
    --gold: #C9A227;
    --gold-dark: #A8851E;
    --gold-light: #E5C76B;
    --gold-glow: rgba(201, 162, 39, 0.4);
    --dark: #0F0F1A;
    --dark-2: #1A1A2E;
    --dark-3: #252540;
    --light: #F8F9FC;
    --gray: #6C757D;
    --gray-light: #A0A5B0;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 10px 40px rgba(201, 162, 39, 0.3);
    --radius: 20px;
    --radius-sm: 12px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Cairo', 'Poppins', sans-serif;
    color: #2D2D3A;
    line-height: 1.8;
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

html[lang="en"] body { font-family: 'Poppins', 'Cairo', sans-serif; }

a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    background: linear-gradient(90deg, var(--dark) 0%, var(--dark-2) 100%);
    color: var(--gold-light);
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-contact a {
    color: var(--gold-light);
    margin: 0 8px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

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

.top-contact i { font-size: 12px; }

.top-contact .divider { color: rgba(201, 162, 39, 0.3); margin: 0 5px; }

.top-social a {
    color: var(--gold-light);
    margin: 0 8px;
    font-size: 15px;
    transition: var(--transition);
    display: inline-block;
}

.top-social a:hover { color: var(--gold); transform: translateY(-2px); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 26px;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}

.logo:hover .logo-icon {
    transform: rotate(-10deg) scale(1.05);
}

.logo-text { display: flex; flex-direction: column; line-height: 1.2; }

.logo-ar {
    font-size: 19px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.logo-en {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--dark);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    display: block;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after { width: 30%; }

.nav-menu a:hover, .nav-menu a.active {
    color: var(--gold);
    background: rgba(201, 162, 39, 0.06);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.lang-switcher {
    display: flex;
    gap: 4px;
    background: var(--light);
    padding: 5px;
    border-radius: 30px;
}

.lang-switcher a {
    padding: 6px 16px;
    border-radius: 22px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray);
    transition: var(--transition);
}

.lang-switcher a:hover { color: var(--gold); }

.lang-switcher a.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.3);
}

.btn-book {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    padding: 11px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-book::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-book:hover::before {
    width: 300px;
    height: 300px;
}

.btn-book:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(201, 162, 39, 0.5);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: var(--dark);
    cursor: pointer;
    padding: 5px;
}

/* ============================================================
   HERO SECTION - ENHANCED
   ============================================================ */
.hero {
    position: relative;
    min-height: 750px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.18), transparent 65%);
    border-radius: 50%;
    animation: floatGlow 15s infinite ease-in-out;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.12), transparent 65%);
    border-radius: 50%;
    animation: floatGlow 20s infinite ease-in-out reverse;
}

@keyframes floatGlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, -30px) scale(1.1); }
}

/* Grid pattern overlay */
.hero .grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 162, 39, 0.12);
    color: var(--gold-light);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(201, 162, 39, 0.25);
    backdrop-filter: blur(10px);
}

.hero-badge i { color: var(--gold); }

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
    line-height: 1.9;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    padding: 16px 42px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary-custom:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary-custom:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(201, 162, 39, 0.55);
}

.btn-outline-custom {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    padding: 16px 42px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

.hero-stat .num {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat .lbl {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 100px 0; }
.section-light { background: var(--light); }
.section-dark { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%); color: var(--white); }

.section-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    display: inline-block;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 14px;
    position: relative;
    padding: 0 30px;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 2px;
    background: var(--gold);
}

.section-subtitle::before { right: 0; }
.section-subtitle::after { left: 0; }

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 18px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-dark .section-title { color: var(--white); }

.section-description {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.9;
}

.section-dark .section-description { color: rgba(255, 255, 255, 0.7); }

/* ============================================================
   FEATURES GRID - ENHANCED
   ============================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: center;
}

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

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 162, 39, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.12), rgba(201, 162, 39, 0.04));
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: var(--gold);
    transition: var(--transition);
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 26px;
    border: 2px dashed rgba(201, 162, 39, 0.2);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    transform: scale(1.05) rotate(-5deg);
    box-shadow: var(--shadow-gold);
}

.feature-card:hover .feature-icon::after {
    opacity: 1;
    inset: -8px;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
}

.feature-card p {
    color: var(--gray);
    font-size: 0.98rem;
    margin: 0;
    line-height: 1.8;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
}

.step-card {
    text-align: center;
    position: relative;
    padding: 20px;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-gold);
    position: relative;
    z-index: 2;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

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

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(201, 162, 39, 0.12);
    line-height: 1;
}

html[lang="en"] .testimonial-card::before { right: auto; left: 30px; }

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 18px;
    font-size: 1rem;
    letter-spacing: 3px;
}

.testimonial-text {
    color: #4A4A5A;
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 1.2rem;
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ============================================================
   CAR CARDS
   ============================================================ */
.car-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.car-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.car-image {
    height: 220px;
    background: linear-gradient(135deg, #F0F2F7, #E0E4ED);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.car-image i {
    font-size: 80px;
    color: var(--gold);
    transition: var(--transition);
}

.car-card:hover .car-image i {
    transform: scale(1.15) rotate(-5deg);
}

.car-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

html[lang="en"] .car-badge { right: auto; left: 16px; }

.car-body {
    padding: 28px 24px;
}

.car-body h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.car-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.car-features li {
    background: rgba(201, 162, 39, 0.08);
    color: var(--gold-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.car-features li i {
    font-size: 10px;
}

.car-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.car-price {
    display: flex;
    flex-direction: column;
}

.car-price .amount {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.car-price .unit {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 4px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.15), transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.15rem;
    margin-bottom: 32px;
}

/* ============================================================
   FOOTER - ENHANCED
   ============================================================ */
.footer {
    background: linear-gradient(180deg, var(--dark) 0%, #0A0A15 100%);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.footer-logo-ar {
    display: block;
    font-size: 19px;
    font-weight: 800;
    color: var(--white);
}

.footer-logo-en {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
}

.footer-col p { font-size: 0.95rem; line-height: 1.9; }

.footer-col h4 {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 14px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 3px;
}

html[lang="en"] .footer-col h4::after { right: auto; left: 0; }

.footer-col ul { list-style: none; padding: 0; }

.footer-col ul li { margin-bottom: 14px; }

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--gold);
    transform: translateX(-6px);
}

html[lang="en"] .footer-col ul li a:hover { transform: translateX(6px); }

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.contact-list li i {
    color: var(--gold);
    font-size: 16px;
    width: 20px;
    margin-top: 5px;
}

.contact-list li a,
.contact-list li span {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 0.95rem;
}

.contact-list li a:hover { color: var(--gold); }

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 17px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
    border-color: transparent;
}

.footer-bottom {
    text-align: center;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
}

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

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

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    z-index: 999;
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulseWhatsapp 2s infinite;
}

@keyframes pulseWhatsapp {
    0%, 100% { box-shadow: 0 10px 35px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 10px 45px rgba(37, 211, 102, 0.7); }
}

.whatsapp-float:hover {
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 999;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.back-to-top:hover { color: var(--white); transform: translateY(-5px); }
.back-to-top.show { display: flex; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .hero h1 { font-size: 3rem; }
    .section-title { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 30px 30px;
        box-shadow: -15px 0 40px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        gap: 8px;
        overflow-y: auto;
    }
    
    html[lang="en"] .nav-menu { right: auto; left: -100%; }
    
    .nav-menu.open { right: 0; }
    html[lang="en"] .nav-menu.open { right: auto; left: 0; }
    
    .nav-menu a { padding: 14px 20px; font-size: 16px; }
    
    .btn-book { display: none; }
    .top-contact { font-size: 12px; }
    .top-contact .divider { display: none; }
    .top-contact a { margin: 0 5px; }
    
    .hero { min-height: 600px; padding: 60px 0; }
    .hero-content { margin: 0 auto; text-align: center; }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; gap: 30px; }
    .hero-stat .num { font-size: 1.8rem; }
    
    .btn-primary-custom, .btn-outline-custom { padding: 14px 30px; font-size: 15px; }
    
    .section { padding: 60px 0; }
    .section-title { font-size: 1.8rem; }
    .section-header { margin-bottom: 40px; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 35px; }
    .footer { padding: 60px 0 0; }
    
    .whatsapp-float { width: 54px; height: 54px; font-size: 26px; bottom: 20px; left: 20px; }
    .back-to-top { width: 46px; height: 46px; bottom: 20px; right: 20px; }
    
    .features-grid { gap: 20px; }
    .feature-card { padding: 32px 24px; }
    .feature-icon { width: 70px; height: 70px; font-size: 28px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .section-title { font-size: 1.5rem; }
    .container { padding: 0 16px; }
}
