/* =========================================
   RIVO CLEAN - ELITE PROFESSIONAL THEME
   Style: Modern, Trustworthy, Authority
   Colors: Navy (Dominant), Red (Accent), White
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Brand Colors - Professional Palette */
    --primary-navy: #0A3161;
    /* Deep Navy - Trust, Authority */
    --primary-blue: #1E4B8F;
    /* Brighter Navy - Interactibles */
    --accent-red: #EF3340;
    /* Flag Red - Call to Action ONLY */
    --accent-red-hover: #ff4d5a;

    /* Neutrals */
    --white: #ffffff;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-600: #475569;
    /* Body Text - Softer than black */
    --slate-800: #1e293b;
    /* Headings */
    --slate-900: #0f172a;

    /* Gradients (Subtle) */
    --gradient-navy: linear-gradient(180deg, #0A3161 0%, #062244 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));

    /* Layout */
    --container-width: 1240px;
    /* Wider container for modern look */
    --header-height: 80px;
    --section-spacing: 6rem;

    /* Shapes */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    /* Shadows (High End) */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-accent: 0 20px 40px -10px rgba(239, 51, 64, 0.3);
    /* Red Glow */

    /* Animation */
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   RESET & BASE
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--slate-600);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-navy);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    /* Tighter headings = Professional */
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.text-navy {
    color: var(--primary-navy);
}

.text-red {
    color: var(--accent-red);
}

.bg-light {
    background-color: var(--slate-50);
}

.bg-navy {
    background-color: var(--primary-navy);
    color: white;
}

.section-padding {
    padding: var(--section-spacing) 0;
}

/* =========================================
   COMPONENTS
   ========================================= */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    /* Cleaner, less round than before */
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--accent-red);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--accent-red-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-navy);
    border: 2px solid var(--slate-200);
}

.btn-secondary:hover {
    border-color: var(--primary-navy);
    background-color: var(--slate-50);
}

/* Badge / Pill */
.badge {
    display: inline-block;
    padding: 0.35rem 0.875rem;
    background-color: rgba(10, 49, 97, 0.08);
    /* Light Navy bg */
    color: var(--primary-navy);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

/* Navigation */
header {
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-200);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.04em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--slate-600);
}

.nav-links a:hover {
    color: var(--primary-navy);
}

/* Hero Section (Split Layout) */
.hero {
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 4rem;
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--slate-200);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--primary-navy);
}

.hero-feature i {
    color: var(--accent-red);
}

/* Service Cards (Professional) */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--slate-200);
    transition: var(--transition);
}

.service-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(10, 49, 97, 0.05);
    color: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .icon-circle {
    background: var(--primary-navy);
    color: white;
}

/* Feature Row (Alternating) */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 4rem;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse .feature-text {
    direction: ltr;
}

.feature-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--slate-600);
}

.feature-list i {
    color: var(--accent-red);
    margin-top: 0.25rem;
}

/* Process Steps */
.process-wrapper {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 0;
}

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-navy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.step-content {
    padding-top: 0.5rem;
}

.step-line {
    position: absolute;
    left: 24px;
    top: 50px;
    bottom: -40px;
    width: 2px;
    background: var(--slate-200);
    z-index: 1;
}

.step-item:last-child .step-line {
    display: none;
}

/* Review Carousel (Simplified Grid for now) */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--slate-200);
}

