/* 
 * Under The Mango Trees - Main Stylesheet
 * A responsive design with elegant animations and transitions
 */

/* ---------- Base Styles ---------- */
:root {
    --primary-color: #2C5530;    /* Deep elegant green */
    --secondary-color: #4A7856;  /* Medium sage green */
    --accent-color: #E8F0E9;    /* Light mint green */
    --accent-dark: #1A4023;     /* Dark forest green */
    --accent-light: #7FA088;    /* Soft sage green */
    --text-dark: #1E3721;       /* Dark green text */
    --text-light: #4D6151;      /* Muted green text */
    --white: #ffffff;
    --light-color: #ffffff;
    --border-color: #E8F0E9;
    --transition: all 0.3s ease-in-out;
    --font-body: 'Raleway', sans-serif;
    --font-heading: 'Raleway', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1.5rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.title-underline {
    height: 3px;
    width: 60px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.15);
}

.btn-primary:hover {
    background-color: var(--accent-dark);
    color: var(--light-color);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

/* ---------- Announcement Bar ---------- */
.announcement-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--light-color);
    padding: 8px 0;
    font-size: 0.85rem;
    animation: fadeInDown 0.5s ease forwards;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-info a {
    color: var(--light-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    opacity: 0.9;
}

.contact-info a:hover {
    color: var(--accent-color);
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--light-color);
    font-size: 0.9rem;
    transition: var(--transition);
    opacity: 0.9;
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
    opacity: 1;
    text-shadow: 0 0 10px rgba(232, 240, 233, 0.3);
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 39px; /* Height of announcement bar */
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    z-index: -1;
    transition: all 0.4s ease;
}

.site-header.scrolled {
    top: 0;
}

.site-header.scrolled .header-backdrop {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    transition: padding 0.3s ease;
}

.site-header.scrolled .header-inner {
    padding: 10px 0;
}

/* Logo Styling */
.logo-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--dark-color);
    transition: transform 0.3s ease;
    animation: fadeInDown 0.6s ease forwards;
}

.logo-link:hover {
    transform: translateY(-2px);
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(74, 124, 89, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.logo-link:hover .logo-icon {
    transform: rotate(10deg);
    background-color: var(--primary-color);
    color: white;
}

.logo-link:hover .logo-text h1 {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.5s ease;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 1.4rem;
    margin-bottom: 0;
    color: var(--dark-color);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.logo .tagline {
    font-size: 0.75rem;
    color: var(--secondary-color);
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Navigation Styling */
.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
}

.nav-item {
    position: relative;
    opacity: 0;
    animation: slideInRight 0.4s ease forwards;
}

.nav-item:nth-child(1) { animation-delay: 0.1s; }
.nav-item:nth-child(2) { animation-delay: 0.2s; }
.nav-item:nth-child(3) { animation-delay: 0.3s; }
.nav-item:nth-child(4) { animation-delay: 0.4s; }
.nav-item:nth-child(5) { animation-delay: 0.5s; }
.nav-item:nth-child(6) { animation-delay: 0.6s; }

.nav-link {
    color: var(--dark-color);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-link i {
    font-size: 0.7rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.nav-item:hover .nav-link::before,
.nav-item.active .nav-link::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Dropdown Menu Styling */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -15px;
    background-color: white;
    min-width: 220px;
    padding: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 100;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
    max-width: 450px;
    border-top: 3px solid var(--primary-color);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 30px;
    width: 16px;
    height: 16px;
    background-color: white;
    transform: rotate(45deg);
    border-top-left-radius: 4px;
    z-index: -1;
}

.dropdown-menu li {
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.dropdown-menu li:hover {
    transform: translateX(5px);
}

.dropdown-menu a {
    display: block;
    padding: 8px;
    color: var(--dark-color);
    font-size: 0.85rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: rgba(74, 124, 89, 0.05);
    color: var(--primary-color);
}

.dropdown-menu li a {
    position: relative;
    padding-left: 20px;
}

.dropdown-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover::before {
    opacity: 1;
    left: 5px;
}

/* CTA Button Styling */
.nav-cta .btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards 0.7s;
}

.nav-cta .btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
    z-index: -1;
}

.nav-cta .btn-outline:hover {
    color: white;
    box-shadow: 0 5px 15px rgba(74, 124, 89, 0.3);
}

.nav-cta .btn-outline:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1002;
}

.hamburger {
    width: 24px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--dark-color);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* Hamburger Animation */
.nav-menu.active ~ .mobile-menu-toggle .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 6px);
}

.nav-menu.active ~ .mobile-menu-toggle .hamburger span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.nav-menu.active ~ .mobile-menu-toggle .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive Header Styles */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.2rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
    }
}

@media (max-width: 992px) {
    .contact-info {
        gap: 1rem;
    }
    
    .nav-cta {
        display: none;
    }
}

@media (max-width: 768px) {
    .announcement-bar {
        display: none;
    }
    
    .site-header {
        top: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 2rem 2rem;
        transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.3s ease;
        z-index: 1001;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        opacity: 0;
    }
    
    .nav-menu.active {
        right: 0;
        transform: translateX(0);
        opacity: 1;
    }
    
    .nav-item {
        width: 100%;
        margin: 0;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transform: translateX(50px);
        opacity: 0;
        transition: all 0.4s ease;
    }
    
    .nav-menu.active .nav-item {
        transform: translateX(0);
        opacity: 1;
    }
    
    .nav-menu.active .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active .nav-item:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active .nav-item:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu.active .nav-item:nth-child(5) { transition-delay: 0.5s; }
    .nav-menu.active .nav-item:nth-child(6) { transition-delay: 0.6s; }
    
    .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0 0 0 1rem;
        box-shadow: none;
        display: none;
        max-width: 100%;
        margin-top: 10px;
        background: transparent;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .dropdown-menu li {
        margin-bottom: 5px;
    }
    
    .dropdown-menu a {
        padding: 5px 0;
        font-size: 0.85rem;
    }
    
    .has-dropdown.active .dropdown-menu {
        display: block;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    body.menu-open .site-header::after {
        opacity: 1;
        visibility: visible;
    }
    
    .site-header::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 990;
    }
}

@media (max-width: 576px) {
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .logo .tagline {
        font-size: 0.7rem;
    }
    
    .nav-menu {
        width: 85%;
        padding: 80px 1.5rem 1.5rem;
    }
}

/* ---------- Hero Section ---------- */
.hero-section {
    height: 100vh;
    background-image: url('../images/32.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

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

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* ---------- About Section ---------- */
.about-section {
    padding: 6rem 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text,
.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* ---------- Featured Events Section ---------- */
.featured-events-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.event-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.event-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
    opacity: 0.8;
    transition: var(--transition);
}

.event-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: white;
    padding: 1.5rem;
    z-index: 2;
}

.event-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--light-color);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.event-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.event-hover-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.event-hover-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    color: var(--light-color);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.event-card:hover .event-hover-content {
    opacity: 1;
    visibility: visible;
}

.event-link {
    padding: 1.5rem;
    margin-top: auto;
    text-align: center;
    background: var(--accent-dark);
}

.event-link a {
    font-family: var(--font-heading);
    color: var(--light-color);
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    border-radius: 4px;
    transition: var(--transition);
}

.event-link a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--secondary-color), transparent);
    transition: width 0.3s ease;
}

.event-link a:hover::after {
    width: 50%;
}

@media (max-width: 992px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .event-image {
        height: 250px;
    }
}

/* ---------- Services Section ---------- */
.services-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    font-weight: 500;
    color: var(--primary-color);
}

.service-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ---------- Gallery Preview ---------- */
.gallery-preview {
    padding: 6rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay a {
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay a {
    transform: scale(1);
}

.gallery-link {
    text-align: center;
    margin-top: 3rem;
}

/* ---------- Testimonials Section ---------- */
.testimonials-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    padding: 2rem;
}

.testimonial-content {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.testimonial-author {
    margin-top: 1.5rem;
}

.testimonial-author h4 {
    margin-bottom: 0.2rem;
    color: var(--primary-color);
}

.testimonial-author p {
    margin: 0;
    font-size: 0.9rem;
    color: #777;
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.prev-btn,
.next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.prev-btn:hover,
.next-btn:hover {
    background-color: var(--secondary-color);
}

/* ---------- CTA Section ---------- */
.cta-section {
    padding: 6rem 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/31.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* ---------- Footer ---------- */
.site-footer {
    background: linear-gradient(135deg, var(--primary-green) 0%, #4a5d43 100%);
    color: white;
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--light-green), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }

.footer-about .footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-about .logo-icon {
    width: 50px;
    height: 50px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.5rem;
}

.footer-about .logo-text h3 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
}

.footer-about .tagline {
    color: var(--light-green);
    font-size: 0.9rem;
    font-style: italic;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--light-green);
    color: var(--primary-green);
    transform: translateY(-3px);
}

.footer-section h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    font-weight: 600;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--light-green);
    border-radius: 1px;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding-left: 1rem;
}

.footer-section ul li a::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--light-green);
    font-size: 0.7rem;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
    padding-left: 1.2rem;
}

.footer-section ul li a:hover::before {
    transform: translateX(3px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item i {
    color: var(--light-green);
    width: 18px;
    margin-top: 2px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--light-green);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--light-green);
}

.footer-certification {
    display: flex;
    gap: 2rem;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.cert-badge i {
    color: var(--light-green);
}

.cert-badge span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ---------- Animations ---------- */
.animate-fade-in {
    animation: fadeIn 1.2s ease forwards;
}

.animate-fade-in-delay {
    opacity: 0;
    animation: fadeIn 1.2s ease forwards 0.3s;
}

.animate-fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1.2s ease forwards 0.6s;
}

.img-reveal {
    clip-path: inset(0 100% 0 0);
    animation: imgReveal 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes imgReveal {
    from {
        clip-path: inset(0 100% 0 0);
    }
    to {
        clip-path: inset(0 0 0 0);
    }
}

/* ---------- Enhanced Animations ---------- */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

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

/* Apply animations to header elements */
.logo-link {
    animation: fadeInDown 0.6s ease forwards;
}

.nav-item {
    opacity: 0;
    animation: slideInRight 0.4s ease forwards;
}

.nav-item:nth-child(1) { animation-delay: 0.1s; }
.nav-item:nth-child(2) { animation-delay: 0.2s; }
.nav-item:nth-child(3) { animation-delay: 0.3s; }
.nav-item:nth-child(4) { animation-delay: 0.4s; }
.nav-item:nth-child(5) { animation-delay: 0.5s; }
.nav-item:nth-child(6) { animation-delay: 0.6s; }

.nav-cta {
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards 0.7s;
}

/* Enhanced visual effects */
.nav-cta .btn-outline:hover {
    box-shadow: 0 5px 15px rgba(74, 124, 89, 0.3);
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shimmer 4s infinite;
    background-size: 50% 100%;
    background-repeat: no-repeat;
    background-position: -100% 0;
    pointer-events: none;
}

/* Active menu item indicator */
.nav-item.active .nav-link::before {
    transform: scaleX(1);
    transform-origin: left;
    background: var(--accent-color);
}

/* Active state for mobile menu toggle */
body.menu-open .mobile-menu-toggle {
    transform: rotate(90deg);
}

/* ---------- Responsive Styles ---------- */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .about-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .about-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        z-index: 1001;
        padding: 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0.5rem 0 0.5rem 1rem;
        display: none;
    }
    
    .has-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    .about-section,
    .services-section,
    .gallery-preview,
    .testimonials-section,
    .cta-section {
        padding: 4rem 0;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-content {
        padding: 2rem 1.5rem;
    }
}

