/* ========== HEADER CSS (Logo bigger, nav center, call button) ========== */
:root {
    --red: #E21D2F;
    --dark: #111111;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --border-gray: #E0E0E0;
}

.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    font-family: 'Poppins', 'Inter', sans-serif;
    transition: transform 0.3s ease-in-out;
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Logo area */
.logo-area .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.8rem;
}

/* Logo bigger */
.logo-img {
    height: 150px;  /* Maximized for better visibility */
    width: auto;
}

.mobile-site-name {
    display: none;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--dark);
}

/* Navigation - center aligned on desktop */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 1.8rem;
    margin: 0;
    padding: 0;
}

.nav-list li {
    position: relative;
}

.nav-list a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
    font-family: 'Poppins', 'Inter', sans-serif;
    padding: 0.5rem 0;
    transition: 0.3s;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--red);
}

.nav-list a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--red);
}

/* Desktop Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 240px;
    list-style: none;
    padding: 0.5rem 0;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid var(--border-gray);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    white-space: nowrap;
    color: var(--dark);
}

.dropdown-menu a:hover {
    background: var(--red);
    color: var(--white);
}

/* Call Now button (desktop) */
.header-cta {
    display: block;
}

.btn-call {
    background: var(--red);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1rem;
    transition: 0.3s;
    white-space: nowrap;
    display: inline-block;
    border: none;
}

.btn-call:hover {
    background: #b81828;
    transform: scale(1.02);
}

/* Hamburger (hidden on desktop) */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--dark);
    margin: 5px 0;
    transition: 0.3s;
}

/* ========== MOBILE (max-width 991px) ========== */
@media (max-width: 991px) {
    .header-container {
        padding: 0.8rem 1rem;
    }

    .logo-img {
        height: 110px; /* mobile par bada */
    }

    .mobile-site-name {
        display: inline-block;
    }

    .hamburger {
        display: block;
    }

    .main-nav {
        display: none;
        width: 100%;
        margin-top: 1rem;
        justify-content: flex-start;
    }

    .main-nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list a {
        display: block;
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--border-gray);
    }

    /* Mobile dropdown */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: var(--light-gray);
        box-shadow: none;
        padding-left: 1rem;
        margin-top: 0;
        border: none;
    }

    .dropdown-menu.show {
        display: block;
    }

    .dropdown-menu a {
        padding: 0.6rem 0 0.6rem 1rem;
        white-space: normal;
    }

    /* Hide Call button on mobile (optional) – you can also keep it */
    .header-cta {
        display: none;
    }

    /* Hamburger animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        background: var(--red);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
        background: var(--red);
    }
}

/* Desktop: hide mobile site name */
@media (min-width: 992px) {
    .mobile-site-name {
        display: none;
    }
}

/* ========== HOMEPAGE SPECIFIC STYLES ========== */
/* ========== GLOBAL FIXES (Mobile scroll) ========== */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    font-family: 'Poppins', 'Inter', sans-serif;
}

/* ========== HERO SECTION – FIXED FOR MOBILE ========== */
.hero-modern {
    position: relative;
    min-height: 90vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
}

/* Overlay - desktop: left dark to transparent */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.6) 40%,
        rgba(0, 0, 0, 0.2) 70%,
        rgba(0, 0, 0, 0) 100%
    );
    z-index: 1;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 2rem 2rem 2rem 4rem;
    color: white;
    animation: fadeInUp 0.9s ease-out;
}

/* Badge */
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    padding: 0.4rem 1rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    pointer-events: none;
}

/* Heading */
.hero-content h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}
.highlight {
    color: #E21D2F;
}

/* Paragraph */
.hero-content p {
    font-size: clamp(0.95rem, 1.2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 550px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}
.btn-primary { /* ... same as before */ }
.btn-outline { /* ... same as before */ }

/* Animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(35px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== MOBILE (≤991px) – Overlay kam kiya ========== */
@media (max-width: 991px) {
    .hero-modern {
        min-height: 85vh;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    /* ✅ Overlay light kiya: semi-transparent black, not full dark */
    .hero-overlay {
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.4) 100%
        );
    }

    .hero-content {
        padding: 2rem 1.5rem;
        max-width: 95%;
        text-align: center;
        margin: 0 auto;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn-primary, .btn-outline {
        padding: 0.7rem 1.3rem;
        font-size: 0.9rem;
    }
}

/* Extra small (≤480px) – aur light overlay */
@media (max-width: 480px) {
    .hero-overlay {
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.3) 100%
        );
    }
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }
    .btn-primary, .btn-outline {
        text-align: center;
    }
}

/* ========== GUARANTEES / TRUST SECTION – 4 CARDS (IMAGE + HEADING ONLY) ========== */
.guarantees {
    background: #F5F5F5;
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #111;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #E21D2F;
    border-radius: 2px;
}

.section-subtitle {
    color: #6B6B6B;
    font-size: 1rem;
    line-height: 1.6;
}

/* Grid: 4 columns desktop */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
}

/* Card styling – elegant, modern */
.trust-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    text-align: center;
    padding: 1.8rem 1.2rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.05);
}

.trust-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 35px -12px rgba(0, 0, 0, 0.15);
    border-color: #E21D2F;
}

/* Image wrapper */
.card-image {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: #FAFAFA;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.trust-card:hover .card-image img {
    transform: scale(1.12);
}

/* Heading styling – next level */
.trust-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111;
    margin: 0;
    position: relative;
    display: inline-block;
    padding-bottom: 0.3rem;
    transition: color 0.3s;
}

.trust-card:hover h3 {
    color: #E21D2F;
}

/* Optional: underline animation on hover */
.trust-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #E21D2F;
    transition: width 0.3s ease;
}

.trust-card:hover h3::after {
    width: 80%;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .guarantees {
        padding: 3rem 0;
    }
    .trust-card {
        padding: 1.2rem;
    }
    .card-image {
        height: 200px;
    }
    .trust-card h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .trust-grid {
        gap: 1rem;
    }
    .card-image {
        height: 160px;
    }
    .trust-card h3 {
        font-size: 1rem;
    }
}

