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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
    overflow-x: hidden;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Progress Bar - Updated */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 9999;
    background: transparent; /* Removed black background */
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #F4C150, #ffd584, #F4C150);
    background-size: 200% 100%;
    width: 0%;
    transition: width 0.2s ease;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Button Hover Effects */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after {
    width: 300%;
    height: 300%;
}

/* Card Hover Effects */
.card, .environment-card {
    transition: all 0.3s ease;
}

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

/* Scroll Animations */
[data-scroll] {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

[data-scroll].scroll-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for multiple items */
[data-scroll-stagger] {
    transition-delay: calc(var(--stagger-index) * 0.1s);
}

/* Header Styles */
.top-bar {
    background-color: #2F4644;
    color: white;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.top-bar i {
    margin-right: 8px;
    color: #F4C150;
}

.top-bar a {
    color: white;
    text-decoration: none;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(47, 70, 68, 0.05);
}

.logo img {
    height: 140px;
    width: auto;
}

.nav-links ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links ul li a {
    color: #2F4644;
    text-decoration: none;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #F4C150;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links ul li a.active {
    color: #F4C150;
}

.nav-links ul li a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Remove hover effects to ensure active state persists */
.nav-links ul li a:not(.active):hover {
    color: #F4C150;
}

.nav-links ul li a:not(.active):hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.enquiry-btn {
    background-color: #F4C150;
    color: #2F4644;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.enquiry-btn:hover {
    background-color: #e5b543;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.65) 100%), url('../images/home/main-image.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 40px;
    color: white;
    margin-bottom: -10rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(255,255,255,1), transparent);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(244, 193, 80, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(244, 193, 80, 0.2);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }
}

.hero h1 {
    font-family: 'Lora', serif;
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #F4C150 0%, #ffd584 100%);
    color: #2F4644;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(244, 193, 80, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    background: linear-gradient(135deg, #ffd584 0%, #F4C150 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 193, 80, 0.4);
}

.hero-features {
    display: flex;
    gap: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    color: #F4C150;
    font-size: 1.2rem;
}

/* Welcome Section */
.welcome {
    padding: 100px 40px;
    text-align: center;
    background: linear-gradient(to bottom, #fff 0%, #fafafa 50%, #f8f8f8 100%);
    position: relative;
    overflow: hidden;
}

.welcome::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(47, 70, 68, 0.15), transparent);
}

.welcome::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244, 193, 80, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.welcome-header {
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
}

.welcome-header h2 {
    color: #F4C150;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.welcome-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #F4C150;
}

