:root {
    --primary-color: #e63946; /* Emergency Red */
    --secondary-color: #fca311; /* Urgency Orange */
    --dark-color: #1d3557;
    --light-color: #f1faee;
    --text-color: #333;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001; /* Higher than menu */
    background: var(--white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: none; /* Removed border as requested */
    padding: 0.8rem 0;
    transition: var(--transition);
    line-height: 29px;
}

header.scrolled {
    padding: 0.4rem 0;
    background: rgba(255, 255, 255, 0.9);
}

.nav-container {
    max-width: 100%; /* Expand to full width */
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0.5rem 0 2rem; /* Minimal right padding to push button to the far right */
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--dark-color);
    flex: 1; /* Allow logo to take up space on the left */
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-top {
    font-size: 1.1rem; /* Same font size as logo-bottom */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark-color);
}

.logo-bottom {
    font-size: 1.1rem; /* Same font size as logo-top */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--secondary-color);
}

.logo svg {
    width: 34px;
    height: 34px;
    fill: var(--primary-color);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%); /* Perfectly center the navigation */
    justify-content: center;
    margin: 0;
    padding: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1; /* Allow actions to take up space on the right */
    justify-content: flex-end; /* Push the button to the far right */
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--dark-color);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%); /* Perfectly center the navigation on desktop */
    justify-content: center;
    margin: 0;
    padding: 0;
    z-index: 10;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 0.6rem 1rem;
    border-radius: 12px;
    transition: var(--transition);
}

.nav-menu li a:hover {
    background: rgba(230, 57, 70, 0.05);
    color: var(--primary-color);
}

.nav-menu li a.active {
    background: var(--primary-color);
    color: var(--white);
}

.emergency-btn {
    background: linear-gradient(135deg, var(--primary-color), #c1121f);
    color: var(--white);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    animation: pulse 2s infinite;
    max-width: fit-content;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(230, 57, 70, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); }
}

.emergency-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

/* Mobile View Sticky Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 0.8rem;
    z-index: 1001;
    font-weight: bold;
    text-decoration: none;
}

/* Sections Base Styling */
 section {
     padding: 6rem 2rem; /* Equal vertical and horizontal base padding */
     max-width: 1400px;
     margin: 0 auto;
     display: flex;
     flex-direction: column;
     align-items: center; /* Center horizontally */
     justify-content: center; /* Center vertically if height is specified */
     text-align: center;
     border-bottom: 1px solid rgba(0, 0, 0, 0.05); /* Subtle border mid between sections */
     position: relative;
     width: 100%;
 }

 section:last-of-type {
     border-bottom: none;
 }

.hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 75px); /* Start exactly below header and fill viewport */
    min-height: 600px; /* Ensure enough space for content on short viewports */
    padding: 0;
    display: flex;
    align-items: center; /* Vertical center */
    justify-content: center; /* Horizontal center */
    text-align: center;
    background: url('https://images.unsplash.com/photo-1558002038-1055907df827?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    margin-top: 75px; /* Offset for fixed header */
    margin-bottom: 0;
    overflow: hidden;
    border-bottom: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 3rem;
    height: auto; /* Dynamic height based on content */
    max-width: 800px; /* More compact and elegant card width */
    width: 90%;
    margin: 0; /* Centered by parent flex properties */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35); /* Slightly darker for better text contrast */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.hero-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--primary-color), #c1121f);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
    animation: pulse 2s infinite;
    max-width: 100%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.hero-btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero-btn-text {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2px;
}

.hero-btn-number {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.hero-btn i {
    font-size: 1.4rem;
}

.hero-btn:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.5);
}

/* USP Section */
.usp {
    background: var(--light-color);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 6rem 2rem !important; /* Equal top and bottom padding for consistency */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.section-header {
    margin-bottom: 4rem;
    text-align: center;
    width: 100%;
    transform: translateY(-5px); /* Precise upward adjustment for visual balance */
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem; /* Uniform internal padding between grid items */
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.usp-card {
    background: var(--white);
    padding: 3rem; /* Uniform internal padding within cards */
    border-radius: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    top: -10px; /* Positioned slightly above the borders/center for visual interest */
}

.usp-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
    border-color: var(--secondary-color);
}

.usp-icon-wrapper {
    width: 90px;
    height: 90px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.usp-card:hover .usp-icon-wrapper {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.usp-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    transition: all 0.4s ease;
}

.usp-card:hover i {
    color: var(--white);
}

.usp-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.usp-card p {
    color: #555;
    line-height: 1.7;
}

/* Service Area Section */
.area-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    width: 100%;
    max-width: 1200px;
}

.area-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    text-align: left;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: var(--dark-color);
}

