﻿/* ===================================
   ENHANCED BUSINESS WEBSITE CSS
   Modern Design + SEO Optimized + Responsive
   =================================== */

/* Import Distinctive Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@400;600;700&display=swap');

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

:root {
    /* Force light UI (prevents auto dark-mode inversion) */
    color-scheme: light;
    /* Color System */
    --primary: #9b0d0d;
    --primary-dark: #3f1717;
    --primary-light: #c41e1e;
    --secondary: #3f1717;
    /* Keep these as true light theme tokens */
    --dark: #1a1a1a;
    --light: #f9fafb;
    --gray: #6b7280;
    --gray-light: #e5e7eb;
    --gray-dark: #374151;
    --white: #ffffff;
    --black: #1a1a1a;
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #9b0d0d 0%, #c41e1e 100%);
    --gradient-dark: linear-gradient(135deg, #3f1717 0%, #6b0404 100%);
    /* Lightened overlay so hero isn't too dark */
    --gradient-overlay: linear-gradient(135deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.12) 100%);
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.20);
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    /* Typography */
    --font-display: serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Space Grotesk', sans-serif;
}

/* IMPORTANT:
   We intentionally do NOT redefine --white/--black in prefers-color-scheme: dark.
   This keeps the site light even when a device/browser is set to dark mode. */

/* (Optional) If you still want very small tweaks for dark-mode users
   without flipping the whole site, you can keep this minimal block. */
@media (prefers-color-scheme: dark) {
    :root {
        /* keep light theme; just slightly boost contrast for readability */
        --gray: #6b7280;
        --gray-dark: #374151;
        --gray-light: #e5e7eb;
    }
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Skip to Main Content (Accessibility) */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--black);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 var(--radius-md) 0;
    font-weight: 600;
    transition: top var(--transition-base);
}

    .skip-link:focus {
        top: 0;
    }

/* ===================================
   HEADER - ENHANCED NAVIGATION
   =================================== */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

    header.scrolled {
        box-shadow: var(--shadow-md);
        background: rgba(255, 255, 255, 0.95);
    }

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem clamp(1rem, 5vw, 3rem);
}

.logo {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 900;
    color: var(--primary);
    text-decoration: none;
    z-index: 1001;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform var(--transition-base);
}

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

    /* Optional: Add logo icon */
    .logo::before {
        content: "⬥";
        font-size: 1.5em;
        display: inline-block;
        animation: rotate 20s linear infinite;
    }

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.nav-links {
    display: flex;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    list-style: none;
    align-items: center;
}

    .nav-links a {
        color: var(--gray-dark);
        text-decoration: none;
        font-weight: 600;
        font-size: clamp(0.9rem, 2vw, 1rem);
        transition: color var(--transition-base);
        position: relative;
        padding: 0.5rem 0;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width var(--transition-base);
        }

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

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

.nav-cta {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

    .nav-cta::after {
        display: none;
    }

    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
}

    .mobile-menu span {
        width: 28px;
        height: 3px;
        background: var(--dark);
        transition: all var(--transition-base);
        border-radius: 2px;
    }

    .mobile-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

/* ===================================
   HERO SECTION - ENHANCED
   =================================== */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
    padding: clamp(2rem, 5vw, 4rem);
    margin-top: 80px;
    overflow: hidden;
}

    /* Animated Background Pattern */
    #hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 20% 50%, rgba(155, 13, 13, 0.10) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(63, 23, 23, 0.10) 0%, transparent 50%);
        z-index: 0;
        animation: pulseBackground 15s ease-in-out infinite;
    }

@keyframes pulseBackground {
    0%, 100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1);
}

    .carousel-slide.active {
        opacity: 1;
        animation: kenBurns 20s ease-out infinite;
    }

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 90%;
    width: 100%;
    padding: 0 1rem;
    animation: fadeInUp 1s ease;
}

    .hero-content .hero-label {
        animation: hideAfter5s 1s ease forwards;
        animation-delay: 5s;
    }

#hero-img {
    height: 100%;
    width: 8%;
    object-fit: cover;
    border-radius: 50%;
}

#hero-tag {
    font-style: italic;
    font-family: var(--font-display);
    font-size: xx-large;
}
@media (min-width: 768px) {
    .hero-content {
        max-width: 900px;
    }
}

/* Enhanced Typography */
.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 900;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.30);
    letter-spacing: -0.02em;
}

    /* Gradient Text Effect */
    .hero-content h1 span {
        background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero-content p {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.20);
}