/* For very small (≥370px) – keep 2 columns, fine-tune */
@media (max-width: 370px) {
    .trust-grid {
        gap: 0.8rem;
    }
    .card-image {
        height: 140px;
    }
    .trust-card h3 {
        font-size: 0.9rem;
    }
}

/* ========== SERVICES SECTION – MODERN CARD GRID ========== */
.services-modern {
    background: white;
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #111;
}
.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #E21D2F;
    margin: 0.5rem auto 0;
}
.section-subtitle {
    color: #6B6B6B;
    max-width: 700px;
    margin: 1rem auto 0;
}

/* Grid: 4 columns desktop */
.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.8rem;
    margin: 2rem auto;
    max-width: 1300px;
}

/* Card styling (same as two-card design) */
.service-card-ui {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    min-height: 320px;
    cursor: pointer;
}
.service-card-ui:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 50px rgba(226, 29, 47, 0.25);
}

.card-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.service-card-ui:hover .card-bg-img {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
    z-index: 1;
    pointer-events: none;
    transition: all 0.4s ease;
}

.service-card-ui:hover .card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 2rem;
    text-align: left;
    width: 100%;
}

.card-heading {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 800;
    color: #FFF;
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.card-description {
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 1rem;
    max-width: 98%;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.card-link {
    display: inline-block;
    color: #E21D2F;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 2px solid #E21D2F;
    padding-bottom: 3px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 6px;
}
.card-link:hover {
    color: white;
    background: #E21D2F;
    border-bottom-color: white;
    letter-spacing: 0.3px;
    transform: translateX(3px);
}

.btn-primary {
    display: inline-block;
    background: #E21D2F;
    color: white;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}
.btn-primary:hover {
    background: #b81828;
    transform: translateY(-2px);
}

.text-center { text-align: center; }
.mt-5 { margin-top: 2rem; }

/* Responsive */
@media (max-width: 1200px) {
    .services-modern-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.2rem;
    }
}
@media (max-width: 768px) {
    .services-modern-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .service-card-ui {
        min-height: 280px;
    }
    .card-content {
        padding: 1.5rem;
    }
    .card-heading {
        font-size: 1.2rem;
    }
    .card-description {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    .card-link {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
}
@media (max-width: 480px) {
    .services-modern-grid {
        gap: 1rem;
    }
    .service-card-ui {
        min-height: 260px;
    }
    .card-content {
        padding: 1rem;
    }
    .card-heading {
        font-size: 1rem;
    }
}

/* ========== ABOUT US SECTION – MODERN & CLEAN ========== */
.about-us-modern {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    padding: 5rem 0;
    overflow: hidden;
}

.container-about {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

/* LEFT: Image */
.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 35px -15px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.image-frame:hover {
    transform: scale(1.02);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.image-frame:hover img {
    transform: scale(1.04);
}

.image-overlay-gold {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(226,29,47,0.15) 0%, rgba(0,0,0,0.05) 100%);
    pointer-events: none;
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #E21D2F;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 2;
    backdrop-filter: blur(2px);
}

/* RIGHT: Content */
.about-content {
    padding: 0 0.5rem;
}

.about-tag {
    display: inline-block;
    background: rgba(226,29,47,0.1);
    color: #E21D2F;
    padding: 0.3rem 1rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.about-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    color: #111;
}

.highlight-red {
    color: #E21D2F;
    position: relative;
}

.about-lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2C2C2C;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.about-text {
    color: #6B6B6B;
    line-height: 1.6;
    margin-bottom: 1.8rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #E21D2F;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #6B6B6B;
    font-weight: 500;
}

.btn-about-modern {
    display: inline-block;
    background: #E21D2F;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(226,29,47,0.3);
}

.btn-about-modern:hover {
    background: #b81828;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(226,29,47,0.4);
}

/* ========== RESPONSIVE (Mobile ≥370px) ========== */
@media (max-width: 991px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-image {
        max-width: 550px;
        margin: 0 auto;
        width: 100%;
    }
    .about-content {
        text-align: center;
        padding: 0;
    }
    .about-stats {
        justify-content: center;
    }
    .stat {
        align-items: center;
    }
    .btn-about-modern {
        display: inline-block;
    }
}

@media (max-width: 768px) {
    .about-us-modern {
        padding: 3rem 0;
    }
    .about-content h2 {
        font-size: 1.8rem;
    }
    .about-stats {
        gap: 1.2rem;
    }
    .stat-number {
        font-size: 1.4rem;
    }
    .stat-label {
        font-size: 0.75rem;
    }
    .image-badge {
        bottom: 12px;
        left: 12px;
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .container-about {
        padding: 0 16px;
    }
    .about-lead {
        font-size: 1rem;
    }
    .about-text {
        font-size: 0.9rem;
    }
    .about-stats {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
}
/* ========== WHY CHOOSE US – MODERN, 2 COLUMNS ON MOBILE (≥370px) ========== */
.why-choose-us-modern {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    padding: 5rem 0;
}

.container-why {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.why-header {
    text-align: center;
    margin-bottom: 3rem;
}

.why-tag {
    display: inline-block;
    background: rgba(226,29,47,0.1);
    color: #E21D2F;
    padding: 0.3rem 1rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.why-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #111;
    margin-bottom: 1rem;
}

.highlight-red {
    color: #E21D2F;
}

.why-subtitle {
    color: #6B6B6B;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid: desktop 4 columns, tablet & mobile (≥370px) 2 columns */
.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
}

/* Card styling */
.feature-card-modern {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    animation: fadeInUp 0.5s ease-out backwards;
}

/* Stagger animation */
.feature-card-modern:nth-child(1) { animation-delay: 0.05s; }
.feature-card-modern:nth-child(2) { animation-delay: 0.1s; }
.feature-card-modern:nth-child(3) { animation-delay: 0.15s; }
.feature-card-modern:nth-child(4) { animation-delay: 0.2s; }
.feature-card-modern:nth-child(5) { animation-delay: 0.25s; }
.feature-card-modern:nth-child(6) { animation-delay: 0.3s; }
.feature-card-modern:nth-child(7) { animation-delay: 0.35s; }
.feature-card-modern:nth-child(8) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 35px -12px rgba(0, 0, 0, 0.15);
    border-color: #E21D2F;
}

/* Icon styling – next level */
.feature-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E21D2F 0%, #b81828 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -5px rgba(226,29,47,0.3);
}

.feature-icon-modern i {
    font-size: 2.2rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-card-modern:hover .feature-icon-modern {
    background: #111;
    transform: scale(1.08);
    box-shadow: 0 15px 25px -8px rgba(0,0,0,0.3);
}

.feature-card-modern:hover .feature-icon-modern i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 4px rgba(255,255,255,0.5));
}

.feature-card-modern h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #111;
}

.feature-card-modern p {
    font-size: 0.9rem;
    color: #6B6B6B;
    line-height: 1.5;
}

/* ========== RESPONSIVE ========== */
/* Tablet: 2 columns */
@media (max-width: 1024px) {
    .features-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile (≥370px to 768px): keep 2 columns, adjust spacing */
@media (max-width: 768px) {
    .why-choose-us-modern {
        padding: 3rem 0;
    }
    .features-grid-modern {
        gap: 1rem;
    }
    .feature-card-modern {
        padding: 1.2rem;
    }
    .feature-icon-modern {
        width: 65px;
        height: 65px;
    }
    .feature-icon-modern i {
        font-size: 1.8rem;
    }
    .feature-card-modern h3 {
        font-size: 1rem;
    }
    .feature-card-modern p {
        font-size: 0.8rem;
    }
}

/* Very small (≥370px to 480px) – still 2 columns, reduce padding */
@media (max-width: 480px) {
    .container-why {
        padding: 0 16px;
    }
    .features-grid-modern {
        gap: 0.8rem;
    }
    .feature-card-modern {
        padding: 1rem;
    }
    .feature-icon-modern {
        width: 55px;
        height: 55px;
        margin-bottom: 1rem;
    }
    .feature-icon-modern i {
        font-size: 1.5rem;
    }
    .feature-card-modern h3 {
        font-size: 0.9rem;
    }
}

/* Ensure that at exactly 370px we still have 2 columns (no column drop) */
@media (max-width: 370px) {
    .features-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    .feature-card-modern {
        padding: 0.8rem;
    }
    .feature-icon-modern {
        width: 48px;
        height: 48px;
    }
    .feature-icon-modern i {
        font-size: 1.3rem;
    }
}

.area-content {
    text-align: left;  /* ya center if you want */
    padding: 1.5rem;
}
.area-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #E21D2F;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
/* ========== SERVICE AREAS MODERN CARDS ========== */
.service-areas-modern {
    background: #F8F9FA;
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #111;
}
.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #E21D2F;
    margin: 0.5rem auto 0;
}
.section-subtitle {
    color: #6B6B6B;
    max-width: 700px;
    margin: 1rem auto 0;
}

/* Grid: desktop 4, tablet 3, mobile 2 */
.areas-modern-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
}

/* Card styling */
.area-card-modern {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.area-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 35px -12px rgba(0, 0, 0, 0.2);
}

.area-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.5s ease;
}
.area-card-modern:hover .area-bg-img {
    transform: scale(1.05);
}

/* Overlay */
.area-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Content */
.area-content {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 1.5rem;
    text-align: left;
    width: 100%;
}
.area-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #E21D2F;
    margin-bottom: 0.8rem;
    letter-spacing: -0.3px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Button styling */
.area-btn {
    display: inline-block;
    background: #E21D2F;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.area-btn:hover {
    background: white;
    color: #E21D2F;
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 1024px) {
    .areas-modern-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}
@media (max-width: 768px) {
    .service-areas-modern {
        padding: 3rem 0;
    }
    .areas-modern-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .area-content {
        padding: 1rem;
    }
    .area-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    .area-btn {
        padding: 0.35rem 1rem;
        font-size: 0.75rem;
    }
}
@media (max-width: 480px) {
    .areas-modern-grid {
        gap: 0.8rem;
    }
    .area-content {
        padding: 0.8rem;
    }
}

/* ========== REVIEWS / TESTIMONIALS SECTION ========== */
.reviews-modern {
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F7FA 100%);
    padding: 5rem 0;
}

