/* ================================================================
   style.css - Complete Styles for The Fix Squad
   ================================================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    color: #0f172a;
    overflow-x: hidden;
    transition: background 0.4s ease, color 0.4s ease;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* ─────────────── BRAND COLOURS ─────────────── */
:root {
    --brand-blue: #0B1330;
    --brand-grey: #979392;
}

/* ─────────────── DARK MODE ──────────────────────────────────────── */
body.dark-mode {
    background: #0b1120;
    color: #e2e8f0;
}

body.dark-mode .bg-white {
    background: #1e293b !important;
    color: #e2e8f0 !important;
    border-color: #334155 !important;
}

body.dark-mode .bg-gray-100,
body.dark-mode .bg-gray-50 {
    background: #172031 !important;
}

body.dark-mode .bg-gray-50\/80 {
    background: #0f172a !important;
}

body.dark-mode .text-gray-600,
body.dark-mode .text-gray-500,
body.dark-mode .text-gray-400 {
    color: #94a3b8 !important;
}

body.dark-mode .border-gray-100,
body.dark-mode .border-gray-200 {
    border-color: #334155 !important;
}

body.dark-mode .shadow-md,
body.dark-mode .shadow-xl,
body.dark-mode .shadow-lg {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
}

body.dark-mode header {
    background: #0f172a !important;
    border-bottom: 1px solid #1e293b;
}

body.dark-mode .bg-blue-600 {
    background: #1d4ed8 !important;
}

body.dark-mode footer {
    background: #070d1a !important;
}

body.dark-mode .faq-question:hover {
    background: rgba(37, 99, 235, 0.1);
}

/* ─── CUSTOM SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #0B1330, #C9A227);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #1d4ed8;
}

body.dark-mode ::-webkit-scrollbar-track {
    background: #1e293b;
}

/* ─── GLASSMORPHISM ────────────────────────────────────────────── */
.glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

body.dark-mode .glass {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(255, 255, 255, 0.06);
}

/* ─── HERO ANIMATED GRADIENT ───────────────────────────────────── */
.hero-gradient {
    background: linear-gradient(-45deg, #0B1330, #16224a, #C9A227, #0B1330);
    background-size: 400% 400%;
    animation: gradientShift 12s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-gradient::after {
    content: '';
    position: absolute;
    inset: 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='%23ffffff' 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.4;
    pointer-events: none;
}

/* floating particles */
.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    animation: floatParticle 18s infinite ease-in-out;
    pointer-events: none;
}

@keyframes floatParticle {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -40px) scale(1.2);
        opacity: 0.6;
    }
    50% {
        transform: translate(-20px, -80px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translate(40px, -30px) scale(1.1);
        opacity: 0.7;
    }
}

/* ─── REVEAL ON SCROLL ──────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* ─── SERVICE CARDS 3D TILT ────────────────────────────────────── */
.tilt-card {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.3s ease;
    transform-style: preserve-3d;
    perspective: 800px;
}

.tilt-card:hover {
    transform: translateY(-10px) rotateX(2deg) rotateY(4deg);
    box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.3);
}

body.dark-mode .tilt-card:hover {
    box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.6);
}

/* ─── PRICING CARDS ─────────────────────────────────────────────── */
.pricing-card {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-14px) scale(1.01);
}

.pricing-card.popular {
    border-color: #0B1330;
    box-shadow: 0 20px 60px -20px rgba(11, 19, 48, 0.4);
}

body.dark-mode .pricing-card.popular {
    box-shadow: 0 20px 60px -20px rgba(11, 19, 48, 0.2);
}

.pricing-card .badge-popular {
    background: linear-gradient(135deg, #0B1330, #C9A227);
}

/* ─── TESTIMONIAL SLIDER ────────────────────────────────────────── */
.testimonial-slider {
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 0 8px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #0B1330;
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(11, 19, 48, 0.4);
}

body.dark-mode .testimonial-dot {
    background: #334155;
}

body.dark-mode .testimonial-dot.active {
    background: #3b82f6;
}

/* ─── FAQ ACCORDION ─────────────────────────────────────────────── */
.faq-question {
    cursor: pointer;
    transition: background 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: rgba(11, 19, 48, 0.04);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        opacity 0.4s ease, padding 0.4s ease;
    opacity: 0;
    padding: 0 1.5rem;
}

/* ✅ UPDATED: increased max-height so all answers fit */
.faq-answer.open {
    max-height: 800px;
    opacity: 1;
    padding: 1rem 1.5rem 1.5rem;
}

.faq-icon {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-icon.open {
    transform: rotate(180deg);
}

/* ─── BACK TO TOP ────────────────────────────────────────────────── */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0B1330, #C9A227);
    color: #fff;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(11, 19, 48, 0.4);
    opacity: 0;
    transform: translateY(30px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#backToTop.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

#backToTop:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(11, 19, 48, 0.5);
}

/* ─── DARK MODE TOGGLE ──────────────────────────────────────────── */
#darkModeToggle {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#darkModeToggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.08);
}

body.dark-mode #darkModeToggle {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(255, 255, 255, 0.08);
    color: #fbbf24;
}