.welcome-header h3 {
    font-family: 'Lora', serif;
    color: #2F4644;
    font-size: 2.8rem;
    line-height: 1.3;
    font-weight: 500;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 40px auto;
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

.service-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(244, 193, 80, 0) 0%, rgba(244, 193, 80, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card .service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    color: white;
    transform: translateY(calc(100% - 80px));
    transition: transform 0.4s ease;
}

.service-card:hover .service-content {
    transform: translateY(0);
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-card h4 {
    font-size: 1.8rem;
    font-family: 'Lora', serif;
    margin-bottom: 15px;
    color: white;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    color: rgba(255, 255, 255, 0.9);
}

.service-card:hover p {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .service-cards {
        grid-template-columns: 1fr;
        padding: 0 15px;
        gap: 25px;
    }

    .service-card {
        height: 350px;
    }

    .service-card .service-content {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 70%, transparent 100%);
        padding: 20px;
    }

    .service-card h4 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .service-card p {
        font-size: 0.9rem;
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .hero {
        height: 70vh;
        padding: 0 15px;
        margin-bottom: -6rem;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .btn-primary {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .welcome {
        padding: 50px 15px;
    }

    .welcome-header {
        margin-bottom: 40px;
    }

    .welcome-header h2 {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
    }

    .welcome-header h3 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .service-cards {
        gap: 20px;
        padding: 0 10px;
    }

    .service-card {
        height: 300px;
    }

    .service-card h4 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }
}

/* Removed duplicate - handled above */

/* Care Home Section */
.care-home {
    padding: 80px 40px;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 50%, #f8f8f8 100%);
    position: relative;
}

.care-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(244, 193, 80, 0.2), transparent);
}

.care-home-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.care-home-text {
    flex: 1;
}

.section-label {
    color: #2F4644;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

.care-home-text h2 {
    font-family: 'Lora', serif;
    color: #2F4644;
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 25px;
    font-weight: 500;
}

.care-home-text p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.btn-secondary {
    background-color: #2F4644;
    color: white;
}

.btn-secondary:hover {
    background-color: #243635;
}

.care-home-images {
    flex: 1;
    position: relative;
}

.main-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.small-image {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 250px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services Section */
.services {
    padding: 100px 40px;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 50%, #f8f8f8 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(244, 193, 80, 0.2), transparent);
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.services-header h2 {
    font-family: 'Lora', serif;
    color: #2F4644;
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.services-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: #F4C150;
}

.services-header p {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(47, 70, 68, 0.05);
}

.service-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(244, 193, 80, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-item:hover::after {
    opacity: 1;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #F4C150;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(244, 193, 80, 0.2);
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item i {
    font-size: 2.5rem;
    color: #F4C150;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(244, 193, 80, 0.3));
}

.service-item:hover i {
    transform: scale(1.15) rotate(5deg);
    color: #2F4644;
    filter: drop-shadow(0 4px 8px rgba(47, 70, 68, 0.2));
}

.service-item h3 {
    color: #2F4644;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 20px;
    }
    
    .services-header {
        margin-bottom: 50px;
    }
    
    .services-header h2 {
        font-size: 2.2rem;
    }
    
    .services-header p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-item {
        padding: 30px 20px;
    }
    
    .service-item i {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .service-item h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 50px 15px;
    }
    
    .services-header {
        margin-bottom: 40px;
    }
    
    .services-header h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .services-header p {
        font-size: 0.95rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* Keep 2 columns on mobile for better fit */
        gap: 15px;
    }
    
    .service-item {
        padding: 25px 15px;
    }
    
    .service-item i {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .service-item h3 {
        font-size: 1rem;
        line-height: 1.3;
    }
}

/* Sticky Navigation */
.main-nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    animation: slideDown 0.3s ease-out;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(244, 193, 80, 0.1);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Mobile Menu */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #2F4644;
    cursor: pointer;
    padding: 10px;
}

@media (max-width: 1024px) {
    .mobile-menu-button {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: block;
    }

    .nav-links ul {
        flex-direction: column;
        align-items: center;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .care-home-content {
        flex-direction: column;
    }

    .small-image {
        right: 0;
    }

    .hero-features {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    /* Adjust header spacing since top bar is hidden */
    header {
        margin-top: 0;
    }

    .main-nav {
        border-bottom: 1px solid #eee;
    }

    .hero {
        padding: 0 20px;
        height: 80vh;
        margin-bottom: -8rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .hero-buttons {
        gap: 20px;
    }

    .welcome {
        padding: 60px 20px;
    }

    .welcome-header {
        margin-bottom: 50px;
    }

    .welcome-header h2 {
        font-size: 0.95rem;
        letter-spacing: 2px;
    }

    .welcome-header h3 {
        font-size: 2rem;
    }

    .service-cards {
        gap: 25px;
    }

    .care-home {
        padding: 60px 20px;
    }

    .care-home-text h2 {
        font-size: 2rem;
    }
}

/* Facilities Section */
.facilities {
    padding: 80px 40px;
    background-color: #f8f8f8;
}

.facilities-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.facilities-text {
    flex: 1;
}

.section-title {
    color: #2F4644;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 600;
}

.facilities-text h3 {
    font-family: 'Lora', serif;
    color: #2F4644;
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 500;
}

.facilities-list {
    list-style: none;
    margin-bottom: 40px;
}

.facilities-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #2F4644;
    font-size: 1.1rem;
}

.facilities-list i {
    color: #F4C150;
    font-size: 1.2rem;
}

/* Slider Styles */
.facilities-slider {
    flex: 1;
    position: relative;
}

.slider-container {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.slide.active {
    opacity: 1;
    position: relative;
}

.slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.prev-btn,
.next-btn {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2F4644;
    transition: all 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
    background: white;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #F4C150;
    transform: scale(1.2);
}

@media (max-width: 1024px) {
    .facilities {
        padding: 60px 30px;
    }

    .facilities-content {
        flex-direction: column;
        gap: 40px;
    }

    .facilities-text {
        text-align: center;
    }

    .facilities-list {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .facilities {
        padding: 50px 20px;
    }

    .facilities-text h3 {
        font-size: 2rem;
    }

    .facilities-list li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .facilities {
        padding: 40px 15px;
    }

    .facilities-text h3 {
        font-size: 1.6rem;
    }

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

/* Steps Section */
.steps {
    padding: 80px 40px;
    background-color: #fff;
    text-align: center;
}

.steps h2 {
    font-family: 'Lora', serif;
    color: #2F4644;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 500;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    padding: 30px;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    border-radius: 10px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(47, 70, 68, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(244, 193, 80, 0.2);
}

.step-number {
    font-family: 'Lora', serif;
    color: #2F4644;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.step h3 {
    color: #2F4644;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.step p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .steps {
        padding: 60px 30px;
    }

    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .steps {
        padding: 50px 20px;
    }

    .steps h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

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

@media (max-width: 480px) {
    .steps {
        padding: 40px 15px;
    }

    .steps h2 {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .step {
        padding: 20px;
    }
}

/* Testimonials Section - Enhanced Design */
.testimonials {
    padding: 80px 40px;
    background: linear-gradient(to bottom, #f8f8f8, #fff);
    overflow: hidden;
}

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

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header h2 {
    color: #2F4644;
    font-size: 2.5rem;
    font-family: 'Lora', serif;
    margin-bottom: 20px;
}

.testimonials-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(47, 70, 68, 0.05);
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #F4C150, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover::after {
    opacity: 1;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 120px;
    color: rgba(244, 193, 80, 0.1);
    font-family: 'Georgia', serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(244, 193, 80, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.testimonial-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #F4C150;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    color: #2F4644;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimonial-info .role {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-rating {
    color: #F4C150;
    font-size: 1.2rem;
    margin: 15px 0;
}

.testimonial-text {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-date {
    color: #999;
    font-size: 0.9rem;
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 20px;
    }

    .testimonials-header {
        margin-bottom: 40px;
    }

    .testimonials-header h2 {
        font-size: 2rem;
    }

    .testimonials-header p {
        font-size: 1rem;
    }

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

    .testimonial-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 50px 15px;
    }

    .testimonials-header h2 {
        font-size: 1.6rem;
    }

    .testimonials-header p {
        font-size: 0.95rem;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-image {
        width: 60px;
        height: 60px;
    }

    .testimonial-info h4 {
        font-size: 1.1rem;
    }
}

/* Mobile CTA Button - Hide at top, show only at bottom if needed */
@media (max-width: 768px) {
    .mobile-cta {
        display: none; /* Hide the "Make an Enquiry" button at top on mobile */
    }
}

/* Mobile CTA Button Fix - Removed bottom fixed button as it's not needed */
@media (max-width: 480px) {
    .mobile-cta {
        display: none; /* Keep hidden on all mobile sizes */
    }

    body {
        padding-bottom: 0; /* Remove padding since button is hidden */
    }
}

/* Supportive Environment Section */
.supportive-environment {
    padding: 80px 40px;
    background: #f4e7c9;
    text-align: center;
}

.supportive-environment h2 {
    font-family: 'Lora', serif;
    color: #2F4644;
    font-size: 2.5rem;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.supportive-environment h2.visible {
    opacity: 1;
    transform: translateY(0);
}

.environment-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.environment-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px; /* Fixed height for desktop */
}

.environment-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.environment-card:hover img {
    transform: scale(1.05);
}

.environment-card h3 {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    color: white;
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Statistics Section */
.statistics {
    padding: 100px 40px;
    background: linear-gradient(to right, #2F4644, #1a2b2a);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png');
    opacity: 0.1;
}

.statistics h2 {
    font-family: 'Lora', serif;
    color: white;
    font-size: 2.8rem;
    margin-bottom: 80px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 50px 30px;
    border-radius: 20px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-item h3 {
    font-family: 'Lora', serif;
    color: #F4C150;
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 500;
}

/* Events Section */
.events {
    padding: 100px 40px;
    background: linear-gradient(to bottom, #fff, #f8f8f8);
    text-align: center;
    position: relative;
}

.events h2 {
    font-family: 'Lora', serif;
    color: #2F4644;
    font-size: 2.8rem;
    margin-bottom: 80px;
    font-weight: 500;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.events h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: #F4C150;
}

.events-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.event-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(47, 70, 68, 0.05);
}

.event-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(244, 193, 80, 0.2);
}

.event-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event-card:hover img {
    transform: scale(1.1);
}

.event-content {
    padding: 30px;
    text-align: left;
    position: relative;
}

.event-type {
    display: inline-block;
    background-color: rgba(244, 193, 80, 0.1);
    color: #F4C150;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.event-card:hover .event-type {
    background-color: #F4C150;
    color: #2F4644;
}

.event-content h3 {
    font-family: 'Lora', serif;
    color: #2F4644;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.event-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.event-date {
    color: #999;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-date i {
    color: #F4C150;
}

/* FAQ Section */
.faq {
    padding: 80px 40px;
    background-color: #fff;
}

.faq-container {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-image {
    flex: 1;
    text-align: center;
}

.faq-image img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 30px;
}

.faq-image p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.faq-content {
    flex: 1;
}

.faq-content h2 {
    font-family: 'Lora', serif;
    color: #2F4644;
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 500;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-button {
    width: 100%;
    text-align: left;
    padding: 20px 0;
    background: none;
    border: none;
    font-size: 1.1rem;
    color: #2F4644;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-button i {
    transition: transform 0.3s ease;
}

.accordion-button.active i {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    padding: 0 0 20px;
}

.accordion-content.active {
    display: block;
}

.accordion-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 40px 0 40px;
    background-color: #f4f6fa;
    margin-bottom: 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-left {
    flex: 1;
    position: relative;
    padding-bottom: 200px;
}

.contact-left h2 {
    font-family: 'Lora', serif;
    color: #2F4644;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 40px;
    font-weight: 500;
}

.phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #F4C150;
    color: #2F4644;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.phone-btn:hover {
    background-color: #e5b543;
    transform: translateY(-2px);
}

.contact-image {
    position: absolute;
    bottom: 0;
    right: -40px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-right {
    flex: 1;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    color: #2F4644;
    font-size: 1.8rem;
    margin-bottom: 40px;
    font-weight: 500;
    line-height: 1.4;
}

.form-inquiring {
    margin-bottom: 35px;
}

.form-inquiring p {
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.radio-options {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.radio-options label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2F4644;
    font-size: 1rem;
    cursor: pointer;
}

.radio-options input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    outline: none;
    position: relative;
    margin: 0;
    cursor: pointer;
}

.radio-options input[type="radio"]:checked {
    border-color: #F4C150;
}

.radio-options input[type="radio"]:checked::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: #F4C150;
    border-radius: 50%;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    color: #2F4644;
    background-color: #f8f9fc;
    transition: all 0.3s ease;
}

input::placeholder,
textarea::placeholder {
    color: #999;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #F4C150;
    background-color: white;
}

textarea {
    height: 120px;
    resize: vertical;
    margin-bottom: 20px;
}

.btn-submit {
    width: 100%;
    background-color: #2F4644;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #243635;
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-left {
        text-align: center;
        padding-bottom: 300px;
    }

    .contact-image {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }
}

@media (max-width: 768px) {
    .contact-left h2 {
        font-size: 3rem;
    }

    .form-row {
        flex-direction: column;
    }

    .radio-options {
        justify-content: flex-start;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .contact-left h2 {
        font-size: 2.5rem;
    }

    .contact-image {
        width: 280px;
        height: 280px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .radio-options {
        flex-direction: column;
        gap: 15px;
    }
}

/* Remove bottom padding/margin from last section before footer */
section:last-of-type,
section:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Footer */
.footer {
    background-color: #2F4644;
    color: white;
    padding: 80px 40px 0;
    margin-top: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 2fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-logo img {
    height: 90px;
    margin-bottom: 10px;
}

.footer-logo address {
    font-style: normal;
    margin-bottom: 20px;
    line-height: 1.6;
}

.directions-link {
    color: #F4C150;
    text-decoration: none;
    display: block;
    margin-top: 5px;
}

.footer-phone,
.footer-email {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

.footer-column ul a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul a:hover {
    color: #F4C150;
}

.footer-newsletter h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 5px;
    background: transparent;
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #F4C150;
    color: #2F4644;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .events {
        padding: 80px 30px;
    }

    .events-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .faq-container {
        flex-direction: column;
    }

    .contact-container {
        flex-direction: column;
    }

    .footer {
        padding: 60px 30px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }

    .footer-links {
        justify-content: space-between;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .events {
        padding: 60px 20px;
    }

    .events h2 {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }

    .events-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .form-row {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .events {
        padding: 50px 15px;
    }

    .events h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .event-content {
        padding: 25px 20px;
    }

    .event-content h3 {
        font-size: 1.3rem;
    }

    .event-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 0;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        padding-bottom: 25px;
    }

    .footer-logo {
        text-align: center;
        grid-column: 1 / -1;
    }

    .footer-logo img {
        height: 70px;
        margin-bottom: 8px;
    }

    .footer-logo address {
        font-size: 0.85rem;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .footer-phone,
    .footer-email {
        font-size: 0.85rem;
        text-align: center;
        margin-bottom: 6px;
    }

    .directions-link {
        text-align: center;
        margin-top: 6px;
        font-size: 0.85rem;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        grid-column: 1 / -1;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column h4 {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .footer-column ul li {
        margin-bottom: 5px;
    }

    .footer-column ul a {
        font-size: 0.85rem;
    }

    .footer-newsletter {
        text-align: center;
        grid-column: 1 / -1;
    }

    .footer-newsletter h4 {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .footer-newsletter p {
        font-size: 0.8rem;
        margin-bottom: 12px;
        line-height: 1.4;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 15px;
    }

    .social-links {
        justify-content: center;
        gap: 10px;
    }

    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding: 12px 0;
    }

    .footer-bottom p {
        font-size: 0.75rem;
        padding: 0 15px;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 80px;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .radio-options {
        flex-direction: column;
        gap: 10px;
    }

    .footer {
        padding: 30px 15px 0;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
        padding-bottom: 20px;
    }

    .footer-logo {
        grid-column: 1 / -1;
    }

    .footer-logo img {
        height: 60px;
        margin-bottom: 6px;
    }

    .footer-logo address {
        font-size: 0.8rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .footer-phone,
    .footer-email {
        font-size: 0.8rem;
        margin-bottom: 5px;
    }

    .directions-link {
        font-size: 0.8rem;
        margin-top: 4px;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        grid-column: 1 / -1;
    }

    .footer-column h4 {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .footer-column ul li {
        margin-bottom: 4px;
    }

    .footer-column ul a {
        font-size: 0.8rem;
    }

    .footer-newsletter {
        grid-column: 1 / -1;
    }

    .footer-newsletter h4 {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .footer-newsletter p {
        font-size: 0.75rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .newsletter-form {
        margin-bottom: 12px;
        gap: 6px;
    }

    .newsletter-form input {
        padding: 8px;
        font-size: 0.8rem;
    }

    .social-links {
        gap: 8px;
    }

    .social-links a {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .footer-bottom {
        padding: 10px 0;
    }

    .footer-bottom p {
        font-size: 0.7rem;
        padding: 0 10px;
        line-height: 1.3;
    }
}

/* Section Scroll Animations */
section {
    opacity: 0;
    transform: translateY(100px);
    transition: all 1s ease;
}

section.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Book a Viewing Section */
.book-viewing {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
    background-color: #2F4644;
}

.book-viewing-wrapper {
    position: relative;
    width: 100%;
    min-height: 500px;
    padding: 120px 40px;
    background-image: linear-gradient(rgba(47, 70, 68, 0.85), rgba(47, 70, 68, 0.85)), url('../images/hands.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.book-viewing-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
}

.book-viewing-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.book-viewing .section-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    background: transparent;
    color: white;
    padding: 0;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.book-viewing h2 {
    font-family: 'Lora', serif;
    font-size: 3.2rem;
    line-height: 1.4;
    margin-bottom: 40px;
    color: white;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.book-viewing .book-now {
    position: relative;
    overflow: hidden;
    background: #F4C150;
    color: #2F4644;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    z-index: 1;
}

.book-viewing .book-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: -1;
}

.book-viewing .book-now:hover {
    color: #2F4644;
    transform: translateY(-5px);
}

.book-viewing .book-now:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .book-viewing h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .book-viewing-wrapper {
        padding: 80px 20px;
        min-height: 400px;
    }

    .book-viewing h2 {
        font-size: 2.4rem;
        margin-bottom: 30px;
    }

    .book-viewing .book-now {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .book-viewing h2 {
        font-size: 2rem;
        line-height: 1.3;
    }
}

/* Add different delays for consecutive sections */
section:nth-child(2) { transition-delay: 0.2s; }
section:nth-child(3) { transition-delay: 0.3s; }
section:nth-child(4) { transition-delay: 0.4s; }
section:nth-child(5) { transition-delay: 0.5s; }

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .supportive-environment {
        padding: 60px 20px;
    }

    .supportive-environment h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

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

    .environment-card {
        height: 300px;
    }

    .environment-card h3 {
        font-size: 1.3rem;
        bottom: 20px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .supportive-environment {
        padding: 50px 15px;
    }

    .supportive-environment h2 {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .environment-cards {
        gap: 15px;
    }

    .environment-card {
        height: 250px;
    }

    .environment-card h3 {
        font-size: 1.1rem;
        bottom: 15px;
        padding: 0 15px;
    }
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .main-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
        background: white;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 100;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .logo img {
        height: 100px;
    }

    .nav-cta {
        display: block;
    }

    .nav-cta .enquiry-btn {
        display: inline-block;
        padding: 8px 15px;
        background: #F4C150;
        color: #2F4644;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
    }

    body {
        padding-top: 60px;
    }
}

/* Map Section Responsive Styles */
.map-section {
    padding: 40px 20px;
}

.map-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.map-content {
    flex: 1;
}

.map-frame {
    flex: 1;
    height: 400px;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: none;
}

@media (max-width: 768px) {
    .map-container {
        flex-direction: column;
    }

    .map-content {
        width: 100%;
        text-align: center;
    }

    .map-frame {
        width: 100%;
        height: 300px; /* Slightly shorter on mobile */
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .map-frame {
        height: 250px; /* Even shorter for small screens */
    }
}

/* Hover effect for all headings and links */
h1:hover,
h2:hover,
h3:hover,
h4:hover,
.nav-links a:hover,
.service-card h4:hover,
.event-content h3:hover,
.facilities-text h3:hover,
.contact-form h3:hover,
.footer-column h4:hover,
.step h3:hover {
    color: #ffd584; /* Lighter, more yellowish golden */
    transition: color 0.3s ease;
}

/* Make sure all headings have cursor pointer on hover */
h1, h2, h3, h4 {
    cursor: pointer;
}

/* Add transition to all headings by default */
h1, h2, h3, h4 {
    transition: color 0.3s ease;
}

/* Specific hover effect for navigation links */
.nav-links a {
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffd584; /* Same yellowish golden */
}