.stars {
    color: #F59E0B;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: var(--primary-navy);
    color: white;
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.footer a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Responsive */
/* Responsive */
@media (max-width: 968px) {
    :root {
        --header-height: 70px;
        --section-spacing: 4rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    /* Header & Nav */
    .nav-wrapper {
        justify-content: space-between;
        padding: 0;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        z-index: 900;
        border-bottom: 1px solid var(--slate-200);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .mobile-menu-btn {
        display: block !important;
        /* Force show on mobile */
    }

    /* Hero */
    .hero {
        padding-top: calc(var(--header-height) + 2rem);
        text-align: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        order: 1;
    }

    .hero-image-wrapper {
        order: 2;
        margin: 0 -1.5rem;
        /* Full width image on mobile */
        border-radius: 0;
        transform: none !important;
    }

    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem 2rem;
    }

    /* Trust Bar - 2 Columns on Mobile */
    .trust-grid-mobile {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    /* Make the flex container into a grid for mobile */
    [style*="justify-content: center"] {
        justify-content: center;
    }

    /* Feature Rows */
    .feature-row {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .feature-row.reverse {
        direction: ltr;
    }

    .feature-list li {
        justify-content: center;
        /* Center list items */
        text-align: left;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
}

/* Mobile Menu Button (Hidden on Desktop) */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--primary-navy);
    cursor: pointer;
    padding: 0.5rem;
}

/* Animations */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 600px;
    /* Wider for 2 cols */
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: var(--radius-sm);
    padding: 1rem;
    border: 1px solid var(--slate-200);
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    /* Grid Layout */
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.dropdown:hover .dropdown-content {
    display: grid;
    /* Grid on hover */
    animation: fadeIn 0.2s ease;
}

.dropdown-content a {
    color: var(--slate-600);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--slate-50);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: var(--slate-50);
    color: var(--primary-navy);
}

/* Mobile Dropdown */
@media (max-width: 968px) {
    .dropdown {
        width: 100%;
        text-align: center;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        transform: none;
        width: 100%;
        min-width: 0;
        /* Reset desktop min-width */
        border: none;
        background: var(--slate-50);
        display: none;
    }

    .dropdown:hover .dropdown-content {
        display: none;
        /* Disable hover on mobile */
    }

    .dropdown.active .dropdown-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        padding: 0.5rem;
    }

    .dropbtn i {
        transition: transform 0.3s;
    }

    .dropdown.active .dropbtn i {
        transform: rotate(180deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* =========================================
   UI FIXES (User Request)
   ========================================= */

/* 1. Make Contact Us button text white (Override nav link color) */
.nav-links .btn-primary {
    color: white !important;
}

/* 2. Mobile Menu Reordering */
@media (max-width: 968px) {

    /* 
       Reorder menu items so Services is at the bottom.
       Current HTML Order: 1:Home, 2:Services, 3:Reviews, 4:About, 5:Contact
       Desired Mobile Order: Home, About, Reviews, Contact ... Services
    */
    .nav-links li:nth-child(1) {
        order: 1;
    }

    /* Home */
    .nav-links li:nth-child(4) {
        order: 2;
    }

    /* About */
    .nav-links li:nth-child(3) {
        order: 3;
    }

    /* Reviews */
    .nav-links li:nth-child(5) {
        order: 4;
    }

    /* Contact Us */
    .nav-links li:nth-child(2) {
        order: 5;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--slate-200);
        width: 100%;
        text-align: center;
    }

    /* Services (Dropdown) */
}

/* =========================================
   MOBILE MENU HORIZONTAL FIX (User Request)
   ========================================= */
@media (max-width: 968px) {
    .nav-links {
        flex-direction: row !important;
        /* Force Horizontal */
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px !important;
        /* Tighten gap for mobile */
    }

    /* Ensure links fit */
    .nav-links li {
        width: auto !important;
        /* Let them sit side-by-side */
        margin: 0 !important;
    }

    /* Explicit Orders for Horizontal Layout: Home - About - Reviews - Contact */
    .nav-links li:nth-child(1) {
        order: 1;
    }

    /* Home */
    .nav-links li:nth-child(4) {
        order: 2;
    }

    /* About */
    .nav-links li:nth-child(3) {
        order: 3;
    }

    /* Reviews */
    .nav-links li:nth-child(5) {
        order: 4;
    }

    /* Contact Us */

    /* Force Services Dropdown to be full width below */
    .nav-links li:nth-child(2) {
        order: 5;
        width: 100% !important;
        margin-top: 15px !important;
        padding-top: 15px !important;
    }
}

/* =========================================
   TRUST BADGE LAYOUT FIX
   ========================================= */
.trust-badge-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.trust-badge-item {
    text-align: center;
    flex: 0 1 auto;
    /* Don't grow too much */
    width: 140px;
    /* Fixed width for alignment */
}

.trust-badge-item img {
    height: 100px;
    /* Standardize height */
    width: auto;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.trust-badge-item img:hover {
    transform: scale(1.1);
}

.trust-badge-item p {
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.3;
    margin: 0;
}

@media (max-width: 768px) {
    .trust-badge-row {
        gap: 1.5rem;
    }

    .trust-badge-item {
        width: 45%;
        /* 2 per row on mobile */
    }
}

/* =========================================
   TRUST BADGE ALIGNMENT FIX (User Request)
   ========================================= */
.trust-badge-item {
    display: flex;
    /* Turn individual item into flex container */
    flex-direction: column;
    /* Stack image on top of text */
    align-items: center;
    /* Center horizontally */
    justify-content: flex-start;
    text-align: center;
    /* Ensure text is centered */
    width: 140px;
}

.trust-badge-item img {
    margin-left: auto;
    /* Double safety for block images */
    margin-right: auto;
    display: block;
}

/* =========================================
   ADVANCED NAVIGATION BUTTONS (User Request)
   ========================================= */

/* 1. Base Style for standard Nav Links (Home, About, etc.) */
.nav-links li>a:not(.btn) {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    color: var(--primary-navy);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    /* Pillow shape */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: transparent;
    /* Start transparent */
    border: 1px solid transparent;
    /* Reserve space for border */
}

/* 2. Hover Effect for Nav Links (Glassy/Pill feel) */
.nav-links li>a:not(.btn):hover,
.nav-links li>a:not(.btn).active {
    background-color: rgba(10, 49, 97, 0.08);
    /* Light Navy tint */
    color: var(--accent-red);
    transform: translateY(-1px);
}

/* 3. The 'Contact Us' Button - High End Gradient */
.nav-links .btn-primary {
    background: linear-gradient(135deg, #EF3340 0%, #c41e2a 100%);
    box-shadow: 0 4px 15px rgba(239, 51, 64, 0.35);
    /* Glow */
    border: none;
    letter-spacing: 0.5px;
    padding: 0.75rem 1.75rem;
    /* Slightly larger */
}

.nav-links .btn-primary:hover {
    box-shadow: 0 6px 20px rgba(239, 51, 64, 0.5);
    transform: translateY(-2px) scale(1.02);
}

/* 4. Dropdown Trigger Cleanup */
.nav-links .dropdown>a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* =========================================
   COMPACT SERVICES MENU (User Request)
   ========================================= */
.dropdown-item {
    display: flex;
    align-items: center;
    /* Vertically center icon and text */
    gap: 0.75rem;
    /* Space between icon and text */
    text-align: left;
    /* Left align text */
}

/* Ensure Icon doesn't shrink */
.dropdown-item .menu-icon {
    flex-shrink: 0;
}

/* Remove margin from title for compact look */
.dropdown-item h6 {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* =========================================
   HOMEPAGE AESTHETIC OVERHAUL
   + PATRIOTIC THEME (User Request)
   ========================================= */

/* 1. Patriotic Hero Enhancement (Subtle Light Version) */
.page-hero,
.hero {
    position: relative;
    /* Soft Premium Gradient (White to very soft blue) */
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
    overflow: hidden;
}

/* The 'Flag Shadow/Transformation' Effect (Subtle Watermark) */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* Very subtle abstract flag pattern */
    background-image: repeating-linear-gradient(45deg,
            rgba(10, 49, 97, 0.02) 0px,
            rgba(10, 49, 97, 0.02) 2px,
            transparent 2px,
            transparent 10px);
    z-index: 0;
    pointer-events: none;
}

/* Ensure content sits above watermark */
.hero .container {
    position: relative;
    z-index: 2;
}

/* 2. Premium Service Cards (Glassmorphism & Lift) */
.service-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle border return for definition */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Soft deep shadow */
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy feel */
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    /* Softer corners */
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0A3161, #EF3340);
    /* Patriotic Bottom Border */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 49, 97, 0.1);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card .icon-circle {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    width: 80px;
    height: 80px;
    /* Larger */
    font-size: 2rem;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.8), 0 8px 16px rgba(0, 0, 0, 0.05);
}

/* 3. Section Divider (Curve) - Adjusted for Light Background */
.section-divider-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.section-divider-curve svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.section-divider-curve .shape-fill {
    fill: #ffffff;
    /* Matches next section background */
}

/* =========================================
   DYNAMIC OFFER BANNER (Sticky Top)
   ========================================= */
.promo-banner-sticky {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: linear-gradient(90deg, #0A3161, #EF3340);
    /* Patriotic Gradient */
    color: white;
    padding: 0.5rem 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    font-family: 'Inter', sans-serif;
}

.promo-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    padding-right: 2rem;
    /* Space for close btn */
}

.badge-pill {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.promo-offer {
    font-size: 1rem;
}

.promo-timer-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 4px 12px;
    border-radius: 8px;
}

.promo-countdown {
    display: flex;
    gap: 4px;
    font-family: monospace;
    font-weight: 700;
    font-size: 1rem;
    color: #ffd700;
    /* Gold */
}

.time-block {
    display: inline-block;
    min-width: 20px;
    text-align: center;
}

.promo-close {
    position: absolute;
    right: 0;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s;
}

.promo-close:hover {
    color: white;
}

@media (max-width: 768px) {
    .promo-content {
        gap: 0.5rem;
        flex-direction: column;
        text-align: center;
    }

    .promo-timer-wrapper {
        width: 100%;
        justify-content: center;
    }
}
/* =========================================
   SERVICE PAGE HERO FIX (High Contrast)
   ========================================= */
.page-hero h1,
.page-hero h2,
.page-hero .lead,
.page-hero p {
    color: #ffffff !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 2px 5px rgba(0,0,0,0.5);
}

/* Add a gold accent line to make it "attractive" */
.page-hero h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #F59E0B; /* Gold */
    margin: 1.5rem auto;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Ensure buttons pop */
.page-hero .btn-primary {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
}

