/* ========================================
   RESET & BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* --- Color Palette --- */
    --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;

    /* --- Typography --- */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* --- Spacing --- */
    --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;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.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;
    }
}
/* ========================================
   HERO SLIDESHOW (LEFT ALIGNED)
   ======================================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
    background: var(--maroon-dark);
	
}

.hero-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

/* --- Slides --- */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

/* --- Left-Side Blur Gradient Overlay --- */
.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(106, 27, 42, 0.92) 0%,
        rgba(106, 27, 42, 0.70) 30%,
        rgba(106, 27, 42, 0.30) 55%,
        rgba(106, 27, 42, 0) 80%
    );
    z-index: 3;
    pointer-events: none;
}

/* --- Additional blur effect on the image itself (for the left edge) --- */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2;
    pointer-events: none;
    mask-image: linear-gradient(to right, black 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 0%, transparent 100%);
}

/* --- Overlay Text (Left Side) --- */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 10;
    padding: 40px 30px 40px 50px;
    pointer-events: none;
}

.hero-overlay-content {
    max-width: 540px;
    pointer-events: auto;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 232, 247, 0.20);
    backdrop-filter: blur(8px);
    -webkit-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;
}

.hero-overlay-content h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--cream);
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.20);
}

.hero-overlay-content p {
    font-size: clamp(0.95rem, 1.3vw, 1.15rem);
    color: rgba(255, 255, 255, 0.90);
    max-width: 460px;
    line-height: 1.7;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
}

/* --- Buttons (Hidden as requested) --- */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

/* --- Slide Indicators (Dots) --- */
.slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.10);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.60);
}

.dot.active {
    background: var(--cream);
    border-color: var(--cream);
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(253, 248, 240, 0.25);
}

/* --- Navigation Arrows --- */
.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--cream);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-arrow:hover {
    background: rgba(255, 255, 255, 0.20);
    transform: translateY(-50%) scale(1.05);
}

.slide-arrow.prev {
    left: 20px;
}

.slide-arrow.next {
    right: 20px;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* Tablets */
@media (max-width: 992px) {
    .hero {
        height: 85vh;
        min-height: 450px;
        max-height: 650px;
    }

    .hero-overlay {
        width: 65%;
        padding: 30px 25px 30px 40px;
    }

    .hero-overlay-content h1 {
        font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    }

    .slide::before {
        width: 50%;
    }

    .slide::after {
        width: 80%;
    }
}

/* Mobile Phones */
@media (max-width: 768px) {
    .hero {
        height: 70vh;
        min-height: 400px;
        max-height: 550px;
    }

    .hero-overlay {
        width: 100%;
        padding: 20px 24px;
        justify-content: center;
        text-align: center;
        
        );
    }

    .hero-overlay-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-overlay-content h1 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .hero-overlay-content p {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 4px 14px;
    }

    /* On mobile, the blur gradient is less prominent */
    .slide::before {
        display: none;
    }

    .slide::after {
    width: 100%;
    background: linear-gradient(
        to bottom,
        rgba(106, 27, 42, 0) 0%,       /* ← Transparent at TOP (clear image) */
        rgba(106, 27, 42, 0.30) 40%,   /* ← Medium blur starts */
        rgba(106, 27, 42, 0.85) 100%   /* ← Dark at BOTTOM (text sits here) */
    );
}

    .slide-indicators {
        bottom: 16px;
        gap: 10px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .slide-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .slide-arrow.prev {
        left: 10px;
    }

    .slide-arrow.next {
        right: 10px;
    }
}

/* Very Small Phones */
@media (max-width: 480px) {
    .hero {
        height: 60vh;
        min-height: 350px;
        max-height: 450px;
    }

    .hero-overlay {
        padding: 16px 18px;
    }

    .hero-overlay-content h1 {
        font-size: 1.3rem;
    }

    .hero-overlay-content p {
        font-size: 0.85rem;
    }
}

/* ========================================
   TRUST STRIP
   ======================================== */
.trust-strip {
    background: var(--maroon);
    padding: 40px 0;
    color: var(--cream);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}

.trust-item i {
    font-size: 2.2rem;
    color: var(--light-blue);
    margin-bottom: 6px;
}

.trust-number {
    font-size: 2.2rem;
    font-weight: 700;
    display: inline-block;
}

.trust-suffix {
    font-size: 2rem;
    font-weight: 700;
}

.trust-item p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.trust-item small {
    opacity: 0.7;
    font-size: 0.8rem;
}

/* ========================================
   SERVICES
   ======================================== */
.services {
    padding: 60px 0;
    background: var(--cream);
}

.section-title {
    font-size: 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 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--maroon);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(106, 27, 42, 0.10);
}