.container-reviews {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-tag {
    display: inline-block;
    background: rgba(226,29,47,0.1);
    color: #E21D2F;
    padding: 0.3rem 1rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.reviews-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #111;
    margin-bottom: 0.5rem;
}

.reviews-subtitle {
    color: #6B6B6B;
    font-size: 1rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
}

/* Review Card */
.review-card {
    background: white;
    border-radius: 28px;
    padding: 1.8rem;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: #E21D2F;
    transition: height 0.4s ease;
}

.review-card:hover::before {
    height: 100%;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.15);
    border-color: #E21D2F;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.reviewer-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.2rem;
}

.review-date {
    font-size: 0.75rem;
    color: #6B6B6B;
}

.rating {
    color: #FFB800;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.review-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.service-tag {
    background: #F0F0F0;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #E21D2F;
}

.cost {
    font-size: 0.75rem;
    color: #2C2C2C;
    background: #F9F9F9;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
}

.review-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #4A4A4A;
    font-style: italic;
}

/* Responsive */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .reviews-modern {
        padding: 3rem 0;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .review-card {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container-reviews {
        padding: 0 16px;
    }
    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ========== FOOTER – MODERN RED BACKGROUND ========== */
.footer-modern {
    background: #E21D2F;
    color: white;
    padding: 3rem 0 1rem;
    font-size: 0.9rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
}
.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 2px;
    background: white;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    min-height: 60px;
    margin-bottom: 1rem;
    display: block;
    /* filter: brightness(0) invert(1); */
}

.footer-description {
    line-height: 1.5;
    margin-bottom: 1.2rem;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 1rem;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}
.social-links a:hover {
    background: white;
    color: #E21D2F;
    transform: translateY(-3px);
}

/* Professional BBB Badge */
.bbb-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    background: #E21D2F !important;
    border: 2px solid white !important;
    padding: 6px 8px !important;
    width: auto !important;
    height: auto !important;
    border-radius: 6px !important;
    font-size: 0.85rem !important;
    color: white !important;
}