/* ─── MOBILE MENU ────────────────────────────────────────────────── */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(11, 19, 48, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.mobile-menu a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #fff, #979392);
    transition: width 0.3s ease;
}

.mobile-menu a:hover::after {
    width: 100%;
}

.mobile-menu .close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
}

/* ─── COUNTER ANIMATION ──────────────────────────────────────────── */
.counter-number {
    font-variant-numeric: tabular-nums;
}

/* ─── STATS SECTION ──────────────────────────────────────────────── */
.stat-card {
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
}

/* ─── NEWSLETTER ──────────────────────────────────────────────────── */
.newsletter-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    width: 100%;
    max-width: 360px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    border-color: #fff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.08);
}

body.dark-mode .newsletter-input {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(255, 255, 255, 0.06);
    color: #e2e8f0;
}

/* ─── SHOP CARDS ──────────────────────────────────────────────────── */
.shop-card {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.shop-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.25);
}

.shop-card .icon-wrap {
    background: linear-gradient(135deg, #dbeafe, #ede9fe);
    transition: all 0.4s ease;
}

body.dark-mode .shop-card .icon-wrap {
    background: linear-gradient(135deg, #1e293b, #2d1b69);
}

.shop-card:hover .icon-wrap {
    transform: scale(1.06) rotate(-4deg);
}

/* ─── GRADIENT TEXT ──────────────────────────────────────────────── */
.gradient-text {
    background: linear-gradient(135deg, #0B1330, #C9A227);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-light {
    background: linear-gradient(135deg, #F5E9C6, #D4AF37, #F5E9C6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── SOCIAL ICONS ────────────────────────────────────────────────── */
.social-icon {
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    text-decoration: none;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    transform: translateY(-3px);
}

/* ─── TOAST NOTIFICATION ──────────────────────────────────────────── */
.toast {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: #1e293b;
    color: #e2e8f0;
    padding: 1rem 1.8rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transform: translateX(120%);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 99999;
    max-width: 380px;
}

.toast.show {
    transform: translateX(0);
}

.toast .toast-icon {
    color: #4ade80;
    margin-right: 12px;
}

/* ─── EMAIL MODAL FOR PAYSTACK ──────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99998;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: #fff;
    max-width: 440px;
    width: 100%;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    animation: modalPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

body.dark-mode .modal-box {
    background: #1e293b;
    color: #e2e8f0;
}

@keyframes modalPop {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.modal-box p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

body.dark-mode .modal-box p {
    color: #94a3b8;
}

.modal-box input {
    width: 100%;
    padding: 0.85rem 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    transition: border 0.3s ease;
    background: #f8fafc;
    color: #0f172a;
}

body.dark-mode .modal-box input {
    background: #0f172a;
    border-color: #334155;
    color: #e2e8f0;
}

.modal-box input:focus {
    border-color: #0B1330;
    box-shadow: 0 0 0 4px rgba(11, 19, 48, 0.1);
}

.modal-box .modal-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.modal-box .modal-actions button {
    flex: 1;
    padding: 0.85rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-box .btn-pay {
    background: #0B1330;
    color: #fff;
}

.modal-box .btn-pay:hover {
    background: #1a2b8a;
    transform: scale(1.02);
}

.modal-box .btn-cancel {
    background: #f1f5f9;
    color: #475569;
}

.modal-box .btn-cancel:hover {
    background: #e2e8f0;
}

body.dark-mode .modal-box .btn-cancel {
    background: #334155;
    color: #cbd5e1;
}

body.dark-mode .modal-box .btn-cancel:hover {
    background: #475569;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ─── PROGRESS BAR ────────────────────────────────────────────────── */
#progressBar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #0B1330, #C9A227);
    z-index: 99999;
    width: 0%;
    transition: width 0.1s ease;
}

/* ─── FLOATING WHATSAPP ──────────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px;
        right: 16px;
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    .whatsapp-float span {
        display: none;
    }
    .whatsapp-float i {
        font-size: 1.8rem;
    }
}

/* ─── TRUST BADGES ────────────────────────────────────────────────── */
.trust-badge {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.trust-badge .badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #475569;
    font-size: 0.9rem;
}

.trust-badge .badge-item i {
    font-size: 1.8rem;
    color: #0B1330;
}

body.dark-mode .trust-badge .badge-item {
    color: #94a3b8;
}

body.dark-mode .trust-badge .badge-item i {
    color: #60a5fa;
}

/* ─── QUICK VIEW MODAL ───────────────────────────────────────────── */
.quickview-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99998;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.quickview-overlay.active {
    display: flex;
}

.quickview-box {
    background: #fff;
    max-width: 600px;
    width: 100%;
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    animation: modalPop 0.4s ease;
}

body.dark-mode .quickview-box {
    background: #1e293b;
    color: #e2e8f0;
}

.quickview-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #94a3b8;
    transition: color 0.3s;
    background: none;
    border: none;
}

.quickview-close:hover {
    color: #0f172a;
}

body.dark-mode .quickview-close:hover {
    color: #fff;
}

/* ─── EXIT-INTENT POPUP ──────────────────────────────────────────── */
.exit-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    z-index: 99999;
    transition: bottom 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
}

.exit-popup.open {
    bottom: 0;
}

body.dark-mode .exit-popup {
    background: #1e293b;
    color: #e2e8f0;
}

.exit-popup .close-exit {
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: #94a3b8;
}

.exit-popup .close-exit:hover {
    color: #0f172a;
}

body.dark-mode .exit-popup .close-exit:hover {
    color: #fff;
}

/* ─── COOKIE CONSENT ─────────────────────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0B1330;
    color: #fff;
    padding: 1rem 2rem;
    z-index: 9999;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    display: none;
}

.cookie-banner.show {
    display: flex;
}

.cookie-banner .cookie-text {
    font-size: 0.9rem;
    flex: 1;
}

.cookie-banner .cookie-text a {
    color: #979392;
    text-decoration: underline;
}

.cookie-banner .cookie-actions {
    display: flex;
    gap: 0.75rem;
}

.cookie-banner .cookie-actions button {
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-banner .btn-accept {
    background: #fff;
    color: #0B1330;
}

.cookie-banner .btn-accept:hover {
    background: #e2e8f0;
}

.cookie-banner .btn-decline {
    background: #979392;
    color: #fff;
}

.cookie-banner .btn-decline:hover {
    background: #7a7a7a;
}

/* ─── CART ICON ───────────────────────────────────────────────────── */
.cart-icon {
    position: relative;
    cursor: pointer;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #ef4444;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 9999px;
    min-width: 20px;
    text-align: center;
}

/* ─── BLOG CARDS ──────────────────────────────────────────────────── */
.blog-card {
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.2);
}

.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

/* ─── NAV ACTIVE STATE ───────────────────────────────────────────── */
.nav-link.active-link {
    color: #0B1330 !important;
    font-weight: 700 !important;
}

body.dark-mode .nav-link.active-link {
    color: #60a5fa !important;
}

.nav-link.active-link::after {
    width: 100% !important;
}

/* ─── RESPONSIVE TWEAKS ──────────────────────────────────────────── */
@media (max-width: 768px) {
    .hero-gradient h1 {
        font-size: 2.2rem;
    }
    .pricing-card.popular {
        transform: scale(1);
    }
    .pricing-card.popular:hover {
        transform: translateY(-10px) scale(1.01);
    }
    #darkModeToggle {
        top: 80px;
        right: 16px;
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    #backToTop {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

/* ─── CONTACT FORM ────────────────────────────────────────────────── */
body.dark-mode input,
body.dark-mode textarea {
    background: #1e293b !important;
    border-color: #334155 !important;
    color: #e2e8f0 !important;
}
/* ================================================================
   BRAND REFRESH — The Fix Squad (navy + gold, matched to logo)
   ================================================================ */
:root {
    --navy: #0B1330;
    --navy-light: #16224a;
    --gold: #C9A227;
    --gold-light: #E8D48C;
    --cream: #FBF7EC;
}

body {
    background: var(--cream);
}

/* ─── SITE LOGO (header + footer) ──────────────────────────────── */
.site-logo-img {
    height: 2.6rem;
    width: 2.6rem;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    margin-right: 2px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
a:hover > .site-logo-img {
    transform: rotate(-6deg) scale(1.08);
}
footer .site-logo-img {
    height: 2.2rem;
    width: 2.2rem;
}

/* ─── TAILWIND BLUE → BRAND NAVY / GOLD OVERRIDES ──────────────── */
.text-blue-600 { color: var(--navy) !important; }
.bg-blue-600 { background-color: var(--navy) !important; }
.hover\:bg-blue-700:hover { background-color: var(--navy-light) !important; }
.border-blue-500 { border-color: var(--navy) !important; }
.focus\:ring-blue-600:focus, .focus\:ring-blue-500:focus, .ring-blue-500 { --tw-ring-color: var(--gold) !important; }
.bg-yellow-400 { background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important; color: var(--navy) !important; }
.hover\:bg-yellow-300:hover { background: linear-gradient(135deg, #f1e2ab, #d9b94a) !important; }
.text-yellow-300, .text-yellow-400 { color: var(--gold-light) !important; }

/* ─── PHOTO-BASED SERVICE / PRODUCT CARDS ──────────────────────── */
.photo-card {
    overflow: hidden;
}
.photo-card .photo-wrap {
    position: relative;
    height: 220px;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1.25rem;
}
.photo-card .photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.photo-card:hover .photo-wrap img {
    transform: scale(1.09);
}
.photo-card .photo-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,19,48,0) 55%, rgba(11,19,48,0.55) 100%);
}
.photo-badge {
    position: absolute;
    bottom: -22px;
    left: 20px;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--navy);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 10px 25px -8px rgba(201,162,39,0.6);
    z-index: 2;
}
.photo-card h3, .photo-card h4 {
    margin-top: 1.5rem;
}

/* store product photo tile */
.product-photo {
    height: 200px;
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}
.product-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.shop-card:hover .product-photo img {
    transform: scale(1.08);
}

/* ─── TESTIMONIAL AVATAR PHOTOS ─────────────────────────────────── */
.avatar-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold-light);
}