.service-card i {
    font-size: 2.8rem;
    color: var(--maroon);
    margin-bottom: 12px;
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--maroon-dark);
    margin-bottom: 8px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.service-link {
    font-weight: 600;
    color: var(--maroon);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
    color: var(--maroon-dark);
}

/* ========================================
   JOURNEY
   ======================================== */
.journey {
    padding: 60px 0;
    background: var(--light-blue);
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 30px 0 36px;
}

.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;
}

.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 i {
    font-size: 2.2rem;
    color: var(--maroon);
    margin-bottom: 8px;
    display: block;
}

.step h4 {
    font-size: 1.1rem;
    color: var(--maroon-dark);
    margin-bottom: 4px;
}

.step p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.journey-cta {
    text-align: center;
}

/* ========================================
   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.25rem;
    font-weight: 500;
    color: var(--maroon-dark);
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    margin-top: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

/* ========================================
   TESTIMONIAL SLIDESHOW
   ======================================== */
.testimonial {
    padding: 60px 0;
    background: var(--cream-dark);
    position: relative;
}

.testimonial-slideshow {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    padding: 0 50px;
}

/* --- Testimonial Slides --- */
.testimonial-slide {
    display: none;
    animation: fadeInUp 0.8s ease-out both;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Testimonial Card --- */
.testimonial-card {
    text-align: center;
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card i.fa-quote-left {
    font-size: 3rem;
    color: var(--maroon);
    opacity: 0.15;
    margin-bottom: 4px;
    display: block;
}

.testimonial-card blockquote {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--maroon-dark);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 12px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
}

/* --- Star Ratings --- */
.testimonial-stars {
    color: #f4b400;
    font-size: 1rem;
    letter-spacing: 3px;
}

.testimonial-stars i {
    margin: 0 2px;
}

/* --- Testimonial Indicators (Dots) --- */
.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--maroon);
    opacity: 0.25;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.testimonial-dot:hover {
    opacity: 0.5;
}

.testimonial-dot.active {
    opacity: 1;
    transform: scale(1.2);
    background: var(--maroon);
}

/* --- Testimonial Navigation Arrows --- */
.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--maroon-dark);
    border: 2px solid var(--maroon);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 5;
}

.testimonial-arrow:hover {
    background: var(--maroon);
    color: var(--cream);
    transform: translateY(-50%) scale(1.05);
}

.testimonial-arrow.prev {
    left: -10px;
}

