/*   Style for Header */


        body {
            margin: 0;
            background: white;
         }

         .pagecontent{
            padding:60px 80px;
            gap:40px;
         }

        .head1{
            font-size: 70px;
            
        }

        .head2{
            font-size: 30px;
            font-display: block;
        }
         
        .head3{
            font-size: small;
        }
        /* Top Bar */
     .top-bar {
         height:25px;
        background: linear-gradient(
        90deg,
        #ffffff 0%,
        rgba(255,255,255,0.9) 30%,
        rgba(54, 155, 145, 0.6) 50%,
        #2f5d50 100%
    );
    padding: 5px 30px;
    display: flex;
    justify-content: flex-end; /* PUSH EVERYTHING TO RIGHT */
    align-items: center;
}

/* Right container */
.top-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Contact text */
.contact-text {
    font-size: 14px;
    margin-right: 10px;
    color: white;
}

/* Social icons */
.social-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 6px;
    color: white;
    transition: 0.3s;
}

.social-icon:hover {
    background: rgba(255,255,255,0.4);
}

/* Default (Desktop) */
.contact-text {
  display: inline;
}


/* =========================
   TABLET + MOBILE
========================= */
@media (max-width: 927px) {

  /* ===== TOP BAR ===== */
  .top-bar {
    justify-content: flex-end;
    padding: 5px 15px;
    color: white;
  }

  .contact-text {
    font-size: 0; /* HIDE TEXT */
  }

  .contact-text i {
    font-size: 16px; /* SHOW ICON ONLY */
  }

  .top-right {
    gap: 10px;
  }

  .social-icon {
    width: 28px;
    height: 28px;
  }
}

       
/* ===== HEADER ===== */
.navbar {
    height:70px;
      display: flex;
  justify-content: space-between;
  background: #fff;
  position: relative;
}

/* LOGO */
.toplogobar {
  display: flex;
  align-items: start;
}

.logo {
  width: 150px;
  height: 90%;
  margin-left: 0;
}

/* ===== MENU DESKTOP ===== */
.menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu a {
  color: #063323;
  text-decoration: none;
  font-size: 16px;
  padding: 8px 10px;
  transition: 0.3s;
}

.menu a:hover {
  color: #174c4e;
  background-color: #addeeb;
  border-radius: 6px;
}

/* ===== DROPDOWN ===== */
.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 160px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  display: none;
  padding: 8px 0;
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
  color: #063323;
}

.dropdown-content a:hover {
  background: #addeeb;
}

/* Desktop hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* ===== HAMBURGER ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #333;
  margin: 4px 0;
  display: block;
}

/* ===== MOBILE & TABLET ===== */
@media (max-width: 992px) {


  .menu-toggle {
     display: flex !important;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
  }
  
  .menu-toggle span {
    height: 3px;
    width: 25px;
    background: #000; /* make sure visible */
    margin: 4px 0;
    display: block;
  }

  .menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    display: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }

  .menu.active {
    display: flex;
  }

  .menu a {
    width: 100%;
    padding: 12px;
    border-bottom: 1px solid #eee;
  }

  /* Dropdown for mobile */
  .dropdown-content {
    position: static;
    display: none;
    box-shadow: none;
    width: 100%;
  }

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



        

    /* Hero section start */
     
.hero {
    display:flex;
     background-color: white;
    align-items:center;
    justify-content:space-between;
    padding:60px 80px;
    gap:40px;
    color: #063323;
}

/* Left Content */
.hero-text{
    flex:1;
}

.hero-text h1{
    font-size:45px;
    font-family: 'Great Vibes', cursive;
    letter-spacing: 1.5px;
    margin-bottom:20px;
    line-height:1.2;
  color: #dab231;
  text-align: start;
  text-shadow: 
    1px 1px 2px #504c4c,
    0 0 10px rgba(212,175,55,0.8);
}

.hero-text p{
    font-size:16px;
    line-height:1.5;
    max-width:520px;
    color: #063323;
    margin: 0;
}

.body-text{
    flex:1;
}

.body-text h2{
    font-size:35px;
    font-family: 'Great Vibes', cursive;
    letter-spacing: 1.5px;
    margin-bottom:20px;
    line-height:1.2;
  color: #dab231;
  text-align: center;
  text-shadow: 
    1px 1px 2px #504c4c,
    0 0 10px rgba(212,175,55,0.8);
}

.body-text p{
    font-size:15px;
    line-height:1.8;
    max-width:720px;
    color: #063323;
    text-align:justify;
}

.feature-box p{
    font-size:15px;
    line-height:1.8;
    color: #063323;
    text-align: justify;
}


/* Features */
.features{
    display:flex;
    gap:25px;
    margin:25px 0;
    font-size:15px;
    color:  #063323;
}

.features i{
    color: #063323;
    margin-right:8px;
    font-size:16px;
}



/* Slider Box */
.slider{
    width:500px;
    height: 275px;
    margin:60px auto;
    position:relative;
    overflow:hidden;
    border-radius:25px;
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
}

/* Slides */
.slides{
    display:flex;
}

.slide{
    width:100%;
    display:none;
    border-radius:25px;
}

/* Active Slide */
.slide.active{
    display:block;
}

/* Buttons */
.prev, .next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    /* background:rgba(0,0,0,0.5); */
     background: transparent;
    color:#fff;
    border:none;
    padding:12px 18px;
    cursor:pointer;
    font-size:22px;
    border-radius:50%;
}

.prev{ left:15px; }
.next{ right:15px; }

.prev:hover, .next:hover{
    background:#000;
}