/* ─── VIDEO EMBED ────────────────────────────────────────────────── */
.video-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 30px 60px -25px rgba(11,19,48,0.45);
}
.video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ─── HERO WITH BACKGROUND PHOTO ────────────────────────────────── */
.hero-photo {
    position: relative;
    background-size: cover;
    background-position: center;
    animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns {
    0% { background-size: 108%; background-position: 50% 40%; }
    100% { background-size: 120%; background-position: 50% 55%; }
}
.hero-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(11,19,48,0.94) 0%, rgba(11,19,48,0.86) 45%, rgba(11,19,48,0.65) 100%);
}

/* gold sparkle particles for hero */
.particle-gold {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,212,140,0.9) 0%, rgba(232,212,140,0) 70%);
    animation: floatParticle 16s infinite ease-in-out;
    pointer-events: none;
}

/* ─── SECTION LABEL PILL (gold) ─────────────────────────────────── */
.pill-gold {
    color: var(--navy);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    font-weight: 700;
}

/* ─── LOGO STRIP MARQUEE (trust badges) ─────────────────────────── */
.marquee-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: marquee 22s linear infinite;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── GOLD SHIMMER BUTTON ────────────────────────────────────────── */
.btn-shimmer {
    position: relative;
    overflow: hidden;
}
.btn-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
    transform: skewX(-20deg);
    animation: shimmer 3.2s ease-in-out infinite;
}
@keyframes shimmer {
    0% { left: -60%; }
    45%, 100% { left: 130%; }
}

/* ─── FADE-IN-ONLY REVEAL VARIANT (for photos) ──────────────────── */
.reveal-zoom {
    opacity: 0;
    transform: scale(0.94);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal-zoom.visible {
    opacity: 1;
    transform: scale(1);
}

/* ─── ABOUT / STORY SPLIT SECTION ───────────────────────────────── */
.story-photo {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(11,19,48,0.35);
    position: relative;
}
.story-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.story-stat-card {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: #fff;
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 20px 40px -15px rgba(11,19,48,0.35);
}
@media (max-width: 768px) {
    .story-stat-card { right: 0.5rem; bottom: -1rem; padding: 0.85rem 1rem; }
}

body.dark-mode .story-stat-card { background: #1e293b; }
