/* ============================================================
   OYS DATA GHANA — STYLESHEET
   Designed by Crisol Studios
   ============================================================ */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
    --bg: #f9fafc;
    --surface: #ffffff;
    --surface-alt: #f3f4f8;
    --border: #e5e7eb;
    --text: #111827;
    --text-muted: #6b7280;
    --accent: #e11d48;
    --accent-dark: #be123c;
    --accent-soft: #ffe4e6;
    --success: #059669;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    --navy: #0b1e3a;
    --navy-mid: #1a3a6b;
    --gold: #fbbf24;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.3);
    --radius: 16px;
    --radius-sm: 12px;
    --transition: 0.2s ease;
}

/* ---------- 2. RESET & BASE ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---------- 3. VERTICAL SOCIAL SIDEBAR ---------- */
.social-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 90;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border-radius: 0 14px 14px 0;
    box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0.45rem;
    gap: 0.35rem;
    border: 1px solid var(--border);
    border-left: none;
}

.social-sidebar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 40px;
    background: var(--accent);
    border-radius: 0 4px 4px 0;
}

.social-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--text-muted);
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    background: var(--accent-soft);
    color: var(--accent);
    transform: scale(1.08);
}

/* ---------- 4. HEADER ---------- */
.header {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    transition: height 0.3s ease;
}

.header.scrolled .header-inner {
    height: 62px;
}

.logo {
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -0.03em;
    color: var(--text);
}

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

.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition);
}

.header-nav a:hover,
.header-nav a.active {
    color: var(--text);
}

.btn-wa {
    background: var(--whatsapp);
    color: #fff !important;
    padding: 0.55rem 1.25rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background var(--transition);
}

.btn-wa:hover {
    background: var(--whatsapp-dark);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text);
    line-height: 1;
}

/* ---------- 5. HORIZONTAL SCROLLING MARQUEE ---------- */
.scroll-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: #fff;
    overflow: hidden;
    padding: 0.65rem 0;
    border-bottom: 3px solid var(--accent);
    white-space: nowrap;
    box-shadow: inset 0 -2px 8px rgba(0, 0, 0, 0.15);
}

.scroll-track {
    display: inline-flex;
    animation: scrollHorizontal 30s linear infinite;
    will-change: transform;
}

.scroll-track span {
    display: inline-flex;
    align-items: center;
    padding: 0 2rem;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.scroll-track span i {
    font-style: normal;
    color: var(--gold);
    margin-right: 0.5rem;
}

.scroll-track .highlight {
    background: var(--gold);
    color: var(--navy);
    padding: 0.1rem 0.7rem;
    border-radius: 20px;
    font-size: 0.7rem;
    margin-left: 0.5rem;
}

@keyframes scrollHorizontal {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---------- 6. HERO SLIDER ---------- */
.hero-slider {
    /* ---------- 6. HERO SLIDER (full image, fade only) ---------- */
.hero-slider {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--navy);
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: contain;       /* FULL image — no cropping */
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--navy);  /* fills letterbox bars */
    opacity: 0;
    transition: opacity 1.2s ease-in-out;  /* fade only, no zoom */
}

.hero-slide.active {
    opacity: 1;
}

/* Dark overlay for text readability (softer now that the image shows fully) */
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(11, 30, 58, 0.75) 0%,
        rgba(11, 30, 58, 0.5) 40%,
        rgba(11, 30, 58, 0.35) 100%
    );
}
}

.hero-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
    color: #fff;
}

.hero-content-inner {
    max-width: 720px;
}

.hero-badge {
    display: inline-block;
    background: rgba(225, 29, 72, 0.9);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.hero-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 540px;
    margin-bottom: 2rem;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
    padding: 0.9rem 2rem;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: background var(--transition), transform var(--transition), border-color var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border: none;
    box-shadow: 0 8px 24px rgba(225, 29, 72, 0.35);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.hero-dots {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.7rem;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: 2px solid transparent;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), border-color var(--transition);
}

