/* Color Variables */
:root {
    /* === Brand Background === */
    --sand-50: #f5f8f9;
    /* Your primary background color */

    /* === Brand Primary Green Gradient === */
    --coral-500: #3caf55;
    /* Light Green */
    --coral-600: #0c5e34;
    /* Darker Green */
    --coral-400: #60c27a;
    /* Optional mid-tone for hover (optional fallback) */

    /* === Icon Accent Yellow === */
    --blush-500: #facc15;
    /* Yellow (like Tailwind yellow-400) */
    --blush-400: #fde047;
    --blush-300: #fef08a;

    /* Optional Navy overrides if needed */
    --navy-800: #102a43;
    /* keep or update if you'd like darker text areas */

    /*font  */
    --font-heading: 'Rubik', sans-serif;
    --font-body: 'Rubik', sans-serif;
}

/* Typography */
body {
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--font-body);
}

/* Color Classes */
.text-coral {
    color: var(--coral-500) !important;
}

.text-navy {
    color: var(--navy-800) !important;
}

.text-navy-600 {
    color: var(--navy-600) !important;
}

.text-navy-500 {
    color: var(--navy-500) !important;
}

.text-navy-400 {
    color: var(--navy-400) !important;
}

.bg-coral {
    background-color: var(--coral-500) !important;
}

.bg-navy {
    background-color: var(--navy-800) !important;
}

.bg-sand-50 {
    background-color: var(--sand-50) !important;
}



.bg-blush-50 {
    background-color: var(--blush-50) !important;
}

.bg-navy-100 {
    background-color: var(--navy-100) !important;
}

.bg-navy-200 {
    background-color: var(--navy-200) !important;
}

/* Gradient Backgrounds */
.bg-gradient-light {
    background: linear-gradient(135deg, #60c27a6e 0%, #0c5e342e 65%);
}


.bg-gradient-navy {
    background: linear-gradient(135deg, var(--navy-50) 0%, var(--sand-50) 100%);
}

.bg-gradient-coral {
    background: linear-gradient(135deg, var(--coral-500) 0%, var(--blush-500) 100%);
}

.text-gradient {
    background: linear-gradient(135deg, var(--coral-500) 0%, var(--coral-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Button Styles */
.btn-coral {
    background-color: var(--coral-500) !important;
    border-color: var(--coral-500) !important;
    color: white !important;
    transition: all 0.3s ease !important;
    height: 55px !important;
}

.btn-coral:hover {
    background-color: var(--coral-600) !important;
    border-color: var(--coral-600) !important;
    color: white !important;
    transform: translateY(-2px) !important;
}

.btn-navy {
    background-color: var(--navy-700);
    border-color: var(--navy-700);
    color: var(--coral-500);
    transition: all 0.3s ease;
}

.btn-navy:hover {
    background-color: var(--coral-600);
    border-color: var(--navy-800);
    color: white;
}

.btn-outline-navy {
    border: 2px solid var(--coral-600);
    color: var(--navy-700);
    transition: all 0.3s ease;
}

.btn-outline-navy:hover {
    background-color: var(--coral-600);
    border-color: var(--coral-600);
    color: white;
}


.bg-dark>*:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}


/* Hero Section */
.hero-section {
    position: relative;
    /* overflow: hidden; */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--sand-200) 0%, var(--blush-100) 50%, var(--navy-100) 100%);
}

.hero-background {
    /* position: relative; */
    width: 100%;
    height: 80vh;
    /* Or adjust to fit your needs */
    overflow: hidden;
    z-index: -1;
    /* Keeps it behind your main content */
}

.hero-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.6;
    /* start with visible overlay */
    z-index: 2;
    transition: opacity 0.3s ease;
}

.icon-yellow {
    color: #f1c40f !important;
    /* Yellow */
}

.marcellus-heading {
    font-family: 'Marcellus', serif;
    font-size: 40px;
    line-height: 6px;
}

.marcellus-subheading {
    font-family: 'Marcellus', serif;
    font-size: 13px;
    /* adjust as needed */
    line-height: 24px;
    /* adjust as needed */
    letter-spacing: 1px;
    /* for uppercase spacing */
}

@media (max-width: 576px) {
    .marcellus-heading {
        font-size: 22px;
        line-height: 28px;
    }
}

/* .lottie-floral {
  max-width: 320px;
  width: 80%;
  height: auto;
  display: block;
  margin-top: 1rem;
  transform-origin: center;
}
 */


.property-section h5 {
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
    font-size: 1.2rem;
}



