/* ========================================
   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
   ======================================== */
.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-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 {
    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 {
    display: none;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 4px 8px;
}

.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;
}

/* ========================================
   PAGE HERO
   ======================================== */
.page-hero {
    background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 100%);
    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;
    margin-bottom: 24px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    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);
}

/* ========================================
   MATERNITY OVERVIEW
   ======================================== */
.maternity-overview {
    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;
}

.maternity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.maternity-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border-top: 4px solid var(--maroon);
    transition: var(--transition);
}

.maternity-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(106, 27, 42, 0.10);
}

.maternity-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;
}

.maternity-card h3 {
    font-size: 1.2rem;
    color: var(--maroon-dark);
    margin-bottom: 6px;
}

.maternity-card > p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.6;
}

.maternity-features {
    list-style: none;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.maternity-features li {
    padding: 3px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.maternity-features li i {
    color: var(--maroon);
    font-size: 0.7rem;
    width: 16px;
}

/* ========================================
   BIRTH JOURNEY
   ======================================== */
.birth-journey {
    padding: 80px 0;
    background: var(--light-blue);
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 30px 0 36px;
}

.journey-step {
    text-align: center;
    background: var(--white);
    padding: 28px 20px;
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    position: relative;
    transition: var(--transition);
}

.journey-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(106, 27, 42, 0.10);
}

.step-number {
    display: inline-block;
    background: var(--maroon);
    color: var(--cream);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    line-height: 36px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.step-icon {
    font-size: 2.2rem;
    color: var(--maroon);
    margin-bottom: 8px;
}

.journey-step h4 {
    font-size: 1.1rem;
    color: var(--maroon-dark);
    margin-bottom: 4px;
}

.journey-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.journey-cta {
    text-align: center;
}

/* ========================================
   EMERGENCY SECTION
   ======================================== */
.emergency-section {
    padding: 80px 0;
    background: var(--maroon-dark);
}

.emergency-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.emergency-content {
    color: var(--cream);
}

.emergency-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.emergency-content > p {
    font-size: 1.05rem;
    opacity: 0.85;
    margin-bottom: 24px;
}

.emergency-details {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}

.emergency-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.emergency-item i {
    font-size: 1.4rem;
    color: var(--light-blue);
    margin-top: 2px;
    width: 28px;
}

.emergency-item strong {
    display: block;
    font-size: 0.95rem;
}

.emergency-item p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.emergency-contact {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px 24px;
    border-radius: var(--radius);
    border-left: 4px solid var(--light-blue);
}

.emergency-contact p {
    margin-bottom: 4px;
}

.emergency-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--cream);
    transition: var(--transition);
}

.emergency-phone:hover {
    color: var(--light-blue);
    transform: scale(1.02);
}

.emergency-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.30);
}

.emergency-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.emergency-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #b22222;
    color: #fff;
    padding: 12px 16px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.30);
}

.emergency-badge i {
    font-size: 1.8rem;
}

.emergency-badge span {
    font-weight: 700;
    line-height: 1.2;
}

.emergency-badge small {
    font-weight: 400;
    font-size: 0.75rem;
    opacity: 0.85;
}

/* ========================================
   WHY CHOOSE
   ======================================== */
.why-choose {
    padding: 80px 0;
    background: var(--cream);
}

.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);
    border-bottom: 4px solid var(--maroon);
}

.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;
}

/* ========================================
   TESTIMONIAL
   ======================================== */
.testimonial {
    padding: 60px 0;
    background: var(--cream-dark);
}

.testimonial-card {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.testimonial-card i.fa-quote-left {
    font-size: 2.8rem;
    color: var(--maroon);
    opacity: 0.25;
    margin-bottom: 8px;
}

.testimonial-card blockquote {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--maroon-dark);
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author {
    margin-top: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

.testimonial-stars {
    color: #f4b400;
    font-size: 1rem;
    letter-spacing: 3px;
    margin-top: 6px;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 60px 0;
    background: var(--maroon);
    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;
}

.cta-buttons .btn-primary {
    background: var(--cream);
    color: var(--maroon-dark);
}

.cta-buttons .btn-primary:hover {
    background: var(--cream-dark);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 2px solid var(--cream);
}

.cta-buttons .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) {
    .desktop-nav ul li a {
        font-size: 0.8rem;
        padding: 5px 10px;
    }

    .maternity-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .journey-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .emergency-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .emergency-image img {
        height: 300px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-hero {
        padding: 60px 0 40px;
    }
}

/* 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;
    }

    .page-hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        justify-content: center;
        width: 100%;
    }

    .maternity-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .journey-steps {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin: 30px auto 36px;
    }

    .emergency-phone {
        font-size: 1.2rem;
    }

    .emergency-image img {
        height: 220px;
    }

    .emergency-badge {
        padding: 8px 12px;
        top: 12px;
        right: 12px;
    }

    .emergency-badge i {
        font-size: 1.2rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 32px auto 0;
    }

    .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;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .utility-actions {
        gap: 4px;
    }

    .logo {
        font-size: 0.9rem;
    }

    .logo-icon {
        font-size: 1rem;
    }
}
/* ========================================
   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;
    }
}
/* ========================================
   LOGO STYLES
   ======================================== */

/* Header Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cream);
    font-weight: 700;
    font-size: 1.2rem;
    white-space: nowrap;
}

.logo-img {
    height: 40px; /* Adjust as needed */
    width: auto;
    display: block;
}

/* Footer Logo */
.footer-logo {
    height: 50px; /* Adjust as needed */
    width: auto;
    display: block;
    margin-bottom: 10px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .logo-img {
        height: 30px; /* Smaller on mobile */
    }
    
    .footer-logo {
        height: 40px;
        margin: 0 auto 10px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 25px;
    }
    
    .footer-logo {
        height: 35px;
    }
}