/* highlights */

        .stats-container {
           display: flex;
            justify-content:center;
            width: 75%;
            max-width: 1200px;
            box-sizing:content-box;
            padding:20px 70px;
                gap: 40Px;
            transform: translateX(100px);
             background-color: #e4f1f3f6;
             
        }

        .stat-item {
            text-align: center;
            margin: 0 15px;
        }

        .stat-number {
            font-size: 30px;
            font-weight: bold;
            color: #063323;
            margin-bottom: 5px;
            /* Ensure numbers are block level for easier animation target */
            display: block;
        }

        .stat-description {
            font-size: 14px;
            color: #063323;
            letter-spacing: 0.5px;
        }


/* Resort section*/

@media (max-width: 1024px) {

  .hero {
    flex-direction: column;
    padding: 40px 30px;
    text-align: center;
  }

  .hero-text {
    width: 100%;
  }

  .hero-text h1 {
    font-size: 35px;
  }

  .hero-text p {
    max-width: 100%;
    font-size:16px;
  }


   
  .body-text h2{
      font-size :25px;
  }    
  
   .body-text p{
      font-size :14px;
  }   
  /* Features wrap */
  .features {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  /* Slider responsive */
  .slider {
    width: 400px;
    height: 230px;
    margin: 30px auto;
  }

  .slide {
    width: 100%;
    height: auto;
  }

  /* Stats fix */
  .stats-container {
    width: 100%;
    padding: 20px;
    transform: none; /* remove shift */
    flex-wrap: wrap;
    gap: 20px;
  }
}


@media (max-width: 767px) {

  body {
    overflow-x: hidden;
  }

  /* HERO STACK */
  .hero {
    flex-direction: column;
    padding: 20px 15px;
    gap: 20px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 35px;
  }

  .hero-text p {
    font-size: 16px;
  }

  /* FEATURES STACK */
  .features {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  /* BUTTONS FULL WIDTH */
  .buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .buttons a {
    width: 90%;
    text-align: center;
  }

  /* SLIDER FIX */
  .slider {
    width: 90%;
    height: 90%;
    margin: 20px auto;
  }

  .slide {
    width: 90%;
    height: auto;
  }

  /* SMALLER ARROWS */
  .prev, .next {
    padding: 8px 12px;
    font-size: 16px;
    background: transparent;
  }

  /* STATS FIX */
  .stats-container {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 15px;
    transform: none;
    gap: 15px;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-description {
    font-size: 13px;
  }
}


/* ================= PREMIUM NAVBAR ================= */

/* Sticky + glass effect */
.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Hamburger icon */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #063323;
    border-radius: 3px;
    transition: 0.3s;
}

/* Animation to X */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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



/* SECTION */
.resort-section{
    display:flex;
    gap:50px;
    padding:70px 8%;
    align-items:center;
}

/* LEFT TEXT 
.resort-left{
    flex:1;
}

.resort-left h2{
    font-size:40px;
    margin-bottom:15px;
}

.resort-left h3{
    font-weight:600;
    font-family: 'Great Vibes', cursive;
    font-size: 40px;
    margin-bottom:20px;
    color: #caa64b;
    text-shadow: 0 0 3px #0b0e0d, 0 0 5px #052222;
}

.resort-left p{
    line-height:1.9;
    margin-bottom:18px;
} */

/* STATS */
.stats{
    display:flex;
    gap:60px;
    margin-top:30px;
}

.stat h1{
    color: #013220;
    font-size:36px;
}

.stat p{
    margin:0;
    color: #013220;
    }

/* RIGHT IMAGES */
.resort-right{
    flex:1;
    position:relative;
}

.main-img{
    width:100%;
    height: 340px;
    border-radius:20px;
}

.small-img{
    width:52%;
    height:230px;
    position:absolute;
    bottom:-40px;
    right:-40px;
    border-radius:16px;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}


/* RESPONSIVE */
@media(max-width:900px){

.resort-section{
    flex-direction:column;
}

.small-img{
    position:relative;
    left:0;
    bottom:0;
    width:100%;
    margin-top:20px;
}

}



/* Features */
.venuefeatures{
    background: white;
    padding:70px 10%;
    text-align:center;
}

.features h2{
    font-size:34px;
    margin-bottom:40px;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.feature-box{
    background:#fff;
    padding:30px;
    border-radius:16px;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

.feature-box i{
    font-size:28px;
    color: #063323;
    margin-bottom:15px;
}

.feature-box h4{
    margin-bottom:10px;
}

/* Buttons */
.buttons{
    margin-top:20px;
}

.btn{
    padding:14px 28px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
    margin-right:15px;
    display:inline-block;
    transition:0.3s;
}

.btn-primary{
    background:#2f5d50;
     color:#fff;
}

.btn-primary:hover{
    background:#254a40;
}

.btn-outline{
    border:2px solid #2f5d50;
    color:#2f5d50;
}

.btn-outline:hover{
    background:#2f5d50;
    color:#fff;
}

/* Right Image */
.hero-right{
    flex:1;
    position:relative;
}

.hero-right img{
    width:100%;
    border-radius:20px;
}

/* Review Card */
.review-card{
    position:absolute;
    bottom:20px;
    right:20px;
    background:#fff;
    padding:18px;
    border-radius:14px;
    box-shadow:0 6px 20px rgba(0,0,0,0.15);
    width:260px;
}

.stars{
    color:#063323;
    margin-bottom:8px;
}

.review-card h4{
    margin:5px 0;
    font-size:16px;
    color:#063323;
}

.review-card p{
    font-size:13px;
    color:#063323;
}


    /* hero section end */
    
    /* gallery */

.gallery-wrap {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease;
}

/* Glass card base */
.card {
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.45;
  transform: scale(0.85);
  transition: all 0.6s ease;
}

/* Image inside glass */
.card img {
  width: 82%;
  height: 70%;
  filter: contrast(1.05);
}

/* Active (center) card */
.card.active {
  width: 340px;
  height: 340px;
  opacity: 1;
  transform: scale(1);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow:
    0 40px 100px #7bb2b6,
    inset 0 0 0 1px rgba(255,255,255,0.25);
}

/* =========================
   TABLET VIEW (ROTATE STYLE)
========================= */
@media (max-width: 1024px) {

  .gallery-wrap {
    height: 60vh;
  }

  .gallery {
    justify-content: center;
    align-items: center;
  }

  .card {
    width: 150px;
    height: 150px;
    opacity: 0.5;
    transform: scale(0.8);
  }

  .card.active {
    width: 240px;
    height: 240px;
    transform: scale(1);
    opacity: 1;
  }

  /* Side cards slightly visible */
  .card:not(.active) {
    filter: blur(1px);
  }
}


/* =========================
   MOBILE VIEW (ROTATE STYLE)
========================= */
@media (max-width: 767px) {

  .gallery {
    position: relative;
    height: 250px;
  }

  .card {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(0.6);
    opacity: 0;
    transition: all 0.5s ease;
  }

  .card.active {
    transform: translateX(-50%) scale(1);
    opacity: 1;
    z-index: 3;
    width: 250px;
    height: 250px;
  }

  .card.prev {
    transform: translateX(-130%) scale(0.8);
    opacity: 0.6;
    z-index: 2;
  }

  .card.next {
    transform: translateX(30%) scale(0.8);
    opacity: 0.6;
    z-index: 2;
  }

  .card.hidden {
    opacity: 0;
    z-index: 1;
  }
}


/* Navigation 
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  color: #aaa;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.prev { left: 60px; }
.next { right: 60px; }

.nav:hover {
  color: #fff;
}  */


.wave{
  margin-top: -40px;
  padding-left: 60px;
    align-items: center;
}

/* about start */

.property-section{
    padding:60px 80px;
            gap:40px;
}

.pcontainer{
    width:90%;
    max-width:1200px;
     height: auto;
    margin:auto;
    display:flex;
    align-items:center;
    gap:60px;
}




/* Image */
.image-box img{
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 8px;

    box-shadow: 0 50px 70px rgba(0,0,0,0.3);
    transition: 0.4s ease;
}

/* Hover premium effect */
.image-box:hover img{
    transform: translateY(-10px);
}

/* IMAGE SIDE */
.image-box{
    max-width: 450px;
    width: 100%;
    position: relative;
    display: inline-block;
    margin: auto;
}

/* Green Shape Behind */
.bg-shape{
    position: absolute;
    right: -35px;
    top: -25px;
    width: 95%;
    height: 115%;
    background: #6bc5be;

    /* REVERSED diagonal */
   clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);

    box-shadow: 0 20px 40px rgba(47, 172, 165, 0.15);
}

.cardimage-box{
    width: 300px;
    position: relative;
    display: inline-block;
}

/* CONTENT SIDE */
/* .content-box{
    flex:1;
}

.content-box h2{
    font-size:40px;
    color:#0f2e4d;
    margin-bottom:20px;
    font-weight:700;
}

.content-box p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
} */

.content-box ul{
    list-style:none;
    padding:0;
    margin-bottom:30px;
}

.content-box ul li{
    margin-bottom:12px;
    padding-left:30px;
    position:relative;
    color: #063323;
    font-size: 15px;
}

.content-box ul li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#00b98e;
    font-weight:bold;
    font-size: 15px;
}

.btn-read{
    background:#00b98e;
    color:#fff;
    padding:14px 35px;
    text-decoration:none;
    border-radius:5px;
    display:inline-block;
    transition:0.3s;
}

.btn-read:hover{
    background:#009e79;
}

/* Responsive */
@media (max-width: 768px) {

  .property-section {
    padding: 40px 20px;
  }

  .pcontainer {
    flex-direction: column;
    text-align: center;
    gap: 35px;
  }

  .hero-text h1 {
    font-size: 35px;
    line-height: 1.3;
  }

  .hero-text p {
    font-size: 15px;
  }

  .hero-text li {
    font-size: 15px;
    text-align: left;
  }

  .image-box {
    max-width: 320px;
    margin: auto;
    position: relative;
  overflow: hidden; /* prevents shape overflow */
  }


  .bg-shape {
    position: absolute;

    top: -15px;
    right: -15px;

    width: 100%;
    height: 110%;

    background: #6bc5be;

    z-index: 1; /* behind image */

    /* same diagonal look like desktop */
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);

    border-radius: 12px;
  }


    .wave {
    margin-top: -20px;   /* less overlap */
    padding-left: 0;
  }

  .wave svg {
    width: 100%;
    height: 60px;   /* smaller wave for mobile */
    display: block;
  }
}

.room-wrapper {
  display: grid;
  grid-template-columns: 2.8fr 1.2fr;
  gap: 15px;
  align-items: start;
  padding: 60px 80px;
}

/* MAIN IMAGE */
.room-main {
  border-radius: 10px;
  overflow: hidden;
}

.room-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: opacity 0.35s ease;
}