.bbb-badge i {
    font-size: 0.9rem;
    color: white !important;
}

.bbb-badge span {
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    color: white !important;
}

.bbb-badge:hover {
    background: white !important;
    color: #E21D2F !important;
    border-color: #E21D2F !important;
    transform: translateY(-3px) !important;
}

.bbb-badge:hover i,
.bbb-badge:hover span {
    color: #E21D2F !important;
}

.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
}
.footer-links li, .footer-contact li {
    margin-bottom: 0.6rem;
}
.footer-links a, .footer-contact a {
    color: white;
    text-decoration: none;
    opacity: 0.85;
    transition: 0.2s;
}
.footer-links a:hover, .footer-contact a:hover {
    opacity: 1;
    text-decoration: underline;
    padding-left: 3px;
}
.footer-contact i {
    width: 24px;
    margin-right: 8px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1.5rem;
    margin-top: 1rem;
    font-size: 0.8rem;
}
.footer-bottom a {
    color: white;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}
@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-links {
        justify-content: center;
    }
    .footer-contact i {
        width: auto;
        margin-right: 6px;
    }
}
/* ========== FOOTER – RED BACKGROUND, 2 COLUMNS ON MOBILE ========== */
.footer-modern {
    background: #E21D2F;
    color: white;
    padding: 2.5rem 0 1rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Tablet: 3 columns */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile (≤768px): 2 columns, reduces height */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .footer-col {
        text-align: left;
    }
    .footer-col h3::after {
        left: 0;
        transform: none;
    }
    .social-links {
        justify-content: flex-start;
    }
}

/* Very small (≤480px): still 2 columns, smaller padding */
@media (max-width: 480px) {
    .footer-container {
        padding: 0 16px;
    }
    .footer-grid {
        gap: 1rem;
    }
    .footer-col h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    .footer-links li, .footer-contact li {
        margin-bottom: 0.4rem;
        font-size: 0.8rem;
    }
    .footer-logo {
        max-width: 140px;
    }
    .footer-description {
        font-size: 0.8rem;
    }
    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    .footer-bottom {
        font-size: 0.7rem;
    }
}

/* ========== MODERN CHATBOT WIDGET ========== */
.chatbot-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: 'Inter', sans-serif;
}

.chatbot-button {
    width: 60px;
    height: 60px;
    background: #E21D2F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: 0.3s;
    position: relative;
}
.chatbot-button i {
    font-size: 28px;
    color: white;
}
.chatbot-button:hover {
    transform: scale(1.05);
    background: #b81828;
}
.chatbot-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #111;
    color: white;
    font-size: 10px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    max-width: calc(100vw - 40px);
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.2);
    overflow: hidden;
    display: none;
    flex-direction: column;
    animation: fadeInUp 0.3s ease;
}
.chatbot-container.open {
    display: flex;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.chatbot-header {
    background: #E21D2F;
    color: white;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}
.chatbot-header-info i {
    font-size: 28px;
}
.chatbot-header-info h4 {
    margin: 0;
    font-size: 16px;
}
.chatbot-header-info p {
    margin: 0;
    font-size: 12px;
    opacity: 0.8;
}
.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

.chatbot-messages {
    height: 300px;
    overflow-y: auto;
    padding: 16px;
    background: #F9FAFB;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.message {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.message.user {
    justify-content: flex-end;
}
.message-content {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 18px;
    font-size: 13px;
    line-height: 1.4;
}
.message.bot .message-content {
    background: white;
    border: 1px solid #E5E7EB;
    border-top-left-radius: 4px;
}
.message.user .message-content {
    background: #E21D2F;
    color: white;
    border-top-right-radius: 4px;
}
.chatbot-quick-replies {
    padding: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid #EDF2F7;
    background: white;
}
.chatbot-quick-replies button {
    background: #F1F5F9;
    border: none;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    cursor: pointer;
    transition: 0.2s;
}
.chatbot-quick-replies button:hover {
    background: #E21D2F;
    color: white;
}
.chatbot-input-area {
    display: flex;
    padding: 12px;
    gap: 8px;
    border-top: 1px solid #EDF2F7;
    background: white;
}
.chatbot-input-area input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #CBD5E1;
    border-radius: 40px;
    font-size: 14px;
    outline: none;
}
.chatbot-input-area button {
    background: #E21D2F;
    border: none;
    width: 40px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: 0.2s;
}
.chatbot-input-area button:hover {
    background: #b81828;
}