.area-item i {
    color: #2a9d8f;
}

.area-map-placeholder {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
}

/* Testimonials Section */
.testimonials {
    background: var(--light-color);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    width: 100%;
    max-width: 1200px;
}

.review-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    top: -10px; /* Elevated like usp-card */
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: var(--secondary-color);
}

.review-card .stars i {
    color: var(--secondary-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stars {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.review-date {
    font-size: 0.85rem;
    color: #999;
}

.review-card p {
    font-style: italic;
    color: #444;
    line-height: 1.6;
}

.review-author {
    font-weight: 700;
    color: var(--dark-color);
}

/* Core Services Overview */
.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    width: 100%;
    max-width: 1200px;
}

.service-overview-card {
    background: #f1faee;
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%; /* Ensure all cards in a row have equal height */
}

.service-overview-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-overview-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    flex-grow: 1; /* Allow the text to grow and push the button to the bottom */
    display: flex;
    align-items: center; /* Vertically center text in the growth area */
    min-height: 80px; /* Consistent height for the description area on desktop */
}

.service-overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.service-overview-card .service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--primary-color), #c1121f);
    color: var(--white);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    margin-top: 1.5rem;
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.2);
}

.service-link:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(230, 57, 70, 0.3);
    color: var(--white);
}

.service-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(4px);
}

/* Trust Signals Section */
.trust-signals {
    background: var(--dark-color);
    color: var(--white);
    padding: 4rem 2rem !important;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    width: 100%;
    max-width: 1200px;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.trust-badge i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.trust-badge span {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Mobile Overrides for New Sections */
@media (max-width: 768px) {
    .area-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .area-list {
        display: none; /* Removed list on mobile as requested */
    }

    .area-map-placeholder {
        height: 300px; /* Slightly smaller map for better mobile fit */
        width: 100%;
    }

    .trust-grid {
        flex-direction: column;
        gap: 2.5rem;
    }
}

/* FAQ Accordion */
.accordion-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 0.5rem;
}

.accordion-header {
    width: 100%;
    padding: 1rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1rem;
}

/* Fade-in Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* Footer */
footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 1rem;
    text-align: center;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.9rem;
}

.badge i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .nav-container {
        padding: 0 0.8rem; /* Move logo further left and actions further right */
    }
    .btn-text {
        display: none;
    }
    .emergency-btn {
        padding: 0 !important;
        border-radius: 50% !important;
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important; /* Force minimum width to match toggle */
        min-height: 42px !important; /* Force minimum height to match toggle */
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
        aspect-ratio: 1 / 1 !important; /* Ensure 1:1 ratio */
        background: var(--primary-color);
        box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
        overflow: hidden;
        max-width: none !important; /* Remove any max-width constraints */
    }
    .emergency-btn i {
        font-size: 1.2rem; /* Slightly smaller icon to match reduced button size */
        margin: 0;
        padding: 0;
        line-height: 1; /* Center vertically better */
    }
    .header-actions {
        gap: 0.5rem; /* Reduced space between phone and menu */
        margin-left: auto; /* Push phone + burger to the right on mobile */
    }
    .mobile-menu-toggle {
        display: flex; /* Show burger menu */
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        min-height: 42px !important;
        aspect-ratio: 1 / 1 !important;
        border-radius: 50%;
        background: #f0f4f8; /* Light background for contrast */
        align-items: center;
        justify-content: center;
        padding: 0 !important; /* Reset padding to center burger lines */
        flex-direction: column;
        gap: 4px; /* Slightly tighter gap between burger lines */
        transition: var(--transition);
        flex-shrink: 0 !important;
        border: none !important;
        overflow: hidden;
    }
    .mobile-menu-toggle span {
        width: 20px; /* Slightly smaller width for bars */
        height: 2.5px; /* Slightly thinner bars */
        margin: 0;
        transition: all 0.3s ease;
    }
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }
    .logo-top {
        font-size: 20px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        color: var(--dark-color);
    }
    .logo-bottom {
        font-size: 1.25rem;
        font-weight: 800;
        text-transform: uppercase;
        color: var(--secondary-color);
    }
    .logo svg {
        width: 32px;
        height: 32px;
    }
    .logo {
        gap: 0.4rem;
    }
    .nav-menu {
        display: none; /* Hide desktop menu on mobile */
    }
}