.custom-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    color: #fff;
    background: rgba(0, 0, 0, 0.3); /* optional background */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: end;
    align-items: center;
    cursor: pointer;
  }
  
  .swiper-button-prev.custom-nav {
    left: -50px; /* Move outside container */
  }
  
  .swiper-button-next.custom-nav {
    right: -50px; /* Move outside container */
  }
  

.property-section ul img {
    filter: grayscale(100%);
}



.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-image: url('img/banner_video.mp4'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
}

/* .hero-form {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);  //revert to original if needed
} */


/* Centering hero content */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    position: relative;
}

/* Fade-in animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main hero content fade-in after 1s */
.hero-content.animate-fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 1s;
}

/* Fade each word individually */
.fade-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Staggered delays for each word */
.fade-word:nth-child(1) {
    animation-delay: 1.2s;
}

.fade-word:nth-child(2) {
    animation-delay: 1.6s;
}

.fade-word:nth-child(3) {
    animation-delay: 2.0s;
}

.fade-word:nth-child(4) {
    animation-delay: 2.4s;
}

.fade-word:nth-child(5) {
    animation-delay: 2.8s;
}

/* Hide date form initially */
.hero-form {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
    transition-delay: 0.2s;
}

/* Show it after 4.2s */
.hero-form.reveal {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}



/* Floating Elements */
.floating-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.floating-dot-1 {
    top: 20%;
    left: 10%;
    background-color: var(--coral-400);
}

.floating-dot-2 {
    bottom: 30%;
    right: 15%;
    background-color: var(--blush-400);
    animation-delay: 1s;
}

/* Testimonial Carousel */
.testimonial-carousel {
    /* overflow: hidden; */
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: var(--sand-300);
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    background-color: var(--coral-500);
}

/* Package Cards */
.package-card {
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-8px);
}

.object-cover {
    object-fit: cover;
}

/* List Bullets */
.bullet-coral {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--coral-400);
    border-radius: 50%;
    margin-right: 12px;
}

.bullet-sm-coral {
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: var(--coral-400);
    border-radius: 50%;
    margin-right: 8px;
}

/* Process Section */
.progress-line {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: linear-gradient(90deg, var(--coral-300) 0%, var(--blush-300) 50%, var(--coral-300) 100%);
    border-radius: 2px;
    z-index: 0;
}

.process-card {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.step-number {
    position: relative;
    z-index: 2;
}

/* Hover Effects */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.hover-scale {
    transition: transform 0.3s ease;
}

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

.hover-coral:hover {
    color: var(--coral-400) !important;
}

/* Gallery */
.gallery-img {
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Video Testimonials */
.video-testimonial {
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-testimonial:hover {
    transform: translateY(-4px);
}

.video-testimonial:hover .fa-play {
    transform: scale(1.1);
}

/* Accordion */
.accordion-button {
    background-color: white;
    border: none;
    color: var(--navy-800);
}

.accordion-button:not(.collapsed) {
    background-color: var(--sand-50);
    color: var(--navy-800);
    box-shadow: none;
}

.accordion-button:focus {
    border-color: var(--coral-400);
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 71, 0.25);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff6b47'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

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

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

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

/* Utility Classes */
.py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.cursor-pointer {
    cursor: pointer;
}

.object-cover {
    object-fit: cover;
}

.border-sand-100 {
    border-color: var(--sand-100) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    
    .display-3 {
        font-size: 2.5rem;
    }
    
  

    .display-4 {
        font-size: 2rem;
    }

    .hero-form {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .floating-dot {
        display: none;
    }

    .py-6 {
        padding-top: 0rem !important;
        padding-bottom: 3rem !important;
    }
}

@media (max-width: 576px) {
    .display-3 {
        font-size: 2rem;
    }

    .testimonial-slide .h3 {
        font-size: 1.5rem;
    }

    .package-card .card-body {
        padding: 1.5rem !important;
    }

    .process-card .card-body {
        padding: 2rem !important;
    }
}

/* Form Focus States */
.form-control:focus,
.form-select:focus {
    border-color: var(--coral-400);
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 71, 0.25);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--sand-100);
}

::-webkit-scrollbar-thumb {
    background: var(--coral-400);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--coral-500);
}




/* my styles */

.gradient-icon {
    background: linear-gradient(270deg, #3caf55 0%, #0c5e34 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}


/* banner styling for h1 */

/* Fade-in animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero content fades in together */
.hero-content.animate-fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 1s;
    /* Starts 1s after load */
}

/* Word-by-word fade in */
.text-gradient .fade-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Stagger each word */
.text-gradient .fade-word:nth-child(1) {
    animation-delay: 2s;
}

.text-gradient .fade-word:nth-child(2) {
    animation-delay: 2.4s;
}

.text-gradient .fade-word:nth-child(3) {
    animation-delay: 2.8s;
}

.text-gradient .fade-word:nth-child(4) {
    animation-delay: 2.12s;
}

.text-gradient .fade-word:nth-child(5) {
    animation-delay: 2.16s;
}

.slide-counter {
    display: none;
}

#receptionCarousel{

    width: 636px !important;
    height: 636px !important;
    overflow: hidden;
    box-shadow: -14px 11px 17px gray;
}



/* All media quesries for below screens */

@media (max-width: 576px) {

    .text-white

 {
    /* --bs-text-opacity: 1; */
    /* color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important; */
    font-size: 16px !important;
}


p.lead.mb-5.text-white.mx-auto {
    margin-bottom: 1rem !important;
}


    
  }



@media (min-width: 577px) and (max-width: 768px) {

    .text-white

 {
    /* --bs-text-opacity: 1; */
    /* color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important; */
    font-size: 16px !important;
}

.hero-form.bg-white.bg-opacity-90.backdrop-blur.rounded-4.p-4.shadow-lg.mx-auto.mb-4.reveal.mobile-optimized {
    /* max-width: 100px !important; */
    width: 260px !important;
    padding: 10px !important;
    /* margin-bottom: 80px !important; */
}

p.lead.mb-5.text-white.mx-auto {
    margin-bottom: 1rem !important;
}

button {
    width: 85% !important;
    font-size: 15px !important;
    padding: 0px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
}
    
  }



@media (min-width: 769px) {

.text-white

 {
    /* --bs-text-opacity: 1; */
    /* color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important; */
    font-size: 16px !important;
}

p.lead.mb-5.text-white.mx-auto {
    margin-bottom: 1rem !important;
}

.hero-form.bg-white.bg-opacity-90.backdrop-blur.rounded-4.p-4.shadow-lg.mx-auto.mb-4.reveal.mobile-optimized {
    /* max-width: 100px !important; */
    width: 260px !important;
    padding: 10px !important;
    /* margin-bottom: 80px !important; */
}



    
  }
  

p.lead.mx-auto.justyparar {
    text-align: justify;
}




.main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: bold;
    margin-bottom: 24px;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
}