@media (max-width: 480px) {
    .chatbot-container {
        width: 300px;
        right: 0;
        bottom: 70px;
    }
    .chatbot-messages {
        height: 280px;
    }
}
.btn-call-now {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E21D2F;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-call-now i {
    font-size: 1.1rem;
}

.btn-call-now:hover {
    background: #b81828;
    transform: scale(1.02);
    box-shadow: 0 6px 14px rgba(226, 29, 47, 0.3);
}

/* Desktop: Big logo, tight header */
.logo-img {
    height: 150px;          /* Large size – adjust as needed */
    width: auto;
    max-width: none;
}

.header-container {
    padding: 0.2rem 2rem !important;  /* Minimal top/bottom padding */
}

/* Mobile: Still large but fits */
@media (max-width: 768px) {
    .logo-img {
        height: 110px;       /* Big on mobile too */
    }
    .header-container {
        padding: 0.1rem 1rem !important;
    }
}

/* ========== CTA SECTION – MODERN, NON‑RED ========== */
.cta-red {
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Optional decorative element – subtle glow */
.cta-red::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 80%);
    animation: rotateGlow 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-red .container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-red h2 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.cta-red p {
    font-size: clamp(1rem, 4vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
}

.btn-white {
    display: inline-block;
    background: white;
    color: #1A1A1A;
    font-weight: 700;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-white:hover {
    background: #E21D2F;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-white-outline {
    display: inline-block;
    background: transparent;
    color: white;
    font-weight: 700;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.btn-white-outline:hover {
    background: white;
    color: #1A1A1A;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-red {
        padding: 2.5rem 1rem;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    .btn-white, .btn-white-outline {
        text-align: center;
        padding: 0.7rem 1.5rem;
    }
}
/* ========== ABOUT PAGE HERO – CENTERED WITH BACKGROUND IMAGE ========== */
.about-hero-unique {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.about-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.about-hero-content p {
    font-size: clamp(1rem, 4vw, 1.2rem);
    opacity: 0.9;
}

.highlight-red {
    color: #E21D2F;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-hero-unique {
        min-height: 40vh;
    }
    .about-hero-content h1 {
        font-size: 1.8rem;
    }
}

/* ========== ABOUT PAGE EXTRAS SECTION ========== */
.about-extras-unique {
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    padding: 4rem 0;
}

.container-extras {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
}

.extra-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.35s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.03);
}

.extra-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.08);
    border-color: #E21D2F;
}

.extra-card i {
    font-size: 2.5rem;
    color: #E21D2F;
    margin-bottom: 1rem;
}

.extra-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #111;
}

.extra-card p {
    color: #6B6B6B;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .extras-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .extras-grid {
        grid-template-columns: 1fr;
    }
    .container-extras {
        padding: 0 16px;
    }
}




/* ========== DESIGN CENTER / GALLERY PAGE ========== */
.gallery-page-unique {
    background: #F8F9FA;
}

/* Hero with background image */
.gallery-hero-unique {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.gallery-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.hero-content-unique {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    color: white;
    padding: 0 1rem;
}

.hero-content-unique h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-buttons-unique {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.btn-primary-unique, .btn-outline-unique {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-primary-unique {
    background: #E21D2F;
    color: white;
}
.btn-primary-unique:hover {
    background: white;
    color: #E21D2F;
    transform: translateY(-2px);
}

.btn-outline-unique {
    background: transparent;
    color: white;
    border: 2px solid white;
}
.btn-outline-unique:hover {
    background: white;
    color: #E21D2F;
    transform: translateY(-2px);
}

/* Gallery Grid */
.gallery-section-unique {
    padding: 4rem 0;
}

.section-header-unique {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header-unique h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #111;
}
.section-header-unique p {
    color: #6B6B6B;
}

.gallery-grid-unique {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
}

.gallery-card-unique {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.gallery-card-unique:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}

.card-image-unique {
    position: relative;
    overflow: hidden;
}
.card-image-unique img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s;
}
.gallery-card-unique:hover .card-image-unique img {
    transform: scale(1.03);
}

.card-overlay-unique {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}
.gallery-card-unique:hover .card-overlay-unique {
    transform: translateY(0);
}

.overlay-content-unique h3 {
    color: #E21D2F;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}
.overlay-content-unique p {
    color: white;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}
.project-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    color: white;
}

/* CTA Section */
.gallery-cta-unique {
    background: #1A1A1A;
    text-align: center;
    padding: 3rem 0;
}
.gallery-cta-unique h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}
.gallery-cta-unique p {
    color: #ccc;
    margin-bottom: 1.5rem;
}
.btn-cta-unique {
    background: #E21D2F;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}
.btn-cta-unique:hover {
    background: white;
    color: #E21D2F;
}

/* Responsive */
@media (max-width: 992px) {
    .gallery-grid-unique {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .gallery-grid-unique {
        grid-template-columns: 1fr;
    }
    .hero-buttons-unique {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-primary-unique, .btn-outline-unique {
        justify-content: center;
    }
}

/* ========== CONTACT PAGE ========== */
.contact-page-unique {
    background: #F8F9FA;
}

/* Hero */
.contact-hero-unique {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 4rem 0;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
}
.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}
.hero-content-unique {
    position: relative;
    z-index: 2;
    color: white;
}
.hero-content-unique h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
}

/* Info Cards */
.contact-info-unique {
    padding: 3rem 0;
    background: white;
}
.info-grid-unique {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
}
.info-card-unique {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.info-card-unique:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}
.info-card-unique i {
    font-size: 2.5rem;
    color: #E21D2F;
    margin-bottom: 1rem;
}
.info-card-unique h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.info-card-unique a {
    color: #111;
    text-decoration: none;
    font-weight: 600;
}
.info-card-unique span {
    font-size: 0.8rem;
    color: #6B6B6B;
    display: block;
    margin-top: 0.5rem;
}

/* Form Section */
.contact-form-unique {
    padding: 4rem 0;
}
.form-grid-unique {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin: 0 auto;
    max-width: 1200px;
}
.form-left-unique h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.flash-message-unique {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

/* Modern form styling */
.modern-form-unique .form-group-unique {
    position: relative;
    margin-bottom: 1.5rem;
}
.modern-form-unique input, 
.modern-form-unique textarea,
.modern-form-unique select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    transition: 0.3s;
    outline: none;
}
.modern-form-unique label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    background: white;
    padding: 0 0.3rem;
    color: #6B6B6B;
    transition: 0.2s;
    pointer-events: none;
}
.modern-form-unique input:focus ~ label,
.modern-form-unique input:not(:placeholder-shown) ~ label,
.modern-form-unique textarea:focus ~ label,
.modern-form-unique textarea:not(:placeholder-shown) ~ label,
.modern-form-unique select:focus ~ label,
.modern-form-unique select:not([value=""]) ~ label {
    top: -0.6rem;
    left: 0.8rem;
    font-size: 0.75rem;
    color: #E21D2F;
}
.modern-form-unique input:focus,
.modern-form-unique textarea:focus,
.modern-form-unique select:focus {
    border-color: #E21D2F;
    box-shadow: 0 0 0 2px rgba(226,29,47,0.1);
}
.form-row-unique {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.submit-btn-unique {
    background: #E21D2F;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.submit-btn-unique:hover {
    background: #b81828;
    transform: translateY(-2px);
}

/* Right side – map & area list */
.form-right-unique {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.map-placeholder-unique img {
    width: 100%;
    height: auto;
}
.area-list-unique {
    padding: 1.5rem;
}
.area-list-unique h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #111;
}
.area-list-unique ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    list-style: none;
    padding: 0;
}
.area-list-unique li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.2rem;
}
.area-list-unique li::before {
    content: "✓";
    color: #E21D2F;
    position: absolute;
    left: 0;
}

