/* ========================================
   RESET & BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --maroon: #6a1b2a;
    --maroon-dark: #4d1320;
    --maroon-light: #8a2a3e;
    --cream: #fdf8f0;
    --cream-dark: #f5ede0;
    --light-blue: #d4e8f7;
    --light-blue-hover: #b8d8ef;
    --text-dark: #1e1e2a;
    --text-muted: #4a4a5a;
    --white: #ffffff;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --container: 1200px;
    --radius: 12px;
    --shadow: 0 8px 24px rgba(106, 27, 42, 0.10);
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   UTILITY BAR WITH NAVIGATION
   ======================================== */
.utility-bar {
    background: var(--maroon-dark);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.utility-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.utility-left {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cream);
    font-weight: 700;
    font-size: 1.2rem;
    white-space: nowrap;
}

.logo-icon {
    font-size: 1.3rem;
    color: var(--light-blue);
}

.logo-highlight {
    color: var(--light-blue);
}

/* --- Desktop Navigation --- */
.desktop-nav {
    display: flex;
    align-items: center;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.desktop-nav ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.desktop-nav ul li a:hover {
    color: var(--cream);
    background: rgba(255, 255, 255, 0.08);
}

.desktop-nav ul li a.active {
    color: var(--cream);
    background: rgba(212, 232, 247, 0.15);
    font-weight: 600;
}

/* --- Utility Actions --- */
.utility-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-call,
.btn-portal {
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.btn-call {
    background: var(--light-blue);
    color: var(--maroon-dark);
}

.btn-call:hover {
    background: var(--light-blue-hover);
    transform: scale(1.03);
}

.btn-portal {
    background: transparent;
    color: var(--cream);
    border: 1.5px solid var(--cream);
}

.btn-portal:hover {
    background: var(--cream);
    color: var(--maroon-dark);
}

/* --- Hamburger --- */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 4px 8px;
}

/* --- Mobile Nav --- */
.mobile-nav {
    display: none;
    width: 100%;
    background: var(--maroon-dark);
    padding: 12px 20px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav.open {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0;
    padding: 0;
}

.mobile-nav ul li a {
    color: var(--cream);
    font-weight: 500;
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    text-decoration: none;
}

.mobile-nav ul li a:hover {
    color: var(--light-blue);
    padding-left: 6px;
}

.mobile-nav ul li a.active {
    color: var(--light-blue);
    font-weight: 600;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* Tablets */
@media (max-width: 992px) {
    .desktop-nav ul li a {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}

/* Mobile Phones */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .btn-call .fa-phone-alt {
        display: none;
    }

    .btn-call {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .btn-portal span {
        display: none;
    }

    .btn-portal {
        padding: 6px 10px;
    }

    .logo {
        font-size: 1rem;
    }

    .logo-icon {
        font-size: 1.1rem;
    }

    .utility-actions {
        gap: 6px;
    }
}

/* Very Small Phones */
@media (max-width: 480px) {
    .utility-bar .container {
        gap: 8px;
    }

    .logo {
        font-size: 0.9rem;
    }

    .logo-icon {
        font-size: 1rem;
    }

    .btn-call {
        padding: 4px 10px;
        font-size: 0.7rem;
    }

    .btn-portal {
        padding: 4px 8px;
    }
}
/* ========================================
   PAGE HERO
   ======================================== */
.page-hero {
    background: var(--maroon-dark);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, rgba(106, 27, 42, 0.30), transparent);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 232, 247, 0.20);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--cream);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 6px 18px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.page-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 16px;
}

.page-hero-content p {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 480px;
    line-height: 1.7;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    padding: 80px 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text .section-tag {
    display: inline-block;
    color: var(--maroon);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.about-text .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--maroon-dark);
    margin-bottom: 16px;
    text-align: left;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 24px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--maroon);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* ========================================
   MISSION & VISION
   ======================================== */
.mission-vision {
    padding: 60px 0;
    background: var(--cream-dark);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mv-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border-top: 4px solid var(--maroon);
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(106, 27, 42, 0.10);
}

.mv-card i {
    font-size: 2.5rem;
    color: var(--maroon);
    margin-bottom: 12px;
}

.mv-card h3 {
    font-size: 1.3rem;
    color: var(--maroon-dark);
    margin-bottom: 8px;
}

.mv-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   SERVICES FULL
   ======================================== */
.services-full {
    padding: 80px 0;
    background: var(--cream);
}

.section-tag {
    display: block;
    text-align: center;
    color: var(--maroon);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--maroon-dark);
    text-align: center;
    margin-bottom: 4px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.services-grid-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card-full {
    background: var(--white);
    padding: 28px 20px;
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border-bottom: 4px solid var(--maroon);
    transition: var(--transition);
}

.service-card-full:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(106, 27, 42, 0.10);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--maroon);
    color: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.service-card-full h3 {
    font-size: 1.1rem;
    color: var(--maroon-dark);
    margin-bottom: 6px;
}