/* SIDE LIST */
.room-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.room-item {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eee;
  cursor: pointer;
  transition: all 0.3s ease;
}

.room-item img {
  width: 95px;
  height: 95px;
  object-fit: cover;
  border-radius: 12px;
}

.room-item.active {
  border-color: #063323;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.room-item h4 {
  margin: 0;
  font-size: 14px;
}

.room-item p {
  margin-top: 6px;
  font-weight: 200;
  font-size: 14px;
  color: #03130d;
}

@media (max-width: 900px) {
  .room-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .room-main {
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
}

@media (max-width: 768px) {

  .property-section {
    padding: 40px 20px;
  }

  .pcontainer {
    flex-direction: column;   /* stack */
    gap: 30px;
    width: 100%;
  }

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

  .content-box h1 {
    font-size: 26px;
  }

  .content-box p {
    font-size: 14px;
  }

  .content-box ul li {
    font-size: 14px;
    text-align: left;
  }

  /* Image full width */
  .image-box {
    width: 100%;
  }

  .image-box img {
    width: 100%;
    height: auto;
  }

  .bg-shape {
    display: none;  /* remove background shape on mobile */
  }

  /* Small image */
  .cardimage-box {
    width: 100%;
    text-align: center;
  }

  .cardimage-box img {
    width: 80%;
  }

}

@media (max-width: 768px) {

  .room-wrapper {
    grid-template-columns: 1fr;  /* single column */
    padding: 40px 20px;
  }

  .room-main img {
    height: 250px;   /* reduce height */
  }

  .room-main h2 {
    font-size: 18px;
  }

  .room-main p {
    font-size: 14px;
  }

  .room-side {
    margin-top: 20px;
  }

  .room-item {
    flex-direction: row;
    align-items: center;
  }

  .room-item img {
    width: 70px;
    height: 70px;
  }

  .room-item h4 {
    font-size: 13px;
  }

  .room-item p {
    font-size: 12px;
  }

}

@media (max-width: 768px) {
  .wave {
    width: 100%;
    height: 60px;
  }
.room-item {
  -webkit-tap-highlight-color: transparent;
}
}


/* about end */

/* Event start */
/* Card Wrapper */

.stylish-card {
    background: linear-gradient(135deg, #ffffff, #f7f7fb);
    border-radius: 18px;
    padding: 24px 80px;
    width: 80%;
    max-width: 1200px;   /* optional */
    min-width: 280px;    /* optional */
    margin: 20px auto;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.35s ease;
    position: relative;
    
}

/* Glow effect */
.stylish-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top left,
        rgba(228, 233, 233, 0.849),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.35s ease;
}

/* Hover */
.stylish-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 25px 45px rgba(0, 0, 0, 0.15);
}