/* Layout Selector */
.layout-selector {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.layout-btn {
    padding: 12px 24px;
    border: 2px solid var(--border);
    background: var(--card);
    color: var(--foreground);
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 110px;
}

.layout-btn:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-soft);
}

.layout-btn.active {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
    box-shadow: var(--shadow-elegant);
}

/* Content Container */
.content-container {
    min-height: 600px;
}

/* Card Base Styles */
.function-card {
    background: var(--card);
    border-radius: calc(var(--radius) * 2);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    height: 500px;
}

.function-card:hover {
    box-shadow: var(--shadow-elegant);
    transform: translateY(-4px);
}

/* Carousel Base Styles */
.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 16px;
}

.carousel-nav.next {
    right: 16px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--muted-foreground);
    opacity: 0.4;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary);
    opacity: 1;
    transform: scale(1.25);
}

/* Layout 1: Elegant Layout */
.elegant-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.elegant-layout .function-card {
    position: relative;
}

.elegant-layout .carousel-container {
    height: 500px;
}

.elegant-layout .overlay-content {
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgb(0 0 0));
    color: white;
    padding: 32px 24px 24px;
    z-index: 5;
}

.elegant-layout .function-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.elegant-layout .function-description {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
    text-align: justify;
}

/* Layout 2: Mosaic Style */
.mosaic-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    grid-auto-rows: 250px;
}

.mosaic-layout .function-card {
    position: relative;
}

.mosaic-layout .function-card:nth-child(1),
.mosaic-layout .function-card:nth-child(4) {
    grid-row: span 2;
}

.mosaic-layout .carousel-container {
    height: 100%;
}

.mosaic-layout .overlay-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mosaic-layout .function-card:hover .overlay-content {
    opacity: 1;
}

.mosaic-layout .function-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.mosaic-layout .function-description {
    font-size: 0.85rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Layout 3: Full Carousel */
.full-carousel-layout {
    max-width: 1200px;
    margin: 0 auto;
}

.full-carousel-layout .carousel-container {
    height: 500px;
    border-radius: calc(var(--radius) * 3);
}

.full-carousel-layout .overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 48px;
    z-index: 5;
}

.full-carousel-layout .function-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.full-carousel-layout .function-description {
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 800px;
}

/* Layout 4: Timeline */
.timeline-layout {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-layout::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-sunset);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 80px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid var(--background);
    z-index: 10;
}

.timeline-content {
    width: 45%;
    padding: 0 40px;
}

.timeline-content .function-card {
    display: flex;
    height: 280px;
}

