/* =================================================
   CAR WASHIFY — Professional Website Styles
   Theme: Blue & White | Professional Automotive
   ================================================= */

:root {
    --primary:       #1A73E8;
    --primary-dark:  #0D47A1;
    --primary-mid:   #1565C0;
    --primary-light: #EBF5FB;
    --gold:          #FFC107;
    --gold-dark:     #F9A825;
    --text:          #1A1A2E;
    --text-mid:      #444;
    --text-light:    #6B7280;
    --text-muted:    #9CA3AF;
    --bg:            #FFFFFF;
    --bg-gray:       #F7F9FC;
    --border:        #E5E7EB;
    --radius:        14px;
    --radius-lg:     22px;
    --radius-xl:     32px;
    --shadow-sm:     0 2px 12px rgba(26, 115, 232, 0.08);
    --shadow:        0 6px 24px rgba(26, 115, 232, 0.12);
    --shadow-lg:     0 12px 48px rgba(26, 115, 232, 0.18);
    --transition:    0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; }

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

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: padding var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.navbar.scrolled {
    padding: 12px 0;
    border-bottom-color: var(--border);
    box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}
.logo-img-footer {
    height: 60px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-links li { display: flex; }
.nav-links a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-mid);
    padding: 8px 14px;
    border-radius: 8px;
    transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--primary); background: var(--primary-light); }
.nav-links .nav-cta { padding: 10px 20px; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 4px;
    transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    line-height: 1.4;
}
.btn-lg  { padding: 14px 32px; font-size: 16px; }
.btn-xl  { padding: 16px 40px; font-size: 17px; }

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26,115,232,0.35);
}

.btn-gold {
    background: var(--gold);
    color: #1a1a1a;
    border-color: var(--gold);
    font-weight: 700;
}
.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255,193,7,0.4);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.55);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-outline-blue {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline-blue:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-white-solid {
    background: #fff;
    color: var(--primary-dark);
    border-color: #fff;
    font-weight: 700;
}
.btn-white-solid:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.3);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(145deg, #0A2472 0%, #0D47A1 35%, #1A73E8 65%, #1565C0 100%);
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg-circles { position: absolute; inset: 0; pointer-events: none; }
.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    background: #fff;
}
.circle-1 { width: 800px; height: 800px; top: -300px; right: -200px; }
.circle-2 { width: 500px; height: 500px; bottom: 0px; left: -150px; }
.circle-3 { width: 300px; height: 300px; top: 30%; right: 15%; opacity: 0.04; }

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 60px 20px 130px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 28px;
    backdrop-filter: blur(6px);
    letter-spacing: 0.3px;
}
.badge-dot {
    width: 8px; height: 8px;
    background: #4ADE80;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(74,222,128,0.3);
    animation: dot-pulse 2s infinite;
}
@keyframes dot-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(74,222,128,0.3); }
    50% { box-shadow: 0 0 0 6px rgba(74,222,128,0.1); }
}

.hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.18;
    margin-bottom: 22px;
    letter-spacing: -1.5px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.text-gold { color: var(--gold); }

.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 580px;
    margin: 0 auto 38px;
    opacity: 0.88;
    line-height: 1.75;
    font-weight: 400;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 13px;
    opacity: 0.8;
}
.trust-item { display: flex; align-items: center; gap: 6px; }
.trust-item i { font-size: 13px; color: var(--gold); }
.trust-sep { opacity: 0.4; font-size: 18px; }

.hero-wave {
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    line-height: 0;
}
.hero-wave svg { width: 100%; height: 90px; }

/* ===== STATS ===== */
.stats-section { padding: 0 0 60px; }
.stats-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-top: -44px;
    position: relative;
    z-index: 10;
    overflow: hidden;
}
.stat-item {
    padding: 32px 16px;
    text-align: center;
}
.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--border);
}
.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.1;
    letter-spacing: -1px;
}
.stat-label {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 5px;
    font-weight: 500;
}

/* ===== SECTION BASE ===== */
.section { padding: 96px 0; }
.section-gray { background: var(--bg-gray); }

.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.section-header h2 {
    font-size: clamp(1.9rem, 3.8vw, 2.8rem);
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    color: var(--text);
}
.section-header p {
    color: var(--text-light);
    max-width: 520px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
}

/* ===== SERVICES & PRICING ===== */
.pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

/* Force last row (cards 4 & 5) to center when only 2 cards remain */
.pkg-grid .pkg-card:nth-child(4) { grid-column: 1 / 2; }
.pkg-grid .pkg-card:nth-child(5) { grid-column: 2 / 3; }