.stylish-card::before {
    display: none; /* removes glow overlay */
}

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

/* Card Title */
.stylish-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #063323;
}

/* Card Text */
.stylish-card p {
    font-size: 14px;
    color: #063323;
    line-height: 1.6;
  /*  word-wrap: break-word;
  overflow-wrap: break-word;  */
}

/* Optional Badge */
.card-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    background: linear-gradient(135deg, #8cdfdb71, #0ce0e0);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 12px;
}

.stylish-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.stylish-card {
    width: 80%;
    margin: 60px auto;
    display: flex;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    background: #fff;
}

/* Left Image */
.card-left {
    width: 60%;
    background: transparent;

}

.card-left img {
    width: 600px;
    height: 450px;
    object-fit: cover;
    /* REQUIRED for animation */
    transition: opacity 0.4s ease;
}



/* Right Form */
.card-right {
    width: 50%;
    padding: 40px;
}

.card-right h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

/* Form fields */
.card-right input,
.card-right textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.card-right textarea {
    resize: none;
    height: 100px;
}

/* Button */
.card-right button {
    background: linear-gradient(135deg, #b3e8f5, #70deec);
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

.card-right button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Thumbnail grid */
.thumb-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.thumb-list img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s ease;
    border: 2px solid transparent;
}

.thumb-list img:hover {
    transform: scale(1.05);
    border-color: #53447e;
}

.thumb.active {
    border-color: #8f6bff;
}

.card-left {
    overflow: hidden;
}

#mainImage {
    width: 100%;
    height: 400px;
    transition: opacity 0.4s ease;
}

.thumb {
    cursor: pointer;
    border: 3px solid transparent;
}

.thumb.active {
    border-color: #8f6bff;
}

#mainImage {
     box-shadow: none !important;
}

#mainImage {
    transition: transform 0.6s ease, opacity 0.4s ease;
}


/* Mobile responsive */
@media (max-width: 768px) {

  /* Main Card */
  .stylish-card {
    flex-direction: column;   /* stack */
    width: 97%;
    margin: 30px auto;
    padding: 0;               /* remove side padding */
    border-radius: 16px;
  }

  /* LEFT IMAGE SECTION */
  .card-left {
    width: 100%;
  }

  .card-left img,
  #mainImage {
    width: 100%;
    height: 220px;           /* fixed mobile height */
    object-fit: cover;
    border-radius: 16px 16px 0 0;
  }

  /* THUMBNAILS */
  .thumb-list {
    grid-template-columns: repeat(3, 1fr); /* better fit */
    gap: 8px;
    padding: 10px;
  }

  .thumb-list img {
    height: 70px;
    border-radius: 8px;
  }

  /* RIGHT CONTENT */
  .card-right {
    width: 100%;
    padding: 20px;
  }

  .card-right h3 {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
  }

  .card-right p {
  margin-bottom: 8px;
  line-height: 1.5;
  word-break: break-word;
    overflow-wrap: anywhere;
}

  /* FORM FIELDS */
  .card-right input,
  .card-right textarea {
    font-size: 13px;
    padding: 10px;
    margin-bottom: 10px;
  }

  .card-right textarea {
    height: 80px;
  }
    .card-right {
    padding: 18px 15px;
  }

  /* BUTTON */
  .card-right button {
    font-size: 14px;
    padding: 10px;
    border-radius: 10px;
  }

}

/* Event end */


/* Amenities start */

/* SECTION CENTER */
.section-wrapper {
    padding: 70px 70px;
    display: flex;
    justify-content: center;
    align-items: center;       /* Horizontal center */

    }

