/* Skip Navigation */
.skip-nav {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-red);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    text-decoration: none;
    z-index: 10001;
    transition: top 0.3s ease;
}

.skip-nav:focus {
    top: 0;
    outline: 3px solid var(--primary-yellow);
    outline-offset: 2px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 1s ease, visibility 1s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    position: relative;
}

.loading-logo {
    animation: logoFloat 3s ease-in-out infinite;
    margin-bottom: 40px;
}

.loading-logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    animation: logoSpin 4s linear infinite;
    margin-bottom: 20px;
}

.loading-logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    opacity: 0;
    animation: textFadeIn 2s ease-in-out 0.5s forwards;
}

.loading-animation {
    margin-top: 30px;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin: 0 auto 20px;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-yellow), var(--secondary-yellow));
    border-radius: 2px;
    animation: loadingProgress 3s ease-in-out forwards;
    transform: translateX(-100%);
}

.loading-text {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0;
    animation: textFadeIn 1s ease-in-out 1s forwards;
}

.loading-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-yellow);
    border-radius: 50%;
    opacity: 0.7;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation: particleFloat 4s ease-in-out infinite;
}

.particle:nth-child(2) {
    top: 80%;
    left: 80%;
    animation: particleFloat 3s ease-in-out infinite 0.5s;
}

.particle:nth-child(3) {
    top: 30%;
    right: 20%;
    animation: particleFloat 5s ease-in-out infinite 1s;
}

.particle:nth-child(4) {
    bottom: 20%;
    left: 30%;
    animation: particleFloat 3.5s ease-in-out infinite 1.5s;
}

.particle:nth-child(5) {
    top: 60%;
    left: 60%;
    animation: particleFloat 4.5s ease-in-out infinite 2s;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes logoSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes textFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes loadingProgress {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: translate(20px, -20px) scale(1.2);
        opacity: 1;
    }
}

:root {
    --primary-red: #C41E3A;
    --secondary-red: #8B0000;
    --primary-yellow: #FFD700;
    --secondary-yellow: #FFA500;
    --light-yellow: #FFF8DC;
    --dark-red: #800020;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-gray: #666666;
    --dark-gray: #333333;
    --text-dark: #2C2C2C;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
}

.nav-menu {
    display: flex;
    list-style: none !important;
    gap: 30px;
    margin: 0 !important;
    padding: 0 !important;
    align-items: center;
}

.nav-item {
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
}

.nav-item::before {
    display: none !important;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 16px;
    border-radius: 8px;
    display: block;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red);
    background: rgba(196, 30, 58, 0.05);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary-yellow);
    border-radius: 2px;
}

.staff-login-btn {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: white !important;
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 600;
}

.staff-login-btn:hover {
    background: linear-gradient(135deg, var(--secondary-red), var(--primary-red));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-red);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: none;
    z-index: 1000;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    line-height: 1;
}

.back-to-top:hover,
.back-to-top:focus-visible {
    background: var(--secondary-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.back-to-top i {
    pointer-events: none;
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    margin-top: 70px;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-yellow) 0%, rgba(255, 255, 255, 0.9) 50%, var(--white) 100%);
    display: flex;
    align-items: center;
    min-height: 700px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-red), var(--secondary-red), var(--primary-yellow), var(--secondary-yellow));
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    opacity: 0.08;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(196, 30, 58, 0.1) 0%, transparent 50%);
    z-index: 1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating Animation for Interactive Elements */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes slideInFromLeft {
    0% { transform: translateX(-100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideInFromRight {
    0% { transform: translateX(100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

.parallax-element {
    transition: transform 0.1s ease-out;
}

/* Enhanced hover effects for service cards */
.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.2);
}

.hero-title {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(196, 30, 58, 0.2);
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--secondary-yellow));
    border-radius: 2px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 400;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-image:hover img {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

.btn-primary:hover {
    background: var(--secondary-red);
    border-color: var(--secondary-red);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--primary-yellow);
    color: var(--text-dark);
    border-color: var(--primary-yellow);
}

.btn-secondary:hover {
    background: var(--secondary-yellow);
    border-color: var(--secondary-yellow);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-red);
    border-color: var(--primary-red);
}

.btn-outline:hover {
    background: var(--primary-red);
    color: var(--white);
}

/* Mission Section */
.mission {
    padding: 80px 0;
    background: var(--primary-red);
    color: var(--white);
}

.mission-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mission h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.mission p {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 60px;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--secondary-yellow);
}

/* Philosophy Section */
.philosophy {
    padding: 80px 0;
    background: var(--white);
}

.philosophy-content {
    text-align: center;
}

.philosophy h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 60px;
    font-weight: 700;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.philosophy-item {
    text-align: center;
}

.philosophy-item i {
    font-size: 3rem;
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

.philosophy-item p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--light-yellow);
}

