 :root {
    /* THEME COLORS - CHANGE HERE */
    --dark-bg: #083934;                    /* Main header background */
    --primary-blue: #d1fafe;               /* Borders & underlines */
    --primary-lightblue: #daa520;          /* Hover states & accents */
    --text-light: #ffffff;                 /* Nav text color */
    --white: #ffffff;                      /* Button text */
    --shadow-blue: rgba(218, 165, 32, 0.3); /* Shadows */
}
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

h1, h2, h3 {
    font-family: 'Perandory Condensed', sans-serif;
}
html {
    background: #eef8fb; 
    position: relative;
    margin: 0;
    padding: 0;
}

html::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
   background: repeating-linear-gradient(90deg, 
#e2fbff 0px, 
#e2fbff 28px,#d1fafe 20px, #d1fafe 48px,
transparent 1px, 
transparent 42px);
    pointer-events: none; 
}

body {
    margin: 50px; 
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: white;
}

.page-wrapper {
    background: transparent; 
}


.container {
    width: 100%; 
}
@media (max-width: 480px)
{
    body {
    margin: 25px; 
}
    
}

/* Main header styles */
.main-header {
    backdrop-filter: blur(20px);
    padding: 10px 20px;
    border-bottom: 1px solid var(--primary-blue); 
    background-color: #fff; 
}

.header-container {
    display: flex;
    justify-content:center;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 12px;
    gap: 30px;
}

.logo img {
    height: 56px;
    width: auto;
    filter: drop-shadow(0 4px 16px var(--shadow-blue));
    transition: all 0.3s ease;
}
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 60px;
    align-items: center;
    margin: 0;
}
.main-nav a {
    color: #8D9765; 
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
}
.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-lightblue); 
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-nav a:hover {
    color: var(--primary-lightblue); 
}

.main-nav a:hover::before {
    width: 100%;
}