.testimonial-arrow.next {
    right: -10px;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* Tablets */
@media (max-width: 992px) {
    .testimonial-slideshow {
        padding: 0 40px;
    }

    .testimonial-card blockquote {
        font-size: 1.1rem;
    }

    .testimonial-arrow {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .testimonial-arrow.prev {
        left: -5px;
    }

    .testimonial-arrow.next {
        right: -5px;
    }
}

/* Mobile Phones */
@media (max-width: 768px) {
    .testimonial {
        padding: 40px 0;
    }

    .testimonial-slideshow {
        padding: 0 30px;
    }

    .testimonial-card {
        padding: 28px 18px;
    }

    .testimonial-card blockquote {
        font-size: 1rem;
    }

    .testimonial-card i.fa-quote-left {
        font-size: 2.2rem;
    }

    .testimonial-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .testimonial-arrow.prev {
        left: -2px;
    }

    .testimonial-arrow.next {
        right: -2px;
    }

    .testimonial-dot {
        width: 10px;
        height: 10px;
    }

    .testimonial-indicators {
        gap: 10px;
        margin-top: 20px;
    }
}

/* Very Small Phones */
@media (max-width: 480px) {
    .testimonial-slideshow {
        padding: 0 20px;
    }

    .testimonial-card {
        padding: 20px 14px;
    }

    .testimonial-card blockquote {
        font-size: 0.9rem;
    }

    .testimonial-arrow {
        display: none;
    }
}

/* ========================================
   LOCATIONS
   ======================================== */
.locations {
    padding: 60px 0;
    background: var(--cream);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin: 30px 0 20px;
}

.location-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border-left: 4px solid var(--maroon);
}

.location-card h3 {
    color: var(--maroon-dark);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.location-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.map-placeholder {
    background: var(--cream-dark);
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.visiting-hours {
    text-align: center;
    margin-top: 16px;
    padding: 16px;
    background: var(--light-blue);
    border-radius: var(--radius);
    color: var(--maroon-dark);
}

/* ========================================
   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;
    }
}
/* ========================================
   FLOATING ACTION BUTTON (FAB) - WHATSAPP
   ======================================== */
.fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: #25D366; /* WhatsApp Green */
    color: #ffffff;
    border: none;
    border-radius: 60px;
    padding: 16px 24px;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
    letter-spacing: 0.3px;
}

.fab:hover {
    transform: scale(1.05) translateY(-3px);
    background: #20b85a;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}

.fab:active {
    transform: scale(0.95);
}

.fab i.fa-whatsapp {
    font-size: 1.8rem;
    color: #ffffff;
}

.fab .fab-tooltip {
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 0.3px;
    color: #ffffff;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* Mobile Phones */
@media (max-width: 768px) {
    .fab {
        padding: 14px 18px;
        font-size: 1rem;
        bottom: 18px;
        right: 18px;
        gap: 10px;
    }

    .fab i.fa-whatsapp {
        font-size: 1.5rem;
    }

    .fab .fab-tooltip {
        display: none; /* Hide text on mobile, show only icon */
    }
}

/* Very Small Phones */
@media (max-width: 480px) {
    .fab {
        padding: 12px 16px;
        bottom: 14px;
        right: 14px;
    }

    .fab i.fa-whatsapp {
        font-size: 1.3rem;
    }
}
/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* Tablets & Small Laptops */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-image img {
        height: 260px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .trust-grid {
        gap: 12px;
    }
}

/* 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;
    }

    .hero {
        padding: 30px 0 40px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        justify-content: center;
        width: 100%;
        padding: 14px 20px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .trust-item {
        padding: 8px 0;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .journey-steps {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-emergency {
        flex-direction: column;
        text-align: center;
    }

    .fab {
        padding: 14px 18px;
        font-size: 1.1rem;
        bottom: 18px;
        right: 18px;
    }

    .fab .fab-tooltip {
        display: none;
    }
}

/* Very Small Phones */
@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .utility-actions {
        gap: 6px;
    }

    .logo {
        font-size: 1rem;
    }

    .logo-icon {
        font-size: 1.2rem;
    }
}

/* ========================================
   LOCATIONS
   ======================================== */
.locations {
    padding: 60px 0;
    background: var(--cream);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0 20px;
}

.location-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border-left: 4px solid var(--maroon);
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(106, 27, 42, 0.10);
}

.location-card h3 {
    color: var(--maroon-dark);
    margin-bottom: 4px;
    font-size: 1.2rem;
}

.location-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.location-card a {
    color: var(--maroon);
    text-decoration: none;
}

.location-card a:hover {
    text-decoration: underline;
}

/* --- Map Container --- */
.map-container {
    margin-top: 14px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 250px;
    border: 0;
}

.visiting-hours {
    text-align: center;
    margin-top: 24px;
    padding: 16px;
    background: var(--light-blue);
    border-radius: var(--radius);
    color: var(--maroon-dark);
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* Mobile Phones */
@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .location-card {
        padding: 18px;
    }

    .map-container iframe {
        height: 200px;
    }

    .visiting-hours {
        font-size: 0.9rem;
        padding: 14px;
    }
}

/* Very Small Phones */
@media (max-width: 480px) {
    .locations {
        padding: 40px 0;
    }

    .map-container iframe {
        height: 180px;
    }

    .visiting-hours p {
        font-size: 0.85rem;
    }
}

/* --- Map Container --- */
.map-container {
    margin-top: 12px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.location-card {
    padding: 0 0 24px 0;
    overflow: hidden;
    border-left: 4px solid var(--maroon);
}

.location-card h3 {
    padding: 0 24px;
}

.location-card p {
    padding: 0 24px;
}
.location-image {
    width: 100%;
    height: 160px;           /* ← Fixed height for consistency */
    overflow: hidden;        /* ← Crops any overflow */
    border-radius: var(--radius) var(--radius) 0 0;  /* ← Rounded top corners */
    margin-bottom: 16px;     /* ← Space between photo and text */
    background: var(--cream-dark);  /* ← Fallback color while loading */
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;       /* ← Ensures image fills the box nicely */
    transition: var(--transition);
}

.location-card:hover .location-image img {
    transform: scale(1.03);  /* ← Slight zoom on hover */
}
/* ========================================
   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;
    }
}
/* ========================================
   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;
    }
}
/* ========================================
   SCHOOL NAVIGATION BUTTON
   ======================================== */
.nav-school-btn {
    background: var(--light-blue) !important;
    color: var(--maroon-dark) !important;
    font-weight: 700 !important;
    border-radius: 30px !important;
    padding: 6px 18px !important;
    transition: var(--transition);
}

.nav-school-btn:hover {
    background: var(--cream) !important;
    transform: scale(1.05);
}