.testimonials-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 50px;
    opacity: 0.8;
}

/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    margin-bottom: 60px;
    overflow: hidden;
    border-radius: 15px;
}

.testimonial-slide {
    display: none;
    animation: slideIn 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-card.featured {
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px var(--shadow);
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border: 3px solid var(--primary-yellow);
}

.testimonial-card.featured::before {
    content: '"';
    font-size: 6rem;
    color: var(--primary-yellow);
    position: absolute;
    top: -20px;
    left: 30px;
    font-family: serif;
    opacity: 0.3;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}

.carousel-btn {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.carousel-btn:hover {
    background: var(--secondary-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.carousel-dots {
    display: flex;
    gap: 15px;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(196, 30, 58, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--primary-red);
    transform: scale(1.2);
}

/* Testimonial Rating */
.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.stars {
    display: flex;
    gap: 3px;
}

.stars i {
    color: var(--primary-yellow);
    font-size: 1.2rem;
}

.rating-text {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* Regular Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-yellow);
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 1rem;
}

.testimonial-card.featured .testimonial-content p {
    font-size: 1.3rem;
    line-height: 1.7;
}

.testimonial-author {
    color: var(--primary-red);
    font-weight: 600;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-subtitle {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 400;
    opacity: 0.8;
}

.review-date {
    display: block;
    font-size: 0.8rem;
    color: var(--text-dark);
    font-weight: 400;
    opacity: 0.6;
    margin-top: 5px;
}

/* Testimonials Footer */
.testimonials-footer {
    text-align: center;
    padding-top: 40px;
    border-top: 2px solid rgba(196, 30, 58, 0.1);
}

.testimonials-note {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.7;
    margin-bottom: 20px;
}

.testimonials-footer .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Video Section */
.video-section {
    background: var(--white);
    padding: 80px 0;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px var(--shadow);
    overflow: hidden;
    position: relative;
}

.facility-video {
    width: 100%;
    height: 450px;
    display: block;
    border-radius: 15px 15px 0 0;
    border: none;
}

.video-caption {
    padding: 20px 30px;
    background: var(--light-yellow);
    text-align: center;
}

.video-caption p {
    margin: 0;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
}

.video-caption i {
    color: var(--primary-red);
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Video responsive styles */
@media (max-width: 768px) {
    .video-container {
        margin: 0 20px;
        border-radius: 10px;
    }
    
    .facility-video {
        height: 350px;
        border-radius: 10px 10px 0 0;
    }
    
    .video-caption {
        padding: 15px 20px;
    }
    
    .video-caption p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .video-container {
        margin: 0 10px;
    }
    
    .facility-video {
        height: 250px;
    }
    
    .video-caption {
        padding: 12px 15px;
    }
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: var(--primary-red);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-section h3 {
    color: var(--primary-yellow);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-yellow);
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-section a {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    color: var(--white);
    text-decoration: none;
}

.footer-section a:visited {
    color: var(--white);
}

.footer-section a:hover {
    color: var(--primary-yellow);
}

.footer a:focus-visible {
    outline: 2px solid var(--primary-yellow);
    outline-offset: 2px;
    border-radius: 4px;
}

.footer-section i {
    color: var(--primary-yellow);
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid var(--medium-gray);
    padding-top: 20px;
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 2; /* ensure above decorative overlay */
}

/* Ensure footer logo text is high-contrast */
.footer .logo-text {
    color: var(--white);
}

/* Improve overall footer legibility */
.footer .container {
    position: relative;
    z-index: 2;
}
.footer .footer-section p,
.footer .footer-section li {
    color: #ffffff;
}
.footer .footer-section h3,
.footer .footer-section i {
    color: #FFF59D; /* lighter yellow for better contrast */
}
.footer .footer-section a {
    color: #ffffff !important; /* override inline styles if present */
}
.footer .footer-section a:visited {
    color: #ffffff !important;
}
.footer .footer-section a:hover {
    color: var(--primary-yellow) !important;
}
.footer .footer-section p,
.footer .footer-section a,
.footer-bottom p {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

/* Social Media Section */
.footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-yellow);
    color: var(--text-dark);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.footer-social a:hover {
    background: var(--secondary-yellow);
    transform: scale(1.1);
}

/* Copyright Text - Red Color */
.footer-bottom p {
    color: #ff4444;
    font-weight: 600;
    font-size: 1.05rem;
}

/* Header Facebook Icon */
.nav-social {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: 20px;
}

.nav-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.nav-social a:hover {
    background: var(--secondary-red);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 30px 0;
        gap: 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 0;
        padding: 0;
    }

    .nav-link {
        padding: 15px 20px;
        margin: 5px 20px;
        border-radius: 10px;
        font-size: 1.1rem;
    }

    .nav-link.active::after {
        display: none;
    }

    .staff-login-btn {
        margin: 10px 20px;
        padding: 15px 30px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card.featured {
        padding: 30px;
        margin: 0 20px;
    }

    .testimonial-card.featured::before {
        font-size: 4rem;
        top: -15px;
        left: 20px;
    }

    .testimonial-card.featured .testimonial-content p {
        font-size: 1.1rem;
    }

    .carousel-nav {
        gap: 20px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Mobile footer readability */
    .footer-section h3 {
        font-size: 1.25rem;
        line-height: 1.4;
    }
    .footer-section p,
    .footer-section li,
    .footer-section a,
    .footer-bottom p {
        font-size: 1.05rem;
        line-height: 1.7;
    }
    .footer-section ul li {
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .testimonial-card.featured {
        padding: 20px;
        margin: 0 10px;
    }

    .testimonial-card.featured .testimonial-content p {
        font-size: 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .carousel-nav {
        gap: 15px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .dot {
        width: 12px;
        height: 12px;
    }

    /* Extra small screens: bump footer text slightly more */
    .footer-section h3 {
        font-size: 1.3rem;
    }
    .footer-section p,
    .footer-section li,
    .footer-section a,
    .footer-bottom p {
        font-size: 1.1rem;
        line-height: 1.75;
    }
}

/* Page-specific styles */
.page-header {
    margin-top: 70px;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    padding: 60px 0;
}

.content-section:nth-child(even) {
    background: var(--light-gray);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.content-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.content-card h3 {
    color: var(--primary-red);
    margin-bottom: 15px;
    font-weight: 600;
}

.content-card p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.content-card ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.content-card ul li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.highlight-box {
    background: var(--light-yellow);
    border-left: 4px solid var(--primary-yellow);
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px;
}

.highlight-box h3 {
    color: var(--primary-red);
    margin-bottom: 15px;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.staff-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
}

.staff-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-red);
}

.staff-card h3 {
    color: var(--primary-red);
    margin-bottom: 10px;
    font-weight: 600;
}

.staff-title {
    color: var(--primary-yellow);
    font-weight: 500;
    margin-bottom: 15px;
}

/* Google Form Container (kept for other pages) */
.google-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
    overflow: hidden;
}

.google-form-container iframe {
    width: 100%;
    min-height: 1200px;
    border: none;
    border-radius: 5px;
}

/* Responsive adjustments for Google Form */
@media (max-width: 768px) {
    .google-form-container {
        padding: 10px;
        margin: 0 10px;
    }

    .google-form-container iframe {
        min-height: 1000px;
    }
}

@media (max-width: 480px) {
    .google-form-container {
        padding: 5px;
        margin: 0 5px;
    }

    .google-form-container iframe {
        min-height: 900px;
    }
}

/* Contact Form */
.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.contact-form label .required {
    color: var(--primary-red);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: var(--dark-gray);
    background: #fafafa;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
    background: var(--white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-submit {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
}

.contact-form .btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-status {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-status i {
    margin-right: 8px;
}

.form-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.form-error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 24px 16px;
        margin: 0 10px;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.contact-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.contact-item h3 {
    color: var(--primary-red);
    margin-bottom: 15px;
    font-weight: 600;
}

.success-message {
    max-width: 600px;
    margin: 30px auto;
    background: var(--light-yellow);
    border: 2px solid var(--primary-yellow);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
}

.success-content i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.success-content h3 {
    color: var(--primary-red);
    margin-bottom: 15px;
    font-weight: 600;
}

.success-content p {
    color: var(--text-dark);
    line-height: 1.6;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
}

.schedule-table th,
.schedule-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.schedule-table th {
    background: var(--primary-red);
    color: var(--white);
    font-weight: 600;
}

.schedule-table tr:hover {
    background: var(--light-yellow);
}

/* Behavioral Goals Section */
.behavioral-goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.behavioral-goal-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(196, 30, 58, 0.1);
    overflow: hidden;
    position: relative;
}

.behavioral-goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.behavioral-goal-card:hover::before {
    transform: scaleX(1);
}

.behavioral-goal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.15);
}

.goal-header {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.goal-header:hover {
    background-color: rgba(196, 30, 58, 0.02);
}

.goal-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.2);
}

.goal-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.goal-header h3 {
    flex: 1;
    color: var(--primary-red);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.expand-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(196, 30, 58, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.expand-icon i {
    color: var(--primary-red);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.behavioral-goal-card.expanded .expand-icon {
    background: var(--primary-red);
}

.behavioral-goal-card.expanded .expand-icon i {
    color: var(--white);
    transform: rotate(180deg);
}

.goal-content {
    padding: 0 25px 0px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
}

.behavioral-goal-card.expanded .goal-content {
    max-height: 200px;
    opacity: 1;
    padding-bottom: 25px;
}

.goal-content p {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Responsive adjustments for behavioral goals */
@media (max-width: 768px) {
    .behavioral-goals-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .goal-header {
        padding: 20px;
        gap: 15px;
    }
    
    .goal-icon {
        width: 50px;
        height: 50px;
    }
    
    .goal-icon i {
        font-size: 1.3rem;
    }
    
    .goal-header h3 {
        font-size: 1.1rem;
    }
    
    .goal-content {
        padding: 0 20px 0px;
    }
    
    .behavioral-goal-card.expanded .goal-content {
        padding-bottom: 20px;
    }
}

/* Staff Login Button Styling */
.staff-login-btn {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: white;
    border-radius: 20px;
    padding: 8px 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.staff-login-btn:hover {
    background: linear-gradient(135deg, var(--secondary-red), var(--primary-red));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.staff-login-btn:active {
    transform: translateY(0);
}

/* Mobile responsive for staff login button */
@media (max-width: 768px) {
    .staff-login-btn {
        margin-top: 10px;
        display: block;
        text-align: center;
    }
}

/* ===== MODERN DESIGN ENHANCEMENTS ===== */

/* Modern Typography Enhancements with Fluid Sizing */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.8rem);
    font-weight: 600;
}

p {
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

/* Enhanced Content Sections */
.content-section {
    padding: 80px 0;
    position: relative;
}

.content-section:nth-child(even) {
    background: linear-gradient(135deg, rgba(255, 248, 220, 0.3) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

/* Modern List Styling - Exclude Navigation */
.content-section ul,
.content-card ul,
.footer-section ul,
main ul,
section ul {
    list-style: none;
    padding: 0;
}

.content-section ul li,
.content-card ul li,
.footer-section ul li,
main ul li,
section ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.6;
    color: var(--text-dark);
}

.content-section ul li::before,
.content-card ul li::before,
.footer-section ul li::before,
main ul li::before,
section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--text-dark) 100%);
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-red), var(--secondary-red), var(--primary-yellow));
    background-size: 400% 400%;
    animation: gradientShift 25s ease infinite;
    opacity: 0.05;
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
}

/* Modern Form Styling */
.google-form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
}

.google-form-container iframe {
    border-radius: 15px;
    overflow: hidden;
}

/* Map Section Styles */
.map-section {
    background: linear-gradient(135deg, var(--light-yellow) 0%, rgba(255, 215, 0, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-yellow));
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    opacity: 0.05;
    z-index: 1;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.map-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-yellow));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.map-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.map-wrapper iframe {
    display: block;
    position: relative;
    z-index: 2;
    transition: filter 0.3s ease;
}

.location-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(196, 30, 58, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.location-card:hover::before {
    left: 100%;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(196, 30, 58, 0.15);
}

.location-card h3 {
    color: var(--primary-red);
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-card h3 i {
    color: var(--primary-yellow);
    font-size: 1.2rem;
}

.location-card p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

.map-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.map-actions .btn {
    flex: 1;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    padding: 12px 20px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.map-actions .btn:hover {
    transform: translateY(-2px);
}

/* Enhanced Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: white;
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-red), var(--dark-red));
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.1);
}

.btn-outline:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.3);
}

/* Enhanced Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--secondary-yellow));
    border-radius: 2px;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--secondary-red));
    border-radius: 2px;
}

/* Enhanced Content Cards */
.content-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.content-card:hover::before {
    left: 100%;
}

.content-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(196, 30, 58, 0.15);
    border-color: rgba(255, 215, 0, 0.3);
}

.content-card h3 {
    color: var(--primary-red);
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.content-card h3 i {
    color: var(--primary-yellow);
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
}

/* Enhanced Contact Info Cards */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(196, 30, 58, 0.15);
}

.contact-item i {
    font-size: 3rem;
    color: var(--primary-yellow);
    margin-bottom: 20px;
    display: block;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-item h3 {
    color: var(--primary-red);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-item small {
    color: var(--medium-gray);
    font-style: italic;
}

/* Enhanced Page Headers */
.page-header {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-red), var(--secondary-red), var(--primary-yellow));
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    opacity: 0.3;
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Design for Map Section */
@media (max-width: 768px) {
    .map-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .map-wrapper {
        border-radius: 15px;
    }
    
    .location-card {
        padding: 30px 25px;
        border-radius: 15px;
    }
    
    .map-actions {
        flex-direction: column;
    }
    
    .map-actions .btn {
        min-width: auto;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .contact-item {
        padding: 30px 25px;
    }
    
    .content-card {
        padding: 30px 25px;
    }
}

/* Modern Testimonials Enhancement */
.testimonials {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials .section-title,
.testimonials-subtitle {
    color: var(--white) !important;
    opacity: 1 !important;
}

.testimonials-footer {
    border-top-color: rgba(255, 255, 255, 0.2) !important;
}

.testimonials-note {
    color: rgba(255, 255, 255, 0.85) !important;
    opacity: 1 !important;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-red), var(--secondary-red), var(--primary-yellow));
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    opacity: 0.3;
    z-index: 1;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonial-slide {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 50px 40px;
    margin: 20px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.2);
}

/* Enhanced Statistics Section */
.stats-section {
    background: linear-gradient(135deg, var(--light-yellow) 0%, rgba(255, 215, 0, 0.1) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(196, 30, 58, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 70px rgba(196, 30, 58, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.1rem;
}

/* Modern Call-to-Action Sections */
.cta-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-red), var(--secondary-red), var(--primary-yellow));
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    opacity: 0.3;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .content-card, .contact-item, .location-card {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}