/* Enhanced Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: clamp(1rem, 2vw, 1.25rem) clamp(2rem, 4vw, 3rem);
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.1rem);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

    .cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        transition: left 0.6s;
    }

    .cta-button:hover::before {
        left: 100%;
    }

    .cta-button:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: var(--shadow-xl);
    }

    .cta-button:active {
        transform: translateY(-2px) scale(0.98);
    }

    .cta-button.secondary {
        background: transparent;
        border: 3px solid white;
        color: white;
        box-shadow: none;
        backdrop-filter: blur(10px);
    }

        .cta-button.secondary:hover {
            background: white;
            color: var(--primary);
        }

/* Trust Indicators */
.trust-bar {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3rem;
    align-items: center;
    z-index: 3;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    padding: 1.5rem 3rem;
    border-radius: var(--radius-xl);
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.trust-number {
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-display);
}

.trust-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Carousel Controls - Enhanced */
.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 clamp(1rem, 3vw, 3rem);
    transform: translateY(-50%);
    z-index: 3;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.30);
    color: white;
    font-size: clamp(1.5rem, 4vw, 2rem);
    padding: clamp(0.75rem, 2vw, 1.25rem) clamp(1rem, 3vw, 1.75rem);
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

    .carousel-btn:hover {
        background: rgba(255, 255, 255, 0.30);
        transform: scale(1.1);
        border-color: rgba(255, 255, 255, 0.50);
    }

.carousel-indicators {
    position: absolute;
    bottom: clamp(40px, 10vw, 100px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.indicator {
    width: 40px;
    height: 4px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.30);
    cursor: pointer;
    transition: all var(--transition-base);
}

    .indicator.active {
        background: white;
        width: 60px;
    }

    .indicator:hover {
        background: rgba(255, 255, 255, 0.60);
    }

/* Scroll Indicator - Enhanced */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: white;
    opacity: 0.8;
    cursor: pointer;
    z-index: 3;
}

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

    40% {
        transform: translateX(-50%) translateY(-15px);
    }

    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* ===================================
   SECTIONS - ENHANCED LAYOUT
   =================================== */
section {
    padding: clamp(4rem, 10vw, 7rem) clamp(1.5rem, 5vw, 3rem);
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

/* Section Headers */
h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 1rem;
    text-align: center;
    color: var(--black);
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.02em;
}

    /* Accent Line Under Headings */
    h2::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background: var(--gradient-primary);
        margin: 1.5rem auto;
        border-radius: var(--radius-full);
    }

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: clamp(3rem, 6vw, 5rem);
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Alternating Section Backgrounds - slightly lighter */
section:nth-child(even) {
    background: linear-gradient(180deg, #f8fafc 0%, var(--white) 100%);
}

/* ===================================
   SERVICES GRID - ENHANCED
   =================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    margin-top: clamp(3rem, 6vw, 5rem);
}

.service-card {
    padding: clamp(2rem, 5vw, 3rem);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-light);
}

    /* Card Hover Effect */
    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--gradient-primary);
        opacity: 0;
        transition: opacity var(--transition-base);
        z-index: 0;
    }

    .service-card:hover::before {
        opacity: 0.03;
    }

    .service-card:hover {
        transform: translateY(-12px);
        box-shadow: var(--shadow-xl);
        border-color: var(--primary-light);
    }

    .service-card > * {
        position: relative;
        z-index: 1;
    }

.service-icon {
    width: clamp(70px, 18vw, 90px);
    height: clamp(70px, 18vw, 90px);
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    margin-bottom: 1rem;
    color: var(--black);
    font-weight: 700;
}

.service-card p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-top: 2rem;
    text-align: left;
}

    .service-features li {
        padding: 1rem 0;
        color: var(--gray-dark);
        border-bottom: 1px solid var(--gray-light);
        font-size: clamp(0.95rem, 2vw, 1rem);
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

        .service-features li::before {
            content: '✓';
            color: var(--primary);
            font-weight: 900;
            font-size: 1.2em;
        }

        .service-features li:last-child {
            border-bottom: none;
        }

/* ===================================
   TESTIMONIALS - ENHANCED
   =================================== */
#testimonials {
    background: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    margin-top: clamp(3rem, 6vw, 5rem);
}

.testimonial-card {
    background: var(--white);
    padding: clamp(2rem, 5vw, 3rem);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all var(--transition-base);
    border: 1px solid var(--gray-light);
}

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

    /* Quote Icon */
    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: 1.5rem;
        left: 1.5rem;
        font-size: 5rem;
        font-family: var(--font-display);
        color: var(--primary);
        opacity: 0.1;
        line-height: 1;
    }