/* ---------- Page Banner ---------- */
.page-banner {
    height: 50vh;
    background-image: url('../images/page-banner.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    margin-top: 80px;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.banner-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banner-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    width: 100%;
}

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

.breadcrumbs a {
    color: var(--light-color);
}

.breadcrumbs span {
    color: var(--accent-color);
}

/* ---------- Contact Page Enhancements ---------- */
.contact-banner {
    background-image: url('../images/contact-banner.jpg');
    background-position: center;
    height: 60vh;
    position: relative;
}

.contact-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(74, 124, 89, 0.05);
    border-radius: 50%;
    left: -150px;
    top: 20%;
    z-index: -1;
}

.contact-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(156, 102, 68, 0.05);
    border-radius: 50%;
    right: -200px;
    bottom: 10%;
    z-index: -1;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.info-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }
.info-card:nth-child(4) { animation-delay: 0.4s; }

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

.info-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(74, 124, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.info-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed var(--primary-color);
    top: 0;
    left: 0;
    animation: pulse 2s infinite;
    opacity: 0.5;
    z-index: -1;
}

.info-card:hover .info-icon {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.info-card h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.info-card:hover h3::after {
    width: 50px;
}

.info-card p {
    color: #777;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-form-container {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards 0.5s;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    opacity: 0.7;
}

.contact-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.contact-form-container h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group textarea:focus + label {
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.2);
    background-color: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
    opacity: 0.7;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.btn-submit:hover::before {
    opacity: 1;
}

.btn-submit i {
    margin-left: 10px;
    transition: all 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

/* Connect Section */
.connect-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.connect-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(74, 124, 89, 0.05);
    border-radius: 50%;
    right: -150px;
    top: 30%;
    z-index: 0;
}

.social-connect-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.social-connect-item {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.social-connect-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: -1;
}

.social-connect-item:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.social-connect-item:nth-child(1) { animation-delay: 0.1s; }
.social-connect-item:nth-child(2) { animation-delay: 0.2s; }
.social-connect-item:nth-child(3) { animation-delay: 0.3s; }
.social-connect-item:nth-child(4) { animation-delay: 0.4s; }

.social-connect-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.social-connect-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: rgba(74, 124, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.social-connect-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(74, 124, 89, 0.1);
    z-index: -1;
    animation: floatAnimation 3s ease-in-out infinite;
}

.social-connect-item:hover .social-connect-icon {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.social-connect-name {
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.social-connect-item:hover .social-connect-name {
    color: var(--primary-color);
}

.social-connect-item p {
    color: #777;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-connect-item .btn {
    margin-top: 0.5rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.social-connect-item:hover .btn {
    background-color: var(--primary-color);
    color: white;
}

/* Map Container Enhancement */
.map-section {
    position: relative;
}

.map-container {
    position: relative;
    height: 450px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    z-index: 1;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    z-index: 2;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .contact-container {
        gap: 3rem;
    }
    
    .social-connect-grid {
        gap: 1.5rem;
    }
    
    .social-connect-item {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .social-connect-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .contact-section::before,
    .contact-section::after,
    .connect-section::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .map-container {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .social-connect-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-connect-item {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-container h3 {
        font-size: 1.5rem;
    }
    
    .contact-section,
    .connect-section {
        padding: 4rem 0;
    }
    
    .map-container {
        height: 300px;
    }
    
    .info-icon,
    .social-connect-icon {
        transform: scale(0.9);
    }
}

/* ---------- Booking Page Styles ---------- */
.booking-banner {
    background-image: url('../images/booking-banner.jpg');
    background-position: center;
    height: 60vh;
    background-attachment: fixed;
}

.booking-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.booking-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(74, 124, 89, 0.05);
    border-radius: 50%;
    right: -150px;
    top: 10%;
    z-index: 0;
}

.booking-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(156, 102, 68, 0.05);
    border-radius: 50%;
    left: -200px;
    bottom: 5%;
    z-index: 0;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

/* Booking Info Styles */
.booking-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.booking-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background-color: white;
    padding: 1.8rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

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

.feature-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(74, 124, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed var(--primary-color);
    opacity: 0.3;
    animation: pulse 2s infinite;
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.feature-card p {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Testimonial Styles */
.booking-testimonial {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(74, 124, 89, 0.3);
}

.booking-testimonial blockquote {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin: 0 0 1.5rem;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.booking-testimonial blockquote::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: rgba(74, 124, 89, 0.05);
    border-radius: 50%;
    right: -30px;
    bottom: -30px;
    z-index: -1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(74, 124, 89, 0.2);
}

.testimonial-author h4 {
    margin: 0 0 0.2rem;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.testimonial-author p {
    margin: 0;
    font-size: 0.85rem;
    color: #777;
}

/* Booking Form Styles */
.booking-form-container {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.booking-form-container::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    left: 0;
    top: 0;
    border-radius: 12px 0 0 12px;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #777;
    font-size: 1rem;
}

.booking-form .form-group {
    margin-bottom: 1.5rem;
}

.booking-form label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--dark-color);
}

.booking-form label i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.booking-form input,
.booking-form textarea,
.booking-form select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.2);
    background-color: white;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: #aaa;
    opacity: 0.7;
}

.form-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.form-checkbox input {
    margin-right: 10px;
    width: auto;
}

.form-checkbox label {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.form-checkbox a {
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.form-checkbox a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Process Section Styles */
.process-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(74, 124, 89, 0.05);
    border-radius: 50%;
    left: -200px;
    top: 20%;
    z-index: 0;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.process-steps::before {
    content: '';
    position: absolute;
    height: 3px;
    width: 80%;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    top: 30px;
    left: 10%;
    z-index: -1;
    opacity: 0.3;
}

.step-card {
    text-align: center;
    width: 18%;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(74, 124, 89, 0.3);
}

.step-icon {
    width: 70px;
    height: 70px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1);
    color: white;
}

.dropdown-menu li a:hover::before {
    opacity: 1;
    left: 5px;
}

/* CTA Button Styling */
.nav-cta .btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards 0.7s;
}

.nav-cta .btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
    z-index: -1;
}

.nav-cta .btn-outline:hover {
    color: white;
    box-shadow: 0 5px 15px rgba(74, 124, 89, 0.3);
}

.nav-cta .btn-outline:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1002;
}

.hamburger {
    width: 24px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--dark-color);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* Hamburger Animation */
.nav-menu.active ~ .mobile-menu-toggle .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 6px);
}

.nav-menu.active ~ .mobile-menu-toggle .hamburger span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.nav-menu.active ~ .mobile-menu-toggle .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive Header Styles */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.2rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
    }
}

@media (max-width: 992px) {
    .contact-info {
        gap: 1rem;
    }
    
    .nav-cta {
        display: none;
    }
}

@media (max-width: 768px) {
    .announcement-bar {
        display: none;
    }
    
    .site-header {
        top: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 2rem 2rem;
        transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.3s ease;
        z-index: 1001;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        opacity: 0;
    }
    
    .nav-menu.active {
        right: 0;
        transform: translateX(0);
        opacity: 1;
    }
    
    .nav-item {
        width: 100%;
        margin: 0;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transform: translateX(50px);
        opacity: 0;
        transition: all 0.4s ease;
    }
    
    .nav-menu.active .nav-item {
        transform: translateX(0);
        opacity: 1;
    }
    
    .nav-menu.active .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active .nav-item:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active .nav-item:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu.active .nav-item:nth-child(5) { transition-delay: 0.5s; }
    .nav-menu.active .nav-item:nth-child(6) { transition-delay: 0.6s; }
    
    .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0 0 0 1rem;
        box-shadow: none;
        display: none;
        max-width: 100%;
        margin-top: 10px;
        background: transparent;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .dropdown-menu li {
        margin-bottom: 5px;
    }
    
    .dropdown-menu a {
        padding: 5px 0;
        font-size: 0.85rem;
    }
    
    .has-dropdown.active .dropdown-menu {
        display: block;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    body.menu-open .site-header::after {
        opacity: 1;
        visibility: visible;
    }
    
    .site-header::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 990;
    }
}

@media (max-width: 576px) {
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .logo .tagline {
        font-size: 0.7rem;
    }
    
    .nav-menu {
        width: 85%;
        padding: 80px 1.5rem 1.5rem;
    }
}

/* ---------- Hero Section ---------- */
.hero-section {
    height: 100vh;
    background-image: url('../images/32.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

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

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* ---------- About Section ---------- */
.about-section {
    padding: 6rem 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text,
.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* ---------- Featured Events Section ---------- */
.featured-events-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.event-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.event-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
    opacity: 0.8;
    transition: var(--transition);
}

.event-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: white;
    padding: 1.5rem;
    z-index: 2;
}

.event-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--light-color);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.event-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.event-hover-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.event-hover-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    color: var(--light-color);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.event-card:hover .event-hover-content {
    opacity: 1;
    visibility: visible;
}

.event-link {
    padding: 1.5rem;
    margin-top: auto;
    text-align: center;
    background: var(--accent-dark);
}

.event-link a {
    font-family: var(--font-heading);
    color: var(--light-color);
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    border-radius: 4px;
    transition: var(--transition);
}

/* 
 * Under The Mango Trees - Main Stylesheet
 * A responsive design with elegant animations and transitions
 */

/* ---------- Base Styles ---------- */
:root {
    --primary-color: #2C5530;    /* Deep elegant green */
    --secondary-color: #4A7856;  /* Medium sage green */
    --accent-color: #E8F0E9;    /* Light mint green */
    --accent-dark: #1A4023;     /* Dark forest green */
    --accent-light: #7FA088;    /* Soft sage green */
    --text-dark: #1E3721;       /* Dark green text */
    --text-light: #4D6151;      /* Muted green text */
    --white: #ffffff;
    --light-color: #ffffff;
    --border-color: #E8F0E9;
    --transition: all 0.3s ease-in-out;
    --font-body: 'Raleway', sans-serif;
    --font-heading: 'Raleway', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1.5rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.title-underline {
    height: 3px;
    width: 60px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.15);
}

.btn-primary:hover {
    background-color: var(--accent-dark);
    color: var(--light-color);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

/* ---------- Announcement Bar ---------- */
.announcement-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--light-color);
    padding: 8px 0;
    font-size: 0.85rem;
    animation: fadeInDown 0.5s ease forwards;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-info a {
    color: var(--light-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    opacity: 0.9;
}

.contact-info a:hover {
    color: var(--accent-color);
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--light-color);
    font-size: 0.9rem;
    transition: var(--transition);
    opacity: 0.9;
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
    opacity: 1;
    text-shadow: 0 0 10px rgba(232, 240, 233, 0.3);
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 39px; /* Height of announcement bar */
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    z-index: -1;
    transition: all 0.4s ease;
}

.site-header.scrolled {
    top: 0;
}

.site-header.scrolled .header-backdrop {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    transition: padding 0.3s ease;
}

.site-header.scrolled .header-inner {
    padding: 10px 0;
}

/* Logo Styling */
.logo-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--dark-color);
    transition: transform 0.3s ease;
    animation: fadeInDown 0.6s ease forwards;
}