/* CTA strip */
.contact-cta-unique {
    background: #1A1A1A;
    text-align: center;
    padding: 3rem 0;
}
.contact-cta-unique h2 {
    color: white;
    font-size: 1.8rem;
}
.contact-cta-unique p {
    color: #ccc;
    margin: 1rem 0;
}
.cta-phone-unique {
    display: inline-block;
    background: #E21D2F;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: 0.3s;
}
.cta-phone-unique:hover {
    background: white;
    color: #E21D2F;
}

/* Responsive */
@media (max-width: 992px) {
    .form-grid-unique {
        grid-template-columns: 1fr;
    }
    .info-grid-unique {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .info-grid-unique {
        grid-template-columns: 1fr;
    }
    .form-row-unique {
        grid-template-columns: 1fr;
    }
}

/* ========== CONTACT HERO – CENTERED & ENHANCED ========== */
.contact-hero-unique {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-content-unique {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    color: white;
    padding: 0 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-content-unique h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content-unique p {
    font-size: clamp(1rem, 4vw, 1.3rem);
    opacity: 0.95;
    font-weight: 500;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure centering on all devices */
@media (max-width: 768px) {
    .contact-hero-unique {
        min-height: 300px;
        padding: 3rem 0;
    }
    .hero-content-unique h1 {
        font-size: 2rem;
    }
}

/* ========== FINANCING PAGE – IMPROVED VERSION ========== */
.financing-page-unique {
    background: #F8F9FA;
}

/* Hero */
.financing-hero-unique {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
    text-align: center;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.financing-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}
.hero-content-unique {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}
.hero-content-unique h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}
.hero-buttons-unique {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-finance-primary, .btn-finance-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}
.btn-finance-primary {
    background: #E21D2F;
    color: white;
}
.btn-finance-primary:hover {
    background: white;
    color: #E21D2F;
    transform: translateY(-2px);
}
.btn-finance-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}
.btn-finance-secondary:hover {
    background: white;
    color: #1A1A1A;
}

/* Benefits grid */
.financing-benefits-unique {
    padding: 4rem 0;
    background: white;
    text-align: center;
}
.benefits-grid-unique {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
}
.benefit-card-unique {
    padding: 1.5rem;
    border-radius: 20px;
    background: #F8F9FA;
    transition: 0.3s;
}
.benefit-card-unique:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.benefit-card-unique i {
    font-size: 2rem;
    color: #E21D2F;
    margin-bottom: 1rem;
}
.benefit-card-unique h3 {
    margin-bottom: 0.5rem;
}

/* Steps */
.financing-steps-unique {
    padding: 4rem 0;
    background: #F8F9FA;
    text-align: center;
}
.steps-grid-unique {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
}
.step-card-unique {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    transition: 0.3s;
    position: relative;
}
.step-card-unique:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}
.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #E21D2F;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}
.step-card-unique i {
    font-size: 2.5rem;
    color: #E21D2F;
    margin: 1rem 0;
}

/* Iframe */
.financing-iframe-unique {
    padding: 3rem 0;
    background: white;
}
.iframe-header-unique {
    text-align: center;
    margin-bottom: 2rem;
}
.iframe-wrapper-unique {
    width: 100%;
    height: 700px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.1);
}
.financing-iframe {
    width: 100%;
    height: 100%;
    border: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.iframe-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #6B6B6B;
}

/* FAQ */
.financing-faq-unique {
    padding: 4rem 0;
    background: #F8F9FA;
}
.faq-grid-unique {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
}
.faq-item-unique {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
}
.faq-item-unique h3 {
    color: #E21D2F;
    margin-bottom: 0.5rem;
}

