@import url('https://api.fontshare.com/v2/css?f[]=switzer@100,200,300,400,500,600,700,800,900&display=swap');

:root {
    --brand: #038b7e;
    --sand: #fff;
    --deep: #164225;
    --text: #1e1e1e;
    --muted: #5c5c5c;
    --font: 'Switzer', sans-serif;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background: #fff;
    scroll-behavior: smooth;
    overflow-x: hidden;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .section-heading,
  .infra-headline,
  .infra-kicker,
  .infra-title h3,
  .section-kicker {
    font-size: 40px !important;
    text-transform: capitalize;
    line-height: 1.5em !important;
    font-weight: 400 !important;
    font-family: 'Switzer', sans-serif !important;
  }
  
  .section-heading,
  .infra-headline {
    font-size: 60px !important;
  }
  
  .navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }
  
  .navbar-brand span {
    font-weight: 600;
    letter-spacing: 0.4px;
  }
  
  .btn-brand {
    background: var(--brand);
    color: #fff;
    border: none;
    padding: 0.65rem 1.4rem;
    border-radius: 0;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  }
  
  .btn-brand:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(3, 139, 126, 0.25);
    color: #fff;
    background: #026e64;
  }
  
  .hero {
    min-height: 72vh;
    position: relative;
    overflow: hidden;
  }
  
  .section-heading {
    font-size: clamp(2rem, 2vw + 1rem, 2.6rem);
    margin-bottom: 0.6rem;
    letter-spacing: 0.2px;
  }
  
  /* Uniform heading sizing */
  .section-heading,
  .infra-headline {
    font-size: 40px !important;
    line-height: 1.2em !important;
  }
  
  @media (max-width: 1024px) {
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    .section-heading,
    .infra-headline,
    .infra-kicker,
    .infra-title h3,
    .section-kicker,
    .gallery-title {
      font-size: 30px !important;
    }
  
    .btn.btn-brand,
    .btn-brand {
      font-size: 14px;
    }
  }
  
  .section-sub {
    color: var(--muted);
    max-width: 740px;
    margin: 0 auto 1.5rem auto;
  }
  
  .bg-sand { background: var(--sand); }
  .bg-brand { background: var(--brand); }
  
  .highlight-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.25);
    /* border-radius: 14px; */
    padding: 1rem 1.2rem;
    height: 100%;
    backdrop-filter: blur(6px);
    color: rgba(255, 255, 255, 0.86);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  
  .highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  }
  
  .highlight-hero img {
    width: 100%;
    /* border-radius: 16px; */
    object-fit: cover;
  }
  
  .highlight-list {
    display: grid;
    gap: 16px;
  }
  
  .highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .highlight-icon {
    width: 46px;
    height: 46px;
    /* border-radius: 12px; */
    background: #d6f0ee;
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
  }
  
  .highlight-text {
    font-size: 1.02rem;
    color: var(--text);
  }
  
  .animate-init {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
  }
  
  .animate-show {
    opacity: 1;
    transform: translateY(0);
  }
  
  .icon-badge {
    width: 48px;
    height: 48px;
    /* border-radius: 14px; */
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
  }
  
  .config-table {
     max-width: 1080px; 
    margin: 0 auto;
    /* padding: 10px; */
    border: 1px solid var(--brand);
    background: transparent;
    border-radius: 0;
  }
  
  .config-table thead {
    background: #038b7e;
    color: #fff;
    font-size: 18px;
  }
  
  .config-table tbody tr:nth-child(even) {
    background: #f1f1f1;
  }
  
  .config-table table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    border: 2px solid #038b7e;
  }
  
  .config-table th,
  .config-table td {
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    vertical-align: middle;
  }
  
  .config-table td:last-child {
    width: 180px;
  }
  
  .infra-section {
    padding: 32px 0 48px;
    background: #fff;
  }
  
  .infra-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 14px;
  }
  
  .infra-title {
    line-height: 1.05;
  }
  
  .infra-kicker {
    margin: 0;
    font-size: 35px !important;
    font-weight: 400 !important;
    color: #0c0c0c;
  }
  
  .infra-headline {
    margin: 0;
    font-size: 40px !important;
    font-weight: 400 !important;
    letter-spacing: -0.5px;
    color: #0c0c0c;
  }
  
  .infra-controls {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .infra-nav {
    width: 48px;
    height: 48px;
    border: none;
    /* border-radius: 10px; */
    background: #038b7e;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(3, 139, 126, 0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  }
  
  .infra-nav:hover {
    background: #026e64;
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(3, 139, 126, 0.35);
  }
  
  .infra-nav:active {
    transform: translateY(0);
  }
  
  .infra-viewport {
    overflow: hidden;
    width: 100%;
    padding-top: 8px;
  }
  
  .infra-track {
    display: flex;
    gap: var(--infra-gap, 18px);
    will-change: transform;
    transition: transform 0.45s ease;
  }
  
  .infra-card {
    flex: 0 0 calc((100% - (var(--infra-gap, 18px) * 3)) / 3.5);
    background: #e0f5f3;
    /* border-radius: 2px; */
    padding: clamp(20px, 2vw, 28px);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    /* gap: clamp(18px, 2.4vw, 28px); */
    color: #025b54;
  }
  
  .infra-icon-slot {
    width: 80px;
    height: 60px;
    display: flex;
    align-self: flex-end;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
  }
  
  .infra-copy {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .infra-card h3 {
    margin: 0;
    font-size: 28px !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
    color: #026e64;
  }
  
  .infra-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.55;
    color: #025b54;
  }
  
  @media (max-width: 1200px) {
    .infra-card {
      flex: 0 0 calc((100% - (var(--infra-gap, 18px) * 2)) / 2.5);
    }
  }
  
  @media (max-width: 992px) {
    .infra-section {
      padding: 48px 0;
    }
    .infra-head {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }
    .infra-controls {
      align-self: flex-start;
    }
    .infra-card {
      flex: 0 0 100%;
      min-height: 280px;
    }
    .infra-icon-slot {
      height: 100px;
      width: 100px;
    }
  }
  
  .master-plan img {
    width: 100%;
    /* border-radius: 18px; */
    box-shadow: 0 22px 36px rgba(0, 0, 0, 0.12);
  }
  
  .legend {
    display: grid;
    gap: 10px;
  }
  
  .legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--brand);;
    font-size: 18px;
  }
  
  .legend-swatch {
    width: 24px;
    height: 24px;
    /* border-radius: 2px; */
    display: inline-block;
  }
  
  .accordion-button:not(.collapsed) {
    background: rgba(3, 139, 126, 0.1);
    color: var(--text);
    box-shadow: none;
  }
  
  .location-section {
    background: linear-gradient(135deg, #e0f5f3 0%, #eafaf8 50%, #d6f0ee 100%);
    padding: clamp(48px, 8vw, 100px) 0;
  }
  
  .loc-hero {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 28px;
  }
  
  .loc-text {
    grid-column: span 5;
    background: #fff;
    /* border-radius: 16px; */
    padding: clamp(18px, 3vw, 28px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
  }
  
  .loc-kicker {
    margin: 0 0 6px;
    font-size: 18px;
    letter-spacing: 1px;
    color: #000;
  }
  
  .loc-title {
    margin: 0 0 10px;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.2;
  }
  
  .loc-sub {
    margin: 0 0 12px;
    color: #4b4b4b;
    font-size: 16px;
  }
  
  .loc-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .loc-chip {
    background: rgba(3, 139, 126, 0.12);
    color: #025b54;
    padding: 6px 12px;
    /* border-radius: 999px; */
    font-size: 14px;
  }
  
  .loc-card {
    grid-column: span 7;
  }
  
  .loc-map {
    background: #fff;
    /* border-radius: 16px; */
    overflow: hidden;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.1);
  }
  
  .location-map-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-top: 1px solid #ececec;
    background: #fff;
  }
  
  .loc-title-sm {
    font-weight: 600;
    margin: 0;
  }
  
  .loc-sub-sm {
    margin: 0;
    color: #7a7a7a;
    font-size: 14px;
  }
  
  .loc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 18px;
  }
  
  .loc-panel {
    background: #fff;
    /* border-radius: 16px; */
    padding: 6px;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.08);
  }
  
  .location-accordion .accordion-button {
    background: transparent;
    font-weight: 600;
    color: #2b2b2b;
  }
  
  .location-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #ececec;
  }
  
  .location-accordion .accordion-body {
    padding: 12px 18px 18px;
    color: #4c4c4c;
  }
  
  .location-accordion .accordion-button:not(.collapsed) {
    background: rgba(3, 139, 126, 0.08);
    color: #026e64;
  }
  
  .location-accordion .accordion-button:focus {
    box-shadow: none;
  }
  
  @media (max-width: 992px) {
    .loc-hero {
      grid-template-columns: 1fr;
    }
    .loc-text,
    .loc-card {
      grid-column: span 12;
    }
    .loc-card {
      order: 2;
    }
    .loc-text {
      order: 1;
    }
  }
  
  .gallery-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 28vw);
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
  }
  
  .gallery-strip::-webkit-scrollbar {
    height: 10px;
  }
  
  .gallery-strip::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.25);
    /* border-radius: 999px; */
  }
  
  .gallery-card {
    scroll-snap-align: start;
    /* border-radius: 16px; */
    overflow: hidden;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
    background: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  
  .gallery-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
  }
  
  .gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  }
  
  .gallery-block, .indulgence-section{
    padding: clamp(52px, 7vw, 96px) 0;
    background-image: url();
    background-repeat: no-repeat;
  }
  
  .gallery-title {
    margin-bottom: clamp(18px, 3vw, 32px);
    color: #0c0c0c;
  }
  
  .gallery-wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 18px;
    scroll-behavior: smooth;
    overflow-x: auto;
    cursor: grab;
    user-select: none;
  }
  
  .gallery-wrap.is-dragging {
    cursor: grabbing;
  }
  
  .indulgence-section {
    position: relative;
    padding: clamp(48px, 7vw, 86px) 0;
    overflow: hidden;
  }
  
  .indulgence-section::after {
    content: "";
    position: absolute;
    top: -120px;
    right: -60px;
    width: 320px;
    height: 320px;
    background: conic-gradient(from 0deg, rgba(3, 139, 126, 0.14) 0 12deg, transparent 12deg 24deg);
    mask: radial-gradient(circle at 50% 50%, transparent 54%, #000 55%);
    opacity: 0.8;
    pointer-events: none;
  }
  
  .indulgence-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
  }
  
  .indulgence-kicker {
    margin-bottom: 6px;
  }
  
  .indulgence-title {
    font-size: clamp(36px, 4vw + 12px, 64px);
    margin: 0 0 8px;
    line-height: 1.05;
    font-weight: 500;
  }
  
  .indulgence-sub {
    max-width: 560px;
    color: #3a3a3a;
    margin: 0;
    line-height: 1.6;
  }
  
  .indulgence-controls {
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  
  .indulgence-nav {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: none;
    background: #038b7e;
    color: #fff;
    font-size: 1.2rem;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
  }
  
  .indulgence-nav:hover {
    transform: translateY(-2px);
    background: #026e64;
  }
  
  .indulgence-slider {
    position: relative;
  }
  
  .indulgence-viewport {
    overflow: hidden;
  }
  
  .indulgence-track {
    display: flex;
    gap: 14px;
    transition: transform 0.45s ease;
    will-change: transform;
    touch-action: pan-y;
    cursor: grab;
  }
  
  .indulgence-track.is-dragging {
    cursor: grabbing;
  }
  
  .indulgence-slide {
    position: relative;
    flex: 0 0 calc((100% - 28px) / 3);
    height: 420px;
    overflow: hidden;
    border-radius: 6px;
  }
  
  .indulgence-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .indulgence-caption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
  }
  
  .indulgence-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .indulgence-icon::before {
    content: "";
    width: 14px;
    height: 14px;
    border: 2px solid #fff;
    border-radius: 50%;
    opacity: 0.8;
  }
  
  @media (max-width: 992px) {
    .indulgence-head {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .indulgence-track {
      gap: 12px;
    }
  
    .indulgence-slide {
      flex: 0 0 100%;
      height: 380px;
    }
  
    .indulgence-controls {
      width: 100%;
      justify-content: center;
    }
  }
  .cta-banner {
    padding: clamp(32px, 6vw, 56px) 0;
    background: #e8f7f5;
    text-align: center;
  }
  
  .cta-title {
    font-size: clamp(28px, 2vw + 12px, 36px);
    font-weight: 600;
    margin-bottom: 10px;
    color: #1f1f1f;
  }
  
  .phone-field {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 10px;
  }
  
  .phone-prefix {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    border: 1px solid #d7d7d7;
    /* border-radius: 10px; */
    background: #f5f5f5;
    font-weight: 600;
    color: #0c0c0c;
    white-space: nowrap;
  }
  
  .flag-india {
    display: inline-block;
    width: 20px;
    height: 14px;
    background: linear-gradient(#ff9933 0 33.33%, #fff 33.33% 66.66%, #138808 66.66% 100%);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 2px;
  }
  
  .flag-india::after {
    content: "";
    position: absolute;
    inset: 4px 8px;
    border: 1px solid #0c3c8a;
    border-radius: 50%;
  }
  
  .dial-code {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
  }
  
  .gallery-grid {
    display: flex;
    gap: 18px;
    align-items: stretch;
    width: max-content;
  }
  
  .gallery-tile {
    position: relative;
    overflow: hidden;
    background: #d6eeec;
    height: 100%;
    width: auto;
  }
  
  .gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .gallery-embed {
    width: 100%;
    height: 100%;
    border: none;
  }
  
  .gallery-hero {
    flex: 0 0 60vw;
    max-width: 800px;
    height: 420px;
  }
  
  .gallery-stack {
    flex: 0 0 28vw;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 420px;
  }
  
  .gallery-stack .gallery-tile {
    height: calc((420px - 18px) / 2);
  }
  
  .gallery-tall {
    flex: 0 0 22vw;
    max-width: 320px;
    height: 420px;
  }
  
  .gallery-play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #0c0c0c;
    font-size: 1.6rem;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  }
  
  .gallery-play:hover {
    transform: translateY(-2px);
  }
  
  .gallery-video-link,
  .gallery-play-link {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
  }
  
  @media (max-width: 1200px) {
    .gallery-grid {
      gap: 14px;
    }
  }
  
  @media (max-width: 992px) {
    .gallery-grid {
      flex-direction: row;
      gap: 14px;
      width: max-content;
    }
    .gallery-stack {
      min-width: 86vw;
      height: auto;
      gap: 14px;
    }
    .gallery-hero,
    .gallery-tall {
      min-width: 86vw;
      min-height: 420px !important;
    }
    .gallery-stack .gallery-tile {
      height: 220px;
    }
    .gallery-wrap {
      overflow-x: auto;
      cursor: grab;
    }
    .gallery-tile {
      flex-shrink: 0;
    }
  }
  
  .enquiry-card {
    background: #fff;
    /* border-radius: 16px; */
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  }
  
  .footer {
    color: #fff;
    text-align: center;
    padding: 2.4rem 1rem;
    font-size: 0.98rem;
    line-height: 1.6;
  }
  
  /* Hero carousel helpers */
  .hero .carousel,
  .hero .carousel-inner,
  .hero .carousel-item {
    height: 100%;
  }
  
  .object-cover {
    object-fit: cover;
  }
  
  .badge-lite {
    background: rgba(3, 139, 126, 0.12);
    color: var(--brand);
    padding: 0.55rem 1rem;
    border-radius: 999px;
    font-size: 0.95rem;
  }
  
  /* Premium slider */
  .premium-slider {
    position: relative;
    isolation: isolate;
  }
  
  .slider-glow {
    position: absolute;
    inset: -10% 10%;
    background: radial-gradient(circle at 50% 40%, rgba(3, 139, 126, 0.35), transparent 40%);
    filter: blur(50px);
    opacity: 0.7;
    z-index: 0;
  }
  
  .slider-shell {
    position: relative;
    padding: 1rem 0 2.5rem;
    z-index: 1;
  }
  
  .slider-cards {
    position: relative;
    min-height: 460px;
    overflow: hidden;
  }
  
  .slider-card {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(23%, 260px);
    transform: translateX(-50%);
    /* border-radius: 18px; */
    overflow: hidden;
    box-shadow: 0 26px 48px rgba(0, 0, 0, 0.16);
    background: #fff;
    transition: transform 0.65s cubic-bezier(0.4, 0.1, 0.2, 1), opacity 0.65s ease, filter 0.65s ease, box-shadow 0.65s ease;
    opacity: 0;
    transform-origin: center center;
  }
  
  .slider-image {
    width: 100%;
    height: 380px;
    background-size: cover;
    background-position: center;
  }
  
  .slider-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.85rem 1rem 1.1rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.58) 70%);
    color: #f5f5f5;
  }
  
  .slider-body h5 {
    margin: 0 0 0.2rem;
    font-weight: 600;
    font-size: 1.02rem;
  }
  
  .slider-body p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
  }
  
  .pos-center {
    transform: translate(-50%, 0) scale(1) rotate(0deg);
    opacity: 1;
    z-index: 5;
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.2));
  }
  
  .pos-1-left {
    transform: translate(-140%, 10px) scale(0.94) rotate(-6deg);
    opacity: 0.8;
    z-index: 4;
  }
  
  .pos-2-left {
    transform: translate(-220%, 24px) scale(0.88) rotate(-10deg);
    opacity: 0.4;
    z-index: 3;
  }
  
  .pos-1-right {
    transform: translate(40%, 10px) scale(0.94) rotate(6deg);
    opacity: 0.8;
    z-index: 4;
  }
  
  .pos-2-right {
    transform: translate(120%, 24px) scale(0.88) rotate(10deg);
    opacity: 0.4;
    z-index: 3;
  }
  
  .pos-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 40px) scale(0.6) rotate(0deg);
    z-index: 1;
  }
  
  .leaf-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 1.5rem;
  }
  
  .leaf-btn {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(3, 139, 126, 0.5);
    background: #fff;
    color: var(--brand);
    border-radius: 0;
    box-shadow: 0 8px 18px rgba(3, 139, 126, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  }
  
  .leaf-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(3, 139, 126, 0.2);
    filter: brightness(1.03);
  }
  
  .leaf-btn:active {
    transform: translateY(0);
  }
  
  .slider-count {
    font-weight: 600;
    letter-spacing: 2px;
  }
  
  /* Modal */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    /* pointer-events: none; */
    transition: opacity 0.25s ease, visibility 0s linear 0.25s;
    z-index: 999;
  }
  
  .modal-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.25s ease, visibility 0s linear 0s;
  }
  
  .modal-dialog {
    background: #fff;
    /* border-radius: 16px; */
    padding: 1.5rem;
    width: min(480px, 92vw);
    box-shadow: 0 28px 58px rgba(0, 0, 0, 0.18);
    transform: translateY(12px) scale(0.98);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    pointer-events: auto; /* override Bootstrap's pointer-events: none so clicks stay inside the dialog */
  }
  
  .modal-dark {
    background: #026e64;
    color: #f4f4f4;
    width: min(800px, 94vw);
    padding: clamp(24px, 4vw, 48px);
  }
  
  .modal-overlay.show .modal-dialog {
    transform: translateY(0) scale(1);
    animation: modalPop 0.4s ease;
  }
  
  .modal-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    position: absolute;
    top: 12px;
    right: 14px;
    color: var(--text);
  }
  
  .modal-header {
    margin-bottom: 0.75rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .modal-header-dark {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
    padding-bottom: clamp(12px, 2vw, 20px);
  }
  
  .modal-open {
    overflow: hidden;
  }
  
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes modalPop {
    0% { transform: translateY(12px) scale(0.96); }
    60% { transform: translateY(-2px) scale(1.02); }
    100% { transform: translateY(0) scale(1); }
  }
  
  /* Enquiry header shine */
  /* .modal-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(3, 139, 126, 0.18) 40%, transparent 60%);
    transform: translateX(-120%);
    animation: headerShine 2.8s infinite;
  } */
  
  .modal-title-big {
    font-size: clamp(20px, 3vw + 12px, 40px);
    font-family: 'Switzer', sans-serif;
    line-height: 1.2;
    margin: 0;
    font-weight: 400;
  }
  
  .modal-subtext {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    color: rgba(244, 244, 244, 0.86);
    font-family: 'Switzer', sans-serif;
  }
  
  .modal-form-dark {
    margin-top: 8px;
  }
  
  .modal-label {
    color: rgba(244, 244, 244, 0.9);
    font-size: 14px;
    margin-bottom: 6px;
  }
  
  .modal-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(244, 244, 244, 0.4);
    border-radius: 0;
    color: #f4f4f4;
    padding-left: 0;
    padding-right: 0;
    box-shadow: none;
  }
  
  .modal-input:focus {
    background: transparent;
    border-bottom-color: rgba(255, 255, 255, 0.85);
    box-shadow: none;
    color: #fff;
  }
  
  .modal-input::placeholder {
    color: rgba(244, 244, 244, 0.6);
  }
  
  .modal-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 0.75rem 1.6rem;
    font-size: 16px;
    border-radius: 0;
    min-width: 140px;
  }
  
  .modal-btn:hover {
    background: #d6f0ee;
    color: #000;
  }
  
  /* Contact / Enquiry section */
  .contact-section {
    position: relative;
    padding: clamp(48px, 8vw, 100px) 0;
    background: url("Img/new_images/gallery6.jpg") center/cover no-repeat;
    overflow: hidden;
  }
  
  .contact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.35));
    backdrop-filter: blur(2px);
    z-index: 0;
  }
  
  .contact-shell {
    position: relative;
    z-index: 1;
    background: #fff;
    /* border-radius: 10px; */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
    display: grid;
    /* grid-template-columns: repeat(12, 1fr); */
    overflow: hidden;
  }
  
  .contact-left {
    grid-column: span 6;
    padding: clamp(22px, 4vw, 36px);
    background: rgba(255, 255, 255, 0.98);
    color: #2b2b2b;
    display: grid;
    gap: 16px;
  }
  
  .contact-heading {
    margin: 0 0 10px;
    font-size: clamp(28px, 3vw + 10px, 40px);
  }
  
  .contact-lines {
    display: grid;
    gap: 8px;
    color: var(--brand);
    font-weight: 600;
  }
  
  .contact-line i {
    margin-right: 10px;
  }
  
  .contact-social {
    display: flex;
    gap: 18px;
    font-weight: 600;
  }
  
  .contact-social a {
    color: var(--brand);
  }
  
  .contact-brand {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 18px;
    align-items: center;
  }
  
  .contact-logo {
    width: 100%;
    height: 120px;
    background: linear-gradient(140deg, #026e64, #038b7e);
    border-radius: 999px 999px 200px 200px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .contact-text {
    font-size: 15px;
    line-height: 1.7;
    color: #303030;
  }
  
  .contact-visit {
    margin-top: 10px;
  }
  
  .contact-visit a {
    color: var(--brand);;
    font-weight: 600;
  }
  
  .contact-member {
    margin-top: 8px;
    font-weight: 600;
  }
  
  .contact-credai {
    color: #1e824c;
  }
  
  .contact-right {
    grid-column: span 6;
    padding: clamp(22px, 4vw, 36px);
    background: #026e64;
    color: #f4f4f4;
    display: grid;
    gap: 12px;
  }
  
  .contact-form .modal-label {
    color: rgba(244, 244, 244, 0.85);
  }
  
  .contact-form .modal-input {
    border-bottom: 1px solid rgba(244, 244, 244, 0.4);
  }
  
  .contact-form .modal-input::placeholder {
    color: rgba(244, 244, 244, 0.5);
  }
  
  .contact-form .modal-btn {
    min-width: 120px;
  }
  
  @media (max-width: 992px) {
    .contact-shell {
      grid-template-columns: 1fr;
    }
    .contact-left,
    .contact-right {
      grid-column: span 12;
    }
  }

  @keyframes headerShine {
    0% { transform: translateX(-120%); }
    45% { transform: translateX(120%); }
    100% { transform: translateX(120%); }
  }
  
  @media (max-width: 1200px) {
    .slider-card {
      width: min(26%, 260px);
    }
  }
  
  @media (max-width: 992px) {
    .navbar {
      display: none;
    }
    .hero {
      min-height: 60vh;
    }
    .slider-card {
      width: min(30%, 260px);
    }
  }
  
  @media (max-width: 768px) {
    .hero {
      min-height: 55vh;
      padding: 0;
    }
    .slider-cards {
      min-height: 420px;
    }
    .slider-card {
      width: 82%;
      left: 50%;
    }
    .pos-1-left,
    .pos-2-left,
    .pos-1-right,
    .pos-2-right {
      opacity: 0;
      pointer-events: none;
    }
    .pos-hidden {
      opacity: 0;
    }
    .gallery-card img {
      height: 260px;
    }
  }
  
  /* Mobile topbar */
  .mobile-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    display: none;
    align-items: center;
    justify-content: center;
    transform: translateY(-110%);
    transition: transform 0.35s ease;
    z-index: 20;
  }
  
  .mobile-topbar.show {
    transform: translateY(0);
  }
  
  .mobile-topbar-inner .brand-mark {
    font-weight: 700;
    letter-spacing: 0.6px;
    color: var(--text);
  }
  
  /* Mobile bottom bar */
  .mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 54px;
    background: #bba680;
    display: none;
    z-index: 20;
    overflow: hidden;
  }
  
  .mobile-bottom-bar .bar-btn {
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    border: 1px solid #000;
  }
  
  .mobile-bottom-bar .bar-btn + .bar-btn {
    border-left: 1px solid rgba(255, 255, 255, 0.4);
  }
  
  .mobile-bottom-bar .shine {
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    animation: shine 2.8s infinite;
    
  }
  
  @keyframes shine {
    0% { transform: translateX(0); }
    100% { transform: translateX(200%); }
  }
  
  @media (max-width: 992px) {
    .mobile-topbar,
    .mobile-bottom-bar {
      display: flex;
      border-top: 1px solid aliceblue;
    }
  }
  
  /* Final mobile overrides for uniform heading sizing */
  @media (max-width: 768px) {
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    .section-heading,
    .infra-headline,
    .infra-kicker,
    .infra-title h3,
    .section-kicker,
    .gallery-title,
    .contact-heading,
    .indulgence-title {
      font-size: 30px !important;
      line-height: 1.2em !important;
    }
  }
  