.logo-link:hover {
    transform: translateY(-2px);
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(74, 124, 89, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.logo-link:hover .logo-icon {
    transform: rotate(10deg);
    background-color: var(--primary-color);
    color: white;
}

.logo-link:hover .logo-text h1 {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.5s ease;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 1.4rem;
    margin-bottom: 0;
    color: var(--dark-color);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.logo .tagline {
    font-size: 0.75rem;
    color: var(--secondary-color);
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Navigation Styling */
.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
}

.nav-item {
    position: relative;
    opacity: 0;
    animation: slideInRight 0.4s ease forwards;
}

.nav-item:nth-child(1) { animation-delay: 0.1s; }
.nav-item:nth-child(2) { animation-delay: 0.2s; }
.nav-item:nth-child(3) { animation-delay: 0.3s; }
.nav-item:nth-child(4) { animation-delay: 0.4s; }
.nav-item:nth-child(5) { animation-delay: 0.5s; }
.nav-item:nth-child(6) { animation-delay: 0.6s; }

.nav-link {
    color: var(--dark-color);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-link i {
    font-size: 0.7rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.nav-item:hover .nav-link::before,
.nav-item.active .nav-link::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Dropdown Menu Styling */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -15px;
    background-color: white;
    min-width: 220px;
    padding: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 100;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
    max-width: 450px;
    border-top: 3px solid var(--primary-color);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 30px;
    width: 16px;
    height: 16px;
    background-color: white;
    transform: rotate(45deg);
    border-top-left-radius: 4px;
    z-index: -1;
}

.dropdown-menu li {
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.dropdown-menu li:hover {
    transform: translateX(5px);
}

.dropdown-menu a {
    display: block;
    padding: 8px;
    color: var(--dark-color);
    font-size: 0.85rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: rgba(74, 124, 89, 0.05);
    color: var(--primary-color);
}

.dropdown-menu li a {
    position: relative;
    padding-left: 20px;
}

.dropdown-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover::before {
    opacity: 1;
    left: 5px;
}

/* CTA Button Styling */
.nav-cta .btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards 0.7s;
}

.nav-cta .btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
    z-index: -1;
}

.nav-cta .btn-outline:hover {
    color: white;
    box-shadow: 0 5px 15px rgba(74, 124, 89, 0.3);
}

.nav-cta .btn-outline:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1002;
}

.hamburger {
    width: 24px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--dark-color);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* Hamburger Animation */
.nav-menu.active ~ .mobile-menu-toggle .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 6px);
}

.nav-menu.active ~ .mobile-menu-toggle .hamburger span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.nav-menu.active ~ .mobile-menu-toggle .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive Header Styles */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.2rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
    }
}

@media (max-width: 992px) {
    .contact-info {
        gap: 1rem;
    }
    
    .nav-cta {
        display: none;
    }
}

@media (max-width: 768px) {
    .announcement-bar {
        display: none;
    }
    
    .site-header {
        top: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 2rem 2rem;
        transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.3s ease;
        z-index: 1001;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        opacity: 0;
    }
    
    .nav-menu.active {
        right: 0;
        transform: translateX(0);
        opacity: 1;
    }
    
    .nav-item {
        width: 100%;
        margin: 0;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transform: translateX(50px);
        opacity: 0;
        transition: all 0.4s ease;
    }
    
    .nav-menu.active .nav-item {
        transform: translateX(0);
        opacity: 1;
    }
    
    .nav-menu.active .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active .nav-item:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active .nav-item:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu.active .nav-item:nth-child(5) { transition-delay: 0.5s; }
    .nav-menu.active .nav-item:nth-child(6) { transition-delay: 0.6s; }
    
    .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0 0 0 1rem;
        box-shadow: none;
        display: none;
        max-width: 100%;
        margin-top: 10px;
        background: transparent;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .dropdown-menu li {
        margin-bottom: 5px;
    }
    
    .dropdown-menu a {
        padding: 5px 0;
        font-size: 0.85rem;
    }
    
    .has-dropdown.active .dropdown-menu {
        display: block;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    body.menu-open .site-header::after {
        opacity: 1;
        visibility: visible;
    }
    
    .site-header::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 990;
    }
}

@media (max-width: 576px) {
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .logo .tagline {
        font-size: 0.7rem;
    }
    
    .nav-menu {
        width: 85%;
        padding: 80px 1.5rem 1.5rem;
    }
}

/* ---------- Hero Section ---------- */
.hero-section {
    height: 100vh;
    background-image: url('../images/32.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

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

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* ---------- About Section ---------- */
.about-section {
    padding: 6rem 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text,
.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* ---------- Featured Events Section ---------- */
.featured-events-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.event-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.event-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
    opacity: 0.8;
    transition: var(--transition);
}

.event-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: white;
    padding: 1.5rem;
    z-index: 2;
}

.event-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--light-color);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.event-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.event-hover-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.event-hover-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    color: var(--light-color);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.event-card:hover .event-hover-content {
    opacity: 1;
    visibility: visible;
}

.event-link {
    padding: 1.5rem;
    margin-top: auto;
    text-align: center;
    background: var(--accent-dark);
}

.event-link a {
    font-family: var(--font-heading);
    color: var(--light-color);
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    border-radius: 4px;
    transition: var(--transition);
}

.event-link a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--secondary-color), transparent);
    transition: width 0.3s ease;
}

.event-link a:hover::after {
    width: 50%;
}

@media (max-width: 992px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .event-image {
        height: 250px;
    }
}

/* ---------- Services Section ---------- */
.services-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    font-weight: 500;
    color: var(--primary-color);
}

.service-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ---------- Gallery Preview ---------- */
.gallery-preview {
    padding: 6rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay a {
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay a {
    transform: scale(1);
}

.gallery-link {
    text-align: center;
    margin-top: 3rem;
}

/* ---------- Testimonials Section ---------- */
.testimonials-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    padding: 2rem;
}

.testimonial-content {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.testimonial-author {
    margin-top: 1.5rem;
}

.testimonial-author h4 {
    margin-bottom: 0.2rem;
    color: var(--primary-color);
}

.testimonial-author p {
    margin: 0;
    font-size: 0.9rem;
    color: #777;
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.prev-btn,
.next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.prev-btn:hover,
.next-btn:hover {
    background-color: var(--secondary-color);
}

/* ---------- CTA Section ---------- */
.cta-section {
    padding: 6rem 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/31.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* ---------- Footer ---------- */
.site-footer {
    background: linear-gradient(135deg, var(--primary-green) 0%, #4a5d43 100%);
    color: white;
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--light-green), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }

.footer-about .footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-about .logo-icon {
    width: 50px;
    height: 50px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.5rem;
}

.footer-about .logo-text h3 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
}

.footer-about .tagline {
    color: var(--light-green);
    font-size: 0.9rem;
    font-style: italic;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--light-green);
    color: var(--primary-green);
    transform: translateY(-3px);
}

.footer-section h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    font-weight: 600;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--light-green);
    border-radius: 1px;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding-left: 1rem;
}

.footer-section ul li a::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--light-green);
    font-size: 0.7rem;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
    padding-left: 1.2rem;
}

.footer-section ul li a:hover::before {
    transform: translateX(3px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item i {
    color: var(--light-green);
    width: 18px;
    margin-top: 2px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--light-green);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--light-green);
}

.footer-certification {
    display: flex;
    gap: 2rem;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.cert-badge i {
    color: var(--light-green);
}

.cert-badge span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ---------- Animations ---------- */
.animate-fade-in {
    animation: fadeIn 1.2s ease forwards;
}

.animate-fade-in-delay {
    opacity: 0;
    animation: fadeIn 1.2s ease forwards 0.3s;
}

.animate-fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1.2s ease forwards 0.6s;
}

.img-reveal {
    clip-path: inset(0 100% 0 0);
    animation: imgReveal 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes imgReveal {
    from {
        clip-path: inset(0 100% 0 0);
    }
    to {
        clip-path: inset(0 0 0 0);
    }
}

/* ---------- Enhanced Animations ---------- */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

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

/* Apply animations to header elements */
.logo-link {
    animation: fadeInDown 0.6s ease forwards;
}

.nav-item {
    opacity: 0;
    animation: slideInRight 0.4s ease forwards;
}

.nav-item:nth-child(1) { animation-delay: 0.1s; }
.nav-item:nth-child(2) { animation-delay: 0.2s; }
.nav-item:nth-child(3) { animation-delay: 0.3s; }
.nav-item:nth-child(4) { animation-delay: 0.4s; }
.nav-item:nth-child(5) { animation-delay: 0.5s; }
.nav-item:nth-child(6) { animation-delay: 0.6s; }

.nav-cta {
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards 0.7s;
}

/* Enhanced visual effects */
.nav-cta .btn-outline:hover {
    box-shadow: 0 5px 15px rgba(74, 124, 89, 0.3);
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shimmer 4s infinite;
    background-size: 50% 100%;
    background-repeat: no-repeat;
    background-position: -100% 0;
    pointer-events: none;
}

/* Active menu item indicator */
.nav-item.active .nav-link::before {
    transform: scaleX(1);
    transform-origin: left;
    background: var(--accent-color);
}

/* Active state for mobile menu toggle */
body.menu-open .mobile-menu-toggle {
    transform: rotate(90deg);
}

/* ---------- Responsive Styles ---------- */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .about-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .about-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        z-index: 1001;
        padding: 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0.5rem 0 0.5rem 1rem;
        display: none;
    }
    
    .has-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    .about-section,
    .services-section,
    .gallery-preview,
    .testimonials-section,
    .cta-section {
        padding: 4rem 0;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-content {
        padding: 2rem 1.5rem;
    }
}

/* ---------- Page Banner ---------- */
.page-banner {
    height: 50vh;
    background-image: url('../images/page-banner.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    margin-top: 80px;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.banner-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banner-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    width: 100%;
}

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

.breadcrumbs a {
    color: var(--light-color);
}

.breadcrumbs span {
    color: var(--accent-color);
}

/* ---------- Contact Page Enhancements ---------- */
.contact-banner {
    background-image: url('../images/contact-banner.jpg');
    background-position: center;
    height: 60vh;
    position: relative;
}

.contact-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(74, 124, 89, 0.05);
    border-radius: 50%;
    left: -150px;
    top: 20%;
    z-index: -1;
}

.contact-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(156, 102, 68, 0.05);
    border-radius: 50%;
    right: -200px;
    bottom: 10%;
    z-index: -1;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.info-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }
.info-card:nth-child(4) { animation-delay: 0.4s; }

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

.info-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(74, 124, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.info-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed var(--primary-color);
    top: 0;
    left: 0;
    animation: pulse 2s infinite;
    opacity: 0.5;
    z-index: -1;
}