/* Final CTA */
.financing-cta-unique {
    padding: 3rem 0;
    background: #1A1A1A;
    text-align: center;
    color: white;
}
.cta-buttons-unique {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
.btn-apply-unique, .btn-call-unique {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}
.btn-apply-unique {
    background: #E21D2F;
    color: white;
}
.btn-apply-unique:hover {
    background: white;
    color: #E21D2F;
}
.btn-call-unique {
    background: transparent;
    border: 2px solid white;
    color: white;
}
.btn-call-unique:hover {
    background: white;
    color: #1A1A1A;
}

/* Responsive */
@media (max-width: 992px) {
    .benefits-grid-unique, .steps-grid-unique {
        grid-template-columns: repeat(2, 1fr);
    }
    .faq-grid-unique {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .iframe-wrapper-unique {
        height: 550px;
    }
    .benefits-grid-unique, .steps-grid-unique {
        grid-template-columns: 1fr;
    }
    .hero-buttons-unique {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ========== SERVICES PAGE (STANDALONE) ========== */
.services-page-unique {
    background: #F8F9FA;
}

/* Hero */
.services-hero-unique {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 4rem 0;
    text-align: center;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}
.hero-content-unique {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}
.hero-content-unique h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}
.highlight-red {
    color: #E21D2F;
}

/* Services Grid */
.services-grid-section-unique {
    padding: 4rem 0;
}
.services-filter-unique {
    text-align: center;
    margin-bottom: 2rem;
}
.services-grid-unique {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
}

/* Card Styles */
.service-card-unique {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: all 0.35s ease;
}
.service-card-unique:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}
.card-image-unique {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.card-image-unique img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.service-card-unique:hover .card-image-unique img {
    transform: scale(1.05);
}
.card-overlay-unique {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 60%);
    opacity: 0;
    transition: opacity 0.3s;
}
.service-card-unique:hover .card-overlay-unique {
    opacity: 1;
}
.card-body-unique {
    padding: 1.5rem;
}
.card-body-unique h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111;
}
.card-body-unique p {
    color: #6B6B6B;
    margin-bottom: 1rem;
    line-height: 1.4;
}
.card-link-unique {
    display: inline-block;
    color: #E21D2F;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}
.card-link-unique:hover {
    letter-spacing: 0.5px;
    color: #b81828;
}

/* CTA Section */
.services-cta-unique {
    background: #1A1A1A;
    text-align: center;
    padding: 3rem 0;
}
.services-cta-unique h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}
.services-cta-unique p {
    color: #ccc;
    margin-bottom: 1.5rem;
}
.cta-button-unique {
    display: inline-block;
    background: #E21D2F;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}
.cta-button-unique:hover {
    background: white;
    color: #E21D2F;
}

/* Responsive */
@media (max-width: 1200px) {
    .services-grid-unique {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 992px) {
    .services-grid-unique {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .services-grid-unique {
        grid-template-columns: 1fr;
    }
    .card-image-unique {
        height: 200px;
    }
}


/* ========== SERVICE AREAS PAGE ========== */
.areas-page-unique {
    background: #F8F9FA;
}

/* Hero */
.areas-hero-unique {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 4rem 0;
    text-align: center;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.areas-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}
.hero-content-unique {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}
.hero-content-unique h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 1rem;
}
.btn-hero-unique {
    display: inline-block;
    background: #E21D2F;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 1rem;
    transition: 0.3s;
}
.btn-hero-unique:hover {
    background: white;
    color: #E21D2F;
}

/* Grid */
.areas-grid-section-unique {
    padding: 4rem 0;
}
.section-header-unique {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header-unique h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
}
.section-header-unique p {
    color: #6B6B6B;
}
.cities-grid-unique {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
}

.city-card-unique {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.city-card-unique:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px rgba(0,0,0,0.1);
}
.card-image-unique {
    height: 180px;
    overflow: hidden;
}
.card-image-unique img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.city-card-unique:hover .card-image-unique img {
    transform: scale(1.05);
}
.card-body-unique {
    padding: 1.2rem;
}
.card-body-unique h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111;
}
.card-body-unique p {
    font-size: 0.85rem;
    color: #6B6B6B;
    margin-bottom: 0.8rem;
}
.city-link-unique {
    display: inline-block;
    color: #E21D2F;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.85rem;
}
.city-link-unique:hover {
    text-decoration: underline;
}

/* Why Local Section */
.areas-why-unique {
    background: white;
    padding: 3rem 0;
    text-align: center;
}
.why-content-unique i {
    font-size: 3rem;
    color: #E21D2F;
    margin-bottom: 1rem;
}
.why-content-unique h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.why-content-unique p {
    max-width: 700px;
    margin: 0 auto;
    color: #6B6B6B;
}

/* CTA */
.areas-cta-unique {
    background: #1A1A1A;
    text-align: center;
    padding: 3rem 0;
    color: white;
}
.areas-cta-unique h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}
.areas-cta-unique p {
    margin-bottom: 1.5rem;
    color: #ccc;
}
.cta-button-unique {
    display: inline-block;
    background: #E21D2F;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}
.cta-button-unique:hover {
    background: white;
    color: #E21D2F;
}

/* Responsive */
@media (max-width: 1200px) {
    .cities-grid-unique {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 992px) {
    .cities-grid-unique {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .cities-grid-unique {
        grid-template-columns: 1fr;
    }
}


/* ========== AREA SUBPAGE (UNIVERSAL) ========== */
.area-subpage {
    background: #F8F9FA;
}

/* Hero Section */
.area-hero {
    position: relative;
    background-size: cover;
    background-position: center 30%;
    padding: 4rem 0;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.area-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 100%);
    z-index: 1;
}
.area-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.area-hero-content {
    max-width: 800px;
    margin: 0 auto;
    color: white;
}
.area-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.area-hero-content p {
    font-size: clamp(1rem, 4vw, 1.2rem);
    opacity: 0.95;
}

/* Main Content */
.area-main-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 24px;
}
.area-content-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
/* Left column */
.area-text-col h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 1rem;
}
.area-text-col h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: #222;
}
.area-services-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}
.area-services-list li {
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.area-services-list i {
    color: #E21D2F;
    width: 20px;
}
.area-cta-btn {
    display: inline-block;
    background: #E21D2F;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 1.5rem;
    transition: 0.3s;
}
.area-cta-btn:hover {
    background: #b81828;
    transform: translateY(-2px);
}

/* Right column (image + benefits) */
.area-second-img {
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 15px 25px -10px rgba(0,0,0,0.1);
}
.area-second-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s;
}
.area-second-img:hover img {
    transform: scale(1.02);
}
.area-benefits h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #111;
}
.area-benefits ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}
.area-benefits li {
    margin-bottom: 0.6rem;

/* ========== BLOGS HERO SECTION CSS ========== */
.blogs-hero {
    position: relative;
    background-size: cover;
    background-position: center 30%;
    padding: 4rem 0;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blogs-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 100%);
    z-index: 1;
}