.stars {
    color: #FFA500;
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.25rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray-dark);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: clamp(1rem, 2vw, 1.1rem);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--gray-light);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--black);
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.1rem);
}

.testimonial-author span {
    color: var(--gray);
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.small-note {
    margin-top:20px;
}
/* ===================================
   PRICING - ENHANCED
   =================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    margin-top: clamp(3rem, 6vw, 5rem);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--white);
    padding: clamp(2.5rem, 5vw, 3.5rem) clamp(2rem, 4vw, 2.5rem);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    transition: all var(--transition-base);
    border: 2px solid var(--gray-light);
}

    .pricing-card:hover {
        transform: translateY(-12px);
        box-shadow: var(--shadow-xl);
    }

    .pricing-card.featured {
        border: 3px solid var(--primary);
        background: linear-gradient(180deg, rgba(155, 13, 13, 0.02) 0%, var(--white) 100%);
    }

@media (min-width: 768px) {
    .pricing-card.featured {
        transform: scale(1.08);
    }

        .pricing-card.featured:hover {
            transform: scale(1.1) translateY(-12px);
        }
}

.popular-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.6rem 2rem;
    border-radius: var(--radius-full);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    font-weight: 700;
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card h3 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2rem);
    margin-bottom: 1.5rem;
    color: var(--black);
    font-weight: 700;
}

.price {
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
}

.currency {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: var(--gray);
    margin-top: 1rem;
    font-weight: 600;
}

.amount {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 4rem);
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.period {
    color: var(--gray);
    align-self: flex-end;
    margin-bottom: 1rem;
    font-size: clamp(1rem, 2vw, 1.1rem);
}

.pricing-features {
    list-style: none;
    margin: 2.5rem 0;
    text-align: left;
}

    .pricing-features li {
        padding: 1rem 0;
        color: var(--gray-dark);
        border-bottom: 1px solid var(--gray-light);
        font-size: clamp(0.95rem, 2vw, 1rem);
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

        .pricing-features li::before {
            content: '✓';
            color: var(--primary);
            font-weight: 900;
            font-size: 1.2em;
            flex-shrink: 0;
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

.pricing-button {
    display: block;
    width: 100%;
    padding: clamp(1rem, 2vw, 1.25rem);
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.1rem);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
}

    .pricing-button:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

.pricing-card.featured .pricing-button {
    background: var(--black);
}

/* ===================================
   FAQ - ENHANCED
   =================================== */
#faq {
    background: var(--light);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
    transition: all var(--transition-base);
}

    .faq-item:hover {
        box-shadow: var(--shadow-md);
    }

.faq-question {
    padding: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-base);
    gap: 1rem;
}

    .faq-question:hover {
        background: var(--light);
        color: var(--primary);
    }

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 300;
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 clamp(1.25rem, 3vw, 1.75rem);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-slow);
    color: var(--gray-dark);
    line-height: 1.8;
    font-size: clamp(0.95rem, 2vw, 1rem);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 1.75rem);
}

/* ===================================
   ABOUT SECTION - ENHANCED
   =================================== */
#about {
    background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text h3 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-weight: 700;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--gray-dark);
    line-height: 1.8;
    font-size: clamp(1rem, 2vw, 1.1rem);
}

    .about-text p:last-of-type {
        margin-bottom: 2rem;
    }

.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

    .about-cta:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

.about-image {
    width: 100%;
    height: clamp(350px, 60vw, 500px);
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: clamp(4rem, 10vw, 6rem);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

    .about-image::before {
        content: '';
        position: absolute;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        animation: rotateGradient 10s linear infinite;
    }

@keyframes rotateGradient {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    position: relative;
    z-index: 1;
}

/* Stats Grid - Enhanced */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    margin-top: clamp(4rem, 8vw, 6rem);
}

.stat-card {
    text-align: center;
    padding: clamp(2rem, 4vw, 3rem);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: var(--gray-dark);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 600;
}

/* ===================================
   CONTACT FORM - ENHANCED
   =================================== */
#contact {
    background: var(--light);
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

    .contact-intro p {
        font-size: clamp(1.1rem, 2vw, 1.2rem);
        color: var(--gray-dark);
        line-height: 1.7;
    }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
    background: var(--white);
    padding: clamp(2rem, 5vw, 3rem);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--black);
    font-size: clamp(0.95rem, 2vw, 1rem);
}

input, textarea, select {
    padding: clamp(1rem, 2vw, 1.25rem);
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-md);
    font-size: clamp(1rem, 2vw, 1.05rem);
    transition: all var(--transition-base);
    font-family: var(--font-body);
    background: var(--white);
}

    input:focus, textarea:focus, select:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(155, 13, 13, 0.1);
    }