.info-card:hover .info-icon {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.info-card h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.info-card:hover h3::after {
    width: 50px;
}

.info-card p {
    color: #777;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-form-container {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards 0.5s;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    opacity: 0.7;
}

.contact-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.contact-form-container h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group textarea:focus + label {
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.2);
    background-color: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
    opacity: 0.7;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.btn-submit:hover::before {
    opacity: 1;
}

.btn-submit i {
    margin-left: 10px;
    transition: all 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

/* Connect Section */
.connect-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.connect-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(74, 124, 89, 0.05);
    border-radius: 50%;
    right: -150px;
    top: 30%;
    z-index: 0;
}

.social-connect-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.social-connect-item {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.social-connect-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: -1;
}

.social-connect-item:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.social-connect-item:nth-child(1) { animation-delay: 0.1s; }
.social-connect-item:nth-child(2) { animation-delay: 0.2s; }
.social-connect-item:nth-child(3) { animation-delay: 0.3s; }
.social-connect-item:nth-child(4) { animation-delay: 0.4s; }

.social-connect-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.social-connect-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: rgba(74, 124, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.social-connect-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(74, 124, 89, 0.1);
    z-index: -1;
    animation: floatAnimation 3s ease-in-out infinite;
}

.social-connect-item:hover .social-connect-icon {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.social-connect-name {
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.social-connect-item:hover .social-connect-name {
    color: var(--primary-color);
}

.social-connect-item p {
    color: #777;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-connect-item .btn {
    margin-top: 0.5rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.social-connect-item:hover .btn {
    background-color: var(--primary-color);
    color: white;
}

/* Map Container Enhancement */
.map-section {
    position: relative;
}

.map-container {
    position: relative;
    height: 450px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    z-index: 1;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    z-index: 2;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .contact-container {
        gap: 3rem;
    }
    
    .social-connect-grid {
        gap: 1.5rem;
    }
    
    .social-connect-item {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .social-connect-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .contact-section::before,
    .contact-section::after,
    .connect-section::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .map-container {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .social-connect-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-connect-item {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-container h3 {
        font-size: 1.5rem;
    }
    
    .contact-section,
    .connect-section {
        padding: 4rem 0;
    }
    
    .map-container {
        height: 300px;
    }
    
    .info-icon,
    .social-connect-icon {
        transform: scale(0.9);
    }
}

/* ---------- Booking Page Styles ---------- */
.booking-banner {
    background-image: url('../images/booking-banner.jpg');
    background-position: center;
    height: 60vh;
    background-attachment: fixed;
}

.booking-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.booking-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(74, 124, 89, 0.05);
    border-radius: 50%;
    right: -150px;
    top: 10%;
    z-index: 0;
}

.booking-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(156, 102, 68, 0.05);
    border-radius: 50%;
    left: -200px;
    bottom: 5%;
    z-index: 0;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

/* Booking Info Styles */
.booking-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.booking-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background-color: white;
    padding: 1.8rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

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

.feature-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(74, 124, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed var(--primary-color);
    opacity: 0.3;
    animation: pulse 2s infinite;
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.feature-card p {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Testimonial Styles */
.booking-testimonial {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(74, 124, 89, 0.3);
}

.booking-testimonial blockquote {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin: 0 0 1.5rem;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.booking-testimonial blockquote::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: rgba(74, 124, 89, 0.05);
    border-radius: 50%;
    right: -30px;
    bottom: -30px;
    z-index: -1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(74, 124, 89, 0.2);
}

.testimonial-author h4 {
    margin: 0 0 0.2rem;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.testimonial-author p {
    margin: 0;
    font-size: 0.85rem;
    color: #777;
}

/* Booking Form Styles */
.booking-form-container {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.booking-form-container::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    left: 0;
    top: 0;
    border-radius: 12px 0 0 12px;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #777;
    font-size: 1rem;
}

.booking-form .form-group {
    margin-bottom: 1.5rem;
}

.booking-form label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--dark-color);
}

.booking-form label i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.booking-form input,
.booking-form textarea,
.booking-form select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.2);
    background-color: white;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: #aaa;
    opacity: 0.7;
}

.form-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.form-checkbox input {
    margin-right: 10px;
    width: auto;
}

.form-checkbox label {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.form-checkbox a {
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.form-checkbox a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Process Section Styles */
.process-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(74, 124, 89, 0.05);
    border-radius: 50%;
    left: -200px;
    top: 20%;
    z-index: 0;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.process-steps::before {
    content: '';
    position: absolute;
    height: 3px;
    width: 80%;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    top: 30px;
    left: 10%;
    z-index: -1;
    opacity: 0.3;
}

.step-card {
    text-align: center;
    width: 18%;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(74, 124, 89, 0.3);
}

.step-icon {
    width: 70px;
    height: 70px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1);
    color: white;
}

.dropdown-menu li a:hover::before {
    opacity: 1;
    left: 5px;
}

/* CTA Button Styling */
.nav-cta .btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards 0.7s;
}

.nav-cta .btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
    z-index: -1;
}

.nav-cta .btn-outline:hover {
    color: white;
    box-shadow: 0 5px 15px rgba(74, 124, 89, 0.3);
}

.nav-cta .btn-outline:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1002;
}

.hamburger {
    width: 24px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--dark-color);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* Hamburger Animation */
.nav-menu.active ~ .mobile-menu-toggle .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 6px);
}

.nav-menu.active ~ .mobile-menu-toggle .hamburger span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.nav-menu.active ~ .mobile-menu-toggle .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive Header Styles */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.2rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
    }
}

@media (max-width: 992px) {
    .contact-info {
        gap: 1rem;
    }
    
    .nav-cta {
        display: none;
    }
}

@media (max-width: 768px) {
    .announcement-bar {
        display: none;
    }
    
    .site-header {
        top: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 2rem 2rem;
        transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.3s ease;
        z-index: 1001;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        opacity: 0;
    }
    
    .nav-menu.active {
        right: 0;
        transform: translateX(0);
        opacity: 1;
    }
    
    .nav-item {
        width: 100%;
        margin: 0;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transform: translateX(50px);
        opacity: 0;
        transition: all 0.4s ease;
    }
    
    .nav-menu.active .nav-item {
        transform: translateX(0);
        opacity: 1;
    }
    
    .nav-menu.active .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active .nav-item:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active .nav-item:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu.active .nav-item:nth-child(5) { transition-delay: 0.5s; }
    .nav-menu.active .nav-item:nth-child(6) { transition-delay: 0.6s; }
    
    .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0 0 0 1rem;
        box-shadow: none;
        display: none;
        max-width: 100%;
        margin-top: 10px;
        background: transparent;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .dropdown-menu li {
        margin-bottom: 5px;
    }
    
    .dropdown-menu a {
        padding: 5px 0;
        font-size: 0.85rem;
    }
    
    .has-dropdown.active .dropdown-menu {
        display: block;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    body.menu-open .site-header::after {
        opacity: 1;
        visibility: visible;
    }
    
    .site-header::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 990;
    }
}

@media (max-width: 576px) {
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .logo .tagline {
        font-size: 0.7rem;
    }
    
    .nav-menu {
        width: 85%;
        padding: 80px 1.5rem 1.5rem;
    }
}

/* ---------- Hero Section ---------- */
.hero-section {
    height: 100vh;
    background-image: url('../images/32.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

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

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* ---------- About Section ---------- */
.about-section {
    padding: 6rem 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text,
.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* ---------- Featured Events Section ---------- */
.featured-events-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.event-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.event-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
    opacity: 0.8;
    transition: var(--transition);
}

.event-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: white;
    padding: 1.5rem;
    z-index: 2;
}

.event-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--light-color);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.event-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.event-hover-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.event-hover-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    color: var(--light-color);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.event-card:hover .event-hover-content {
    opacity: 1;
    visibility: visible;
}

.event-link {
    padding: 1.5rem;
    margin-top: auto;
    text-align: center;
    background: var(--accent-dark);
}

.event-link a {
    font-family: var(--font-heading);
    color: var(--light-color);
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    border-radius: 4px;
    transition: var(--transition);
}

.event-link a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--secondary-color), transparent);
    transition: width 0.3s ease;
}

.event-link a:hover::after {
    width: 50%;
}

@media (max-width: 992px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .event-image {
        height: 250px;
    }
}

/* ---------- Services Section ---------- */
.services-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    font-weight: 500;
    color: var(--primary-color);
}

.service-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ---------- Gallery Preview ---------- */
.gallery-preview {
    padding: 6rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay a {
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay a {
    transform: scale(1);
}

.gallery-link {
    text-align: center;
    margin-top: 3rem;
}

/* ---------- Testimonials Section ---------- */
.testimonials-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    padding: 2rem;
}

.testimonial-content {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.testimonial-author {
    margin-top: 1.5rem;
}

.testimonial-author h4 {
    margin-bottom: 0.2rem;
    color: var(--primary-color);
}

.testimonial-author p {
    margin: 0;
    font-size: 0.9rem;
    color: #777;
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.prev-btn,
.next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.prev-btn:hover,
.next-btn:hover {
    background-color: var(--secondary-color);
}

/* ---------- CTA Section ---------- */
.cta-section {
    padding: 6rem 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/31.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* ---------- Footer ---------- */
.site-footer {
    background: linear-gradient(135deg, var(--primary-green) 0%, #4a5d43 100%);
    color: white;
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--light-green), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }

.footer-about .footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-about .logo-icon {
    width: 50px;
    height: 50px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.5rem;
}

.footer-about .logo-text h3 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
}

.footer-about .tagline {
    color: var(--light-green);
    font-size: 0.9rem;
    font-style: italic;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--light-green);
    color: var(--primary-green);
    transform: translateY(-3px);
}

.footer-section h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    font-weight: 600;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--light-green);
    border-radius: 1px;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding-left: 1rem;
}

.footer-section ul li a::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--light-green);
    font-size: 0.7rem;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
    padding-left: 1.2rem;
}

.footer-section ul li a:hover::before {
    transform: translateX(3px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item i {
    color: var(--light-green);
    width: 18px;
    margin-top: 2px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--light-green);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--light-green);
}

.footer-certification {
    display: flex;
    gap: 2rem;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.cert-badge i {
    color: var(--light-green);
}

.cert-badge span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ---------- Animations ---------- */
.animate-fade-in {
    animation: fadeIn 1.2s ease forwards;
}

.animate-fade-in-delay {
    opacity: 0;
    animation: fadeIn 1.2s ease forwards 0.3s;
}

.animate-fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1.2s ease forwards 0.6s;
}

.img-reveal {
    clip-path: inset(0 100% 0 0);
    animation: imgReveal 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes imgReveal {
    from {
        clip-path: inset(0 100% 0 0);
    }
    to {
        clip-path: inset(0 0 0 0);
    }
}

/* ---------- Enhanced Animations ---------- */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

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

/* Apply animations to header elements */
.logo-link {
    animation: fadeInDown 0.6s ease forwards;
}

.nav-item {
    opacity: 0;
    animation: slideInRight 0.4s ease forwards;
}

.nav-item:nth-child(1) { animation-delay: 0.1s; }
.nav-item:nth-child(2) { animation-delay: 0.2s; }
.nav-item:nth-child(3) { animation-delay: 0.3s; }
.nav-item:nth-child(4) { animation-delay: 0.4s; }
.nav-item:nth-child(5) { animation-delay: 0.5s; }
.nav-item:nth-child(6) { animation-delay: 0.6s; }

.nav-cta {
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards 0.7s;
}

/* Enhanced visual effects */
.nav-cta .btn-outline:hover {
    box-shadow: 0 5px 15px rgba(74, 124, 89, 0.3);
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shimmer 4s infinite;
    background-size: 50% 100%;
    background-repeat: no-repeat;
    background-position: -100% 0;
    pointer-events: none;
}

/* Active menu item indicator */
.nav-item.active .nav-link::before {
    transform: scaleX(1);
    transform-origin: left;
    background: var(--accent-color);
}

/* Active state for mobile menu toggle */
body.menu-open .mobile-menu-toggle {
    transform: rotate(90deg);
}

/* ---------- Responsive Styles ---------- */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .about-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .about-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        z-index: 1001;
        padding: 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0.5rem 0 0.5rem 1rem;
        display: none;
    }
    
    .has-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    .about-section,
    .services-section,
    .gallery-preview,
    .testimonials-section,
    .cta-section {
        padding: 4rem 0;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-content {
        padding: 2rem 1.5rem;
    }
}