.timeline-item:nth-child(even) .function-card {
    flex-direction: row-reverse;
}

.timeline-carousel {
    flex: 1;
}

.timeline-carousel .carousel-container {
    height: 100%;
}

.timeline-info {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.timeline-info .function-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 16px;
}

.timeline-info .function-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--muted-foreground);
}

/* Layout 5: Magazine */
.magazine-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.magazine-feature {
    position: relative;
}

.magazine-feature .carousel-container {
    height: 500px;
    border-radius: calc(var(--radius) * 2);
}

.magazine-feature .overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 40px;
    z-index: 5;
}

.magazine-feature .feature-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.magazine-feature .function-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.magazine-feature .function-description {
    font-size: 1.1rem;
    line-height: 1.6;
}

.magazine-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.magazine-sidebar .function-card {
    display: flex;
    height: 140px;
}

.magazine-sidebar .carousel-container {
    width: 120px;
    height: 100%;
}

.magazine-sidebar .card-content {
    flex: 1;
    padding: 16px;
}

.magazine-sidebar .function-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--foreground);
}

.magazine-sidebar .function-description {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--muted-foreground);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.magazine-bottom {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.magazine-bottom .function-card {
    display: flex;
    height: 180px;
}

.magazine-bottom .carousel-container {
    width: 200px;
    height: 100%;
}

.magazine-bottom .card-content {
    flex: 1;
    padding: 24px;
}

.magazine-bottom .function-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 12px;
    color: var(--foreground);
}

.magazine-bottom .function-description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--muted-foreground);
}

/* Layout 6: Card Gallery */
.cards-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.cards-layout .function-card {
    padding: 0;
}

.cards-layout .carousel-container {
    height: 250px;
}

.cards-layout .card-content {
    padding: 24px;
}

.cards-layout .function-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 16px;
}

.cards-layout .function-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 20px;
}

.cards-layout .view-more-btn {
    background: var(--gradient-sunset);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cards-layout .view-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-elegant);
}

/* Layout 7: Hexagon Grid */
.hexagon-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 40px 0;
}

.hexagon-item {
    position: relative;
    margin: 0 auto;
    width: 300px;
    height: 260px;
}

.hexagon-shape {
    width: 100%;
    height: 100%;
    position: relative;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    overflow: hidden;
}

.hexagon-shape .carousel-container {
    width: 100%;
    height: 100%;
}

.hexagon-shape .carousel-image {
    width: 120%;
    height: 120%;
    object-fit: cover;
    position: absolute;
    top: -10%;
    left: -10%;
}

.hexagon-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), transparent, rgba(0, 0, 0, 0.7));
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

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

.hexagon-overlay .function-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.hexagon-overlay .function-description {
    font-size: 0.8rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Layout 8: Split Screen */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    height: 600px;
    border-radius: calc(var(--radius) * 2);
    overflow: hidden;
    box-shadow: var(--shadow-elegant);
}

.split-carousel {
    position: relative;
}

.split-carousel .carousel-container {
    height: 100%;
}

.split-content {
    background: var(--card);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow-y: auto;
}

.split-content .function-selector {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.split-content .function-tab {
    padding: 16px 20px;
    background: var(--secondary);
    border: none;
    border-radius: var(--radius);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--foreground);
}

.split-content .function-tab:hover,
.split-content .function-tab.active {
    background: var(--primary);
    color: var(--primary-foreground);
    transform: translateX(8px);
}

.split-content .active-content {
    opacity: 0;
    animation: fadeInContent 0.5s ease forwards;
}

.split-content .function-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 20px;
}

.split-content .function-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted-foreground);
}

@keyframes fadeInContent {
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .timeline-layout::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .timeline-item::before {
        left: 20px;
    }
    
    .timeline-content {
        width: 100%;
        padding: 0;
    }
    
    .magazine-layout {
        grid-template-columns: 1fr;
    }
    
    .split-layout {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .split-carousel {
        order: 2;
        height: 400px;
    }
    
    .split-content {
        order: 1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    section#faq {
    margin: 50px 0 0 0;
}
    
      .layout-selector {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px !important;
}
    
    .wedding-functions {
    padding: 0px 0 !important;
            }
    
    .function-card {
    background: var(--card);
    border-radius: calc(var(--radius) * 2);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    height: 420px;
}


.elegant-layout .overlay-content

  {
    
    position: absolute;
    top: 25%;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 32px 24px 24px;
    z-index: 5;
}
    
    .layout-selector {
        gap: 8px;
    }
    
    .layout-btn {
        padding: 8px 16px;
        font-size: 12px;
        min-width: 90px;
    }
    
    .elegant-layout,
    .cards-layout {
        grid-template-columns: 1fr;
    }
    
    .mosaic-layout {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    
    .mosaic-layout .function-card {
        grid-row: span 1 !important;
    }
    
    .hexagon-layout {
        grid-template-columns: 1fr;
    }
    
    .magazine-bottom {
        grid-template-columns: 1fr;
    }
    
    .magazine-bottom .function-card,
    .timeline-content .function-card {
        flex-direction: column;
        height: auto;
    }
    
    .timeline-carousel .carousel-container,
    .magazine-bottom .carousel-container {
        width: 100%;
        height: 200px;
    }
}




/* Header Styles */
.wedding-functions {
    padding: 20px 0;
}

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

.main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: bold;
    margin-bottom: 24px;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
}

/* Layout Selector */
.layout-selector {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.layout-btn {
    padding: 12px 24px;
    border: 2px solid var(--border);
    background: var(--card);
    color: var(--foreground);
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 110px;
}

.layout-btn:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-soft);
}