.service-card-full > p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.service-features li {
    padding: 3px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li i {
    color: var(--maroon);
    font-size: 0.7rem;
    width: 16px;
}

/* ========================================
   WHY CHOOSE US
   ======================================== */
.why-choose {
    padding: 80px 0;
    background: var(--light-blue);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.why-card {
    background: var(--white);
    padding: 28px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(106, 27, 42, 0.10);
}

.why-card i {
    font-size: 2.2rem;
    color: var(--maroon);
    margin-bottom: 10px;
}

.why-card h4 {
    font-size: 1.1rem;
    color: var(--maroon-dark);
    margin-bottom: 6px;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 60px 0;
    background: var(--maroon-dark);
    color: var(--cream);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--cream);
    color: var(--maroon-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 2px solid var(--cream);
}

.btn-secondary:hover {
    background: var(--cream);
    color: var(--maroon-dark);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--maroon-dark);
    color: var(--cream);
    padding: 40px 0 20px;
}

.footer-emergency {
    background: #b22222;
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-emergency i {
    font-size: 1.8rem;
    color: #fff;
}

.footer-emergency p {
    font-size: 1rem;
    color: #fff;
}

.footer-emergency a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 30px;
    margin-bottom: 24px;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--light-blue);
}

.footer-col p,
.footer-col ul li {
    font-size: 0.9rem;
    opacity: 0.85;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 4px;
}

.footer-col ul li a:hover {
    color: var(--light-blue);
    text-decoration: underline;
}

.footer-col a {
    color: var(--cream);
}

.footer-col a:hover {
    color: var(--light-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* Tablets */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image img {
        height: 280px;
    }

    .services-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mv-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-hero {
        padding: 60px 0 40px;
    }
}

/* Mobile Phones */
@media (max-width: 768px) {
    .btn-call .fa-phone-alt {
        display: none;
    }

    .btn-call {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .btn-portal span {
        display: none;
    }

    .btn-portal {
        padding: 8px 12px;
    }

    .hamburger {
        display: block;
    }

    .page-hero-content h1 {
        font-size: 2rem;
    }

    .about-text .section-title {
        font-size: 1.8rem;
    }

    .about-stats {
        gap: 20px;
        justify-content: center;
    }

    .services-grid-full {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .why-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 32px auto 0;
    }

    .mv-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-emergency {
        flex-direction: column;
        text-align: center;
    }
}

/* Very Small Phones */
@media (max-width: 480px) {
    .page-hero {
        padding: 40px 0 30px;
    }

    .page-hero-content h1 {
        font-size: 1.6rem;
    }

    .about-text .section-title {
        font-size: 1.4rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .utility-actions {
        gap: 6px;
    }

    .logo {
        font-size: 1rem;
    }

    .logo-icon {
        font-size: 1.2rem;
    }
}

/* ========================================
   NAVIGATION BUTTONS
   ======================================== */
.nav-buttons {
    padding: 20px 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(106, 27, 42, 0.06);
}

.nav-buttons-grid {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 40px;
    background: var(--white);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.nav-btn i {
    font-size: 1rem;
    color: var(--maroon);
    transition: all 0.3s ease;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(106, 27, 42, 0.10);
    border-color: var(--maroon);
    color: var(--maroon-dark);
}

.nav-btn:hover i {
    transform: scale(1.1);
}

.nav-btn.active {
    background: var(--maroon);
    color: var(--cream);
    border-color: var(--maroon);
    box-shadow: 0 4px 16px rgba(106, 27, 42, 0.25);
}

.nav-btn.active i {
    color: var(--cream);
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* Mobile Phones */
@media (max-width: 768px) {
    .nav-buttons {
        padding: 14px 0;
    }

    .nav-buttons-grid {
        gap: 8px;
    }

    .nav-btn {
        padding: 8px 14px;
        font-size: 0.75rem;
        gap: 6px;
    }

    .nav-btn i {
        font-size: 0.85rem;
    }
}

/* Very Small Phones */
@media (max-width: 480px) {
    .nav-buttons-grid {
        gap: 6px;
    }

    .nav-btn {
        padding: 6px 10px;
        font-size: 0.65rem;
        gap: 4px;
    }

    .nav-btn i {
        font-size: 0.7rem;
    }

    .nav-btn span {
        display: inline;
    }
}
/* ========================================
   FOOTER - OPTION B
   ======================================== */
.footer {
    background: var(--maroon-dark);
    color: var(--cream);
    padding: 40px 0 20px;
}

/* --- Emergency Banner --- */
.footer-emergency {
    background: #b22222;
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-emergency i {
    font-size: 1.8rem;
    color: #fff;
}

.footer-emergency p {
    font-size: 1rem;
    color: #fff;
}

.footer-emergency a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
}

.footer-emergency a:hover {
    color: #ffd700;
}

/* --- Footer Grid --- */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 24px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 14px;
    color: var(--light-blue);
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--light-blue);
    opacity: 0.5;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    opacity: 0.85;
    transition: var(--transition);
}

.footer-col ul li i {
    width: 20px;
    color: var(--light-blue);
}

.footer-col ul li a {
    color: var(--cream);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--light-blue);
    padding-left: 4px;
}

/* --- Social Media --- */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--cream);
    font-size: 1.1rem;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--light-blue);
    color: var(--maroon-dark);
    transform: translateY(-3px);
}

