/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background-color: #15803d;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.logo-text.scrolled {
    color: #111827;
}

.desktop-menu {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .desktop-menu {
        display: flex;
    }
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

.nav-link.scrolled {
    color: #374151;
}

.action-buttons {
    display: none;
    gap: 1rem;
}

@media (min-width: 768px) {
    .action-buttons {
        display: flex;
    }
}

.book-now-btn {
    padding: 0.625rem 1.5rem;
    background-color: #15803d;
    color: white;
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
}

/* ================= MOBILE ADDITION ================= */
.menu-toggle {
    display: none;
    font-size: 1.75rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: white;
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu a {
    text-decoration: none;
    font-weight: 600;
    color: #374151;
}

.mobile-menu.open {
    display: flex;
}

@media (max-width: 767px) {

    .desktop-menu,
    .action-buttons {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .navbar.scrolled .menu-toggle {
        color: #374151;
    }
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    color: white;
}

/* Background Carousel */
.bg-carousel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1s ease;
    opacity: 0;
}

.bg-image.active {
    opacity: 1;
}

/* Greenish Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(11, 61, 46, 0.95), rgba(11, 61, 46, 0.7), rgba(11, 61, 46, 0.3));
    z-index: 1;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 10;
}

.floating-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 9999px;
    animation: floatY 6s ease-in-out infinite;
}

.floating-ring {
    position: absolute;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 9999px;
    animation: floatY 8s ease-in-out infinite;
}

.delay-2 {
    animation-delay: 2s;
}

.delay-4 {
    animation-delay: 4s;
}

.delay-6 {
    animation-delay: 6s;
}

@keyframes floatY {
    0% {
        transform: translateY(0);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-18px);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 0.6;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 20;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 1.5rem 4rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        padding-top: 10rem;
    }
}

/* Left Content */
.hero-left {
    animation: fadeIn 1s ease-out forwards;
}

.badge {
    display: inline-block;
    background-color: white;
    color: black;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-title .highlight {
    color: #7ED957;
}

.hero-description {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 36rem;
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.125rem;
    }
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #DA6B44;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 600;
    letter-spacing: 0.025em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.hero-button:hover {
    background-color: #0B3D2E;
}

.hero-button:hover .arrow-icon {
    transform: translateX(4px);
}

.arrow-icon {
    transition: transform 0.2s ease;
}

/* Right Image Carousel */
.image-carousel-container {
    position: relative;
    width: 100%;
    height: 480px;
    animation: slideIn 1.2s ease-out forwards;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.carousel-wrapper {
    position: relative;
    width: 420px;
    height: 420px;
}

.carousel-image {
    position: absolute;
    inset: 0;
    transition: all 0.7s ease-out;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.carousel-image.active {
    z-index: 30;
    transform: scale(1) translateX(0);
    opacity: 1;
}

.carousel-image.next {
    z-index: 20;
    transform: scale(0.95) translateX(40px);
    opacity: 0.8;
}

.carousel-image.second-next {
    z-index: 10;
    transform: scale(0.9) translateX(80px);
    opacity: 0.6;
}

.carousel-image.hidden {
    opacity: 0;
}

.carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-img {
  max-width: 20%; /* Ensures the image scales down to fit its container */
  height: auto;    /* Maintains the image's aspect ratio */
  /* Optional: Add standard thumbnail styling */
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 5px;
  border-radius: 8px;
}

.carousel-caption {
    position: absolute;
    bottom: -40px;
    right: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Events Section */
.events-section {
    padding: 6rem 1.5rem;
    background: linear-gradient(to bottom, #ffffff, #f9fafb);
}

.container {
    max-width: 1200px;
    max-height: fit-content;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 3rem;
    font-weight: Regular;
    color: #111827;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
}

/* Carousel Container */
.events-carousel-container {
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Carousel Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-nav:hover {
    background-color: #15803d;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 1rem;
}

.carousel-nav.next {
    right: 1rem;
}

.carousel-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-nav:disabled:hover {
    background-color: white;
    color: inherit;
    transform: translateY(-50%);
}

/* Event Cards */
.event-card {
    position: absolute;
    width: 350px;
    height: 450px;
    transition: all 0.7s ease-out;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Position styles - dynamically applied */
.event-card.left-2 {
    transform: translateX(-380px) translateY(60px) rotate(-14deg) scale(0.88);
    z-index: 1;
    opacity: 0.7;
    cursor: default;
}

.event-card.left-1 {
    transform: translateX(-200px) translateY(30px) rotate(-7deg) scale(0.96);
    z-index: 2;
    opacity: 0.8;
    cursor: default;
}

.event-card.center {
    transform: translateX(0) translateY(-30px) rotate(0deg) scale(1.08);
    z-index: 5;
    opacity: 1;
    cursor: pointer;
}

.event-card.right-1 {
    transform: translateX(200px) translateY(30px) rotate(7deg) scale(0.96);
    z-index: 2;
    opacity: 0.8;
    cursor: default;
}

.event-card.right-2 {
    transform: translateX(380px) translateY(60px) rotate(14deg) scale(0.88);
    z-index: 1;
    opacity: 0.7;
    cursor: default;
}

.event-card:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 40%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.event-name {
    font-size: 1.75rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.event-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 0.5rem;
    max-height: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-tag {
    display: inline-block;
    background-color: #1E3932;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.5rem;
    align-self: flex-start;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background-color: #15803d;
    transform: scale(1.2);
}

/* Event Detail Modal */
.event-modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 1rem;
}

.event-modal {
    background-color: white;
    max-width: 900px;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    max-height: 90vh;
    animation: fadeIn 0.3s ease-out forwards;
}

.event-modal-content {
    overflow-y: auto;
    max-height: 90vh;
}

.event-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.event-modal-close:hover {
    background-color: white;
    transform: scale(1.1);
}

.event-modal-header {
    position: relative;
    height: 250px;
}

.event-modal-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-modal-body {
    padding: 2rem;
    overflow-y: auto;
    max-height: calc(90vh - 250px);
}

.event-modal-title {
    font-size: 2.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.event-modal-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 2rem;
}

/* Gallery Section */
.event-gallery-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.event-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.event-gallery-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.event-gallery-image:hover {
    transform: scale(1.05);
}

/* Packages Section */
.packages-section {
    padding: 6rem 1.5rem;
    background: linear-gradient(to bottom, #f9fafb, #ffffff);
}

.packages-header {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.packages-title {
    font-size: 3rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

@media (max-width: 768px) {
    .packages-title {
        font-size: 2.5rem;
    }
}

.packages-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

/* Price Boxes */
.price-boxes {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.price-box {
    background: #1E4C41;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 180px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.price-box:hover {
    transform: translateY(-5px);
}

.price-label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.price-amount {
    font-size: 1.25rem;
    font-weight: bold;
    color: #9BE15D;
}

.packages-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Single Package Card */
.single-package-card {
    background-color: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    max-width: 900px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.single-package-card:hover {
    transform: translateY(-10px);
}

.package-card-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.package-card-content {
    padding: 2rem;
}

.package-card-title {
    font-size: 2rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.package-card-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #DA6B44;
    margin-bottom: 1rem;
}

.package-card-timing {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-card-timing svg {
    width: 16px;
    height: 16px;
}

/* Package Inclusions */
.package-inclusions {
    margin: 2rem 0;
}

.package-inclusions h4 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.package-inclusions ul {
    list-style: none;
    padding: 0;
}

.package-inclusions li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #4b5563;
    font-size: 1rem;
}

.package-card-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.package-call-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: #1E4C41;
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.package-call-btn:hover {
    background-color: #15352e;
}

.package-whatsapp-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.package-whatsapp-btn:hover {
    transform: scale(1.1);
}

.package-whatsapp-btn svg {
    width: 26px;
    height: 26px;
    color: white;
}

/* Package Booking Modal */
.package-booking-modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 1rem;
}

.package-booking-modal {
    background-color: white;
    max-width: 500px;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    animation: fadeIn 0.3s ease-out forwards;
}

.package-booking-modal-content {
    padding: 2rem;
}

.package-booking-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #6b7280;
    padding: 0.5rem;
}

.package-booking-close:hover {
    color: #ef4444;
}

.package-booking-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #15803d;
    margin-bottom: 1.5rem;
    text-align: center;
}

.package-booking-form .form-group {
    margin-bottom: 1rem;
}

.package-booking-form .form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.package-booking-form .form-input:focus {
    outline: none;
    border-color: #15803d;
    box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.1);
}

.package-booking-form .submit-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: #15803d;
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.package-booking-form .submit-btn:hover {
    background-color: #166534;
}

.package-booking-form .submit-btn:disabled {
    background-color: #9ca3af;
    cursor: not-allowed;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    background-color: #16a34a;
    padding: 1rem;
    border-radius: 9999px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #15803d;
    transform: scale(1.1);
}

.whatsapp-icon {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .carousel-wrapper {
        width: 320px;
        height: 320px;
    }

    .image-carousel-container {
        height: 380px;
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .event-modal-title {
        font-size: 1.75rem;
    }

    .event-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .packages-title {
        font-size: 2rem;
    }

    .package-modal-title {
        font-size: 1.75rem;
    }

    .package-modal-buttons {
        flex-direction: column;
    }

    .package-modal-whatsapp-btn {
        width: 100%;
        height: auto;
        padding: 1rem;
        border-radius: 0.75rem;
        margin-top: 1rem;
    }
}

@media (max-width: 640px) {
    .carousel-wrapper {
        width: 280px;
        height: 280px;
    }

    .image-carousel-container {
        height: 320px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-content {
        padding-top: 6rem;
    }

    .event-modal {
        max-width: 95%;
    }

    .event-gallery-grid {
        grid-template-columns: 1fr;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card-buttons {
        flex-direction: column;
    }

    .package-whatsapp-btn {
        width: 100%;
        height: auto;
        padding: 0.875rem;
        border-radius: 0.75rem;
    }
}

/* Responsive adjustments for events */
@media (max-width: 1024px) {
    .event-card {
        width: 300px;
        height: 400px;
    }

    .event-card.left-2 {
        transform: translateX(-320px) translateY(50px) rotate(-14deg) scale(0.88);
    }

    .event-card.left-1 {
        transform: translateX(-160px) translateY(25px) rotate(-7deg) scale(0.96);
    }

    .event-card.center {
        transform: translateX(0) translateY(-25px) rotate(0deg) scale(1.08);
    }

    .event-card.right-1 {
        transform: translateX(160px) translateY(25px) rotate(7deg) scale(0.96);
    }

    .event-card.right-2 {
        transform: translateX(320px) translateY(50px) rotate(14deg) scale(0.88);
    }
}

@media (max-width: 768px) {
    .events-carousel-container {
        height: 450px;
    }

    .event-card {
        width: 250px;
        height: 350px;
    }

    .event-card.left-2 {
        transform: translateX(-240px) translateY(40px) rotate(-14deg) scale(0.88);
    }

    .event-card.left-1 {
        transform: translateX(-120px) translateY(20px) rotate(-7deg) scale(0.96);
    }

    .event-card.center {
        transform: translateX(0) translateY(-20px) rotate(0deg) scale(1.08);
    }

    .event-card.right-1 {
        transform: translateX(120px) translateY(20px) rotate(7deg) scale(0.96);
    }

    .event-card.right-2 {
        transform: translateX(240px) translateY(40px) rotate(14deg) scale(0.88);
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .carousel-nav.prev {
        left: 0.5rem;
    }

    .carousel-nav.next {
        right: 0.5rem;
    }
}

@media (max-width: 640px) {
    .events-carousel-container {
        height: 400px;
    }

    .event-card {
        width: 200px;
        height: 300px;
    }

    .event-card.left-2 {
        transform: translateX(-180px) translateY(30px) rotate(-12deg) scale(0.85);
    }

    .event-card.left-1 {
        transform: translateX(-90px) translateY(15px) rotate(-6deg) scale(0.93);
    }

    .event-card.center {
        transform: translateX(0) translateY(-15px) rotate(0deg) scale(1.05);
    }

    .event-card.right-1 {
        transform: translateX(90px) translateY(15px) rotate(6deg) scale(0.93);
    }

    .event-card.right-2 {
        transform: translateX(180px) translateY(30px) rotate(12deg) scale(0.85);
    }
}

/* Form Success/Error Messages */
.form-message {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    text-align: center;
    display: none;
}

.form-message.success {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
    display: block;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
    display: block;
}

/* Statistics Section */
.statistics-section {
    position: relative;
    padding: 6rem 1.5rem;
    overflow: hidden;
}

.statistics-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.statistics-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.6), rgba(11, 61, 59, 0.75));
    z-index: 2;
}

.statistics-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 3;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

@media (min-width: 768px) {
    .statistics-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 4rem;
    }
}

.stat-item {
    text-align: center;
    transition: transform 0.5s ease;
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 3.75rem;
    }
}

.stat-label {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 0.025em;
}

/* Animation for numbers */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number.animating {
    animation: countUp 0.5s ease-out forwards;
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 1.5rem;
    background-color: #F7F2E8;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-title {
    font-size: 2rem;
    font-weight: bold;
    color: #1A1A1A;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

@media (min-width: 768px) {
    .gallery-title {
        font-size: 4.5rem;
    }
}

.gallery-subtitle {
    font-size: 1.25rem;
    color: rgba(26, 26, 26, 0.7);
    max-width: 32rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    aspect-ratio: 1 / 1;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

/* Hover Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* View More Button */
.gallery-load-more {
    text-align: center;
    margin-top: 3rem;
}

.view-more-btn {
    background-color: #1E4C41;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    font-family: 'Inter', sans-serif;
}

.view-more-btn:hover {
    background-color: #DA6B44;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.view-more-btn:active {
    transform: translateY(0);
}

.view-more-btn.hidden {
    display: none;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 1.5rem;
    background-color: white;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-title {
    font-size: 2rem;
    font-weight: bold;
    color: #1A1A1A;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

@media (min-width: 768px) {
    .testimonials-title {
        font-size: 4.5rem;
    }
}

.testimonials-subtitle {
    font-size: 1.25rem;
    color: rgba(26, 26, 26, 0.7);
}

.testimonials-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Testimonial Card */
.testimonial-card {
    background-color: #F7F2E8;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 2rem;
    }
}

/* Rating */
.testimonial-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-star {
    width: 1.5rem;
    height: 1.5rem;
    fill: #DA6B44;
    color: #DA6B44;
}

/* Review */
.testimonial-review {
    font-size: 1.5rem;
    color: #1A1A1A;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-style: italic;
    font-weight: 300;
}

@media (max-width: 768px) {
    .testimonial-review {
        font-size: 1.25rem;
    }
}

/* Photos Stack */
.testimonial-photos {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.testimonial-photo-item {
    position: relative;
    width: 6rem;
    height: 6rem;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* User Info */
.testimonial-user {
    text-align: center;
}

.testimonial-user-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1A1A1A;
    margin-bottom: 0.25rem;
}

.testimonial-user-location {
    color: rgba(26, 26, 26, 0.6);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.testimonial-user-package {
    font-size: 0.875rem;
    color: #DA6B44;
    font-weight: 600;
}

/* Controls */
.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-control-btn {
    background-color: #1E4C41;
    color: white;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-control-btn:hover {
    background-color: #DA6B44;
    transform: scale(1.1);
}

.testimonial-control-btn:active {
    transform: scale(0.95);
}

.testimonial-control-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card.animating {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Location Section */
.location-section {
    padding: 6rem 1.5rem;
    background: linear-gradient(to bottom, #ffffff, #f9fafb);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .location-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.location-info {
    padding: 2rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.location-info h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.address {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 3px solid #15803d;
}

.contact-details {
    margin-top: 2rem;
}

.contact-details .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.contact-details .contact-item:hover {
    background-color: #f3f4f6;
    transform: translateX(5px);
}

.contact-details .contact-item svg {
    color: #15803d;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-details .contact-item span {
    color: #4b5563;
    font-size: 1rem;
    font-weight: 500;
}

.map-container {
    width: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Contact Section - UPDATED */
.contact-section {
    padding: 6rem 1.5rem;
    background: linear-gradient(to bottom, #f9fafb, #ffffff);
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-container h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #15803d;
    box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.1);
}

.form-input.textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background-color: #15803d;
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.contact-submit-btn:hover {
    background-color: #166534;
}

.contact-info-container {
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-info-container h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.contact-info-list {
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background-color: #f3f4f6;
    transform: translateY(-2px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: #15803d;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    color: white;
    width: 24px;
    height: 24px;
}

.contact-info-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.contact-info-content p {
    color: #4b5563;
    font-size: 1rem;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.whatsapp-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
    text-align: center;
}

.whatsapp-contact-btn:hover {
    background-color: #1DA851;
}

.call-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: #1E4C41;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.call-contact-btn:hover {
    background-color: #15352e;
}

/* Footer Section */
.footer-section {
    background-color: #1E4C41;
    color: white;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

/* Footer Top */
.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

@media (min-width: 1024px) {
    .footer-top {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

/* Footer Brand */
.footer-brand-title {
    font-size: 2rem;
    font-weight: bold;
    color: #9BE15D;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-brand-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #9BE15D;
    color: black;
    transform: translateY(-2px);
}

/* Footer Links */
.footer-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.footer-links-list {
    list-style: none;
    padding: 0;
}

.footer-links-list li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #9BE15D;
}

/* Footer Contact */
.footer-contact-list {
    list-style: none;
    padding: 0;
}

.contact-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.contact-item svg {
    color: #9BE15D;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item span {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Instagram Feed */
.footer-instagram {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.instagram-title {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.instagram-title svg {
    color: #9BE15D;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.instagram-item {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
}

.instagram-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-item:hover .instagram-image {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay svg {
    color: white;
    width: 1.5rem;
    height: 1.5rem;
}

/* Copyright */
.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}