.layout-btn.active {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
    box-shadow: var(--shadow-elegant);
}

/* Content Container */
.content-container {
    min-height: 600px;
}

/* Card Base Styles */
.function-card {
    background: var(--card);
    border-radius: calc(var(--radius) * 2);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.function-card:hover {
    box-shadow: var(--shadow-elegant);
    transform: translateY(-4px);
}

/* Carousel Base Styles */
.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 16px;
}

.carousel-nav.next {
    right: 16px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--muted-foreground);
    opacity: 0.4;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary);
    opacity: 1;
    transform: scale(1.25);
}

/* Layout 1: Elegant Layout */
.elegant-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.elegant-layout .function-card {
    position: relative;
}



.elegant-layout .overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 32px 24px 24px;
    z-index: 5;
}

.elegant-layout .function-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.elegant-layout .function-description {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* Layout 2: Mosaic Style */
.mosaic-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    grid-auto-rows: 250px;
}

.mosaic-layout .function-card {
    position: relative;
}

.mosaic-layout .function-card:nth-child(1),
.mosaic-layout .function-card:nth-child(4) {
    grid-row: span 2;
}

.mosaic-layout .carousel-container {
    height: 100%;
}

.mosaic-layout .overlay-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mosaic-layout .function-card:hover .overlay-content {
    opacity: 1;
}

.mosaic-layout .function-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.mosaic-layout .function-description {
    font-size: 0.85rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Layout 3: Full Carousel */
.full-carousel-layout {
    max-width: 1200px;
    margin: 0 auto;
}

.full-carousel-layout .carousel-container {
    height: 500px;
    border-radius: calc(var(--radius) * 3);
}

.full-carousel-layout .overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 48px;
    z-index: 5;
}

.full-carousel-layout .function-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.full-carousel-layout .function-description {
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 800px;
}

/* Layout 4: Timeline */
.timeline-layout {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-layout::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-sunset);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 80px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid var(--background);
    z-index: 10;
}

.timeline-content {
    width: 45%;
    padding: 0 40px;
}

.timeline-content .function-card {
    display: flex;
    height: 280px;
}

.timeline-item:nth-child(even) .function-card {
    flex-direction: row-reverse;
}

.timeline-carousel {
    flex: 1;
}

.timeline-carousel .carousel-container {
    height: 100%;
}

.timeline-info {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.timeline-info .function-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 16px;
}

.timeline-info .function-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--muted-foreground);
}

/* Layout 5: Magazine */
.magazine-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.magazine-feature {
    position: relative;
}

.magazine-feature .carousel-container {
    height: 500px;
    border-radius: calc(var(--radius) * 2);
}

.magazine-feature .overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 40px;
    z-index: 5;
}

.magazine-feature .feature-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.magazine-feature .function-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.magazine-feature .function-description {
    font-size: 1.1rem;
    line-height: 1.6;
}

.magazine-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.magazine-sidebar .function-card {
    display: flex;
    height: 140px;
}

.magazine-sidebar .carousel-container {
    width: 120px;
    height: 100%;
}

.magazine-sidebar .card-content {
    flex: 1;
    padding: 16px;
}

.magazine-sidebar .function-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--foreground);
}

.magazine-sidebar .function-description {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--muted-foreground);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.magazine-bottom {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.magazine-bottom .function-card {
    display: flex;
    height: 180px;
}

.magazine-bottom .carousel-container {
    width: 200px;
    height: 100%;
}

.magazine-bottom .card-content {
    flex: 1;
    padding: 24px;
}

.magazine-bottom .function-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 12px;
    color: var(--foreground);
}

.magazine-bottom .function-description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--muted-foreground);
}

