    :root {
      --ink: #25212a;
      --muted: #736978;
      --rose: #e76f96;
      --rose-dark: #b84d73;
      --blush: #fff2f5;
      --lavender: #f1edff;
      --paper: #fffaf7;
      --white: #ffffff;
      --line: rgba(37, 33, 42, 0.1);
      --shadow: 0 20px 60px rgba(72, 52, 73, 0.14);
      --soft-shadow: 0 12px 28px rgba(72, 52, 73, 0.1);
      --max: 1180px;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background: var(--paper);
      scroll-behavior: smooth;
    }

    * {
      box-sizing: border-box;
    }

    html,
    body {
      margin: 0;
      padding: 0;
      min-width: 320px;
      overflow-x: hidden;
      width: 100%;
    }

    body {
      background:
        linear-gradient(180deg, rgba(255, 242, 245, 0.9), rgba(255, 250, 247, 0.98) 40%),
        var(--paper);
    }

    body.no-scroll {
      overflow: hidden;
    }

    .page-top-anchor {
      position: absolute;
      top: 0;
      left: 0;
      width: 1px;
      height: 1px;
    }

    img {
      display: block;
      width: 100%;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      font: inherit;
    }

    /* ── Site Header ── */
    .site-header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 50;
      padding: 0 clamp(16px, 4vw, 48px);
      background: #ffffff;
      border-bottom: 1px solid rgba(0, 0, 0, 0.07);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: box-shadow 220ms ease;
      width: 100%;
    }

    .site-header.is-scrolled {
      box-shadow: 0 4px 18px rgba(0, 0, 0, 0.09);
    }

    /* ── Nav container ── */
    .nav {
      width: min(var(--max), 100%);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      height: auto;
    }

    /* ── Logo / Brand ── */
    .brand {
      display: inline-flex;
      align-items: center;
      align-self: stretch;
      flex-shrink: 0;
      text-decoration: none;
      padding-block: 6px;
    }

    .brand-logo {
      height: 100%;
      width: auto;
      max-width: auto;
      max-height: 50px;
      display: block;
      object-fit: contain;
    }

    /* ── Nav links row ── */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 2px;
      flex: 1;
      justify-content: flex-end;
    }

    .nav-links a {
      border-radius: 6px;
      color: #1a1a1a;
      font-size: 0.91rem;
      font-weight: 600;
      padding: 8px 12px;
      white-space: nowrap;
      transition: background 160ms ease, color 160ms ease;
    }

    .nav-links a:not(.nav-cta):hover {
      background: #fff0f5;
      color: var(--rose-dark);
    }

    /* ── Enquiry Now CTA ── */
    .nav-links .nav-cta {
      margin-left: 6px;
      padding: 9px 20px;
      color: #ffffff;
      background: linear-gradient(135deg, #e76f96, #c95589);
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 700;
      box-shadow: 0 4px 14px rgba(231, 111, 150, 0.32);
      transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
      border: none;
      cursor: pointer;
    }

    .nav-links .nav-cta:hover {
      background: linear-gradient(135deg, #d0607f, #b84d73);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(231, 111, 150, 0.4);
    }

    /* ── Mobile hamburger ── */
    .menu-toggle {
      display: none;
      flex-shrink: 0;
      width: 42px;
      height: 38px;
      border: 1.5px solid rgba(0, 0, 0, 0.12);
      border-radius: 8px;
      background: #ffffff;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      padding: 0;
    }

    .menu-toggle span {
      display: block;
      width: 18px;
      height: 2px;
      background: #1a1a1a;
      border-radius: 2px;
      transition: transform 200ms ease, opacity 200ms ease;
    }

    .menu-toggle.is-open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.is-open span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    .menu-toggle.is-open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
      position: relative;
      min-height: 92vh;
      display: grid;
      align-items: center;
      padding: 132px clamp(20px, 5vw, 72px) 92px;
      overflow: hidden;
      color: var(--white);
      isolation: isolate;
      background:
        linear-gradient(90deg, rgba(29, 20, 31, 0.84), rgba(86, 49, 82, 0.48), rgba(255, 255, 255, 0.12)),
        url("hostel-building-main.jpg") center/cover;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(180deg, rgba(255, 222, 232, 0.08), rgba(255, 250, 247, 0.22));
    }

    .hero-content {
      width: min(760px, 100%);
    }

    .eyebrow {
      margin: 0 0 12px;
      color: var(--rose-dark);
      font-size: 0.78rem;
      font-weight: 900;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .hero .eyebrow,
    .cta-section .eyebrow {
      color: #ffd8e4;
    }

    h1,
    h2,
    h3,
    p {
      overflow-wrap: anywhere;
    }

    h1 {
      max-width: 12ch;
      margin: 0;
      font-size: clamp(2.2rem, 5.5vw, 4.8rem);
      line-height: 1.05;
      letter-spacing: -0.01em;
    }

    h2 {
      margin: 0;
      max-width: 760px;
      font-size: clamp(1.8rem, 4.2vw, 3.4rem);
      line-height: 1.06;
      letter-spacing: 0;
    }

    h3 {
      margin: 0;
      font-size: 1.08rem;
      line-height: 1.3;
    }

    p {
      color: var(--muted);
      line-height: 1.7;
    }

    .hero-subtitle {
      max-width: 500px;
      margin: 16px 0 0;
      color: rgba(255, 255, 255, 0.88);
      font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 34px;
    }

    .button {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid transparent;
      border-radius: 8px;
      padding: 13px 19px;
      font-weight: 850;
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
      cursor: pointer;
    }

    .button:hover {
      transform: translateY(-2px);
    }

    .button-primary {
      color: var(--white);
      background: var(--rose);
      box-shadow: 0 18px 34px rgba(231, 111, 150, 0.34);
    }

    .button-primary:hover {
      background: var(--rose-dark);
    }

    .button-secondary {
      color: var(--ink);
      background: rgba(255, 255, 255, 0.9);
      box-shadow: 0 18px 34px rgba(37, 33, 42, 0.16);
      border: none;
    }

    .trust-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 30px;
    }

    .trust-badges span {
      border: 1px solid rgba(255, 255, 255, 0.28);
      border-radius: 8px;
      padding: 10px 12px;
      color: rgba(255, 255, 255, 0.94);
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(12px);
      font-weight: 800;
    }

    .trust-badges span::before {
      content: "";
      width: 8px;
      height: 8px;
      display: inline-block;
      margin-right: 8px;
      border-radius: 50%;
      background: #f9c6d7;
    }

    .scroll-cue {
      position: absolute;
      right: clamp(20px, 5vw, 72px);
      bottom: 32px;
      color: rgba(255, 255, 255, 0.82);
      font-weight: 800;
      writing-mode: vertical-rl;
    }

    .section {
      padding: 40px 20px;
    }

    .section-heading {
      width: min(var(--max), 100%);
      margin: 0 auto 36px;
    }

    .section-heading>p:not(.eyebrow) {
      max-width: 650px;
      margin: 18px 0 0;
      font-size: 1.05rem;
    }

    .room-grid {
      width: min(var(--max), 100%);
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
    }

    .room-card,
    .amenity-card,
    .why-card,
    .contact-card,
    .faq-list details {
      border: 1px solid rgba(37, 33, 42, 0.08);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.82);
      box-shadow: var(--soft-shadow);
      transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
    }

    .room-card:hover,
    .amenity-card:hover,
    .why-card:hover,
    .testimonial-card:hover,
    .contact-card:hover,
    .faq-list details:hover {
      transform: translateY(-5px);
      border-color: rgba(231, 111, 150, 0.25);
      box-shadow: var(--shadow);
    }

    .room-card {
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .room-card img {
      aspect-ratio: 4 / 3;
      object-fit: cover;
      transition: transform 420ms ease;
    }

    .room-card:hover img {
      transform: scale(1.04);
    }

    .room-card>div {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .room-tag {
      margin: 0 0 9px;
      color: var(--rose-dark);
      font-size: 0.76rem;
      font-weight: 900;
      text-transform: uppercase;
    }

    .room-card p:not(.room-tag) {
      margin: 10px 0 18px;
    }

    .card-footer {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      min-height: 36px;
      color: var(--muted);
      font-size: 0.88rem;
      font-weight: 800;
      margin-top: auto;
    }

    .card-footer a {
      flex: 0 0 auto;
      border-radius: 8px;
      padding: 9px 12px;
      color: var(--blush);
      background: var(--rose-dark);
    }

    .amenities-section {
      background:
        linear-gradient(135deg, rgba(255, 242, 245, 0.9), rgba(241, 237, 255, 0.82)),
        var(--white);
    }

    .amenity-grid {
      width: min(var(--max), 100%);
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .amenity-card {
      display: grid;
      justify-items: center;
      text-align: center;
      padding: 24px;
    }

    .icon {
      width: 72px;
      height: 72px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      margin: 0 auto 22px;
      background: linear-gradient(135deg, #ffe0ea, #f1edff);
      box-shadow: 0 18px 30px rgba(184, 77, 115, 0.18);
    }

    .icon i {
      font-size: 34px;
      font-weight: 900;
      color: var(--rose-dark);
    }

    .icon .custom-icon {
      width: 34px;
      height: 34px;
      stroke: currentColor;
      stroke-width: 3;
      stroke-linecap: round;
      stroke-linejoin: round;
      display: block;
      color: var(--rose-dark);
    }

    .washing-icon {
      width: 36px;
      height: 36px;
      stroke-width: 3.2;
      transform: scale(1.15);
    }

    .washing-icon rect,
    .washing-icon circle {
      stroke-width: 3.2;
    }

    .amenity-card:hover .icon {
      transform: scale(1.08);
      transition: 0.2s ease;
    }

    .amenity-card p,
    .why-card p,
    .testimonial-card p,
    .contact-card p {
      margin-bottom: 0;
    }

    .why-layout {
      width: min(var(--max), 100%);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      gap: clamp(36px, 6vw, 72px);
      align-items: center;
    }

    .why-layout .section-heading {
      margin: 0;
    }

    .text-link {
      display: inline-flex;
      margin-top: 20px;
      color: var(--rose-dark);
      font-weight: 900;
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .why-card {
      min-height: 190px;
      padding: 24px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 242, 245, 0.72));
    }

    .gallery-section {
      background: #fff7fb;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      width: min(var(--max), 100%);
      margin: 0 auto;
    }

    .gallery-item {
      border-radius: 20px;
      overflow: hidden;
      cursor: pointer;
      background: #fff;
      position: relative;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 20px;
      transition: transform 0.3s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.04);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .gallery-item {
      aspect-ratio: 1 / 1;
    }

    .gallery-item:nth-child(2) {
      grid-column: 2;
      grid-row: 1;
    }

    .gallery-item:nth-child(3) {
      grid-column: 3;
      grid-row: 1;
    }

    .gallery-item:nth-child(4) {
      grid-column: 1;
      grid-row: 3;
    }

    .gallery-item:nth-child(5) {
      grid-column: 2;
      grid-row: 3;
    }

    .gallery-item:nth-child(6) {
      grid-column: 3;
      grid-row: 3;
    }

    @media (max-width: 768px) {
      .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
      }

      .gallery-item {
        grid-column: auto !important;
        grid-row: auto !important;
        min-height: 200px;
      }

      .call-btn{
        right: 20px!important;
      }
    }

    .location-layout {
      width: min(var(--max), 100%);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
      gap: 20px;
    }

    .map-frame {
      min-height: 520px;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 8px;
      box-shadow: var(--shadow);
      background: var(--white);
    }

    .map-frame iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    .contact-stack {
      display: grid;
      gap: 16px;
    }

    .contact-card {
      padding: 24px;
    }

    .contact-card span {
      display: inline-block;
      margin-bottom: 12px;
      color: var(--rose-dark);
      font-weight: 900;
      text-transform: uppercase;
      font-size: 0.76rem;
    }

    .contact-card h3+h3 {
      margin-top: 8px;
    }

    .testimonial-section {
      background: linear-gradient(135deg, rgba(241, 237, 255, 0.9), rgba(255, 242, 245, 0.92)), var(--white);
    }

    /* Heading */
    #testimonials .testimonial-title {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    #testimonials .testimonial-title h2 {
      margin: 0;
      max-width: 600px;
    }

    #testimonials .google-logo {
      width: 80px;
      height: 100px;
      flex-shrink: 0;
    }

    /* Slider */
    .testimonial-slider {
      width: min(var(--max), 100%);
      margin: 0 auto;
      overflow: hidden;
    }

    .testimonial-grid {
      display: flex;
      gap: 18px;
    }

    /* Card */
    .testimonial-card {
      flex: 0 0 calc(33.333% - 12px);
      max-width: calc(33.333% - 12px);
      padding: 26px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      background: #ffffff;
    }

    /* Content */
    .testimonial-quote {
      font-size: 2.4rem;
      line-height: 1;
      color: var(--rose);
      opacity: 0.45;
      margin: 0;
      font-family: Georgia, serif;
    }

    .testimonial-text {
      flex: 1;
      font-size: 0.97rem;
      font-style: italic;
      color: var(--muted);
      margin: 0;
      line-height: 1.75;
    }

    .testimonial-footer {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 4px;
      padding-top: 16px;
      border-top: 1px solid var(--line);
    }

    .testimonial-avatar {
      width: 44px;
      height: 44px;
      flex-shrink: 0;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--white);
      font-size: 1.1rem;
      font-weight: 800;
      background: linear-gradient(135deg, var(--rose), #9b76d9);
    }

    .testimonial-meta {
      flex: 1;
    }

    .testimonial-meta strong {
      display: block;
      font-size: 0.94rem;
      font-weight: 800;
      color: var(--ink);
    }

    .stars {
      display: flex;
      align-items: center;
      gap: 2px;
      color: #f59e0b;
      font-size: 0.88rem;
    }

    .stars svg {
      width: 15px;
      height: 15px;
      fill: currentColor;
    }

    /* Mobile */
    @media (max-width: 768px) {

      #testimonials .testimonial-title {
        display: flex;
        /* 🔥 முக்கியம் */
        align-items: center;
        gap: 10px;
      }

      #testimonials .google-logo {
        width: 50px;
        /* mobile size */
        height: auto;
      }

      #testimonials .testimonial-title h2 {
        font-size: 1.6rem;
        /* text shrink */
        line-height: 1.2;
      }

      .testimonial-card {
        flex: 0 0 100%;
        max-width: 100%;
      }

      .testimonial-slider {
        padding: 0 10px;
      }
    }

    /* Hide scrollbar */
    .testimonial-grid::-webkit-scrollbar {
      display: none;
    }

    #testimonials .google-logo {
      width: 60px;
      /* 🔥 main size control */
      height: auto;
    }

    /* Desktop - slightly bigger */
    @media (min-width: 769px) {
      #testimonials .google-logo {
        width: 150px;
        height: 125px;
      }
    }

    /* Mobile - compact */
    @media (max-width: 768px) {
      #testimonials .google-logo {
        width: 75px;
        height: 71px;
      }
    }

    .faq-list {
      width: 80%;
      margin: 0 auto;
      display: grid;
      gap: 12px;
    }

    .faq-list details {
      overflow: hidden;
      padding: 0;
    }

    .faq-list summary {
      cursor: pointer;
      list-style: none;
      padding: 22px 24px;
      font-size: 1.05rem;
      font-weight: 900;
    }

    .faq-list summary::-webkit-details-marker {
      display: none;
    }

    .faq-list summary::after {
      content: "+";
      float: right;
      color: var(--rose-dark);
    }

    .faq-list details[open] summary::after {
      content: "-";
    }

    .faq-list details p {
      margin: 0;
      padding: 0 24px 22px;
    }

    @media (min-width: 768px) {
      .faq-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        align-items: start;
      }
    }

    .cta-section {
      width: min(var(--max), calc(100% - 40px));
      margin: 24px auto clamp(72px, 9vw, 124px);
      padding: clamp(52px, 7vw, 86px);
      border-radius: 8px;
      color: var(--white);
      background:
        linear-gradient(135deg, rgba(37, 33, 42, 0.92), rgba(184, 77, 115, 0.78)),
        url("hostel-corridor.jpeg") center/cover;
      box-shadow: var(--shadow);
    }

    .cta-section h2 {
      color: var(--white);
    }

    .cta-section p:not(.eyebrow) {
      max-width: 560px;
      color: rgba(255, 255, 255, 0.82);
    }

    .site-footer {
      padding: 72px clamp(20px, 5vw, 72px) 34px;
      color: #f9eef3;
      background:
        linear-gradient(180deg, rgba(48, 28, 56, 0.98), rgba(38, 22, 45, 1)),
        #27162e;
    }

    .footer-top {
      width: min(var(--max), 100%);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.35fr 0.72fr 0.9fr 1.1fr;
      gap: clamp(28px, 5vw, 68px);
    }

    .footer-brand {
      color: var(--white);
    }

    .footer-brand small {
      color: rgba(255, 255, 255, 0.66);
    }

    .footer-description {
      max-width: 360px;
      margin: 20px 0 0;
      color: rgba(255, 255, 255, 0.68);
      font-size: 1rem;
    }

    .footer-heading {
      margin: 6px 0 18px;
      color: var(--white);
      font-size: 1rem;
      font-weight: 900;
      text-transform: uppercase;
    }

    .footer-links,
    .footer-contact {
      display: grid;
      gap: 12px;
      align-content: start;
    }

    .footer-map {
      width: 100%;
      height: 300px;
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-map iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    .footer-top {
      grid-template-columns: 1.2fr 0.8fr 0.9fr 1.3fr;
    }

    @media (max-width: 768px) {
      .footer-map {
        height: 180px;
      }
    }

    .footer-links a,
    .footer-contact a,
    .footer-contact span {
      color: rgba(255, 255, 255, 0.68);
      font-weight: 500;
      line-height: 1.55;
      transition: color 180ms ease, transform 180ms ease;
    }

    .footer-links a:hover,
    .footer-contact a:hover {
      color: #ffc2d9;
      transform: translateX(3px);
    }

    .contact-line {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .contact-icon {
      width: 18px;
      min-width: 18px;
      flex-shrink: 0;
      margin-top: 4px;
      color: #f2a6bf;
    }

    .contact-line span,
    .contact-line a {
      flex: 1;
      min-width: 0;
      display: block;
      margin: 0;
      padding: 0;
      line-height: 1.6;
    }

    /* Default → mobile (hide breaks) */
    .desktop-br {
      display: none;
    }

    /* Desktop → show breaks */
    @media (min-width: 992px) {
      .desktop-br {
        display: inline;
      }
    }

    /* Desktop - hide line breaks */
    .mobile-br {
      display: none;
    }

    /* Mobile - show line breaks */
    @media (max-width: 991px) {
      .mobile-br {
        display: inline;
      }
    }

    .footer-legal {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.footer-bottom {
  width: min(var(--max), 100%);
  margin: 58px auto 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  text-align: center;
}

    .footer-bottom p {
      margin: 0;
      color: rgba(255, 255, 255, 0.54);
    }

    .footer-bottom strong {
      color: #ffc2d9;
    }

    .footer-legal {
      display: flex;
      gap: 28px;
    }

    .footer-legal a {
      color: rgba(255, 255, 255, 0.54);
    }

    .social-links {
      display: flex;
      gap: 8px;
      margin-top: 12px;
    }

    .social-links a {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 50%;
      color: #f2a6bf;
      transition: background 180ms ease, color 180ms ease;
    }

    .social-links a:hover {
      background: rgba(255, 255, 255, 0.14);
      color: #ffc2d9;
    }

    .social-links i {
      font-size: 18px;
    }

    /* ── WhatsApp Enquiry Popup ── */
    .enquiry-overlay {
      position: fixed;
      inset: 0;
      z-index: 999;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 100px 22px 100px;
      pointer-events: none;
      background: rgba(0, 0, 0, 0.4);
    }

    .enquiry-overlay.is-open {
      display: flex;
      pointer-events: auto;
    }

    .enquiry-popup {
      width: min(360px, 100%);
      border-radius: 16px;
      background: var(--white);
      box-shadow: 0 32px 80px rgba(37, 33, 42, 0.22);
      overflow: hidden;
      transform: scale(0.9);
      opacity: 0;
      transition: transform 240ms ease, opacity 240ms ease;
    }

    .enquiry-overlay.is-open .enquiry-popup {
      transform: scale(1);
      opacity: 1;
    }

    .enquiry-popup-header {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 18px 20px;
      background: linear-gradient(135deg, #25d366, #128c7e);
      color: var(--white);
    }

    .enquiry-popup-header svg {
      width: 26px;
      height: 26px;
      fill: currentColor;
      flex-shrink: 0;
    }

    .enquiry-popup-header strong {
      font-size: 1rem;
      font-weight: 800;
    }

    .enquiry-popup-header small {
      display: block;
      font-size: 0.76rem;
      opacity: 0.85;
    }

    .enquiry-popup-close {
      margin-left: auto;
      width: 30px;
      height: 30px;
      border: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.22);
      color: var(--white);
      font-size: 1.2rem;
      cursor: pointer;
      display: grid;
      place-items: center;
      line-height: 1;
    }

    .enquiry-form {
      padding: 20px;
      display: grid;
      gap: 14px;
    }

    .enquiry-field {
      display: grid;
      gap: 6px;
    }

    .enquiry-field label {
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--ink);
    }

    .enquiry-field input,
    .enquiry-field textarea {
      width: 100%;
      padding: 10px 14px;
      border: 1.5px solid rgba(37, 33, 42, 0.15);
      border-radius: 8px;
      font: inherit;
      font-size: 0.93rem;
      color: var(--ink);
      background: var(--paper);
      transition: border-color 180ms ease;
      resize: none;
    }

    .enquiry-field input:focus,
    .enquiry-field textarea:focus {
      outline: none;
      border-color: var(--rose);
    }

    .enquiry-submit {
      width: 100%;
      padding: 12px 18px;
      border: 0;
      border-radius: 8px;
      color: var(--white);
      background: linear-gradient(135deg, #25d366, #128c7e);
      font: inherit;
      font-weight: 800;
      font-size: 0.95rem;
      cursor: pointer;
      transition: opacity 180ms ease, transform 180ms ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .enquiry-submit i {
      font-size: 20px;
    }

    .enquiry-submit:hover {
      opacity: 0.9;
      transform: translateY(-1px);
    }

    /* ── Floating Enquiry Button ── */
    .floating-enquiry {
      position: fixed;
      right: 27px;
      bottom: 24px;
      z-index: 40;
      width: 56px;
      height: 56px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      border: none;
      color: var(--white);
      background: linear-gradient(135deg, #25d366, #128c7e);
      box-shadow: 0 18px 36px rgba(37, 101, 86, 0.24);
      cursor: pointer;
      transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .floating-enquiry:hover {
      transform: scale(1.08) translateY(-4px);
      box-shadow: 0 22px 48px rgba(37, 101, 86, 0.32);
    }

    .floating-enquiry svg {
      width: 28px;
      height: 28px;
      fill: currentColor;
    }

    .floating-top {
      position: fixed;
      right: 27px;
      bottom: 112px;
      z-index: 40;
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: var(--ink);
      background: rgba(255, 255, 255, 0.92);
      box-shadow: 0 18px 36px rgba(37, 33, 42, 0.16);
      border: 1px solid var(--line);
      transition: transform 180ms ease;
    }

    .floating-top:hover {
      transform: translateY(-4px);
    }

    .floating-top svg {
      width: 20px;
      height: 20px;
      stroke: currentColor;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
    }

    /* ── Vertical Enquiry Button ── */
    .vertical-enquiry-btn {
      position: fixed;
      right: -10px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 45;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 150px;
      background: linear-gradient(135deg, #e76f96, #c95589);
      color: var(--white);
      border: none;
      cursor: pointer;
      font-weight: 800;
      font-size: 1rem;
      letter-spacing: 0.5px;
      box-shadow: -3px 8px 24px rgba(231, 111, 150, 0.3);
      transition: all 220ms ease;
      border-radius: 6px 0 0 6px;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      padding: 12px 6px;
      overflow: hidden;
      white-space: nowrap;
    }

    .vertical-enquiry-btn:hover {
      transform: translateY(-50%) translateX(-4px);
      box-shadow: -5px 12px 32px rgba(231, 111, 150, 0.4);
    }

    .vertical-enquiry-btn:active {
      transform: translateY(-50%) translateX(-2px);
    }

    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 80;
      display: none;
      place-items: center;
      padding: 28px;
      background: rgba(22, 17, 23, 0.9);
      backdrop-filter: blur(10px);
    }

    .lightbox.is-open {
      display: grid;
    }

    .lightbox-stage {
      position: relative;
      width: min(1260px, 100%);
      min-height: min(82vh, 860px);
      display: grid;
      place-items: center;
      padding: 52px 78px;
    }

    .lightbox img {
      width: min(100%, 1120px);
      max-height: 74vh;
      object-fit: contain;
      border-radius: 8px;
      box-shadow: var(--shadow);
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .lightbox-close {
      position: absolute;
      top: 10px;
      right: 10px;

      background: none !important;
      border: none !important;
      outline: none !important;
      box-shadow: none !important;

      padding: 0;
      margin: 0;

      width: auto;
      height: auto;

      font-size: 28px;
      color: #fff;
      cursor: pointer;

      display: inline-block;
    }

    .lightbox-nav {
      position: absolute;
      top: 50%;
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 50%;
      color: var(--white);
      background: rgba(255, 255, 255, 0.12);
      transform: translateY(-50%);
      cursor: pointer;
    }

    .lightbox-nav.prev {
      left: 10px;
    }

    .lightbox-nav.next {
      right: 10px;
    }

    .lightbox-nav svg {
      width: 22px;
      height: 22px;
      stroke: currentColor;
      stroke-width: 2.4;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
    }

    .section-reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 650ms ease, transform 650ms ease;
    }

    .section-reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── Mobile Responsive ── */
    @media (max-width: 980px) {
      .menu-toggle {
        display: flex;
      }

      .nav-links {
        position: fixed;
        top: 110px;
        right: 0;
        left: 0;
        display: grid;
        gap: 4px;
        padding: 14px 16px;
        background: #ffffff;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 200ms ease, transform 200ms ease;
        flex-direction: column;
        justify-content: flex-start;
        max-height: calc(100vh - 110px);
        overflow-y: auto;
      }

      .nav-links.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }

      .nav-links a {
        padding: 11px 14px;
        font-size: 0.95rem;
      }

      .nav-links .nav-cta {
        margin-left: 0;
        margin-top: 4px;
        text-align: center;
        border-radius: 8px;
      }

      .room-grid,
      .amenity-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .why-layout,
      .location-layout {
        grid-template-columns: 1fr;
      }

      .map-frame {
        min-height: 420px;
      }

      .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
      }

      .gallery-item {
        grid-column: auto !important;
        grid-row: auto !important;
        min-height: 200px;
      }

      .site-footer {
        padding-top: 60px;
      }

      .footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
      }

    }

    @media (max-width: 640px) {
      .site-header {
        padding-inline: 14px;
      }

      .brand-logo {
        max-height: 50px;
        width: 150px;
      }

      .hero {
        min-height: 88vh;
        padding: 108px 20px 64px;
        background-position: 58% center;
      }

      h1 {
        max-width: 12ch;
      }

      .hero-actions,
      .trust-badges {
        align-items: stretch;
        flex-direction: column;
      }

      .button {
        width: 100%;
      }

      .scroll-cue {
        display: none;
      }

      .section {
        padding-inline: 18px;
      }

      .room-grid,
      .why-grid,
      .footer-top {
        grid-template-columns: 1fr;
      }

      .amenity-grid {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        margin-top: 42px;
      }

      .footer-legal {
        flex-wrap: wrap;
        gap: 14px 24px;
      }

      .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
      }

      .gallery-item {
        grid-column: auto !important;
        grid-row: auto !important;
        min-height: 200px;
      }

      .location-layout {
        gap: 16px;
      }

      .map-frame {
        min-height: 360px;
      }

      .cta-section {
        width: calc(100% - 32px);
        padding: 36px 22px;
      }

      .lightbox {
        padding: 16px;
      }

      .lightbox-stage {
        min-height: auto;
        padding: 46px 14px 20px;
      }

      .lightbox img {
        max-height: 70vh;
      }

      .lightbox-nav {
        width: 46px;
        height: 46px;
      }

      .lightbox-nav.prev {
        left: 0;
      }

      .lightbox-nav.next {
        right: 0;
      }

      .floating-enquiry {
        right: 16px;
        bottom: 20px;
        width: 60px;
        height: 60px;
      }

      .floating-enquiry svg {
        width: 30px;
        height: 30px;
      }

      .floating-top {
        right: 14px;
        bottom: 100px;
        width: 40px;
        height: 40px;
      }

      .enquiry-overlay {
        padding: 80px 12px 80px;
        align-items: flex-end;
        justify-content: center;
      }

      .enquiry-popup {
        width: 100%;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      :root {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation-duration: 1ms !important;
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
      }
    }
  .footer-left-links {
  margin-top: 16px;
}

.footer-left-links a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-left-links a:hover {
  color: #ffc2d9;
  transform: translateX(4px);
}
  
    .call-btn {
  position: fixed;
  right: 30px;
  bottom: 90px;
  width: 55px;
  height: 55px;
  background: #ea4335;
  color: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  z-index: 100;
  text-decoration: none;
}
.call-btn:hover {
      transform: scale(1.08) translateY(-4px);
      box-shadow: 0 22px 48px rgba(37, 101, 86, 0.32);
    }