/* --- Footer Bottom --- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-bottom a {
    color: var(--cream);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--light-blue);
    text-decoration: underline;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* Tablets */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile Phones */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0 16px;
    }

    .footer-emergency {
        flex-direction: column;
        text-align: center;
        padding: 14px 16px;
    }

    .footer-emergency i {
        font-size: 1.5rem;
    }

    .footer-emergency p {
        font-size: 0.9rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
    }
}

/* Very Small Phones */
@media (max-width: 480px) {
    .footer {
        padding: 24px 0 12px;
    }

    .footer-grid {
        gap: 16px;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }

    .footer-bottom {
        font-size: 0.75rem;
    }
}

/* ========================================
   PAGE HERO WITH STICKY IMAGE & MAROON OVERLAY
   ======================================== */
.page-hero {
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 320px;
    max-height: 450px;
    display: flex;
    align-items: center;
    width: 100%;
}

/* Maroon Overlay */
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(106, 27, 42, 0.08);
    z-index: 1;
}

/* Gradient Overlay */
.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(106, 27, 42, 0.60) 0%,
        rgba(106, 27, 42, 0.35) 50%,
        rgba(106, 27, 42, 0.10) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    text-align: left;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* Tablets */
@media (max-width: 992px) {
    .page-hero {
        background-attachment: scroll; /* ⭐ Fix for tablets */
        background-size: cover;
        background-position: center;
        min-height: 280px;
        max-height: 400px;
        padding: 50px 0 40px;
    }

    .page-hero-content h1 {
        font-size: 2.2rem;
    }
}

/* Mobile Phones */
@media (max-width: 768px) {
    .page-hero {
        background-attachment: scroll; /* ⭐ Critical fix for mobile */
        background-size: cover;
        background-position: center;
        min-height: 240px;
        max-height: 350px;
        padding: 40px 0 30px;
    }

    .page-hero-content {
        text-align: left;
    }

    .page-hero-content h1 {
        font-size: 1.8rem;
    }

    .page-hero-content p {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        justify-content: center;
        width: 100%;
        padding: 12px 20px;
    }

    .btn-primary,
    .btn-secondary {
        font-size: 0.85rem;
    }
}

/* Very Small Phones */
@media (max-width: 480px) {
    .page-hero {
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
        min-height: 200px;
        max-height: 300px;
        padding: 30px 0 20px;
    }

    .page-hero-content h1 {
        font-size: 1.4rem;
    }

    .page-hero-content p {
        font-size: 0.85rem;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 4px 12px;
        margin-bottom: 10px;
    }
}
/* ========================================
   UTILITY BAR - FIXED
   ======================================== */
.utility-bar {
    background: var(--maroon-dark);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.utility-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* --- Left Side: Logo + Name --- */
.utility-left {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.logo-text {
    color: var(--cream);
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
}

.logo-highlight {
    color: var(--light-blue);
}

/* --- Desktop Navigation --- */
.desktop-nav {
    display: flex;
    align-items: center;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.desktop-nav ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.desktop-nav ul li a:hover {
    color: var(--cream);
    background: rgba(255, 255, 255, 0.08);
}

.desktop-nav ul li a.active {
    color: var(--cream);
    background: rgba(212, 232, 247, 0.15);
    font-weight: 600;
}

/* --- Right Side: Call Button + Hamburger --- */
.utility-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-call {
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    background: var(--light-blue);
    color: var(--maroon-dark);
    text-decoration: none;
}

.btn-call:hover {
    background: var(--light-blue-hover);
    transform: scale(1.03);
}

/* --- Hamburger --- */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 4px 8px;
}

/* --- Mobile Nav --- */
.mobile-nav {
    display: none;
    width: 100%;
    background: var(--maroon-dark);
    padding: 12px 20px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav.open {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0;
    padding: 0;
}

.mobile-nav ul li a {
    color: var(--cream);
    font-weight: 500;
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    text-decoration: none;
}

.mobile-nav ul li a:hover {
    color: var(--light-blue);
    padding-left: 6px;
}

.mobile-nav ul li a.active {
    color: var(--light-blue);
    font-weight: 600;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

@media (max-width: 992px) {
    .desktop-nav ul li a {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .btn-call .fa-phone-alt {
        display: none;
    }

    .btn-call {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .logo-img {
        height: 30px;
    }

    .logo-text {
        font-size: 0.95rem;
    }

    .utility-actions {
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 25px;
    }

    .logo-text {
        font-size: 0.8rem;
    }

    .btn-call {
        padding: 4px 10px;
        font-size: 0.7rem;
    }
}