.pkg-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.pkg-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.pkg-card.pkg-featured {
    background: linear-gradient(145deg, #1A73E8, #0D47A1);
    border-color: transparent;
    color: #fff;
    box-shadow: var(--shadow-lg);
}
.pkg-featured:hover { transform: translateY(-6px); }
.pkg-featured h3,
.pkg-featured .pkg-meta,
.pkg-featured .pkg-tagline { color: rgba(255,255,255,0.92); }
.pkg-featured .pkg-features li { color: rgba(255,255,255,0.9); }
.pkg-featured .pkg-features li i { color: var(--gold); }

.popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #1a1a1a;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 50px;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.pkg-top {
    display: flex;
    align-items: center;
    gap: 14px;
}
.pkg-icon-wrap {
    width: 54px; height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.blue-light { background: var(--primary-light); color: var(--primary); }
.white-glass { background: rgba(255,255,255,0.2); color: #fff; }

.pkg-top h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
    line-height: 1.3;
}
.pkg-meta {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}
.pkg-meta i { font-size: 11px; }

.pkg-tagline {
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.5;
    margin: 0;
}

.pkg-features {
    list-style: none;
    flex: 1;
}
.pkg-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--text-mid);
    margin-bottom: 8px;
    line-height: 1.5;
}
.pkg-features li i {
    color: var(--primary);
    font-size: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ---- Pricing Table ---- */
.price-table {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    font-size: 13px;
}
.price-table-dark {
    border-color: rgba(255,255,255,0.25);
}

.pt-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 12px;
    border-bottom: 1px solid var(--border);
}
.pt-row:last-child { border-bottom: none; }
.pt-row.pt-head {
    background: var(--primary-light);
    font-weight: 700;
    font-size: 12px;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.pt-row span:last-child {
    font-weight: 700;
    color: var(--primary-dark);
}

.price-table-dark .pt-row {
    border-bottom-color: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.88);
}
.price-table-dark .pt-head {
    background: rgba(0,0,0,0.2);
    color: rgba(255,255,255,0.7);
}
.price-table-dark .pt-row span:last-child { color: var(--gold); }

/* ---- Add-On Services ---- */
.addons-wrap {
    background: var(--bg-gray);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px 40px;
}
.addons-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}
.addon-title-icon {
    width: 52px; height: 52px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.addons-header h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}
.addons-header p {
    font-size: 14px;
    color: var(--text-light);
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.addon-item {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-mid);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.addon-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}
.addon-item span:first-child {
    display: flex;
    align-items: center;
    gap: 8px;
}
.addon-item i { color: var(--primary); font-size: 13px; }
.addon-price {
    font-weight: 700;
    color: var(--primary-dark);
    white-space: nowrap;
}

/* ---- Hours badge ---- */
.hours-badge {
    display: inline-block;
    background: #E8FBF0;
    color: #16A34A;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 50px;
    margin-top: 4px;
}

/* ===== HOW IT WORKS ===== */
.steps-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.step {
    flex: 1;
    max-width: 320px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.step-number {
    font-size: 52px;
    font-weight: 900;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 16px;
    font-style: italic;
    letter-spacing: -2px;
}
.step-icon-wrap {
    width: 76px; height: 76px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    margin: 0 auto 22px;
    box-shadow: 0 10px 28px rgba(26,115,232,0.3);
}
.step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}
.step p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.75;
}

.step-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}
.connector-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    border-radius: 2px;
}
.connector-arrow {
    color: var(--primary);
    font-size: 18px;
    opacity: 0.5;
}

/* ===== WHY CHOOSE US ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.feature-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}
.feature-icon {
    width: 56px; height: 56px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 18px;
}
.feature-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}
.feature-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 48px;
}

.testimonial-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.testimonial-stars {
    color: var(--gold);
    font-size: 20px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}
.testimonial-card p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}
.reviewer-avatar {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.reviewer-info strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}
.reviewer-info span {
    font-size: 12px;
    color: var(--text-muted);
}

.reviews-cta {
    display: flex;
    justify-content: center;
}
.overall-rating {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1.5px solid var(--border);
    padding: 20px 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.big-rating {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -2px;
}
.rating-stars { color: var(--gold); font-size: 22px; letter-spacing: 2px; }
.rating-count { font-size: 13px; color: var(--text-light); margin-top: 2px; }

/* ===== CTA BANNER ===== */
.cta-banner {
    position: relative;
    background: linear-gradient(145deg, #0A2472, #0D47A1, #1A73E8);
    padding: 90px 0;
    text-align: center;
    color: #fff;
    overflow: hidden;
}
.cta-bg-shape {
    position: absolute;
    top: -50%; left: -10%;
    width: 600px; height: 600px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    pointer-events: none;
}
.cta-content { position: relative; z-index: 2; }
.cta-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.8;
    color: var(--gold);
}
.cta-content h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.cta-content p {
    font-size: 18px;
    opacity: 0.88;
    margin-bottom: 38px;
    line-height: 1.6;
}
.cta-number {
    margin-top: 20px;
    font-size: 17px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.cta-number a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}
