:root {
    --primary-magenta: #e91e63;
    --secondary-green: #8bc34a;
    --dark-navy: #1a2a3a;
    --light-gray: #f8f9fa;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: var(--white);
    color: var(--dark-navy);
    line-height: 1.6;
}

/* Horizontal Navbar */
header.main-nav {
    background: var(--white);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img { height: 60px; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-navy);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-magenta);
}

/* Lively Hero Section */
.hero-slider {
    position: relative;
    height: 500px;
    background: #222;
    overflow: hidden;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
}

/* PATCH: Added secondary layer element properties for flawless visual cross-fading */
.hero-slider-bg-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hero-content {
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.hero-content h1 { font-size: 3rem; margin-bottom: 1rem; }

/* Content Sections */
section { padding: 5rem 10%; }

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-magenta);
}

.section-title .underline {
    width: 80px;
    height: 4px;
    background: var(--secondary-green);
    margin: 10px auto;
}

/* Feature Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 15px;
    background: var(--light-gray);
    transition: transform 0.3s, box-shadow 0.3s;
    border-bottom: 5px solid var(--secondary-green);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.director-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid var(--white);
}

/* Contact Form */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.form-group { margin-bottom: 1.5rem; }

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.btn-submit {
    background: var(--primary-magenta);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
}
/* Sticky Phone Button */
.sticky-phone {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--secondary-green);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 2000;
    transition: 0.3s;
    text-decoration: none;
}

.sticky-phone:hover {
    transform: scale(1.1);
    background: var(--primary-magenta);
}

/* Background animation for Slider */
.hero-slider {
    background-size: cover;
    background-position: center;
    transition: background-image 1.2s ease-in-out;
}

/* Responsive fixes for mobile links */
@media (max-width: 768px) {
    header.main-nav {
        flex-direction: column;
        padding: 1rem;
    }
    .nav-links {
        margin-top: 1rem;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .contact-container {
        grid-template-columns: 1fr;
    }
}
/* Premium Site Footer Styling */
.site-footer {
    background: #0d1b2a; /* Deep contrast tone to ground your navy/light-gray layout */
    color: #e0e0e0;
    padding: 5rem 5% 2rem;
    font-size: 0.95rem;
    border-top: 5px solid var(--primary-magenta);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
}

.footer-col h4 {
    color: white;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 35px;
    height: 2px;
    background: var(--secondary-green);
}

.footer-about p {
    line-height: 1.6;
    color: #a0aec0;
    margin-top: 1rem;
}

.footer-logo img {
    height: 50px;
    border-radius: 8px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--secondary-green);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
    color: #a0aec0;
    line-height: 1.4;
}

.footer-contact i {
    color: var(--secondary-green);
    margin-top: 3px;
}

.emergency-tag {
    display: inline-block;
    background: rgba(233, 30, 99, 0.1);
    color: var(--primary-magenta);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-top: 5px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 4rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: #718096;
}

.footer-socials {
    display: flex;
    gap: 1.2rem;
}

.footer-socials a {
    color: #a0aec0;
    font-size: 1.2rem;
    transition: color 0.2s ease;
}

.footer-socials a:hover {
    color: var(--primary-magenta);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}