/* OUTER LAVENDER FRAME */
.outer-frame {
    width: 1300px;
    padding: 35px;
    border-radius: 45px;
    background: linear-gradient(145deg, #eaf8f7, #eff5f4);
    box-shadow:
        inset 6px 6px 12px #e8ebeb,
        inset -6px -6px 12px #ffffff,
        0 25px 60px rgba(168, 159, 180, 0.15);
}

/* INNER CARD */
.inner-card {
    background: linear-gradient(to right, #FDFFF5 50%, #FDFFF5 50%);
    border-radius: 35px;
    padding: 40px;
    display: flex;
    gap: 60px;
}
/* LEFT SIDE */
.left-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
        align-items: center;       /* Horizontal center */
}

.left-content h2 {
    font-size: 34px;
    margin-bottom: 30px;
    position: relative;
}

.left-content h2::after {
    content: "";
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, #c59d5f, #e6c98a);
    position: absolute;
    bottom: -10px;
    left: 0;
    border-radius: 5px;
}

.left-content ul {
    list-style: none;
    padding: 0;
}

.left-content li {
    margin-bottom: 13px;
    padding-left: 24px;
    position: relative;
    color: #063323;
    font-size: 16px;
}

.left-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00b98e;
    font-weight: bold;
}

/* RIGHT SIDE */
.right-content {
    flex: 1;
    background: #ffffff;
    border-radius: 30px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(150, 120, 190, 0.12);
}

.right-content h3 {
    text-align: center;
    margin-bottom: 25px;
    color: #3c2f4a;
}

/* IMAGE GRID (4 ROWS) */
.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 150px;
    gap: 18px;
}

.image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    transition: 0.4s ease;
}

.image-grid img:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 25px rgba(160, 120, 200, 0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {

  /* SECTION */
  .section-wrapper {
    padding: 30px 15px;
  }

  /* OUTER FRAME */
  .outer-frame {
    width: 100%;
    padding: 18px;
    border-radius: 22px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }

  
  /* INNER CARD → STACK */
  .inner-card {
    flex-direction: column;
    gap: 25px;
    padding: 18px;
    border-radius: 20px;
  }

  /* LEFT CONTENT */
  .left-content {
    align-items: flex-start;   /* better readability */
    text-align: left;
  }

  .left-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 1.3;
  }

  .left-content h2::after {
    width: 45px;
    height: 2px;
    bottom: -6px;
  }

  .left-content li {
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.5;
    padding-left: 22px;
  }

  /* RIGHT CONTENT */
  .right-content {
    padding: 18px;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }

  .right-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  /* IMAGE GRID → CLEAN 2 COLUMN */
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 110px;
    gap: 10px;
  }

  .image-grid img {
    border-radius: 12px;
  }

  /* HERO IMAGE (FIRST IMAGE BIG) */
  .image-grid img:first-child {
    grid-column: span 1;
     
    aspect-ratio: 16/9;  
  }

}
/* Amenities end */


/* Price start */

.pricecontainer{
    display:flex;
    gap: 5px;
    width: 90%;
    padding: 60px 60px;
    font-size:15px;
    color: #063323;
    height: 730px;
}

/* WRAPPER FOR 3 BADGES */
.price-wrapper{
    position:absolute;
    bottom:-40px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:5px;   /* little space between badges */
    z-index:10;
}


/* Extra space only for Orchid Hall card */
.luxury-card:last-child .card-content{
    padding:110px 30px 40px;
}