@media (max-width: 768px) {
    section {
        padding: 3.5rem 1.5rem; /* Balanced equal padding for mobile */
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .section-header {
        margin-bottom: 2.5rem; /* Reduced margin for mobile */
        transform: translateY(-3px); /* Subtle adjustment for smaller screens */
    }

    .section-header h2 {
        line-height: 1.3; /* Optimized for mobile readability */
        margin-bottom: 0.75rem; /* Between 0.5-1em as requested */
    }

    .section-header p {
        line-height: 1.4;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .review-card {
        padding: 2.25rem 1.25rem; /* Slightly tighter for mobile */
        border-radius: 20px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        top: 0;
    }

    .review-card p {
        line-height: 1.35; /* Within 1.2-1.4em range */
        margin-bottom: 0.75rem; /* Within 0.5-1em range */
        font-size: 1.05rem;
    }

    .review-author {
        margin-top: 0.5rem;
        font-size: 0.95rem;
    }

    .service-overview-card p {
        min-height: auto; /* Reset desktop height for mobile */
    }

    .nav-menu {
        position: absolute;
        top: calc(100% + 10px);
        left: 50%;
        transform: translateX(-50%) translateY(-20px) scale(0.92);
        width: 340px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 0.8rem;
        border-radius: 20px;
        box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
        border: none;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        /* Reset desktop centering properties for mobile */
        justify-content: flex-start;
        margin: 0;
    }

    .nav-menu.active {
        display: flex;
        transform: translateX(-50%) translateY(0) scale(1); /* Center when active */
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        margin-bottom: 0.4rem; /* Reduced space between sections */
        width: 100%;
        border-bottom: none;
    }

    .nav-menu li a {
        display: flex;
        align-items: center;
        padding: 0.8rem 1.2rem; /* Reduced inner padding */
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--dark-color);
        border-radius: 12px;
        transition: all 0.2s ease;
        background: transparent;
        text-align: left;
    }

    .nav-menu li a:hover,
    .nav-menu li a.active {
        background: rgba(230, 57, 70, 0.08);
        color: var(--primary-color);
    }

    .usp {
        padding: 3.5rem 1.5rem !important; /* Balanced equal padding for mobile */
    }

    .usp .section-header {
        margin-bottom: 3.5rem; /* Unified internal spacing for mobile */
    }

    .usp-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
    }

    .usp-card {
        padding: 2.5rem 1.5rem;
        width: 100%;
        max-width: 400px;
        top: 0; /* Reset elevation for mobile to prioritize content clarity */
    }

    .hero {
        width: 100%;
        height: auto;
        min-height: 550px;
        padding: 4rem 0;
        background: url('https://images.unsplash.com/photo-1582139329536-e7284fece509?auto=format&fit=crop&q=80&w=800');
        background-size: cover;
        background-position: center;
        background-attachment: scroll; /* Fixed is buggy on mobile */
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 65px; /* Added offset for mobile header */
        margin-bottom: 0;
    }

    .hero::before {
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.5) 100%
        );
    }

    .hero-content {
        background: rgba(0, 0, 0, 0.45); /* Darker for better mobile readability */
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        height: auto;
        padding: 3rem 1.5rem;
        border-radius: 25px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        margin: 0 auto;
        width: calc(100% - 2rem);
        max-width: 450px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-btn {
        width: auto;
        max-width: 280px;
        justify-content: center;
        text-align: center;
        padding: 0.8rem 1.8rem;
        gap: 0.8rem;
    }

    .hero-btn i {
        font-size: 1.2rem;
    }

    .hero-btn-number {
        font-size: 0.85rem;
    }

    .hero-btn-text {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1rem;
    }
    .mobile-sticky-bar {
        display: block;
    }
    body {
        padding-bottom: 50px; /* Space for mobile bar */
    }
}