.cta-number a:hover { text-decoration: underline; }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
    align-items: flex-start;
}
.contact-icon-wrap {
    width: 50px; height: 50px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.whatsapp-icon { background: #E8FBF0; color: #25D366; }

.contact-text h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
}
.contact-text p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}
.contact-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}
.contact-text a:hover { text-decoration: underline; }

.contact-social h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}
.social-row { display: flex; gap: 10px; }
.social-btn {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    color: #fff;
    transition: transform var(--transition), box-shadow var(--transition);
}
.social-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.social-wa  { background: #25D366; }
.social-ig  { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-fb  { background: #1877F2; }

/* .contact-map removed */
.contact-map-removed {
    display: none;
}

/* ===== FOOTER ===== */
.footer {
    background: #0A1628;
    color: #A0AEC0;
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.6fr;
    gap: 40px;
    padding-bottom: 56px;
}

.footer-brand .logo-text-white {
    font-size: 21px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #fff;
}
.footer-brand p {
    font-size: 14px;
    line-height: 1.75;
    margin-top: 16px;
    max-width: 280px;
    color: #718096;
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.footer-social a {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: #1E2D4A;
    color: #A0AEC0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}
.footer-social a:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

.footer-col h5 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    color: #718096;
    font-size: 14px;
    text-decoration: none;
    transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--primary); }

.footer-book h5 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 18px; }
.footer-btn { width: 100%; justify-content: center; margin-bottom: 14px; }
.footer-phone, .footer-addr {
    font-size: 13px;
    color: #718096;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 8px;
    line-height: 1.6;
}
.footer-phone i, .footer-addr i { color: var(--primary); margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
    border-top: 1px solid #1E2D4A;
    padding: 20px 0;
}
.footer-bottom p {
    text-align: center;
    font-size: 13px;
    color: #4A5568;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 998;
    width: 62px; height: 62px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
    animation: wa-pulse 2.5s infinite;
    transition: transform 0.3s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

@keyframes wa-pulse {
    0%   { box-shadow: 0 0 0 0   rgba(37,211,102,0.5); }
    70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0   rgba(37,211,102,0); }
}

.wa-tooltip {
    position: absolute;
    right: 72px;
    background: #1A1A2E;
    color: #fff;
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s;
    pointer-events: none;
}
.wa-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right: none;
    border-left-color: #1A1A2E;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .pkg-grid { grid-template-columns: repeat(2, 1fr); }
    .pkg-grid .pkg-card:nth-child(4),
    .pkg-grid .pkg-card:nth-child(5) { grid-column: auto; }
    .addons-grid { grid-template-columns: repeat(2, 1fr); }
    .addons-wrap { padding: 28px 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-divider { display: none; }
    .stat-item { border-bottom: 1px solid var(--border); }
    .stat-item:nth-child(3),
    .stat-item:nth-child(4) { border-bottom: none; }

    .steps-wrapper { flex-direction: column; align-items: stretch; }
    .step { max-width: 100%; }
    .step-connector {
        flex-direction: row;
        justify-content: center;
        transform: rotate(90deg);
    }

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

@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-links {
        position: fixed;
        top: 68px; left: 0; right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: stretch;
        padding: 16px 20px 24px;
        gap: 4px;
        box-shadow: 0 12px 40px rgba(0,0,0,0.1);
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.35s ease, opacity 0.35s ease;
        border-bottom: 1px solid var(--border);
    }
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: 12px 16px; border-radius: 10px; }
    .nav-links .nav-cta { width: 100%; justify-content: center; margin-top: 8px; }

    .section { padding: 72px 0; }
    .pkg-grid { grid-template-columns: 1fr; }
    .addons-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; align-items: center; }
    .hero h1 { letter-spacing: -0.5px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
    .contact-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .overall-rating { padding: 18px 24px; }
    .big-rating { font-size: 2.4rem; }
    .hero-trust { flex-direction: column; gap: 8px; }
    .trust-sep { display: none; }
    .cta-content h2 { font-size: 1.7rem; }
    .cta-content p { font-size: 15px; }
}