/* Add bottom purple background for last card */
.luxury-card:last-child {
    background: linear-gradient(to bottom, #3CC8B0 0%, #0FAF98 55%, #3CC8B0 55%, #0FAF98 100%);
}

/* MAIN CARD */
.luxury-card{
    width:350px;
    background: #0FAF98;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 30px 60px rgba(0,0,0,0.25);
    margin:50px auto;
    transition:0.4s ease;
}

.luxury-card:hover{
    transform:translateY(-10px);
    box-shadow:0 40px 80px rgba(0,0,0,0.35);
}

/* IMAGE */
.card-image{
    position:relative;
}

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

/* PRICE BADGE */
.price-badge{
    width: 100px;
    height: 100px;
    position:absolute;
    bottom:-55px;
    left:50%;
    transform:translateX(-50%);
    background: linear-gradient(135deg, #3CC8B0,#0FAF98);
    color:white;
    border-radius:50%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    font-size:22px;
    font-weight:600;
    box-shadow:0 20px 40px rgba(0,0,0,0.4);
    border:6px solid #dbc95e;
    text-align:center;
}

.price-badge span{
    font-size:14px;
    font-weight:400;
}

/* SMALL ORCHID BADGE */
.orchidprice-badge{
    width:90px;      /* smaller size */
    height:90px;     /* smaller size */
    background: linear-gradient(135deg, #3CC8B0,#0FAF98);
    border-radius:50%;
    bottom:-55px;
    left:50%;
    border:6px solid #dbc95e;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:white;
    box-shadow:0 20px 40px rgba(0,0,0,0.4);
    text-align:center;
    font-size:22px;
    font-weight:600;
}

.orchidprice-badge span{
    font-size:12px;
    font-weight:400;
}


/* CONTENT */
.card-content{
    background:#f5e8d6;
    padding:110px 30px 40px;
    text-align:center;
    border-top-left-radius:120px;
    display: block;
    margin: 0;
    
}

.card-content h1{
    margin:0;
    font-size:26px;
}

.card-content h2{
    font-family:'Great Vibes', cursive;
    font-size:40px;
    color: #063323;
    margin:5px 0 20px;
}

.card-content p{
    font-size:14px;
    color: #063323;
    margin-bottom:25px;
}

/* BUTTON */
.book-btn{
    padding:12px 30px;
    border:none;
    border-radius:30px;
    background:linear-gradient(135deg,#3CC8B0,#0FAF98);
    color:white;
    font-size:14px;
    cursor:pointer;
    transition:0.3s;
}

.book-btn:hover{
    transform:scale(1.05);
    box-shadow:0 12px 25px rgba(110,75,158,0.4);
}

@media (max-width: 768px) {

  /* CONTAINER */
  .pricecontainer {
    flex-direction: column;   /* stack cards */
    align-items: center;
    padding: 30px 15px;
    height: auto;             /* ❌ remove fixed height */
    gap: 25px;
  }

  /* CARD */
  .luxury-card {
    width: 100%;              /* full width */
    max-width: 320px;         /* keep nice size */
    margin: 0;
    border-radius: 20px;
  }

  /* IMAGE */
  .card-image img {
    height: 200px;            /* smaller image */
  }

  /* PRICE BADGE */
  .price-badge {
    width: 75px;
    height: 75px;
    font-size: 16px;
    bottom: -40px;
    border-width: 4px;
  }

  .price-badge span {
    font-size: 11px;
  }

  /* ORCHID BADGE */
  .orchidprice-badge {
    width: 70px;
    height: 70px;
    font-size: 15px;
    bottom: -40px;
    border-width: 4px;
  }

  .orchidprice-badge span {
    font-size: 10px;
  }

  /* CONTENT */
  .card-content {
    padding: 80px 20px 25px;  /* reduce space */
    border-top-left-radius: 80px;
  }

  .card-content h1 {
    font-size: 20px;
  }

  .card-content h2 {
    font-size: 28px;
  }

  .card-content p {
    font-size: 13px;
  }

  /* BUTTON */
  .book-btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  /* BADGE WRAPPER FIX */
  .price-wrapper {
    bottom: -30px;
    gap: 8px;
  }

}

/* Price end */

/* Gallery start */
.page-center {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f5f5f5; /* optional */
}

.gallerycontainer {
    background: #ffffff;
    border-radius: 50px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(99, 80, 124, 0.12);

    width: 100%;
    
    display: flex;
    flex-direction: column;
    justify-content: center;   /* 🔥 keeps content at top */
}

.gallerycontainer h3 {
    margin-top: 0;        /* 🔥 removes top gap */
    margin-bottom: 20px;
    text-align: center;
    color: black;
}

/* Image cursor effect */
.popup-trigger{
    cursor:pointer;
    transition:0.3s ease;
}

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

/* Modal Background */
.modal-content{
    width: 100%;          /* increase width */
    height:90vh;        /* almost full screen height */
    object-fit:contain; /* keep image ratio */
    border-radius:20px;
    box-shadow:0 60px 60px rgba(0,0,0,0.5);
    animation:zoomIn 0.4s ease;
}


/* Popup Image */
.image-modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100vw;
    height:100vh;
    background:rgba(0,0,0,0.95);
    backdrop-filter:blur(6px);
    justify-content:center;
    align-items:center;
}

/* Close Button */
.close-btn{
    position:absolute;
    top:40px;
    right:60px;
    color:white;
    font-size:40px;
    cursor:pointer;
}

/* Prev & Next buttons */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: white;
    cursor: pointer;
    padding: 10px;
    user-select: none;
}

.prev-btn { left: 30px; }
.next-btn { right: 30px; }

.prev-btn:hover, .next-btn:hover {
    color: #ddd;
}

/* Animation */
@keyframes zoomIn{
    from{transform:scale(0.7); opacity:0;}
    to{transform:scale(1); opacity:1;}
}

/* Gallery end */


/* contact start */
/* Luxury Contact Section */

/* CONTACT SECTION */

.contact-section{
    background: linear-gradient(#bfebe8,#dfe7e6);
    padding: 20px 80px 80px;
    position:relative;
}

/* MAP */

.map-container{
width:100%;
height:420px;
overflow:hidden;
margin-bottom:80px;
}

.map-container iframe{
width: 90%;
height: 90%;
border:0;
padding: 65px 65px;
filter:grayscale(10%);
transition:0.6s;
border-radius:12px;
}

.map-container:hover iframe{
transform:scale(1.03);
}

/* CONTACT CARDS */

.contact-cards{
max-width:600px;
margin:auto;
display:grid;
grid-template-columns:repeat(3,1fr);
justify-content:center;
gap:30px;
margin-bottom:-90px;  
margin-top:60px; 
position:relative;
z-index: 2;
}

/* CARD */

.contact-card{
width:200px;
height: 150px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 35px rgba(0,0,0,0.15);
background:white;
padding:40px 25px;
transition:0.4s;
}

.contact-card:hover{
transform:translateY(-12px);
box-shadow:0 30px 70px rgba(0,0,0,0.2);
}

/* GOLD ICON */
.icon-circle{
     width: 70px;
    height: 70px;
    margin: auto;
    margin-top: -20px;
    margin-bottom:18px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    color: #ffffff;
    background: linear-gradient(135deg, #3CC8B0,#0FAF98);
    box-shadow:0 8px 20px rgba(0,0,0,0.4);
    border:6px solid #dbc95e;
    text-align:center;
}


/*.icon-circle{
width:65px;
height:65px;
margin:auto;
margin-bottom:18px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:26px;
color:white;
background:linear-gradient(135deg,#e3c36f,#b9972b);
box-shadow:0 8px 20px rgba(185,151,43,0.4);
} */

/* TEXT */

.contact-card h3{
margin-bottom:8px;
color:#5a2d82;
}

.contact-card p{
color:#063323;
font-size:14px;
line-height:1.6;
}

.schedule-wrapper {
    text-align: center;
    margin: 5px 20px; /* top space + space before form */
    position: relative;
}

.schedule-btn img {
    max-width: 250px;
    height: auto;
    display: inline-block;
    transition: 0.3s;
}

/* Hover effect */
.schedule-btn img:hover {
    transform: scale(1.05);
     filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

.vendor-form-container {
    margin-top: 5px;
}

@media (max-width: 768px) {

    .schedule-wrapper {
        margin: 20px 0;
    }

    .schedule-btn img {
        max-width: 180px;
    }
}

/* Hide simple version on desktop */
.contact-simple {
    display: none;
}

/* MOBILE VIEW */
/* MOBILE VIEW - Remove cards completely */
@media (max-width: 768px) {

    /* Hide the card boxes */
    .contact-card {
        display: none;
    }

  .contact-section{
     height: 150px;
      padding: 10px 90px 90px;
      align-items: center;
      width: auto;
    }

    /* Show simple contact list */
    .contact-simple {
        display: block;
        margin: 20px;
    }

    .contact-simple h3 {
        font-size: 18px;
        margin-bottom: 15px;
        color: #063323;
    }

    .contact-simple .item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }

    .contact-simple .icon {
        font-size: 18px;
    }

    .contact-simple a,
    .contact-simple span {
        font-size: 15px;
        color: #063323;
        text-decoration: none;
    }
    .contact-simple .item:hover {
    transform: translateX(5px);
    transition: 0.2s;
}
}

/* LOTUS BACKGROUND 

.contact-section::before{
content:"🪷";
position:absolute;
font-size:220px;
opacity:0.05;
left:10%;
top:50%;
}*/

/* CONTACT FORM */

.lux-form-section{
max-width:800px;
margin:30px auto;
padding:30px;
border-radius:18px;
background:rgba(255,255,255,0.6);
backdrop-filter:blur(12px);
box-shadow:0 30px 60px rgba(0,0,0,0.15);
position:relative;
overflow: hidden;
}

.lux-form-section::before {
    content: "";
    position: absolute;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 600px;   /* adjust size */
    height: 600px;

    background: url('/Flora/resources/img/floralog.png') no-repeat center;
    background-size: contain;

    opacity: 0.08;  /* watermark effect */
    pointer-events: none;
} 

.lux-form-section * {
    position: relative;
    z-index: 1;
}


/* FORM TITLE */

.contact-title{
text-align:center;
margin-bottom:35px;
}

/* INPUT GROUP */

.input-group{
position:relative;
margin-bottom:28px;
}

.input-group input,
.input-group textarea{
width:100%;
padding:12px 10px;
border:none;
border-bottom:2px solid #ddd;
background:transparent;
outline:none;
font-size:15px;
}

.input-group textarea{
height:120px;
resize:none;
}

/* FLOATING LABEL */

.input-group label{
position:absolute;
left:10px;
top:12px;
color: #063323;
font-size:14px;
transition:0.3s;
}

.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label{
top:-10px;
font-size:14px;
color: #063323;
}

/* SUBMIT BUTTON */

.lux-btn{
display:block;
margin:auto;
padding:14px 40px;
border:none;
border-radius:30px;
font-size:16px;
color:white;
cursor:pointer;
background: #2f5d50;
transition:0.4s;
}

.lux-btn:hover{
transform:translateY(-3px);
box-shadow:0 12px 25px rgba(168,43,185,0.5);
}

/* MOBILE */

@media(max-width:900px){

.contact-cards{
grid-template-columns:1fr;
margin-top:-60px;
}

.map-container{
height:320px;
}

}

/* Popup Background */
.popup-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:999;
}

/* Popup Card */
.popup-card{
    width:350px;
    background:white;
    padding:35px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,0.3);
    animation:popupFade 0.4s ease;
}

/* Icon */
.popup-icon{
    font-size:50px;
    color:#6a4c93;
    margin-bottom:10px;
}

/* Button */
.popup-card button{
    margin-top:20px;
    padding:10px 25px;
    border:none;
    background:#6a4c93;
    color:white;
    border-radius:25px;
    cursor:pointer;
}

/* Animation */
@keyframes popupFade{
    from{
        transform:scale(0.8);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

/* contact end */

/* Vendor start */
body{
font-family:'Century Gothic',sans-serif;
background: white;
color: #063323;
}

/* Container */

.vendor-form-container{
max-width:800px;
margin:60px auto;
background:white;
padding:40px;
border-radius:12px;
box-shadow:0 20px 50px rgba(0,0,0,0.08);
border-top:5px solid #caa64b;
height: auto;
}

/* Heading */

.vendor-form-container h2{
text-align:center;
font-size:28px;
margin-bottom:5px;
}

.vendor-form button,
.vendor-form .submit-btn {
    display: block;
    margin: 30px auto;
    text-align: center;
}

.subtitle {
    text-align: center;
    display: block;
    margin: 0 auto 30px;
    color: #063323;
}    


/* Form Layout */

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

.form-group{
flex:1;
display:flex;
flex-direction:column;
}

label{
font-size:14px;
margin-bottom:6px;
color:#063323;
}

/* Inputs */

input, textarea, select{
padding:12px;
border:1px solid #ddd;
border-radius:8px;
font-size:14px;
transition:0.3s;
}

input:focus, textarea:focus, select:focus{
border-color:#caa64b;
outline:none;
box-shadow:0 0 6px rgba(202,166,75,0.3);
}

/* Button */
.btn{
    padding:14px 28px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
    margin-right:15px;
    display:inline-block;
    transition:0.3s;
    text-align: center;
    justify-content: center;
}

.submit-btn{
    background:#2f5d50;
    text-align: center;
    color:#fff;
}

.submit-btn:hover{
    background:#254a40;
}


/* .submit-btn{
margin-top:20px;
width:100%;
padding:14px;
background:linear-gradient(135deg,#3ae2b8,#44ebcf);
border:none;
color:white;
font-size:16px;
border-radius:8px;
cursor:pointer;
transition:0.3s;
}

.submit-btn:hover{
transform:translateY(-2px);
box-shadow:0 10px 20px rgba(0,0,0,0.15);
}  */

.error {
    color: #063323;
    font-size: 12px;
    margin-top: 5px;
}

input.error-border, textarea.error-border, select.error-border {
    border-color: #063323;
}

/* Overlay */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Popup box */
.popup-box {
    background: white;
    padding: 30px 40px;
    border-radius: 15px;
    text-align: center;
    width: 320px;
    animation: popupFade 0.05s ease;
}

/* Icon */
.popup-icon {
    font-size: 50px;
    color: #063323;
    margin-bottom: 10px;
}

/* Button */
.popup-box button {
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    background: #caa64b;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

/* Animation */
@keyframes popupFade {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
/* Mobile */

@media(max-width:700px){
.form-row{
flex-direction:column;
}
}
/* Mobile Responsive */

@media (max-width: 768px) {

    .vendor-form-container {
      width: auto;
        margin: 20px;
        padding: 20px;
    }

    .form-row {
        flex-direction: column; /* stack fields vertically */
        gap: 15px;
    }

    .vendor-form-container h2 {
        font-size: 22px;
    }

    .subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    input, textarea, select {
        font-size: 13px;
        padding: 10px;
    }

    .btn {
        width: 100%; /* full-width button */
        margin-right: 0;
    }

    .vendor-form button,
    .vendor-form .submit-btn {
        width: 100%;
    }
}

/* Extra Small Devices */

@media (max-width: 480px) {

    .vendor-form-container {
        padding: 15px;
    }

    .vendor-form-container h2 {
        font-size: 20px;
    }

    label {
        font-size: 13px;
    }

    input, textarea, select {
        font-size: 12px;
    }
}


/* Vendor end */


        /* Footer */
    .footer {
        background: #5fd0c4 100%;    
        color: rgb(2, 32, 23);
        padding: 25px 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 2px;
       
    }

    .footer-left {
        font-size: 14px;
        line-height: 1.2;
    }

    .footer-left a {
        color: #fff;
        font-weight: bold;
        text-decoration: none;
    }

    /* Social Icons */
    .footer-right {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(255,255,255,0.08);
        border-radius: 6px;
        color: #fff;
        text-decoration: none;
        transition: 0.3s;
    }

    .social-icon:hover {
        background-color: rgba(255,255,255,0.25);
    }

    /* Scroll Top Button */
    .scroll-top {
        margin-left: 10px;
        font-size: 18px;
    }
   
/* Contact page start */
.flora-tour-section {
    max-width: 650px;
    margin: 80px auto;
    padding: 40px;
    border-radius: 20px;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(14px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    text-align: center;
}

.flora-tour-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.subtitle {
    color: #063323;
    margin-bottom: 25px;
}

.flora-tour-section input,
.flora-tour-section select,
.flora-tour-section textarea {
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.flora-tour-section button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg,#d4a5ff,#8a2be2);
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

/* Popup */
.popup {
    display: none;
    position: fixed;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.5);
    justify-content:center;
    align-items:center;
}

.popup-box {
    background:#fff;
    padding:30px;
    border-radius:15px;
    text-align:center;
}


.contact-page a,
.contact-page .submit-btn{
    display: block;
    margin: 30px auto;
    text-align: center;
    justify-content: center;
}



/* =========================
   TABLET VIEW (768px - 1024px)
========================= */
@media (max-width: 1024px) {

    .container {
        width: 90%;
        margin: 0 auto;
    }

    .row {
        flex-direction: column;
    }

    .col {
        width: 100%;
        margin-bottom: 20px;
    }

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

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }
}


/* =========================
   MOBILE VIEW (up to 767px)
========================= */
@media (max-width: 767px) {

    body {
        padding: 10px;
    }

    .container {
        width: 100%;
        padding: 0 10px;
    }

    .row {
        flex-direction: column;
    }

    .col {
        width: 100%;
        margin-bottom: 15px;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    h1 {
        font-size: 22px;
    }

    h2 {
        font-size: 20px;
    }

    p {
        font-size: 14px;
    }

    button {
        width: 100%;
        padding: 12px;
    }

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

/* Contact page end */

 /* Schedule page

    .schedulecontainer{
    width:900px;
    margin:40px auto;
    background:#fff;
    padding:25px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.scheduleheader{
    text-align:center;
    font-weight:600;
    margin-bottom:20px;
}

.wrapper{
    display:flex;
}

/* Calendar 
.calendar{
    width:50%;
    border-right:1px solid #ddd;
    padding-right:25px;
}

.month-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:10px;
}

.month-header button{
    background:none;
    border:none;
    font-size:18px;
    cursor:pointer;
}

table{
    width:100%;
    border-collapse:collapse;
    text-align:center;
}

th{
    padding:8px 0;
    font-size:13px;
    color:#666;
}

td{
    padding:10px 0;
    cursor:pointer;
    border-radius:50%;
}

td:hover{
    background:#eee;
}

.active-date{
    background:#3f51b5;
    color:#fff;
} */

/* Time Slots 
.times{
    width:50%;
    padding-left:25px;
}

.slot-title{
    font-weight:600;
    margin:15px 0 10px;
}

.slots{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.slot{
    padding:8px 16px;
    background:#e9e9f4;
    border-radius:20px;
    cursor:pointer;
    transition:0.2s;
}

.slot:hover{
    background:#3f51b5;
    color:#fff;
}

.selected{
    background:#3f51b5;
    color:#fff;
} */