/* Layout 6: Card Gallery */
.cards-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.cards-layout .function-card {
    padding: 0;
}

.cards-layout .carousel-container {
    height: 250px;
}

.cards-layout .card-content {
    padding: 24px;
}

.cards-layout .function-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 16px;
}

.cards-layout .function-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 20px;
}

.cards-layout .view-more-btn {
    background: var(--gradient-sunset);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cards-layout .view-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-elegant);
}

/* Layout 7: Hexagon Grid */
.hexagon-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 40px 0;
}

.hexagon-item {
    position: relative;
    margin: 0 auto;
    width: 300px;
    height: 260px;
}

.hexagon-shape {
    width: 100%;
    height: 100%;
    position: relative;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    overflow: hidden;
}

.hexagon-shape .carousel-container {
    width: 100%;
    height: 100%;
}

.hexagon-shape .carousel-image {
    width: 120%;
    height: 120%;
    object-fit: cover;
    position: absolute;
    top: -10%;
    left: -10%;
}

.hexagon-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), transparent, rgba(0, 0, 0, 0.7));
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

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

.hexagon-overlay .function-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.hexagon-overlay .function-description {
    font-size: 0.8rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Layout 8: Split Screen */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    height: 600px;
    border-radius: calc(var(--radius) * 2);
    overflow: hidden;
    box-shadow: var(--shadow-elegant);
}

.split-carousel {
    position: relative;
}

.split-carousel .carousel-container {
    height: 100%;
}

.split-content {
    background: var(--card);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow-y: auto;
}

.split-content .function-selector {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.split-content .function-tab {
    padding: 16px 20px;
    background: var(--secondary);
    border: none;
    border-radius: var(--radius);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--foreground);
}

.split-content .function-tab:hover,
.split-content .function-tab.active {
    background: var(--primary);
    color: var(--primary-foreground);
    transform: translateX(8px);
}

.split-content .active-content {
    opacity: 0;
    animation: fadeInContent 0.5s ease forwards;
}

.split-content .function-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 20px;
}

.split-content .function-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted-foreground);
}