.blogs-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.blogs-hero-content {
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.blogs-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

/* ========== MOBILE CENTER ALIGNMENT FOR 370PX DEVICES ========== */
@media (max-width: 370px) {
    /* Global center alignment */
    body, html {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    * {
        box-sizing: border-box;
    }

    /* Center all text content */
    h1, h2, h3, h4, h5, h6, p {
        text-align: center;
    }

    /* Header container center alignment */
    .header-container {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        padding: 0.8rem 1rem;
    }

    .logo-area {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .logo-img {
        height: 120px;
        width: auto;
    }

    /* Navigation center */
    .main-nav {
        width: 100%;
        justify-content: center;
    }

    .nav-list {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }

    .nav-list li {
        text-align: center;
    }

    /* Buttons */
    .header-buttons {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 0.5rem;
    }

    .btn-call, .btn-menu {
        padding: 0.6rem 1rem;
    }

    /* Container padding */
    .container, .container-about, .container-why, .container-reviews, .container-extras {
        padding: 0 10px;
        margin: 0 auto;
        max-width: 370px;
    }

    /* Section content center */
    .section-header, .section-subtitle {
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
    }

    /* Hero section */
    .hero-content {
        text-align: center;
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* Cards and grids */
    .services-modern-grid, .features-grid-modern, .trust-grid, .area-card-grid,
    .reviews-grid, .blogs-grid, .extra-features-grid {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    /* All card elements center */
    .service-card-ui, .feature-card-modern, .trust-card, .area-card,
    .review-card, .blog-card, .extra-feature-card {
        margin-left: auto;
        margin-right: auto;
    }

    /* Text alignment in cards */
    .card-content, .feature-card-modern h3, .feature-card-modern p,
    .card-body-unique {
        text-align: center;
    }

    /* Content alignment */
    .area-content, .about-content, .why-content {
        text-align: center;
        padding: 1rem;
    }

    /* Forms and inputs */
    form, .form-group {
        text-align: center;
    }

    input, textarea, select {
        width: 100%;
        max-width: 370px;
    }

    /* List items center */
    ul, ol {
        list-style-position: inside;
        text-align: center;
    }

    li {
        text-align: center;
        margin: 0.5rem auto;
    }

    /* Footer center alignment */
    .footer-bottom, .footer-content, footer {
        text-align: center !important;
    }

    footer ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* Blog sections */
    .blogs-hero-container, .blogs-hero-content {
        padding: 0 10px;
    }

    .blogs-hero-content h1 {
        font-size: 1.6rem;
    }

    /* CTA sections */
    .cta-content, .cta-text {
        text-align: center;
    }

    /* Responsive images */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Grid adjustments */
    .grid-layout {
        grid-template-columns: 1fr !important;
    }

    /* Flex center */
    .flex-center, [class*="flex"] {
        justify-content: center;
        align-items: center;
    }
}

.blogs-hero-content p {
    font-size: clamp(1rem, 4vw, 1.2rem);
    opacity: 0.95;
}

.blogs-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 24px;
}
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.area-benefits i {
    color: #E21D2F;
    width: 22px;
}
.area-contact-card {
    background: white;
    padding: 1.2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 12px rgba(0,0,0,0.05);
}
.area-contact-card i {
    font-size: 2rem;
    color: #E21D2F;
}
.area-contact-card a {
    color: #E21D2F;
    text-decoration: none;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
    .area-content-flex {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .area-text-col {
        order: 1;
    }
    .area-image-col {
        order: 2;
    }
}
@media (max-width: 768px) {
    .area-hero {
        min-height: 320px;
        padding: 2rem 0;
    }
    .area-main-container {
        padding: 2rem 16px;
    }
}

/* ========== SERVICE SUBPAGE (Fascia & Soffits, etc.) ========== */
.service-subpage {
    background: #F8F9FA;
}

/* Hero */
.service-hero {
    position: relative;
    background-size: cover;
    background-position: center 30%;
    padding: 4rem 0;
    text-align: center;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 100%);
    z-index: 1;
}
.service-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
    color: white;
}
.service-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.service-hero-content p {
    font-size: clamp(1rem, 4vw, 1.2rem);
}

/* Main two‑column layout */
.service-main-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 24px;
}
.service-content-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
/* Left column */
.service-text-col h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.service-text-col h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: #222;
}
.service-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}
.service-list li {
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.service-list i {
    color: #E21D2F;
}
.signs-box {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    margin: 1.5rem 0;
    box-shadow: 0 5px 12px rgba(0,0,0,0.05);
}
.signs-box ul {
    list-style: none;
    padding: 0;
}
.signs-box li {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.service-cta-btn {
    display: inline-block;
    background: #E21D2F;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    margin-top: 1rem;
}
.service-cta-btn:hover {
    background: #b81828;
    transform: translateY(-2px);
}

/* Right column (images + benefits) */
.service-image-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.service-img-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
.service-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s;
}
.service-img-wrapper:hover img {
    transform: scale(1.02);
}
.service-benefits {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.05);
}
.service-benefits h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.service-benefits ul {
    list-style: none;
    padding: 0;
}
.service-benefits li {
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.service-benefits i {
    color: #E21D2F;
}
.service-contact-card {
    background: #F8F9FA;
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.service-contact-card i {
    font-size: 2rem;
    color: #E21D2F;
}
.service-contact-card a {
    color: #E21D2F;
    text-decoration: none;
    font-weight: 700;
}

/* Trust badges section */
.service-trust {
    background: white;
    padding: 2rem 0;
    text-align: center;
}
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #F8F9FA;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    font-weight: 600;
}
.badge i {
    color: #fbf8f8;
}

/* Responsive */
@media (max-width: 992px) {
    .service-content-flex {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .service-image-col {
        order: 2;
    }
    .service-text-col {
        order: 1;
    }
}
@media (max-width: 768px) {
    .service-hero {
        min-height: 320px;
        padding: 2rem 0;
    }
    .service-main-container {
        padding: 2rem 16px;
    }
    .trust-badges {
        gap: 1rem;
    }
    .badge {
        font-size: 0.8rem;
    }
}