/* ---------- Page Banner ---------- */
.page-banner {
    height: 50vh;
    background-image: url('../images/page-banner.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    margin-top: 80px;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.banner-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banner-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    width: 100%;
}

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

.breadcrumbs a {
    color: var(--light-color);
}

.breadcrumbs span {
    color: var(--accent-color);
}

/* ---------- Contact Page Enhancements ---------- */
.contact-banner {
    background-image: url('../images/contact-banner.jpg');
    background-position: center;
    height: 60vh;
    position: relative;
}

.contact-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(74, 124, 89, 0.05);
    border-radius: 50%;
    left: -150px;
    top: 20%;
    z-index: -1;
}

.contact-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(156, 102, 68, 0.05);
    border-radius: 50%;
    right: -200px;
    bottom: 10%;
    z-index: -1;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.info-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }
.info-card:nth-child(4) { animation-delay: 0.4s; }

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

.info-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(74, 124, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.info-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed var(--primary-color);
    top: 0;
    left: 0;
    animation: pulse 2s infinite;
    opacity: 0.5;
    z-index: -1;
}

.info-card:hover .info-icon {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.info-card h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.info-card:hover h3::after {
    width: 50px;
}

.info-card p {
    color: #777;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-form-container {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards 0.5s;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    opacity: 0.7;
}

.contact-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.contact-form-container h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group textarea:focus + label {
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.2);
    background-color: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
    opacity: 0.7;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.btn-submit:hover::before {
    opacity: 1;
}

.btn-submit i {
    margin-left: 10px;
    transition: all 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

/* Connect Section */
.connect-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.connect-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(74, 124, 89, 0.05);
    border-radius: 50%;
    right: -150px;
    top: 30%;
    z-index: 0;
}

.social-connect-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.social-connect-item {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.social-connect-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: -1;
}

.social-connect-item:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.social-connect-item:nth-child(1) { animation-delay: 0.1s; }
.social-connect-item:nth-child(2) { animation-delay: 0.2s; }
.social-connect-item:nth-child(3) { animation-delay: 0.3s; }
.social-connect-item:nth-child(4) { animation-delay: 0.4s; }

.social-connect-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.social-connect-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: rgba(74, 124, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.social-connect-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(74, 124, 89, 0.1);
    z-index: -1;
    animation: floatAnimation 3s ease-in-out infinite;
}

.social-connect-item:hover .social-connect-icon {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.social-connect-name {
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.social-connect-item:hover .social-connect-name {
    color: var(--primary-color);
}

.social-connect-item p {
    color: #777;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-connect-item .btn {
    margin-top: 0.5rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.social-connect-item:hover .btn {
    background-color: var(--primary-color);
    color: white;
}

/* Map Container Enhancement */
.map-section {
    position: relative;
}

.map-container {
    position: relative;
    height: 450px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    z-index: 1;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    z-index: 2;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .contact-container {
        gap: 3rem;
    }
    
    .social-connect-grid {
        gap: 1.5rem;
    }
    
    .social-connect-item {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .social-connect-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .contact-section::before,
    .contact-section::after,
    .connect-section::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .map-container {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .social-connect-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-connect-item {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-container h3 {
        font-size: 1.5rem;
    }
    
    .contact-section,
    .connect-section {
        padding: 4rem 0;
    }
    
    .map-container {
        height: 300px;
    }
    
    .info-icon,
    .social-connect-icon {
        transform: scale(0.9);
    }
}

/* ---------- Booking Page Styles ---------- */
.booking-banner {
    background-image: url('../images/booking-banner.jpg');
    background-position: center;
    height: 60vh;
    background-attachment: fixed;
}

.booking-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.booking-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(74, 124, 89, 0.05);
    border-radius: 50%;
    right: -150px;
    top: 10%;
    z-index: 0;
}

.booking-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(156, 102, 68, 0.05);
    border-radius: 50%;
    left: -200px;
    bottom: 5%;
    z-index: 0;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

/* Booking Info Styles */
.booking-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.booking-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background-color: white;
    padding: 1.8rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

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

.feature-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(74, 124, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed var(--primary-color);
    opacity: 0.3;
    animation: pulse 2s infinite;
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.feature-card p {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Testimonial Styles */
.booking-testimonial {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(74, 124, 89, 0.3);
}

.booking-testimonial blockquote {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin: 0 0 1.5rem;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.booking-testimonial blockquote::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: rgba(74, 124, 89, 0.05);
    border-radius: 50%;
    right: -30px;
    bottom: -30px;
    z-index: -1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(74, 124, 89, 0.2);
}

.testimonial-author h4 {
    margin: 0 0 0.2rem;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.testimonial-author p {
    margin: 0;
    font-size: 0.85rem;
    color: #777;
}

/* Booking Form Styles */
.booking-form-container {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.booking-form-container::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    left: 0;
    top: 0;
    border-radius: 12px 0 0 12px;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #777;
    font-size: 1rem;
}

.booking-form .form-group {
    margin-bottom: 1.5rem;
}

.booking-form label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--dark-color);
}

.booking-form label i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.booking-form input,
.booking-form textarea,
.booking-form select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.2);
    background-color: white;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: #aaa;
    opacity: 0.7;
}

.form-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.form-checkbox input {
    margin-right: 10px;
    width: auto;
}

.form-checkbox label {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.form-checkbox a {
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.form-checkbox a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Process Section Styles */
.process-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(74, 124, 89, 0.05);
    border-radius: 50%;
    left: -200px;
    top: 20%;
    z-index: 0;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.process-steps::before {
    content: '';
    position: absolute;
    height: 3px;
    width: 80%;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    top: 30px;
    left: 10%;
    z-index: -1;
    opacity: 0.3;
}

.step-card {
    text-align: center;
    width: 18%;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(74, 124, 89, 0.3);
}

.step-icon {
    width: 70px;
    height: 70px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1);
    color: white;
    background-color: var(--primary-color);
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

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

/* FAQ Section Styles */
.faq-section {
    padding: 6rem 0;
    background-color: white;
}

.faq-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    background-color: rgba(74, 124, 89, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.faq-item:hover .faq-question h3 {
    color: var(--primary-color);
}

.faq-toggle {
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    background-color: var(--secondary-color);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0.5rem 0 1.5rem;
    margin: 0;
    color: #666;
    line-height: 1.7;
}

/* CTA Section Styles */
.booking-cta-section {
    padding: 5rem 0;
    background-image: url('../images/30.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: white;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.cta-buttons .btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background-color: white;
    color: var(--dark-color);
}

/* Responsive Styles for Booking Page */
@media (max-width: 1200px) {
    .booking-container {
        gap: 2rem;
    }
    
    .process-steps::before {
        width: 75%;
        left: 12.5%;
    }
}

@media (max-width: 992px) {
    .booking-container {
        grid-template-columns: 1fr;
    }
    
    .booking-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .step-card {
        width: 30%;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .booking-banner {
        height: 50vh;
        background-attachment: scroll;
    }
    
    .booking-features {
        grid-template-columns: 1fr;
    }
    
    .booking-testimonial {
        padding: 2rem;
    }
    
    .booking-form-container {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .step-card {
        width: 45%;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .booking-banner {
        height: 40vh;
    }
    
    .booking-form-container {
        padding: 1.5rem;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .step-card {
        width: 100%;
    }
    
    .faq-question {
        padding: 1.2rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .booking-section,
    .process-section,
    .faq-section,
    .booking-cta-section {
        padding: 4rem 0;
    }
    
    .cta-content h2 {
        font-size: 1.7rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

/* ---------- Staycation Page Styles ---------- */
.staycation-banner {
    background-image: url('../images/staycation-banner.jpg');
    background-position: center;
    height: 65vh;
    background-attachment: fixed;
    background-size: cover;
}

/* Intro Section */
.staycation-intro {
    padding: 6rem 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: center;
}

.intro-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.intro-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.intro-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.highlights {
    margin-top: 2.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(10px);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(74, 124, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.3rem;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon {
    background-color: var(--primary-color);
    color: white;
}

.highlight-text h4 {
    margin: 0 0 0.3rem;
    font-size: 1.1rem;
}

.highlight-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #777;
}

.intro-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.intro-image:hover img {
    transform: scale(1.05);
}

.weekday-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 10px 40px;
    transform: rotate(45deg);
    text-align: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.weekday-badge span {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    display: block;
}

.weekday-badge p {
    margin: 0;
    font-size: 0.75rem;
    opacity: 0.9;
}

/* Accommodation Section */
.accommodation-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
    position: relative;
}

.accommodations-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.accommodation-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.accommodation-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.accommodation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.accommodation-badge {
    position: absolute;
    top: 20px;
    left: -5px;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.accommodation-badge::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 5px;
    height: 5px;
    background-color: var(--primary-color);
    opacity: 0.8;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.accommodation-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.accommodation-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.accommodation-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.accommodation-features span {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
}

.accommodation-features span i {
    margin-right: 5px;
    color: var(--primary-color);
    font-size: 0.85rem;
}

.accommodation-content p {
    color: #777;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.accommodation-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.price-tag {
    display: flex;
    flex-direction: column;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.85rem;
}

.discounted-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-unit {
    font-size: 0.8rem;
    color: #777;
}

/* Experiences Section */
.experiences-section {
    padding: 6rem 0;
    background-color: #fff;
    position: relative;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.experience-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.experience-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: -1;
}

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

.experience-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.experience-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(74, 124, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.experience-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed var(--primary-color);
    opacity: 0.3;
    animation: pulse 2s infinite;
}

.experience-card:hover .experience-icon {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.experience-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.experience-card p {
    color: #777;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Packages Section */
.packages-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.packages-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

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

.package-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-banner {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 12px 0;
}

.package-banner span {
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.package-content {
    padding: 2rem;
}

.package-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--dark-color);
}

.package-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    text-align: center;
}

.package-price span {
    color: #777;
    font-size: 0.9rem;
}

.package-price h4 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0.3rem 0;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.package-features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.package-card .btn {
    width: 100%;
    text-align: center;
    padding: 12px;
}

/* Testimonials */
.staycation-testimonials {
    padding: 6rem 0;
    background-color: #fff;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

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

.testimonial-quote {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(74, 124, 89, 0.3);
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    line-height: 1.8;
    margin: 0 0 2rem;
}

.testimonial-guest {
    display: flex;
    align-items: center;
}

.testimonial-guest img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid rgba(74, 124, 89, 0.2);
}

.testimonial-guest h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--dark-color);
}

.testimonial-rating {
    color: #f8b400;
    font-size: 0.8rem;
    margin-top: 5px;
}

/* Booking Section */
.staycation-booking {
    padding: 6rem 0;
    background-color: #f9f9f9;
    position: relative;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.booking-details {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.booking-details h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.booking-details h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.booking-details p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.booking-points {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.booking-points li {
    padding: 0.8rem 0;
    border-bottom: 1px dashed #ddd;
    display: flex;
    align-items: center;
    line-height: 1.6;
}

.booking-points li:last-child {
    border-bottom: none;
}

.booking-points li i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

.booking-note {
    background-color: rgba(74, 124, 89, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: flex-start;
}

.booking-note i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-right: 15px;
    margin-top: 2px;
}

.booking-note p {
    margin: 0;
    font-size: 0.95rem;
}

.booking-note a {
    color: var(--primary-color);
    font-weight: 600;
}

/* CTA Section */
.staycation-cta {
    padding: 5rem 0;
    background-image: url('../images/29.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: white;
    text-align: center;
}

.staycation-cta .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

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

.staycation-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.staycation-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Staycation FAQ Section */
.staycation-faq {
    background-color: #fff;
}

/* Animations for staycation page */
@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles for Staycation Page */
@media (max-width: 1200px) {
    .accommodations-slider,
    .packages-container {
        gap: 1.5rem;
    }
    
    .intro-content {
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .accommodations-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .packages-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 3rem auto 0;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .testimonials-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .staycation-banner {
        height: 50vh;
        background-attachment: scroll;
    }
    
    .accommodations-slider {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 3rem auto 0;
    }
    
    .experiences-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 3rem auto 0;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 3rem auto 0;
    }
    
    .booking-details,
    .booking-form-container {
        padding: 2rem;
    }
    
    .booking-details h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .staycation-banner {
        height: 40vh;
    }
    
    .weekday-badge {
        right: -40px;
        padding: 8px 40px;
    }
    
    .accommodation-features {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .accommodation-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .accommodation-price .btn {
        width: 100%;
    }
    
    .staycation-intro,
    .accommodation-section,
    .experiences-section,
    .packages-section,
    .staycation-testimonials,
    .staycation-booking,
    .staycation-faq {
        padding: 4rem 0;
    }
    
    .highlight-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .highlight-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* ---------- Staycation Page Styles ---------- */
.staycation-banner {
    background-image: url('../images/staycation-banner.jpg');
    background-position: center;
    height: 65vh;
    background-attachment: fixed;
    background-size: cover;
}

/* Fix for "Our Spaces" section in index page */
.our-spaces-section {
    padding: 8rem 0;
    background-image: url('../images/spaces-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: white;
    text-align: center;
}

.spaces-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.spaces-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.spaces-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.spaces-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Fix for Property Section */
.property-section {
    padding: 6rem 0;
    background-color: white;
    text-align: center;
    overflow: hidden;
}

.property-content {
    margin-bottom: 4rem;
}

.property-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.property-description {
    max-width: 800px;
    margin: 0 auto;
}

.property-description p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.property-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.property-slider-row {
    display: flex;
    width: calc(250px * 16); /* 8 images × 2 (duplicated) × 250px */
}

.property-slider-row.top-row {
    animation: slideLeft 60s linear infinite;
}

.property-slider-row.bottom-row {
    animation: slideRight 60s linear infinite;
}

.property-slide {
    width: 250px;
    height: 180px;
    padding: 0 10px;
    flex-shrink: 0;
}

.property-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.property-slide:hover img {
    transform: scale(1.05);
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 8)); /* 8 images × 250px */
    }
}

@keyframes slideRight {
    0% {
        transform: translateX(calc(-250px * 8)); /* 8 images × 250px */
    }
    100% {
        transform: translateX(0);
    }
}

/* Fix testimonials section styles */
.testimonials-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-content {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
    margin: 2rem 0;
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.prev-btn,
.next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.prev-btn:hover,
.next-btn:hover {
    background-color: var(--secondary-color);
}

/* Fix for CTA section in index page */
.cta-section {
    padding: 6rem 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ---------- Staycation Page Styles ---------- */
.staycation-banner {
    background-image: url('../images/staycation-banner.jpg');
    background-position: center;
    height: 65vh;
    background-attachment: fixed;
    background-size: cover;
}

/* Intro Section */
.staycation-intro {
    padding: 6rem 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: center;
}

.intro-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.intro-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.intro-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.highlights {
    margin-top: 2.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(10px);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(74, 124, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.3rem;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon {
    background-color: var(--primary-color);
    color: white;
}

.highlight-text h4 {
    margin: 0 0 0.3rem;
    font-size: 1.1rem;
}

.highlight-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #777;
}

.intro-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.intro-image:hover img {
    transform: scale(1.05);
}

.weekday-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 10px 40px;
    transform: rotate(45deg);
    text-align: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.weekday-badge span {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    display: block;
}

.weekday-badge p {
    margin: 0;
    font-size: 0.75rem;
    opacity: 0.9;
}

/* Accommodation Section */
.accommodation-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
    position: relative;
}

.accommodations-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.accommodation-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.accommodation-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.accommodation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.accommodation-badge {
    position: absolute;
    top: 20px;
    left: -5px;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.accommodation-badge::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 5px;
    height: 5px;
    background-color: var(--primary-color);
    opacity: 0.8;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.accommodation-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.accommodation-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.accommodation-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.accommodation-features span {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
}

.accommodation-features span i {
    margin-right: 5px;
    color: var(--primary-color);
    font-size: 0.85rem;
}

.accommodation-content p {
    color: #777;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.accommodation-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.price-tag {
    display: flex;
    flex-direction: column;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.85rem;
}

.discounted-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-unit {
    font-size: 0.8rem;
    color: #777;
}

/* Experiences Section */
.experiences-section {
    padding: 6rem 0;
    background-color: #fff;
    position: relative;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.experience-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.experience-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: -1;
}

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

.experience-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.experience-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(74, 124, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.experience-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed var(--primary-color);
    opacity: 0.3;
    animation: pulse 2s infinite;
}

.experience-card:hover .experience-icon {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.experience-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.experience-card p {
    color: #777;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Packages Section */
.packages-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.packages-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

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

.package-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-banner {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 12px 0;
}

.package-banner span {
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.package-content {
    padding: 2rem;
}

.package-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--dark-color);
}

.package-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    text-align: center;
}

.package-price span {
    color: #777;
    font-size: 0.9rem;
}

.package-price h4 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0.3rem 0;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.package-features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.package-card .btn {
    width: 100%;
    text-align: center;
    padding: 12px;
}

/* Testimonials */
.staycation-testimonials {
    padding: 6rem 0;
    background-color: #fff;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

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

.testimonial-quote {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(74, 124, 89, 0.3);
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    line-height: 1.8;
    margin: 0 0 2rem;
}

.testimonial-guest {
    display: flex;
    align-items: center;
}

.testimonial-guest img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid rgba(74, 124, 89, 0.2);
}

.testimonial-guest h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--dark-color);
}

.testimonial-rating {
    color: #f8b400;
    font-size: 0.8rem;
    margin-top: 5px;
}

/* Booking Section */
.staycation-booking {
    padding: 6rem 0;
    background-color: #f9f9f9;
    position: relative;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.booking-details {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.booking-details h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.booking-details h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.booking-details p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.booking-points {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.booking-points li {
    padding: 0.8rem 0;
    border-bottom: 1px dashed #ddd;
    display: flex;
    align-items: center;
    line-height: 1.6;
}

.booking-points li:last-child {
    border-bottom: none;
}

.booking-points li i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

.booking-note {
    background-color: rgba(74, 124, 89, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: flex-start;
}

.booking-note i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-right: 15px;
    margin-top: 2px;
}

.booking-note p {
    margin: 0;
    font-size: 0.95rem;
}

.booking-note a {
    color: var(--primary-color);
    font-weight: 600;
}

/* CTA Section */
.staycation-cta {
    padding: 5rem 0;
    background-image: url('../images/31.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: white;
    text-align: center;
}

.staycation-cta .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

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

.staycation-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.staycation-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Staycation FAQ Section */
.staycation-faq {
    background-color: #fff;
}

/* Animations for staycation page */
@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles for Staycation Page */
@media (max-width: 1200px) {
    .accommodations-slider,
    .packages-container {
        gap: 1.5rem;
    }
    
    .intro-content {
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .accommodations-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .packages-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 3rem auto 0;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .testimonials-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .staycation-banner {
        height: 50vh;
        background-attachment: scroll;
    }
    
    .accommodations-slider {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 3rem auto 0;
    }
    
    .experiences-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 3rem auto 0;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 3rem auto 0;
    }
    
    .booking-details,
    .booking-form-container {
        padding: 2rem;
    }
    
    .booking-details h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .staycation-banner {
        height: 40vh;
    }
    
    .weekday-badge {
        right: -40px;
        padding: 8px 40px;
    }
    
    .accommodation-features {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .accommodation-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .accommodation-price .btn {
        width: 100%;
    }
    
    .staycation-intro,
    .accommodation-section,
    .experiences-section,
    .packages-section,
    .staycation-testimonials,
    .staycation-booking,
    .staycation-faq {
        padding: 4rem 0;
    }
    
    .highlight-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .highlight-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* ---------- Staycation Page Styles ---------- */
.staycation-banner {
    background-image: url('../images/staycation-banner.jpg');
    background-position: center;
    height: 65vh;
    background-attachment: fixed;
    background-size: cover;
}

/* Fix for "Our Spaces" section in index page */
.our-spaces-section {
    padding: 8rem 0;
    background-image: url('../images/spaces-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: white;
    text-align: center;
}

.spaces-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.spaces-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.spaces-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.spaces-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Fix for Property Section */
.property-section {
    padding: 6rem 0;
    background-color: white;
    text-align: center;
    overflow: hidden;
}

.property-content {
    margin-bottom: 4rem;
}

.property-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.property-description {
    max-width: 800px;
    margin: 0 auto;
}

.property-description p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.property-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.property-slider-row {
    display: flex;
    width: calc(250px * 16); /* 8 images × 2 (duplicated) × 250px */
}

.property-slider-row.top-row {
    animation: slideLeft 60s linear infinite;
}

.property-slider-row.bottom-row {
    animation: slideRight 60s linear infinite;
}

.property-slide {
    width: 250px;
    height: 180px;
    padding: 0 10px;
    flex-shrink: 0;
}

.property-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.property-slide:hover img {
    transform: scale(1.05);
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 8)); /* 8 images × 250px */
    }
}

@keyframes slideRight {
    0% {
        transform: translateX(calc(-250px * 8)); /* 8 images × 250px */
    }
    100% {
        transform: translateX(0);
    }
}

/* Fix testimonials section styles */
.testimonials-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-content {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
    margin: 2rem 0;
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.prev-btn,
.next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.prev-btn:hover,
.next-btn:hover {
    background-color: var(--secondary-color);
}

/* Fix for CTA section in index page */
.cta-section {
    padding: 6rem 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ---------- Staycation Page Styles ---------- */
.staycation-banner {
    background-image: url('../images/staycation-banner.jpg');
    background-position: center;
    height: 65vh;
    background-attachment: fixed;
    background-size: cover;
}

/* Intro Section */
.staycation-intro {
    padding: 6rem 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: center;
}

.intro-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.intro-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.intro-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.highlights {
    margin-top: 2.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(10px);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(74, 124, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.3rem;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon {
    background-color: var(--primary-color);
    color: white;
}

.highlight-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #777;
}

.intro-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.intro-image:hover img {
    transform: scale(1.05);
}

.weekday-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 10px 40px;
    transform: rotate(45deg);
    text-align: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.weekday-badge span {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    display: block;
}

.weekday-badge p {
    margin: 0;
    font-size: 0.75rem;
    opacity: 0.9;
}

/* Accommodation Section */
.accommodation-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
    position: relative;
}

.accommodations-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.accommodation-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.accommodation-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.accommodation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.accommodation-badge {
    position: absolute;
    top: 20px;
    left: -5px;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.accommodation-badge::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 5px;
    height: 5px;
    background-color: var(--primary-color);
    opacity: 0.8;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.accommodation-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.accommodation-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.accommodation-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.accommodation-features span {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
}

.accommodation-features span i {
    margin-right: 5px;
    color: var(--primary-color);
    font-size: 0.85rem;
}

.accommodation-content p {
    color: #777;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.accommodation-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.price-tag {
    display: flex;
    flex-direction: column;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.85rem;
}

.discounted-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-unit {
    font-size: 0.8rem;
    color: #777;
}

/* Experiences Section */
.experiences-section {
    padding: 6rem 0;
    background-color: #fff;
    position: relative;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.experience-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.experience-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: -1;
}

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

.experience-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.experience-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(74, 124, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.experience-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed var(--primary-color);
    opacity: 0.3;
    animation: pulse 2s infinite;
}

.experience-card:hover .experience-icon {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.experience-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.experience-card p {
    color: #777;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Packages Section */
.packages-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.packages-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

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

.package-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-banner {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 12px 0;
}

.package-banner span {
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.package-content {
    padding: 2rem;
}

.package-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--dark-color);
}

.package-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    text-align: center;
}

.package-price span {
    color: #777;
    font-size: 0.9rem;
}

.package-price h4 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0.3rem 0;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.package-features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.package-card .btn {
    width: 100%;
    text-align: center;
    padding: 12px;
}

/* Testimonials */
.staycation-testimonials {
    padding: 6rem 0;
    background-color: #fff;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(74, 124, 89, 0.3);
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    line-height: 1.8;
    margin: 0 0 2rem;
}

.testimonial-guest {
    display: flex;
    align-items: center;
}

.testimonial-guest img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid rgba(74, 124, 89, 0.2);
}

.testimonial-guest h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--dark-color);
}

.testimonial-rating {
    color: #f8b400;
    font-size: 0.8rem;
    margin-top: 5px;
}

/* Booking Section */
.staycation-booking {
    padding: 6rem 0;
    background-color: #f9f9f9;
    position: relative;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.booking-details {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.booking-details h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.booking-details h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.booking-details p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.booking-points {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.booking-points li {
    padding: 0.8rem 0;
    border-bottom: 1px dashed #ddd;
    display: flex;
    align-items: center;
    line-height: 1.6;
}

.booking-points li:last-child {
    border-bottom: none;
}

.booking-points li i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

.booking-note {
    background-color: rgba(74, 124, 89, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: flex-start;
}

.booking-note i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-right: 15px;
    margin-top: 2px;
}

.booking-note p {
    margin: 0;
    font-size: 0.95rem;
}

.booking-note a {
    color: var(--primary-color);
    font-weight: 600;
}

/* CTA Section */
.staycation-cta {
    padding: 5rem 0;
    background-image: url('../images/31.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: white;
    text-align: center;
}

.staycation-cta .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

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

.staycation-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.staycation-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Staycation FAQ Section */
.staycation-faq {
    background-color: #fff;
}

/* Animations for staycation page */
@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles for Staycation Page */
@media (max-width: 1200px) {
    .accommodations-slider,
    .packages-container {
        gap: 1.5rem;
    }
    
    .intro-content {
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .accommodations-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .packages-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 3rem auto 0;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .testimonials-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .staycation-banner {
        height: 50vh;
        background-attachment: scroll;
    }
    
    .accommodations-slider {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 3rem auto 0;
    }
    
    .experiences-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 3rem auto 0;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 3rem auto 0;
    }
    
    .booking-details,
    .booking-form-container {
        padding: 2rem;
    }
    
    .booking-details h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .staycation-banner {
        height: 40vh;
    }
    
    .weekday-badge {
        right: -40px;
        padding: 8px 40px;
    }
    
    .accommodation-features {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .accommodation-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .accommodation-price .btn {
        width: 100%;
    }
    
    .staycation-intro,
    .accommodation-section,
    .experiences-section,
    .packages-section,
    .staycation-testimonials,
    .staycation-booking,
    .staycation-faq {
        padding: 4rem 0;
    }
    
    .highlight-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .highlight-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* ---------- Event Page Styles ---------- */
.event-banner {
    height: 60vh;
    background-size: cover;
    background-position: center;
}

.event-intro {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.event-intro .section-title {
    margin-bottom: 2rem;
}

.event-intro .intro-tagline {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-top: 1rem;
    text-align: center;
}

.event-description {
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.event-description p {
    margin-bottom: 1.5rem;
}

.event-packages {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.package-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.package-card.featured-package {
    border: 2px solid var(--primary-color);
    transform: scale(1.03);
    z-index: 2;
}

.package-card.featured-package:hover {
    transform: translateY(-10px) scale(1.03);
}

.package-featured-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.package-header {
    padding: 30px 30px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.package-header h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.package-price {
    font-weight: 600;
    font-size: 2.5rem;
    color: var(--dark-color);
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.package-price .currency {
    font-size: 1.2rem;
    margin-right: 5px;
    color: var(--secondary-color);
}

.package-body {
    padding: 30px;
}

.package-description {
    margin-bottom: 20px;
    text-align: center;
    font-size: 0.95rem;
    color: #666;
}

.package-features {
    margin-bottom: 20px;
}

.package-features h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.package-features ul {
    list-style: none;
}

.package-features li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
}

.package-features li i {
    color: var(--primary-color);
    margin-top: 5px;
}

.package-footer {
    padding: 0 30px 30px;
    text-align: center;
}

.full-gallery {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.gallery-masonry {
    columns: 4 250px;
    column-gap: 15px;
    margin-top: 2rem;
}

.gallery-masonry .gallery-item {
    margin-bottom: 15px;
    break-inside: avoid;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-masonry img {
    width: 100%;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
}

.gallery-masonry .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-icon {
    color: white;
    font-size: 2rem;
    margin-bottom: 10px;
}

.gallery-caption {
    color: white;
    padding: 10px;
    text-align: center;
    font-size: 0.9rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    max-width: 80%;
}

.gallery-masonry .gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-masonry .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.event-faqs {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.faqs-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 15px;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    position: relative;
}

.faq-question.active {
    background-color: var(--primary-color);
    color: white;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
    flex: 1;
}

.faq-question.active h3 {
    color: white;
}

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-icon .fa-plus {
    display: block;
}

.faq-icon .fa-minus {
    display: none;
}

.faq-question.active .fa-plus {
    display: none;
}

.faq-question.active .fa-minus {
    display: block;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    padding: 20px 30px;
    margin: 0;
    line-height: 1.7;
}

/* Testimonials for event page */
.testimonial-guest {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.testimonial-guest img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.testimonial-initials {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
}

.testimonial-guest h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial-date,
.testimonial-event {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
}

.testimonial-rating {
    color: var(--accent-color);
    font-size: 0.9rem;
}

/* Responsive styles for event page */
@media (max-width: 992px) {
    .gallery-masonry {
        columns: 3 200px;
    }
    
    .package-card.featured-package {
        transform: scale(1);
    }
    
    .package-card.featured-package:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .event-banner {
        height: 50vh;
    }
    
    .event-intro,
    .event-packages,
    .full-gallery,
    .event-faqs {
        padding: 4rem 0;
    }
    
    .gallery-masonry {
        columns: 2 180px;
    }
    
    .package-header,
    .package-body,
    .package-footer {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .event-banner {
        height: 40vh;
    }
    
    .event-intro .intro-tagline {
        font-size: 1.1rem;
    }
    
    .gallery-masonry {
        columns: 1 auto;
    }
    
    .package-price {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 15px 20px;
    }
}

/* Event Not Found Styles */
.event-not-found {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background-color: var(--light-color);
}

.event-not-found h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.event-not-found .list-group-item {
    display: block;
    padding: 12px 15px;
    margin-bottom: 8px;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: left;
}

.event-not-found .list-group-item:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.event-not-found .list-group {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: 0.25rem;
}

.event-not-found .event-list {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* ========== PROFESSIONAL EVENT MANAGEMENT DESIGN ========== */

/* ---------- Enhanced Color Variables ---------- */
:root {
    --shadow-soft: 0 10px 40px rgba(44, 85, 48, 0.1);
    --shadow-medium: 0 15px 50px rgba(44, 85, 48, 0.15);
    --shadow-strong: 0 25px 60px rgba(44, 85, 48, 0.25);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-dark));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ---------- STUNNING PROFESSIONAL FOOTER ---------- */
.premium-event-footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--accent-dark) 50%, var(--primary-color) 100%);
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.premium-event-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-light), var(--accent-color), var(--accent-light));
    animation: shimmer-accent 3s linear infinite;
}

.premium-event-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="80" cy="40" r="0.3" fill="rgba(255,255,255,0.03)"/><circle cx="40" cy="80" r="0.4" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    opacity: 0.6;
}

.premium-footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--sage-mist);
    clip-path: polygon(0 0, 100% 0, 100% 40px, 0 80px);
    z-index: 1;
}

.premium-footer-content {
    position: relative;
    z-index: 2;
    padding: 6rem 0 0;
}

.premium-footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.premium-footer-section {
    opacity: 0;
    transform: translateY(30px);
    animation: premium-fade-up 0.8s ease forwards;
}

.premium-footer-section:nth-child(1) { animation-delay: 0.2s; }
.premium-footer-section:nth-child(2) { animation-delay: 0.4s; }
.premium-footer-section:nth-child(3) { animation-delay: 0.6s; }
.premium-footer-section:nth-child(4) { animation-delay: 0.8s; }

.premium-brand-showcase {
    position: relative;
}

.premium-brand-logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.premium-logo-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-primary);
    font-size: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-bounce);
}

.premium-logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    transition: var(--transition-smooth);
}

.premium-logo-icon:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--shadow-strong);
}

.premium-logo-icon:hover::before {
    animation: logo-shine 0.8s ease;
}

.premium-brand-text h3 {
    color: white;
    font-size: 1.8rem;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    background: linear-gradient(135deg, white, var(--sage-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-brand-tagline {
    color: var(--sage-light);
    font-size: 1rem;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.premium-brand-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.premium-social-showcase {
    display: flex;
    gap: 1rem;
}

.premium-social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition-bounce);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.premium-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
    z-index: -1;
}

.premium-social-link:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 30px rgba(101, 121, 94, 0.3);
    color: white;
}

.premium-social-link:hover::before {
    left: 0;
}

.premium-footer-section h4 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    position: relative;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premium-footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: section-glow 2s ease-in-out infinite alternate;
}

.premium-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium-footer-links li {
    margin-bottom: 1rem;
    transform: translateX(-10px);
    opacity: 0;
    animation: link-slide-in 0.6s ease forwards;
}

.premium-footer-links li:nth-child(1) { animation-delay: 0.1s; }
.premium-footer-links li:nth-child(2) { animation-delay: 0.2s; }
.premium-footer-links li:nth-child(3) { animation-delay: 0.3s; }
.premium-footer-links li:nth-child(4) { animation-delay: 0.4s; }
.premium-footer-links li:nth-child(5) { animation-delay: 0.5s; }

.premium-footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem 0;
    display: block;
    overflow: hidden;
}

.premium-footer-links a::before {
    content: '▶';
    position: absolute;
    left: -20px;
    color: var(--gold-accent);
    font-size: 0.8rem;
    transition: var(--transition-smooth);
    opacity: 0;
}

.premium-footer-links a:hover {
    color: white;
    transform: translateX(15px);
    font-weight: 500;
}

.premium-footer-links a:hover::before {
    left: -15px;
    opacity: 1;
}

.premium-contact-showcase {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.premium-contact-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--gold-accent), transparent);
    opacity: 0.1;
    border-radius: 50%;
}

.premium-contact-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.premium-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.premium-contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.premium-contact-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
}

.premium-contact-text {
    flex: 1;
}

.premium-contact-text span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

.premium-contact-text a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.premium-contact-text a:hover {
    color: var(--sage-light);
    font-weight: 500;
}

.premium-footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.premium-footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.premium-copyright {
    flex: 1;
}

.premium-copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 300;
}

.premium-footer-bottom-links {
    display: flex;
    gap: 2.5rem;
    margin-top: 1rem;
}

.premium-footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    position: relative;
    padding-bottom: 2px;
}

.premium-footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-accent);
    transition: var(--transition-smooth);
}

.premium-footer-bottom-links a:hover {
    color: var(--sage-light);
}

.premium-footer-bottom-links a:hover::after {
    width: 100%;
}

.premium-certifications {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.premium-cert-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.premium-cert-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: var(--transition-smooth);
}

.premium-cert-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(101, 121, 94, 0.2);
}

.premium-cert-badge:hover::before {
    left: 100%;
}

.premium-cert-icon {
    color: var(--gold-accent);
    font-size: 1.2rem;
}

.premium-cert-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

/* ---------- ENHANCED STAYCATION STYLES ---------- */
.elite-staycation-banner {
    background: linear-gradient(rgba(101, 121, 94, 0.4), rgba(74, 93, 67, 0.6)), url('../images/staycation-banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 70vh;
    position: relative;
    overflow: hidden;
}

.elite-staycation-banner::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, transparent, var(--sage-mist));
    z-index: 1;
}

.elite-weekday-highlight {
    background: var(--gradient-accent);
    border-radius: 25px;
    padding: 2.5rem;
    margin: 3rem 0;
    border: 2px solid var(--emerald-primary);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.elite-weekday-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(101,121,94,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(101,121,94,0.08)"/><circle cx="40" cy="80" r="1.8" fill="rgba(101,121,94,0.12)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.elite-special-badge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.elite-badge-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.2rem;
    box-shadow: var(--shadow-medium);
    animation: pulse-glow 3s ease-in-out infinite;
}

.elite-badge-content h4 {
    color: var(--emerald-primary);
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.elite-badge-content p {
    color: var(--emerald-dark);
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
    opacity: 0.9;
}

.elite-special-info h4 {
    color: var(--emerald-primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.elite-special-info p {
    color: var(--charcoal);
    line-height: 1.8;
    margin: 0;
    font-size: 1.05rem;
}

/* Pay & Enjoy Section */
.elite-pay-enjoy-section {
    background: var(--gradient-accent);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.elite-pay-enjoy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="dots" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(101,121,94,0.1)"/></pattern></defs><rect width="200" height="200" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.elite-experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.elite-experience-card {
    background: white;
    border-radius: 25px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-bounce);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    animation: card-float-in 0.8s ease forwards;
}

.elite-experience-card:nth-child(1) { animation-delay: 0.1s; }
.elite-experience-card:nth-child(2) { animation-delay: 0.2s; }
.elite-experience-card:nth-child(3) { animation-delay: 0.3s; }
.elite-experience-card:nth-child(4) { animation-delay: 0.4s; }
.elite-experience-card:nth-child(5) { animation-delay: 0.5s; }
.elite-experience-card:nth-child(6) { animation-delay: 0.6s; }

.elite-experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.elite-experience-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-strong);
    border-color: var(--emerald-primary);
    color: white;
}

.elite-experience-card:hover::before {
    opacity: 1;
}

.elite-experience-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.2rem;
    transition: var(--transition-bounce);
    position: relative;
    box-shadow: var(--shadow-medium);
}

.elite-experience-icon::after {
    content: '';
    position: absolute;
    width: 110px;
    height: 110px;
    border: 2px dashed var(--emerald-primary);
    border-radius: 50%;
    top: -10px;
    left: -10px;
    animation: rotate-border 4s linear infinite;
    opacity: 0.6;
}

.elite-experience-card:hover .elite-experience-icon {
    transform: scale(1.1) rotate(10deg);
    background: white;
    color: var(--emerald-primary);
}

.elite-experience-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
    font-weight: 700;
    transition: var(--transition-smooth);
}

.elite-experience-card:hover h3 {
    color: white;
}

.elite-experience-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.elite-experience-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.elite-price-tag {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.elite-price-tag::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: var(--transition-smooth);
}

.elite-experience-card:hover .elite-price-tag {
    background: white;
    color: var(--emerald-primary);
    transform: scale(1.05);
}

.elite-experience-card:hover .elite-price-tag::before {
    left: 100%;
}

/* Day Packages Section */
.elite-packages-section {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.elite-packages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.elite-package-card {
    background: white;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: var(--transition-bounce);
    border: 3px solid transparent;
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    animation: card-float-in 0.8s ease forwards;
}

.elite-package-card:nth-child(1) { animation-delay: 0.2s; }
.elite-package-card:nth-child(2) { animation-delay: 0.4s; }
.elite-package-card:nth-child(3) { animation-delay: 0.6s; }

.elite-package-card.elite-featured {
    border-color: var(--emerald-primary);
    transform: translateY(20px) scale(1.05);
    box-shadow: var(--shadow-strong);
}

.elite-package-card.elite-featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 2rem;
    right: -3rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 4rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: var(--shadow-medium);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.elite-package-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: var(--shadow-strong);
    border-color: var(--gold-accent);
}

.elite-package-card.elite-featured:hover {
    transform: translateY(-20px) scale(1.07);
}

.elite-package-banner {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.elite-package-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: banner-shine 3s ease-in-out infinite;
}

.elite-package-banner span {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.elite-package-content {
    padding: 3rem;
}

.elite-package-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--charcoal);
    font-weight: 700;
}

.elite-package-duration {
    color: var(--emerald-primary);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0.8rem 1.5rem;
    background: var(--gradient-accent);
    border-radius: 20px;
    display: inline-block;
    text-align: center;
    width: 100%;
    box-shadow: var(--shadow-soft);
}

.elite-package-price {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.elite-package-price h4 {
    font-size: 3rem;
    color: var(--emerald-primary);
    margin: 0;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(101, 121, 94, 0.2);
}

.elite-package-price span {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

.elite-package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
}

.elite-package-features li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(101, 121, 94, 0.1);
    display: flex;
    align-items: center;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.elite-package-features li:hover {
    transform: translateX(5px);
    color: var(--emerald-primary);
}

.elite-package-features li:last-child {
    border-bottom: none;
}

.elite-package-features li i {
    color: var(--emerald-primary);
    margin-right: 1rem;
    font-size: 1.1rem;
    width: 20px;
}

.elite-package-note {
    background: var(--gradient-accent);
    color: var(--emerald-primary);
    padding: 1.2rem 2rem;
    text-align: center;
    font-weight: 700;
    border-radius: 20px;
    font-size: 1rem;
    box-shadow: var(--shadow-soft);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* How It Works Section */
.elite-workflow-section {
    background: var(--gradient-accent);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.elite-workflow-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="20,20 40,40 20,60" fill="rgba(101,121,94,0.05)"/><polygon points="80,20 60,40 80,60" fill="rgba(101,121,94,0.05)"/></svg>');
    animation: pattern-float 10s ease-in-out infinite;
}

.elite-steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.elite-step-card {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
    transform: translateY(30px);
    opacity: 0;
    animation: step-rise 0.8s ease forwards;
}

.elite-step-card:nth-child(1) { animation-delay: 0.1s; }
.elite-step-card:nth-child(2) { animation-delay: 0.3s; }
.elite-step-card:nth-child(3) { animation-delay: 0.5s; }
.elite-step-card:nth-child(4) { animation-delay: 0.7s; }

.elite-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.elite-step-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--shadow-strong);
    border-color: var(--emerald-primary);
}

.elite-step-card:hover::before {
    transform: scaleX(1);
}

.elite-step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 2rem;
    position: relative;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-bounce);
}

.elite-step-number::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 3px dashed var(--emerald-primary);
    border-radius: 50%;
    top: -10px;
    left: -10px;
    animation: step-pulse 2s ease-in-out infinite;
    opacity: 0.6;
}

.elite-step-card:hover .elite-step-number {
    transform: scale(1.15) rotate(5deg);
    background: var(--gold-accent);
}

.elite-step-card h3 {
    color: var(--charcoal);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.elite-step-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Facilities Section */
.elite-facilities-section {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.elite-facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.elite-facility-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-bounce);
    border: 3px solid transparent;
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.elite-facility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: var(--transition-smooth);
    z-index: -1;
}

.elite-facility-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-strong);
    border-color: var(--emerald-primary);
}

.elite-facility-card:hover::before {
    left: 0;
}

.elite-facility-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-bounce);
}

.elite-facility-card:hover .elite-facility-icon {
    transform: scale(1.1) rotate(-5deg);
    background: var(--gold-accent);
}

.elite-facility-content h3 {
    color: var(--charcoal);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.elite-facility-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Animations */
@keyframes premium-fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes logo-shine {
    0% { transform: translateX(-200%) rotate(45deg); }
    100% { transform: translateX(200%) rotate(45deg); }
}

@keyframes section-glow {
    0% { box-shadow: 0 0 5px var(--emerald-primary); }
    100% { box-shadow: 0 0 20px var(--gold-accent); }
}

@keyframes link-slide-in {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(101, 121, 94, 0.3); }
    50% { box-shadow: 0 0 30px rgba(101, 121, 94, 0.6), 0 0 40px rgba(101, 121, 94, 0.3); }
}

@keyframes card-float-in {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes rotate-border {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes banner-shine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

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

@keyframes step-rise {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes step-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .premium-footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.3fr;
        gap: 3rem;
    }
    
    .elite-packages-container {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .premium-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .premium-brand-showcase {
        grid-column: 1 / -1;
    }
    
    .elite-steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .elite-facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .elite-facility-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .premium-footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .premium-footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .premium-certifications {
        flex-direction: column;
        gap: 1rem;
    }
    
    .elite-weekday-highlight {
        padding: 2rem;
    }
    
    .elite-special-badge {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .elite-steps-container {
        grid-template-columns: 1fr;
    }
    
    .elite-experiences-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 4rem auto 0;
    }
    
    .elite-packages-container {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 4rem auto 0;
    }
}

@media (max-width: 576px) {
    .premium-event-footer {
        padding: 0;
    }
    
    .premium-footer-content {
        padding: 4rem 0 0;
    }
    
    .premium-footer-section h4 {
        font-size: 1.2rem;
    }
    
    .premium-footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .premium-brand-logo {
        flex-direction: column;
        text-align: center;
    }
    
    .premium-logo-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .elite-special-badge {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .elite-badge-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .elite-weekday-highlight {
        padding: 1.5rem;
    }
    
    .elite-step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .elite-step-number::before {
        width: 80px;
        height: 80px;
        top: -10px;
        left: -10px;
    }
    
    .elite-package-content {
        padding: 2rem;
    }
    
    .elite-package-price h4 {
        font-size: 2.5rem;
    }
}