@keyframes fadeInContent {
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .timeline-layout::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .timeline-item::before {
        left: 20px;
    }
    
    .timeline-content {
        width: 100%;
        padding: 0;
    }
    
    .magazine-layout {
        grid-template-columns: 1fr;
    }
    
    .split-layout {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .split-carousel {
        order: 2;
        height: 400px;
    }
    
    .split-content {
        order: 1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .layout-selector {
        gap: 8px;
    }
    
    .layout-btn {
        padding: 8px 16px;
        font-size: 12px;
        min-width: 90px;
    }
    
    .elegant-layout,
    .cards-layout {
        grid-template-columns: 1fr;
    }
    
    .mosaic-layout {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    
    .mosaic-layout .function-card {
        grid-row: span 1 !important;
    }
    
    .hexagon-layout {
        grid-template-columns: 1fr;
    }
    
    .magazine-bottom {
        grid-template-columns: 1fr;
    }
    
    .magazine-bottom .function-card,
    .timeline-content .function-card {
        flex-direction: column;
        height: auto;
    }
    
    .timeline-carousel .carousel-container,
    .magazine-bottom .carousel-container {
        width: 100%;
        height: 200px;
    }
}





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

/* Utility Classes */
.icon {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

/* Option Selector */
.option-selector {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.option-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.option-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e5e7eb;
    background: white;
    color: #374151;
    border-radius: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.option-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.option-btn.active {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    border-color: transparent;
}

/* Resort Section Base */
.resort-section {
    position: relative;
    min-height: 100vh;
    padding: 5rem 0;
}

.resort-section.active {
    display: block;
}



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

.gradient-overlay {
    position: absolute;
    inset: 0;
}

.decorative-elements {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.deco-1 {
    top: 5rem;
    right: 5rem;
    width: 8rem;
    height: 8rem;
    background: rgba(245, 158, 11, 0.2);
}

.deco-2 {
    bottom: 5rem;
    left: 5rem;
    width: 12rem;
    height: 12rem;
    background: rgba(217, 119, 6, 0.15);
}

/* Header Section */
.header-section {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.main-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.subtitle {
    font-size: 1.25rem;
    max-width: 32rem;
    margin: 0 auto;
    line-height: 1.7;
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.amenity-card {
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.icon-container {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.icon-container .icon {
    width: 2rem;
    height: 2rem;
    color: white;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.card-description {
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    text-center;
    position: relative;
    z-index: 10;
}

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    margin: 0 0.5rem;
    border: none;
}

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

/* === LUXURY THEME === */
.luxury-theme {
    background: linear-gradient(135deg, #fef3c7, #fed7aa, #fef3c7);
}

.luxury-gradient {
    background: linear-gradient(135deg, rgba(254, 243, 199, 0.9), rgba(254, 215, 170, 0.9));
}

.luxury-badge {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #d97706;
}

.luxury-title {
    background: linear-gradient(135deg, #92400e, #d97706, #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.luxury-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 2px solid transparent;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.luxury-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 20px 40px rgba(217, 119, 6, 0.3);
}

.luxury-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3);
}

.luxury-card:hover .luxury-icon {
    transform: scale(1.1);
}

.luxury-card .card-title {
    color: #1f2937;
}

.luxury-card:hover .card-title {
    color: #d97706;
}

.luxury-card .card-description {
    color: #6b7280;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #d97706, #f59e0b);
    color: white;
}

.cta-btn.secondary {
    border: 2px solid #d97706;
    color: #d97706;
    background: transparent;
}

.cta-btn.secondary:hover {
    background: #d97706;
    color: white;
}

/* === MODERN THEME === */
.modern-theme {
    background: #f9fafb;
}

.modern-gradient {
    background: rgba(249, 250, 251, 0.8);
}

.modern-header {
    margin-bottom: 5rem;
}

.modern-line {
    width: 1px;
    height: 4rem;
    background: #1f2937;
    margin: 0 auto 2rem;
}

.modern-title {
    color: #1f2937;
    font-weight: 100;
    letter-spacing: 0.1em;
    font-size: 4.5rem;
}

.modern-subtitle {
    color: #6b7280;
    font-weight: 300;
    max-width: 24rem;
}

.modern-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 64rem;
    margin: 0 auto 4rem;
    gap: 1px;
}

.modern-card {
    background: white;
    padding: 2rem;
    transition: all 0.3s ease;
    border: none;
    border-radius: 0;
}

.modern-card:hover {
    background: #1f2937;
    color: white;
    transform: none;
}

.modern-icon {
    width: 3rem;
    height: 3rem;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.modern-card:hover .modern-icon {
    color: white;
}

.modern-card .card-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.modern-card:hover .card-title {
    color: white;
}

.modern-card .card-description {
    font-size: 0.875rem;
    color: #6b7280;
}

.modern-card:hover .card-description {
    color: #d1d5db;
}

.cta-btn.modern-btn {
    border: 2px solid #1f2937;
    color: #1f2937;
    background: transparent;
    padding: 0.75rem 3rem;
    letter-spacing: 0.05em;
}

.cta-btn.modern-btn:hover {
    background: #1f2937;
    color: white;
}

/* === TROPICAL THEME === */
.tropical-theme {
    background: linear-gradient(135deg, #ecfdf5, #f0fdfa, #cffafe);
}

.tropical-gradient {
    background: linear-gradient(135deg, rgba(236, 253, 245, 0.7), rgba(207, 250, 254, 0.7));
}

.tropical-badge {
    background: #10b981;
    color: white;
    font-weight: 600;
}

.tropical-title {
    color: #065f46;
}

.tropical-subtitle {
    color: #047857;
}

.tropical-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto 4rem;
}

.tropical-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 1rem;
}

.tropical-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

.card-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.tropical-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    flex-shrink: 0;
}

.tropical-card .card-title {
    color: #065f46;
    margin-bottom: 0.5rem;
}

.tropical-card .card-description {
    color: #047857;
}

.cta-btn.tropical-primary {
    background: #10b981;
    color: white;
}

.cta-btn.tropical-primary:hover {
    background: #059669;
}

.cta-btn.tropical-secondary {
    border: 2px solid #10b981;
    color: #047857;
    background: transparent;
}

.cta-btn.tropical-secondary:hover {
    background: #f0fdf4;
}

/* === DARK THEME === */
.dark-theme {
    background: #111827;
    color: white;
}

.dark-gradient {
background-color: #d3e2da;
    
}

.dark-badge {
    background: rgba(147, 51, 234, 0.2);
    border: 1px solid rgba(147, 51, 234, 0.3);
    color: #c084fc;
}

.dark-title {
   color:black;
}

.dark-subtitle {
    color: black;
}

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

.dark-card {
    background: #ffffff ;
    backdrop-filter: blur(12px);
    border: 1px solid #374151;
    text-align: center;
}

.dark-card:hover {
    border-color: #a855f7;
    transform: translateY(-4px);
}

.dark-icon {
    background: linear-gradient(135deg, #3fa06c, #3caf55);
    border-radius: 0.75rem;
    margin: 0 auto 1rem;
}

.dark-card:hover .dark-icon {
    transform: scale(1.1);
}

.dark-card .card-title {
    color: black;
    font-size: 1.25rem;
}

.dark-card .card-description {
    color: #515151;
    font-size: 0.875rem;
}

.additional-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    padding: 1.5rem;
    background: rgb(255 255 255);
    backdrop-filter: blur(12px);
    border: 1px solid #374151;
    border-radius: 0.75rem;
}

.service-card .icon {
    width: 2rem;
    height: 2rem;
    color: #3daa5e;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: black;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* === INTERACTIVE THEME === */
.interactive-theme {
    background: linear-gradient(135deg, #eff6ff, #f0f9ff, #e0f2fe);
}

.interactive-badge {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #1d4ed8;
}

.interactive-title {
    background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.interactive-subtitle {
    color: #374151;
}

.interactive-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.interactive-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    text-align: center;
    cursor: pointer;
}

.interactive-card:hover {
    transform: scale(1.1);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.3);
}

.interactive-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #3b82f6, #0ea5e9);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.interactive-card:hover .interactive-icon {
    transform: rotate(12deg);
}

.interactive-card .card-title {
    color: #1e40af;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.interactive-card:hover .card-title {
    color: #1e40af;
}

.interactive-card .card-description {
    color: #1d4ed8;
}

.interactive-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 64rem;
    margin: 0 auto 3rem;
}

.service-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: white;
}

.service-item .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #3b82f6;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.service-item:hover .icon {
    transform: scale(1.25);
}

.service-item h4 {
    font-weight: 600;
    color: #1e40af;
    font-size: 0.875rem;
}

.service-item p {
    font-size: 0.75rem;
    color: #1d4ed8;
}

.social-proof {
    text-align: center;
}

.social-content {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.avatars {
    display: flex;
    margin-right: -0.5rem;
}

.avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 2px solid white;
    margin-right: -0.5rem;
}

.avatar-1 {
    background: #3b82f6;
}

.avatar-2 {
    background: #0ea5e9;
}

.avatar-3 {
    background: #06b6d4;
}

.avatar-count {
    background: #1d4ed8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
}

.social-text {
    text-align: left;
}

.social-title {
    font-weight: 600;
    color: #1e40af;
}

.social-subtitle {
    font-size: 0.875rem;
    color: #1d4ed8;
}

.cta-btn.interactive-cta {
    background: #3b82f6;
    color: white;
}

.cta-btn.interactive-cta:hover {
    background: #1d4ed8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .modern-title {
        font-size: 3rem;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modern-grid {
        grid-template-columns: 1fr;
    }
    
    .tropical-grid {
        grid-template-columns: 1fr;
    }
    
    .card-content {
        flex-direction: column;
        text-align: center;
    }
    
    .interactive-services {
        grid-template-columns: 1fr;
    }
    
    .social-content {
        flex-direction: column;
        text-align: center;
    }
    
    .option-buttons {
        gap: 0.5rem;
    }
    
    .option-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .additional-services {
        grid-template-columns: 1fr;
    }
    
    .cta-btn {
        display: block;
        margin: 0.5rem 0;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}


.mobile-carousel-section {
      padding: 40px 20px;
    }
  
    .simple-mobile-slide {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
      background-size: cover;
      background-position: center;
      position: relative;
      height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  
    .simple-mobile-slide::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(45deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
      z-index: 1;
    }
  
    .simple-mobile-content {
      position: relative;
      z-index: 2;
      text-align: center;
      color: white;
      padding: 20px;
    }
  
    .simple-mobile-content .icon {
      width: 40px;
      height: 40px;
      margin: 0 auto 10px;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
    }
  
    .simple-mobile-content h5 {
      font-family: 'Marcellus', serif;
      margin-bottom: 5px;
      font-size: 1.2rem;
    }
  
    .simple-mobile-content p {
      font-size: 0.85rem;
      margin: 0;
    }
  
    .swiper-pagination-bullet {
      background: #fff;
    }
  
    @media (max-width: 400px) {
      .simple-mobile-slide {
        height: 250px;
      }
  
      .simple-mobile-content h5 {
        font-size: 1rem;
      }
  
      .simple-mobile-content p {
        font-size: 0.75rem;
      }
    }


.border-top.border-white.border-opacity-25.pt-4 span {
    color: white !important;
}


footer.bg-navy.text-white {
    background-color: #3da860 !important;
}


.floating-icon {
    position: fixed;
    z-index: 9999;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    line-height: 50px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
  }

  .floating-icon:hover {
    transform: scale(1.1);
  }

  .whatsapp-icon {
    bottom: 20px;
    right: 20px;
  }

  .phone-icon {
    bottom: 20px;
    left: 20px;
    background-color: #007BFF; /* blue for phone */
  }