textarea {
    min-height: 180px;
    resize: vertical;
}

.submit-btn {
    padding: clamp(1.25rem, 2vw, 1.5rem) clamp(2rem, 3vw, 2.5rem);
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-size: clamp(1.05rem, 2vw, 1.15rem);
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

    .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

    .submit-btn:active {
        transform: translateY(-1px);
    }

.text-danger {
    color: #dc2626;
    font-size: clamp(0.85rem, 2vw, 0.9rem);
    margin-top: 0.5rem;
    font-weight: 500;
}

.alert {
    padding: clamp(1rem, 2vw, 1.25rem);
    border-radius: var(--radius-md);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    font-size: clamp(1rem, 2vw, 1.05rem);
    font-weight: 500;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 2px solid #6ee7b7;
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 2px solid #fca5a5;
}

/* ===================================
   FOOTER - ENHANCED
   =================================== */
footer {
    background: linear-gradient(180deg, var(--dark) 0%, var(--black) 100%);
    color: white;
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 3vw, 3rem) 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    font-weight: 700;
    font-family: var(--font-display);
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: clamp(0.95rem, 2vw, 1rem);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-light);
    margin-bottom: 1rem;
    display: block;
}

.footer-links {
    list-style: none;
}

    .footer-links li {
        margin-bottom: 1rem;
    }

    .footer-links a {
        color: #9ca3af;
        text-decoration: none;
        transition: all var(--transition-base);
        font-size: clamp(0.95rem, 2vw, 1rem);
        display: inline-block;
    }

        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }

.contact-info, .business-hours {
    list-style: none;
    color: #9ca3af;
}

    .contact-info li, .business-hours li {
        margin-bottom: 1rem;
        line-height: 1.6;
        font-size: clamp(0.95rem, 2vw, 1rem);
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
    }

        .contact-info li::before, .business-hours li::before {
            content: '•';
            color: var(--primary-light);
            font-weight: 900;
        }

/* Social Links - Enhanced */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

    .social-links a {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        transition: all var(--transition-base);
    }

        .social-links a:hover {
            background: var(--primary-light);
            transform: translateY(-3px);
        }

/* Footer Bottom */
.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

    .footer-bottom p {
        color: #9ca3af;
        font-size: clamp(0.9rem, 2vw, 1rem);
    }

.footer-legal {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

    .footer-legal a {
        color: #9ca3af;
        text-decoration: none;
        transition: color var(--transition-base);
        font-size: clamp(0.9rem, 2vw, 1rem);
    }

        .footer-legal a:hover {
            color: white;
        }

    .footer-legal span {
        color: #4b5563;
    }

/* ===================================
   UTILITY CLASSES
   =================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 3rem);
}

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

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes hideAfter5s {
    /* Start state: fully visible and expanded */
    from {
        opacity: 1;
        visibility: visible;
    }
    /* End state: hidden and collapsed */
    to {
        opacity: 0;
        visibility: hidden;
    }
}
/* Scroll Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* ===================================
   RESPONSIVE BREAKPOINTS
   =================================== */

/* Mobile First Approach */
@media (max-width: 575.98px) {
    .trust-bar {
        display: none;
    }

    .carousel-indicators {
        bottom: 50px;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 3rem 2rem;
        box-shadow: -5px 0 25px rgba(0,0,0,0.2);
        transition: right var(--transition-base);
        align-items: flex-start;
    }

        .nav-links.active {
            right: 0;
        }

    .mobile-menu {
        display: flex;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (min-width: 1400px) {
    section {
        padding: 8rem 3rem;
    }
}

/* ===================================
   ACCESSIBILITY
   =================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

*:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
    border-radius: 2px;
}

@media (prefers-contrast: high) {
    :root {
        --primary: #8b0000;
        --secondary: #2a0a0a;
    }

    .service-card, .testimonial-card, .pricing-card, .faq-item {
        border: 2px solid var(--black);
    }
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
    header, footer, .carousel-controls, .carousel-indicators,
    .mobile-menu, .cta-button, .scroll-indicator {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    section {
        page-break-inside: avoid;
    }

    a {
        text-decoration: underline;
    }
}

/* ===================================
   LOADING STATES
   =================================== */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Lazy Load Images */
img {
    opacity: 1;
    transition: opacity 0.3s;
}

    img[data-src] {
        opacity: 0;
    }

    img.loaded {
        opacity: 1;
    }