.top-booknow {
    background: linear-gradient(135deg, #daa520, #f1c40f); 
    color: #fff; 
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    border: 2px solid var(--primary-lightblue);
    box-shadow: 0 12px 32px var(--shadow-blue);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.top-booknow:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px var(--shadow-blue);
    background: #daa520; 
}


@media (max-width: 1200px) {
    .main-nav ul {
        gap: 24px;
    }
}

@media (max-width: 992px) {
    .main-header .header-container {
        padding: 0 0px;
    }
    .main-nav ul {
        gap: 20px;
    }
    .top-booknow {
         width: 70%;  
        font-size: 14px;
        padding: 12px 24px;
        margin-left:auto;
    }
}

/* BANNER */
.banner {
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
        
.banner-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.mobile-social-icons {
    display: none!important ; 
    position: absolute;
    left: 16px;
    top: 16px;
    display: flex;
    gap: 16px;
}

.mobile-social-icons a {
    color: #daa520; 
    font-size: 24px;
    transition: color 0.3s ease;
    margin-top:-9px;
}

.mobile-social-icons a:hover {
    color: var(--primary-lightblue); 
}

@media (max-width: 768px) {
    /* Mobile Header */
    .header-container {
        display: flex;
        justify-content: space-between; /* Align logo and book button */
        align-items: center;
        padding: 16px 20px;
    }

    .main-nav ul {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .logo {
        display:none;
        margin-right: auto; /* Push logo to the left */
    }

    .header-cta {
         margin-left: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;  
    }
     .top-booknow
     {
        width: 70%;  
        max-width: 300px;  
        padding: 8px;  
        font-size: 16px;  
        text-align: center; 
        margin-left:auto;
     }

    /* Hide nav links in mobile */
    .main-nav ul li:not(.logo) {
        display: none;
    }

    /* Banner Mobile */
     .banner {
        height: 230px;
    }

    .banner h1 {
        font-size: 34px;
        line-height: 1.2;
    }

    .mobile-social-icons {
        display: flex !important; 
    }
     .main-header .header-container {
        position: relative; 
    }
    .banner-bg img
    {
        width:100%;
        height:230px;
    }

}

@media (max-width: 480px) {
    .logo img {
        /*height: 44px;*/
        display:none;
    }

    .phone {
        font-size: 14px;
        padding: 8px 16px;
        text-align: center;
    }

    .top-bar-content {
        padding: 8px 16px;
    }

    .header-container {
        padding: 12px 16px;
        gap: 60px;
    }
    
}

/* About section styles */

.about-ultra {
  position: relative;
   padding-top: 60px ;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content:space-between;
    gap: 40px;
    padding-bottom:40px;
  
}
.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 30px;
}
.about-image-wrapper {
    display: flex;
}
.about-title {
    font-family: 'Noto Serif', serif;
    font-size: 30px;
    font-weight: 700;
    color:#8D9765;
   margin-bottom:15px;
   text-align:center;
}

.about-divider {
    width: 120px;
    height: 4px;
    background: #f9bd05;
    border-radius: 2px;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(74,144,226,0.3);
}

.about-text p {
    font-size: 17px;
    color:grey;
    line-height: 1.3;
    margin-bottom: 12px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    max-width: 650px;
    text-align: justify;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.image-frame {
    width: 70%;
    height:350px;
    border-radius: 44px;
    overflow: hidden;
    box-shadow: none;
    background: none;
    margin-top:70px;
}

.image-frame:hover {
    transform: translateY(-16px);
}

.image-frame img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.image-frame:hover img {
    transform: scale(1.08);
}


@media (max-width: 768px) {

    .about-container {
         display: grid;
        grid-template-areas:
            "title"
            "divider"
            "image"
            "text";
        gap: 16px;
    }
     
    .about-text {
        grid-area: text;
    }
    .about-title
    {
         grid-area: title;
        font-size:18px;
        text-align:center;
        margin-bottom:0px;
    }
    .about-ultra
    {
        padding:30px 0px;
    }
    .about-text p {
        font-size: 12px;
        margin-bottom:5px;
    }
  .about-divider
    {
          grid-area: divider;
          margin-top:-20px;
    }
    .about-image-wrapper {
        margin-right: -12px;
        margin-top:70px;
    }
   .image-frame {
        grid-area: image;
        width: 100%;
        height: 220px;
        margin: 0;
        border-radius:20px;
    }

    .image-frame img {
        height: 220px;
    }
   .about-content {
        display: contents;
    }

}

@media (max-width: 480px) {
    .about-container {
        padding: 0 14px;
    }

    .about-text p {
        font-size: 12px;
    }
}
.room-section {
    padding: 30px 0;
    color:grey;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px;
}

.section-title-area {
    text-align: center;
    margin-bottom: 40px;
}

.section-title-white .sub-title {
    font-size: 20px;
    font-weight: 500;
    font-family: 'Noto Serif', serif;
    display: block;
    margin-bottom: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.section-title h2
{
    font-size:30px;
}
@media (max-width: 480px)
{
    .section-title h2
{
    font-size:18px;
    margin-bottom:-12px;
}
}

.section-title-content p {
    font-size: 17px;
    color: grey;
    max-width: 800px;
     font-family: 'Roboto', sans-serif;
    margin: 24px auto 0;
    line-height: 1.5;
}

.room-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}

.room-titles {
    background: rgb(10 161 169 / 8%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 32px 24px;
    border: 1px solid rgba(255,255,255,0.15);
}

.room-titles ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.room-title {
    display: block;
    padding: 16px 20px;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Noto Serif', serif;
    font-size: 18px;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.room-title:hover {
    color: #0c3c69;
    background: rgba(218,165,32,0.2); /* ← GOLD HOVER */
}

.room-title.active {
    color: #daa520; /* ← GOLD ACTIVE */
    background: rgba(218,165,32,0.15);
    font-weight: 600;
}

.room-details {
    /*background: rgba(255,255,255,0.08);*/
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.15);
    overflow: hidden;
   
}

.room-info {
    display: none;
    padding: 25px;
    /*height: 100%;*/
    flex-direction: row;
    gap: 20px;
    align-items: center;
    /*background-color:#c8f1eb;*/
}

.room-info.active {
    display: flex;
}

.room-image {
    flex: 0 0 325px;
    height:300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0px 8px rgba(0,0,0,0.4);
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-info:hover .room-image img {
    transform: scale(1.05);
}

.room-description {
    flex: 1;
}

.room-description h3 {
    font-family: 'Roboto', serif;
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.1;
}
.price p
{
    font-family: 'Noto Serif', serif;
    font-size: 15px;
    color: grey;
}
.room-description p {
    font-size: 18px;
    color: grey;
     font-family: 'Roboto', sans-serif;
    line-height: 1.3;
    margin-bottom: 25px;
    margin-top:25px;
}

@media (max-width: 992px) {
    .section-title-content p
    {
        font-size:12px;
        margin-bottom: -24px;
    }
    .room-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .room-titles {
        order: 2;
        display: flex;
        justify-content: center;
    }
    
    .room-titles ul {
        display: flex;
        gap: 16px;
    }
    
    .room-title {
        padding: 12px 20px;
        font-size: 16px;
    }
    .room-description p
    {
         font-size: 12px;
         margin-bottom:10px;
    }
    .price p
    {
        margin-bottom:10px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .room-section {
        padding: 0px 0;
    }
    
    .room-info {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 32px;
    }
    
    .room-image {
        flex: none;
        width: 100%;
        max-width: 400px;
        height: 110px;
        margin: 0 auto;
    }
     .price p
    {
        margin-bottom:10px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    
    .room-info {
        padding: 24px 16px;
    }
    
    .room-image {
        height: 110px;
    }
}

.room-btn{
            background: linear-gradient(135deg, #daa520, #f1c40f);
            color: var(--white);
            padding: 14px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            font-family:'Roboto', sans-serif;
            border: 2px solid var(--primary-lightblue);
            box-shadow: 0 12px 32px var(--shadow-blue);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content:center;
            width:100%;
            gap: 8px;
        }
        .room-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px var(--shadow-blue);
            background: #daa520;
        }

.facilities-white {
    padding: 40px 0;
    position: relative;
   background: url('https://versatilepix.com/aloha/images/roombackground.png');
    background-repeat: no-repeat;      
    background-position: top center;   
    background-size: 100% auto; 
}


 .section-title .sub-title {
    font-size: 30px;
    font-family: 'Noto Serif', serif;
    color: lightgreen;
    font-weight: 700;
    display: block;
    margin-bottom: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
} 

.facilities-title {
    font-family: 'Noto Serif', serif;
    font-size: 29px;
    font-weight: 500;
    color: green;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 2px;
    text-transform:uppercase;
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);  
    gap: 32px;
    max-width: 1300px;
    margin: 0 auto;
}

.facility-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(20px);
    border: 2px solid #e5e7eb;
    border-radius: 24px;
    padding: 20px 20px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(40px);
}

/* =========================
   MOBILE AMENITIES SLIDER
   ========================= */
.mobile-amenities-slider {
    position: relative;  
    width: 100%;
    overflow: hidden;
    margin: 24px 0;
    display: none;
}

.mobile-slider-track {
    display: flex;
    will-change: transform;
}

.mobile-slide {
    flex: 0 0 100%;
    width: 100%;
    padding-bottom:0; 
}

.mobile-slider-nav {
   position: absolute;
    bottom: 20px;  
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 10;
    pointer-events: all;
}

.mobile-prev,
.mobile-next {
    pointer-events: all;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #8D9765;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 15;    
}
@media (max-width: 992px) {
  .mobile-amenities-slider {
    width: 100%;  
    height: auto;  
    max-width: 100%;
    margin: auto;
    padding-bottom:68px;
  }

  .mobile-amenities-slider img {
    width: 100%;  
    height: auto;
  }

  .modal-content {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 8px;
  }
    .mobile-amenities-slider .room-image {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
   .mobile-amenities-slider .room-image img {
    width: 100%;
    height: auto;
    max-height: 260px;     
    object-fit: contain;   
  }
}


/* Mobile only */
@media (max-width: 768px) {
    .mobile-amenities-slider {
        display: block;
    }
 
    .facility-grid {
        display: none !important;
    }
    
}
.section-btn {
    display: inline-block;
    padding:0px 0px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 40px;
    border: none;
    cursor: pointer;
}


/* Optional: focus / active */
.section-btn:active {
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(218, 165, 32, 0.3);
}

.facility-card:nth-child(1) { animation-delay: 0.1s; }
.facility-card:nth-child(2) { animation-delay: 0.2s; }
.facility-card:nth-child(3) { animation-delay: 0.3s; }
.facility-card:nth-child(4) { animation-delay: 0.4s; }
.facility-card:nth-child(5) { animation-delay: 0.5s; }
.facility-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.facility-header {
    margin-bottom: 36px;
    position: relative;
    z-index: 2;
}

.facility-card h3 {
    font-family: 'Noto Serif', serif;
    text-align:center;
}

@media (max-width: 992px) {
    .facility-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 24px;
    }
    
    .facilities-title {
        font-size: 35px;
    }
    .amenities span
    {
        font-size:12px;
    }

    .facility-card h3
    {
        font-size:16px;
         margin-bottom:16px;
    }

}

@media (max-width: 768px) {
    .facilities-white {
        padding: 10px 0;
    }
   
    .facility-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .facility-card {
        padding: 20px 25px;
    }
    
    .facility-header h3 {
        font-size: 18px;
    }
    .amenities 
    {
        margin-bottom:20px;
    }
     .amenities span
    {
        font-size:12px;
    }
    .room-button
    {
        display:flex;
        align-items:center;
        justify-content:center;
    }
    .room-btn
    {
        width: 75%;  
        max-width: 280px;  
        padding: 8px;  
        font-size: 16px;  
        text-align: center; 
        margin-bottom:5px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0px 20px;
    }
    
    .facilities-title {
        font-size: 25px;
    }
    
    .facility-card {
        padding: 7px 14px;
    }
    
    .facility-card li {
        font-size: 16px;
    }
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: grey;
}

.amenities span {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.amenities i {
  font-size: 15px;
   font-family: 'Roboto', sans-serif;
  color: #8D9765;
  margin-right: 6px;
}



/* ================================
   DESKTOP OVERLAP CARD STRUCTURE
   ================================ */
@media (min-width: 1024px) {

  .facility-card-inner {
    display: flex;
    align-items: center;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
.facility-card {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .facility-card.show {
    opacity: 1;
    transform: translateY(0);
  }
    .facility-card:hover .facility-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  }

  /* Image block */
  .facility-card .room-image {
    flex: 0 0 48%;
    height: 300px;
    position: relative;
    z-index: 1;
     overflow: hidden;
    border-radius: 16px;
  }
 .room-image img {
    transition: transform 0.6s ease;
  }
   .facility-card:hover .room-image img {
    transform: scale(1.08);
  }
  /* Content block */
  .facility-content {
    padding: 30px;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
      border:1px solid #8D9765;
      background-color:#fcfff2;
        flex: 0 0 44%;     
    max-width: 44%;
  }

  /* LEFT image → RIGHT content overlapping */
  .zigzag-left .facility-content {
    margin-left: -150px;
  }

  /* RIGHT image → LEFT content overlapping */
  .zigzag-right .facility-card-inner {
    flex-direction: row-reverse;
  }

  .zigzag-right .facility-content {
    margin-right: -150px;
  }

}

/* ==============================
   DESKTOP ZIG-ZAG – FLEX ONLY
   ============================== */

@media (min-width: 769px) {

    /* Stack rows */
    .facility-grid {
        display: flex;
        flex-direction: column;
        gap:50px;
        max-width: 1300px;
        margin: 0 auto;
    }

    /* Each room section */
    .facility-card {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 0;
        background: none;
        border: none;
        box-shadow: none;
    }

    /* ---------- TITLE (FULL WIDTH) ---------- */
    .facility-card .about-title h3 {
        font-size: 25px;
        margin-left: 4px;
        text-align:center;
    }

    /* ---------- IMAGE + CONTENT ROW ---------- */
    .facility-card-inner {
        display: flex;
        gap: 65px;
        align-items: flex-start;
    }

    /* Left image / right content (default) */
    .zigzag-left .facility-card-inner {
        flex-direction: row;
    }

    /* Left content / right image */
    .zigzag-right .facility-card-inner {
        flex-direction: row-reverse;
    }

    /* ---------- IMAGE ---------- */
    .room-image {
        flex: 0 0 47%;
        height: 300px;
        border-radius: 34px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .room-image img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    /* ---------- CONTENT COLUMN ---------- */
    .facility-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .room-description p {
        font-size: 17px;
        line-height: 1.3;
        margin: 0;
    }

    .amenities {
        margin:0px;
    }

    .room-btn {
        max-width: 180px;
        margin-top: 6px;
        align-self: flex-start;
    }
}
/* Hide all amenities except toggle */
.amenities span:not(.amenities-toggle) {
  display: none;
}

/* Desktop: show first 4 */
@media (min-width: 769px) {
  .amenities span:not(.amenities-toggle):nth-child(-n+4) {
    display: flex;
    align-items: center;
  }
}

/* Mobile: show first 3 */
@media (max-width: 768px) {
  .amenities span:not(.amenities-toggle):nth-child(-n+3) {
    display: flex;
    align-items: center;
  }
}

/* Expanded */
.amenities.show-all span:not(.amenities-toggle) {
  display: flex;
}

/* Toggle */
.amenities-toggle {
  display: inline-block;
  color: #b48b2f;
  font-weight: 500;
  cursor: pointer;
  font-size:14px;
}

/* Gallery Section */
.gallery-heading {
    text-align: center;
    padding: 40px 20px 10px;
    position: relative; 
    min-height: 400px; /* Ensure the gallery section has a minimum height */
}

.gallery-heading h2 {
    font-size: 25px;
    font-weight: 600;
    font-family: 'Noto Serif', serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    margin-top: -32px;
}

/* Background image with opacity applied separately */
.gallery-heading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://versatilepix.com/aloha/images/gallerybg.png'); /* Add the background image */
    background-size: cover; /* Ensure the image covers the entire section */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat; /* Prevent the background from repeating */
    opacity: 0.1; /* Control the opacity of the background image (0 = fully transparent, 1 = fully opaque) */
    z-index: 1; /* Make sure it stays behind the content */
}

/* Ensure the gallery images stay unaffected by the background opacity */
.gallery-collapsed {
    column-count: 4;
    column-gap: 16px;
    padding: 20px;
    position: relative; /* Ensures the images stack correctly */
    z-index: 2; /* Ensure the gallery images stay above the background */
}

.gallery-collapsed img {
    width: 100%;
    display: block;
    margin-bottom: 16px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-collapsed img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000; /* Ensure the modal is above everything */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

/* Modal Image */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    max-height: 80%;
    margin-top:50px;
}

/* Modal Navigation Styling */
.modal-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 10px;
}

.prev, .next {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 16px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    z-index: 100;
}

@media (max-width: 768px) {
  
    .gallery-heading h2 {
        font-size: 18px;
    }
    .gallery-collapsed {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 16px;
        padding: 20px 10px;
        scrollbar-width: thin; /* Firefox */
    }
    
    .gallery-collapsed::-webkit-scrollbar {
        height: 6px; /* Chrome/Safari */
    }
    .gallery-collapsed::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.3);
        border-radius: 3px;
    }
    .gallery-collapsed img {
       flex: 0 0 250px;
      width: 250px;
      aspect-ratio: 3 / 4;
      object-fit: cover;
      border-radius: 12px;
    }
    .modal-content {
        width: 100%;
        max-width: 90%;
        height: 455px;
        object-fit: contain; 
    }
    .modal-nav {
        position: absolute;
        top: 50%;
        left: 10px;
        right: 10px;
        display: flex;
        justify-content: space-between;
        width: 100%;
        z-index: 2;
    }
}


/* SECTION */
.testimonial-section{
  padding:50px 20px;
}

.testimonial-container{
  max-width:1200px;
  margin:auto;
}

.testimonial-title{
   font-family: 'Noto Serif', serif;
    font-size: 25px;
    font-weight: 700;
    color:#8D9765;
   text-align:center;
   padding-bottom:20px;
}

/* SLIDER */
.slider-wrapper{
  overflow:hidden;
}

.testimonial-track{
  display:flex;
  align-items:stretch;
  transition:transform 0.6s ease;
}

/* CARD */
.testimonial-card{
  min-width:33.3333%;
  padding:20px;
  display:flex;
  background-color:#fcfff2;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}
.testimonial-card:hover
{
    /*color:#ffca3a;*/
    color:#d3faff;
}
.card-inner{
  background:#fcfff2;
  border-radius:22px;
  padding:16px 16px;
  box-shadow:0 15px 25px rgba(0,0,0,0.06);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  position:relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease,
    background-color 0.4s ease;
   
}
/* HOVER EFFECT */
.testimonial-card:hover .card-inner {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  background:#d3faff;
}

/* TEXT SMOOTHING */
.testimonial-text {
  transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-text {
  color: #333;
}

/* TEXT */
.testimonial-text{
  font-size:17px;
   font-family: 'Roboto', sans-serif;
  line-height:1.5;
  color:#555;
  text-align:center;
}

.author h4{
  font-size:18px;
  font-weight:600;
  color:#111;
  text-align:center;
}

/* CONTROLS */
.slider-controls{
  margin-top:15px;
  text-align:center;
}

.slider-btn{
  width:25px;
  height:25px;
  border:none;
  border-radius:50%;
  background:#8D9765;
  color:#fff;
  font-size:12px;
  cursor:pointer;
  margin:0 14px;
  transition:all 0.3s ease;
}

/* RESPONSIVE */
@media(max-width:900px){
  .testimonial-card{ min-width:50%; }
}

@media(max-width:600px){
  .testimonial-title{ font-size:18px; }
  .author h4{
      margin-top:10px;
  }
  .testimonial-card{ min-width:100%; }
}
        
        
          /* Premium Blog Section Styles - Scoped with blog- prefix */
  .blog-section {
    font-family: 'Roboto', sans-serif;
    color: grey;
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f7f4 0%, #f0ede8 100%);
    position: relative;
    overflow: hidden;
  }
  
  .blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
  }
  
  .blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .blog-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
  }
  
  .blog-title {
    font-family: 'Noto Serif', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
  }
  
  .blog-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #c19a2b);
    margin: 20px auto;
    border-radius: 2px;
  }
  
  .blog-subtitle {
    font-size: 1.2rem;
    color: #718096;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  /* Blog Grid */
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
  }
  
  /* Blog Card */
  .blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
  
  .blog-card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(26, 54, 93, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    backdrop-filter: blur(4px);
  }
  
  .blog-card-image {
    height: 240px;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
  }
  
  .blog-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%);
  }
  
  .blog-card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  
  .blog-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 15px;
    line-height: 1.4;
    flex-grow: 1;
  }
  
  .blog-card-excerpt {
    color: #718096;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f1f1f1;
    margin-top: auto;
  }
  
  .blog-author-info {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .blog-author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #f7e8c3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a365d;
    font-weight: 600;
    font-size: 0.9rem;
  }
  
  .blog-author-details h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 2px;
  }
  
  .blog-author-details p {
    font-size: 0.85rem;
    color: #a0aec0;
  }
  
  .blog-post-date {
    color: #a0aec0;
    font-size: 0.9rem;
    font-weight: 500;
  }
  
  .blog-post-date i {
    margin-right: 6px;
    color: #d4af37;
  }
  
  /* Blog Actions */
  .blog-actions {
    text-align: center;
  }
  
  .blog-view-all-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #1a365d, #2d5aa0);
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.2);
  }
  
  .blog-view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(26, 54, 93, 0.3);
    background: linear-gradient(135deg, #2d5aa0, #1a365d);
  }
  
  .blog-view-all-btn i {
    transition: transform 0.3s ease;
  }
  
  .blog-view-all-btn:hover i {
    transform: translateX(5px);
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .blog-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-title {
      font-size: 2.8rem;
    }
  }
  
  @media (max-width: 768px) {
    .blog-grid {
      grid-template-columns: 1fr;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .blog-title {
      font-size: 2.4rem;
    }
    
    .blog-section {
      padding: 60px 0;
    }
  }
  
  @media (max-width: 480px) {
    .blog-title {
      font-size: 2rem;
    }
    
    .blog-card-content {
      padding: 25px;
    }
    
    .blog-card-title {
      font-size: 1.4rem;
    }
  }
  
  /* Premium Contact Section Styles */
  .contact-section-premium {
    font-family: 'Roboto', sans-serif;
    padding: 15px 0;
    color:grey;
    position: relative;
    overflow: hidden;
  }
  
  .contact-section-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    /*background: linear-gradient(90deg, #d4af37, #c19a2b, #d4af37);*/
  }
  
  .contact-container-premium {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
  }
  
  /* Header Styles */
  .contact-header-premium {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
  }
  
  .contact-header-premium  h2{
    font-family: 'Noto Serif', serif;
    font-size: 25px;
    font-weight: 700;
    color:#8D9765;
    line-height: 1.3;
  }
   @media (max-width: 768px)
   {
       .contact-header-premium  h2{
    font-size:18px;
    
  }
   }
  
  .contact-subtitle-premium {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  .contact-main-premium {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 35px;
  }
  
  /* Form Container */
  .form-container-premium {
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 22px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
  }
  
  .form-container-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #c19a2b);
  }
  
  .form-title-premium {
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 35px;
    color: green;
    position: relative;
    padding-bottom: 20px;
    text-transform:uppercase;
    letter-spacing:2px;
  }
  
  .form-title-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #d4af37;
    border-radius: 2px;
  }
  
  /* Premium Form Styles */
  .contact-form-premium {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .form-group-premium {
    position: relative;
  }
  
  .form-group-premium label {
    display: block;
    font-weight: 600;
    margin-bottom: 7px;
    color:grey;
    font-size: 14px;
    letter-spacing: 0.3px;
  }
  
  .form-input-premium,
  .form-select-premium,
  .form-textarea-premium {
    width: 100%;
    padding: 10px 10px;
    background: rgb(110 104 104 / 8%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color:grey;
    font-size: 12px;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
  }
  
  .form-input-premium:focus,
  .form-select-premium:focus,
  .form-textarea-premium:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
  }
  
  .form-input-premium::placeholder {
    color:#031a3d;
  }
  
  /* Form Row */
  .form-row-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  
  /* Unit Type Styling */
  .unit-type-container-premium {
     display: flex;
  gap: 12px;
  flex-wrap: wrap;
  }
  
  .unit-option-premium {
     display: flex;
  align-items: center;
  gap: 8px;
  }
  
  .unit-option-premium input[type="radio"] {
    display: none;
  }
  
  .unit-label-premium {
    display: block;
    padding: 15px;
    background: rgb(63 67 80 / 8%);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    /*color: rgba(12, 5, 46, 0.7);*/
    color:grey;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .unit-option-premium input[type="radio"]:checked + .unit-label-premium {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    /*color: #d4af37;*/
    color:grey;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
  }
  
  /* Submit Button */
  
  .submit-btn
  {
      display:flex;
      align-items:center;
      justify-content:center;
  }
  .form-submit-premium {
    background: linear-gradient(135deg, #daa520, #f1c40f);
    color: white;
    border: none;
    padding: 10px 10px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    font-family:'Roboto', sans-serif;
    width:40%;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    /*box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);*/
  }
  
  .form-submit-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #e0b72c, #d4af37);
  }
  /* Map and Footer Container */
.map-footer-container-premium {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 595px; 
}
  /* Map Container */
  .map-container-premium {
    position: relative;
  height: 350px;  
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 10px; 
  }
  
  .map-footer-premium {
  padding: 20px;
  background: rgba(255, 255, 255, 0.2);
}
  
  .map-iframe-premium {
    width: 100%;
    height: 100%;
    border: 0;
  }
  
  .address-overlay-premium {
   position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: rgba(10, 26, 45, 0.95);
  backdrop-filter: blur(10px);
  padding: 18px;
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  }
  
  .address-title-premium {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    /*color: #d4af37;*/
    color:green;
  }
  
  .address-text-premium {
    /*color: rgba(255, 255, 255, 0.9);*/
    color:grey;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
  }
  
  .map-link-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .map-link-premium:hover {
    color:#031a3d;
    gap: 12px;
  }
  
 /* Social Icons Section */
.social-icons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-top:20px;
}

.map-footer-container-premium .footer {
  color: grey;
  text-decoration: none;
  padding-left:10px;
}

.map-footer-container-premium .footer:hover {
  color: #031a3d;
}

.social-link-footer {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background:linear-gradient(135deg, #daa520, #f1c40f);
  border-radius: 50%;
  text-decoration: none;
}

.social-icon-footer {
  font-size: 18px;
  color: white;
  transition: transform 0.3s ease;
  
}

.footer-icon {
  font-size: 22px;
  color: #daa520; 
  transition: transform 0.3s ease;
}

.footer-icon.fa-whatsapp {
  background-color: #daa520;
  color: white; 
  border-radius: 50%; 
  padding: 8px; 
  margin-left:-7px;
  margin-bottom:5px;
}

.social-link-footer:hover .social-icon-footer {
  transform: scale(1.2);
}

.map-footer-container-premium .footer-number {
  margin-left: 38px;
  color: grey;
  text-decoration: none;
}

.map-footer-container-premium .footer-number:hover {
  color: #031a3d;
}

  /* Quick Info Section */
  .quick-info-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(212, 175, 55, 0.2);
  }
  
  .info-item-premium {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
  }
  
  .info-item-premium:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
  }
  
  .info-icon-premium {
    font-size: 2.8rem;
    color: #d4af37;
    margin-bottom: 20px;
  }
  
  .info-title-premium {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #031a3d;
  }
  
  .info-desc-premium {
    color: rgba(11, 23, 131, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  /* Responsive Design */
  @media (max-width: 1200px) {
    .contact-main-premium {
      grid-template-columns: 1fr;
      gap: 50px;
    }
    
    .map-container-premium {
      min-height: 350px;
    }
    
    .quick-info-premium {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .contact-title-premium {
      font-size: 2.5rem;
    }
    
    .form-row-premium {
      grid-template-columns: 1fr;
    }
    
    .unit-type-container-premium {
      grid-template-columns: 1fr;
    }
    
    .form-container-premium,
    .quick-info-premium {
      padding: 30px;
    }
    
    .quick-info-premium {
      grid-template-columns: 1fr;
    }
    
    .contact-container-premium {
      padding: 0 20px;
    }
    .form-submit-premium
    {
        width:60%;
    }
  }
  
  @media (max-width: 480px) {
    .contact-title-premium {
      font-size: 2rem;
    }
    
    .contact-subtitle-premium {
      font-size: 1.1rem;
    }
    
    .form-title-premium {
      font-size: 25px;
    }
    
    .address-overlay-premium {
      left: 20px;
      right: 20px;
      padding: 20px;
    }
  }
  
  @media (max-width: 768px) {
   
    .contact-info-wrapper {
      /*background-color: #fcfff2;  */
      background-color:#ecf0f163;
      padding: 20px;
      border-radius: 8px;
    }
    /* Other styles */
  .contact-main-premium {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .contact-title-premium {
    order: -1; 
    text-align: center; 
  }

  /* No changes for the map and form */
  .map-footer-container-premium {
    order: 1;
  }

  .map-container-premium {
    order: 2;
  }

  .form-container-premium {
    order: 3;
  }

  .form-submit-premium {
    width: 60%;
  }

  .contact-container-premium {
    padding: 0 20px;
  }

  }

  
  
  /* Overlay - HIDDEN BY DEFAULT */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.7);
  display: none; /* HIDDEN UNTIL BUTTON CLICK */
  justify-content: center;
  align-items: center;
  z-index: 99999;
  overflow: hidden; /* Prevent body scroll */
}

/* Popup Box - SCROLLABLE */
.popup-box {
  background: #fff;
  width: 90%;
  max-width: 720px;
  max-height: 90vh;
  padding: 40px;
  border-radius: 16px;
  position: relative;
  animation: popupFade 0.3s ease-out;
  overflow-y: auto; /* SCROLL INSIDE POPUP */
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}
/* Close Button */
.popup-close {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #64748b;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.popup-close:hover {
  background: #f1f5f9;
  color: #0f172a;
}

/* Animation */
@keyframes popupFade {
  from { 
    transform: scale(0.9) translateY(-20px); 
    opacity: 0; 
  }
  to { 
    transform: scale(1) translateY(0); 
    opacity: 1; 
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .popup-box {
    width: 95%;
    max-width: 500px;
    padding: 30px 24px;
    max-height: 85vh;
    border-radius: 12px;
  }
  
  .popup-close {
    top: 16px;
    right: 20px;
    font-size: 24px;
    width: 32px;
    height: 32px;
  }
  
  .form-row-premium, .guests-row-premium {
    flex-direction: column;
    gap: 16px;
  }
  
  .form-input-premium, .form-select-premium, .form-textarea-premium {
    padding: 16px;
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  .unit-type-container-premium {
    flex-direction: column;
    gap: 8px;
  }
  
  .contact-form-premium {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .popup-box {
    width: 98%;
    padding: 24px 20px;
    max-height: 92vh;
  }
  
  .form-input-premium, .form-select-premium, .form-textarea-premium {
    padding: 14px;
  }
}

.call-sticky {
 
    position: fixed;
    bottom: 40px;
    right: 50px;
    background-color:#8D9765 ;
    color: white;
    width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 5px;
    cursor: pointer;
    z-index: 1000;
    border-radius: 50%;
    text-decoration: none;

}

.call-sticky:hover {
    background-color: #6e7550;
    color: #fff;
}
@media (max-width: 768px) {
    .call-sticky {
        bottom: 110px;
        right: 12px;
        width: 50px;
        height: 50px;
    }
    .call-sticky img
    {
        width:42px;
        height:42px;
    }
}



  