.hero-dot.active {
    background: var(--gold);
    transform: scale(1.25);
    border-color: rgba(255, 255, 255, 0.6);
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* ---------- 7. STATS BAR ---------- */
.hero-stats-bar {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 1.8rem 0;
}

.hero-stats-inner {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    text-align: center;
}

.hero-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ---------- 8. SECTION HEADERS ---------- */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header .eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.5rem;
    display: block;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0.5rem auto 0;
    font-size: 1rem;
}

/* ---------- 9. PACKAGES ---------- */
.packages {
    padding: 4rem 0;
    background: var(--bg);
}

.network-tabs {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.network-tab {
    background: var(--surface);
    border: 1.5px solid var(--border);
    padding: 0.6rem 1.8rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.network-tab .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.network-tab.active {
    background: var(--text);
    color: #fff;
    border-color: var(--text);
}

.network-tab:hover:not(.active) {
    border-color: var(--accent);
    color: var(--text);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.2rem;
}

.package-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.5rem 1.2rem;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    cursor: pointer;
    position: relative;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.package-card .size {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
    line-height: 1.2;
}

.package-card .price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent);
    margin: 0.4rem 0 0.2rem;
}

.package-card .order-btn {
    margin-top: 1rem;
    background: var(--accent-soft);
    color: var(--accent-dark);
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
    width: 100%;
}

.package-card .order-btn:hover {
    background: var(--accent);
    color: #fff;
}

.package-card .badge {
    position: absolute;
    top: -8px;
    right: 12px;
    background: var(--accent);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.15rem 0.6rem;
    border-radius: 20px;
    letter-spacing: 0.04em;
}

/* ---------- 10. HOW IT WORKS ---------- */
.how {
    padding: 4rem 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.step-card {
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

.step-card:hover {
    box-shadow: var(--shadow-sm);
}

.step-number {
    width: 44px;
    height: 44px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 auto 1rem;
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ---------- 11. TRUST / FEATURES ---------- */
.trust {
    padding: 4rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.trust-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.8rem 1.2rem;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.trust-item .icon {
    font-size: 2rem;
    margin-bottom: 0.6rem;
}

.trust-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.trust-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ---------- 12. REVIEWS SECTION ---------- */
.reviews {
    position: relative;
    padding: 5rem 0;
    background-image: url('images/bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.reviews::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(11, 30, 58, 0.92) 0%,
        rgba(11, 30, 58, 0.85) 40%,
        rgba(11, 30, 58, 0.78) 100%
    );
    z-index: 1;
}

.reviews .container {
    position: relative;
    z-index: 2;
}

.reviews .section-header .eyebrow { color: var(--gold); }
.reviews .section-header h2 { color: #ffffff; }
.reviews .section-header p { color: rgba(255, 255, 255, 0.75); }

/* Review Form */
.review-form-wrap {
    max-width: 700px;
    margin: 0 auto 3rem;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.review-form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.review-form-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.3rem;
    color: var(--text);
}

.review-form-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.review-form-group {
    margin-bottom: 1.2rem;
}

.review-form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.review-form-group input,
.review-form-group textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 0.92rem;
    font-family: inherit;
    background: var(--surface);
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.review-form-group input:focus,
.review-form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

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

/* Star Rating */
.star-rating {
    display: flex;
    gap: 0.2rem;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

.star-rating .star {
    color: #d1d5db;
    transition: color var(--transition), transform var(--transition);
    user-select: none;
}

.star-rating .star:hover {
    transform: scale(1.15);
}

.star-rating .star.active {
    color: var(--gold);
}

/* Submit Button */
.review-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), opacity var(--transition);
    box-shadow: 0 6px 18px rgba(225, 29, 72, 0.25);
    width: 100%;
    justify-content: center;
}

.review-submit:hover:not(:disabled) {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.review-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Status Messages */
.review-status {
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    display: none;
    text-align: center;
}

.review-status.success {
    display: block;
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.review-status.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 0.9rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
    letter-spacing: -0.02em;
}

.review-author {
    flex: 1;
    min-width: 0;
}

.review-author strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
}

.review-author span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.review-stars {
    color: var(--gold);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.7rem;
}

.review-text {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.55;
    margin: 0;
    flex: 1;
}

.review-date {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 0.9rem;
    padding-top: 0.9rem;
    border-top: 1px solid var(--border);
}

.reviews-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.reviews-empty .empty-icon {
    font-size: 3rem;
    margin-bottom: 0.8rem;
    display: block;
}

/* ---------- 13. OTHER SITES ---------- */
.other-sites {
    padding: 4rem 0;
    background: var(--surface-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.site-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.site-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.site-card .site-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.site-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.site-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.site-card .site-link {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    border-bottom: 1.5px solid var(--accent);
    padding-bottom: 2px;
    transition: color var(--transition), border-color var(--transition);
}

.site-card .site-link:hover {
    color: var(--accent-dark);
    border-color: var(--accent-dark);
}

/* ---------- 14. CTA BANNER ---------- */
.cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: #fff;
    padding: 3.5rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    margin: 2rem 0 4rem;
    box-shadow: var(--shadow-md);
}

.cta-banner h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.8rem;
    font-size: 1.05rem;
}

.btn-wa-large {
    background: var(--whatsapp);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    transition: background var(--transition), transform var(--transition);
    border: none;
    cursor: pointer;
}

.btn-wa-large:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
}

/* ---------- 15. FOOTER ---------- */
.footer {
    background: var(--text);
    color: #9ca3af;
    padding: 3rem 0 2rem;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer a {
    color: #9ca3af;
    transition: color var(--transition);
}

.footer a:hover {
    color: #fff;
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 0.6rem;
}

.footer .wa-number {
    color: var(--whatsapp);
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: #6b7280;
}

.footer-bottom .crisol {
    color: var(--gold);
    font-weight: 700;
}

/* ---------- 16. FLOATING WHATSAPP ---------- */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 100;
    background: var(--whatsapp);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: transform var(--transition), background var(--transition);
}

.wa-float:hover {
    transform: scale(1.08);
    background: var(--whatsapp-dark);
}

.wa-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

/* ---------- 17. SCROLL REVEAL ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-stagger.in-view > * {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.40s; }

/* ---------- 18. RESPONSIVE ---------- */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 2.8rem; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .sites-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--surface);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.2rem;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
    }

    .header-nav.open { display: flex; }
    .mobile-toggle { display: block; }

    .steps-grid { grid-template-columns: 1fr; }
    .package-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-slider { height: 70vh; min-height: 500px; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p { font-size: 1rem; }
    .hero-stats-inner { gap: 2rem; }
    .cta-banner h2 { font-size: 1.6rem; }
    .scroll-track span { font-size: 0.7rem; padding: 0 1rem; }
    .sites-grid { grid-template-columns: 1fr 1fr; }

    .reviews {
        background-attachment: scroll;
        padding: 3rem 0;
    }

    .social-sidebar {
        top: auto;
        bottom: 90px;
        left: 12px;
        transform: none;
        flex-direction: row;
        border-radius: 14px;
        border-left: 1px solid var(--border);
        padding: 0.4rem 0.5rem;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }

    .social-sidebar::before { display: none; }
    .social-link { width: 34px; height: 34px; }
    .social-link svg { width: 16px; height: 16px; }
}

@media (max-width: 600px) {
    .review-form-row { grid-template-columns: 1fr; }
    .review-form-wrap { padding: 1.5rem; }
    .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .package-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
    .package-card { padding: 1rem 0.8rem; }
    .package-card .size { font-size: 1.4rem; }
    .package-card .price { font-size: 1.1rem; }
    .trust-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
    .trust-item { padding: 1.2rem 0.8rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 1.8rem; }
    .hero-content { padding: 0 1.2rem; }
    .scroll-track span { font-size: 0.65rem; padding: 0 0.8rem; }
    .hero-stats-inner { gap: 1.5rem; }
    .hero-stat-number { font-size: 1.4rem; }
    .sites-grid { grid-template-columns: 1fr; }
}

/* ---------- 19. REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
    .scroll-track,
    .hero-slide,
    .reveal,
    .reveal-stagger > * {
        animation: none !important;
        transition: none !important;
    }
    .reveal,
    .reveal-stagger > * {
        opacity: 1;
        transform: none;
    }
}