:root {
  --bg: #fafbfc;
  --bg-elevated: #ffffff;
  --surface: rgba(255, 255, 255, 0.98);
  --surface-solid: #ffffff;
  --surface-strong: #f8f9fa;
  --text: #1a1a1a;
  --muted: #6c757d;
  --primary: #ff5722; 
  --primary-soft: #ff7043;
  --accent: #ff5722;
  --accent-strong: #e64a19;
  --accent-soft: rgba(255, 87, 34, 0.08);
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.04);
  --radius-xl: 24px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  overflow-x: clip;
  background:
    radial-gradient(ellipse at top right, rgba(255, 87, 34, 0.05), transparent 40%),
    radial-gradient(ellipse at bottom left, rgba(255, 87, 34, 0.03), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

.site-header,
.hero,
section,
.location-section,
.gallery-shell,
.overview-card,
.infrastructure-grid,
.plan-grid,
.location-grid {
  overflow-x: clip;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 24px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: (20px);
  -webkit-backdrop-filter: blur(50px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 76px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  height: 65px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.brand-mark img {
  height: 65px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.brand-title,
.brand-subtitle {
  display: block;
}

.brand-title {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand-subtitle {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-panel {
  display: contents;
}

.site-nav {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-lg);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--primary-soft);
  font-size: 0.96rem;
  font-weight: 500;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--surface-strong);
  color: var(--primary);
  transform: translateX(2px);
}

.nav-cta {
  display: none;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
  padding: 0;
  box-shadow: var(--shadow-sm);
}

.menu-toggle span {
  grid-area: 1 / 1;
  display: block;
  width: 18px;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 20px);
  margin-top: -20px;
  background:
    url("images/ramky1.png")
      center/cover no-repeat;
}

@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
    margin-top: -10px;
    background-size: cover;
    background-position: center center;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 50vh;
    margin-top: 0;
    background-size: cover;
    background-position: center center;
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(241, 238, 238, 0), rgba(0, 0, 0, 0.1));
  z-index: -1;
}

.hero-inner {
  width: min(var(--container), calc(100% - 24px));
  margin: 0 auto;
  padding: 10px 0 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  min-height: calc(100vh - 40px);
}

@media (max-width: 768px) {
  .hero-inner {
    min-height: 60vh;
    padding: 8px 0 20px;
    gap: 18px;
  }
}

@media (max-width: 480px) {
  .hero-inner {
    min-height: 50vh;
    padding: 5px 0 16px;
    gap: 14px;
  }
}

.hero-card {
  width: 100%;
  max-width: 760px;
  padding: 34px;
  border-radius: var(--radius-xl);
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .hero-card {
    padding: 20px 16px;
    margin-top: -20px;
    max-width: 90%;
    background: rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 480px) {
  .hero-card {
    padding: 16px 12px;
    margin-top: -30px;
    max-width: 95%;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(255, 87, 34, 0.2);
}

.hero h1,
.section-heading h2,
.location-card h2,
.location-copy h2,
.site-footer h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.hero h1 {
  margin-top: 0;
  max-width: none;
  font-size: clamp(2.2rem, 8vw, 5.2rem);
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(1.6rem, 5.5vw, 2.4rem);
  }
}

.hero p {
  margin: 12px auto 0;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  line-height: 1.7;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
  .hero p {
    font-size: 0.95rem;
    margin: 10px auto 0;
  }
}

@media (max-width: 480px) {
  .hero p {
    font-size: 0.9rem;
    margin: 8px auto 0;
  }
}

.hero-caption {
  margin-top: 10px;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .hero-caption {
    font-size: 0.8rem;
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .hero-caption {
    font-size: 0.75rem;
    margin-top: 6px;
  }
}

.price-pills {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
}

.price-pill {
  flex: 1;
  min-height: 72px;
  padding: 12px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.price-pill:hover,
.price-pill:focus,
.price-pill:active {
  background: #ff5722;
  border-color: #ff5722;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5, 12, 24, 0.2);
}

/* Mobile-specific active state for touch feedback */
@media (hover: none) and (pointer: coarse) {
  .price-pill:active {
    background: #ff5722;
    border-color: #ff5722;
    transform: scale(0.98);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
  }
  
  /* Add visual feedback for mobile */
  .price-pill {
    -webkit-tap-highlight-color: rgba(255, 87, 34, 0.3);
    user-select: none;
    -webkit-user-select: none;
  }
  
  /* Ensure proper touch target size */
  .price-pill {
    min-height: 72px;
    padding: 14px 12px;
  }
  
  /* Touch feedback class */
  .price-pill.touch-active {
    background: #ff5722 !important;
    border-color: #ff5722 !important;
    transform: scale(0.98) !important;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3) !important;
  }
}

.price-pill strong,
.info-card strong,
.stat-card strong {
  display: block;
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: 1.08rem;
  font-weight: 700;
}

.price-pill strong {
  color: #fff;
}

.price-pill span,
.info-card span,
.stat-card span,
.feature-card p,
.highlight-card p,
.amenity-card p,
.section-body,
.location-copy p,
.gallery-caption,
.footer-note,
.footer-meta {
  color: var(--muted);
  font-weight: 500;
}

.price-pill span {
  color: rgba(255, 255, 255, 0.86);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

@media (max-width: 768px) {
  .btn {
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.88rem;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .btn {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.84rem;
    gap: 5px;
  }
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #ff5722, #ff7043);
  box-shadow: 0 8px 24px rgba(255, 87, 34, 0.25);
  border: 1px solid rgba(255, 87, 34, 0.2);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, #e64a19, #ff5722);
  box-shadow: 0 12px 32px rgba(255, 87, 34, 0.35);
  transform: translateY(-2px);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.6);
}

.quick-info {
  position: relative;
  z-index: 2;
  margin-top: -8px;
}

.quick-info-grid,
.highlights-grid,
.amenities-grid,
.plan-grid {
  display: grid;
  gap: 16px;
}

.info-card,
.feature-card,
.highlight-card,
.amenity-card,
.gallery-slide,
.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(30px);
}

.info-card,
.highlight-card,
.amenity-card,
.plan-card,
.gallery-slide {
  border-radius: 24px;
}

.info-card {
  padding: 22px 20px;
  min-width: 0;
}

.card-icon,
.highlight-icon,
.amenity-icon,
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f4e7d7, #ede3d8);
  color: var(--primary);
  margin-bottom: 18px;
}

.card-icon svg,
.highlight-icon svg,
.amenity-icon svg,
.feature-icon svg,
.floating-call svg,
.floating-chat svg,
.floating-brochure svg {
  width: 21px;
  height: 21px;
}

section {
  padding: 76px 0 0;
  scroll-margin-top: 92px;
}

@media (max-width: 768px) {
  section {
    padding: 60px 0 0;
    scroll-margin-top: 80px;
  }
}

@media (max-width: 480px) {
  section {
    padding: 48px 0 0;
    scroll-margin-top: 70px;
  }
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 18px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2rem, 6vw, 3.6rem);
  color: var(--text);
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.decorative-divider {
  width: 132px;
  height: 18px;
  margin: 16px auto 0;
  position: relative;
}

.decorative-divider::before,
.decorative-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 16px);
  height: 1px;
  background: rgba(180, 138, 90, 0.5);
}

.decorative-divider::before {
  left: 0;
}

.decorative-divider::after {
  right: 0;
}

.decorative-divider span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--accent);
}

.section-body {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.8;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 500;
}

.overview-card {
  display: grid;
  gap: 22px;
  margin-top: 36px;
  align-items: stretch;
}

.overview-copy,
.location-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(19, 34, 56, 0.08);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(25px);
}

.overview-image img,
.infrastructure-image img,
.plan-card img {
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.stats-grid {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.stat-card {
  padding: 18px;
  border-radius: 18px;
  background: var(--surface-strong);
  border: 1px solid rgba(19, 34, 56, 0.06);
}

.infrastructure-grid,
.location-grid {
  display: grid;
  gap: 22px;
  align-items: center;
}

.infrastructure-grid {
  margin-top: 36px;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 22px;
}

.feature-card > div,
.highlight-card,
.amenity-card,
.plan-content,
.address-item,
.location-card,
.location-copy,
.footer-group {
  min-width: 0;
}

.feature-card h3,
.highlight-card h3,
.amenity-card h3,
.plan-card h3 {
  margin: 0;
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.feature-card p,
.highlight-card p,
.amenity-card p,
.plan-card p,
.location-copy p,
.location-card p {
  margin: 10px 0 0;
  line-height: 1.75;
  font-weight: 500;
}

.highlights-grid,
.amenities-grid,
.plan-grid {
  margin-top: 28px;
}

.highlight-card,
.amenity-card {
  padding: 24px 20px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.amenity-icon {
  overflow: hidden;
  padding: 0;
}

.amenity-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight-card:hover,
.highlight-card:focus-within,
.amenity-card:hover,
.amenity-card:focus-within,
.plan-card:hover,
.gallery-slide:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.gallery-shell {
  position: relative;
  margin-top: 30px;
}

.gallery-track {
  display: grid;
  gap: 24px;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-track {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.gallery-slide {
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  border-radius: 24px;
}

.gallery-slide img {
  aspect-ratio: 16 / 11;
  min-height: 240px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-slide:hover img {
  transform: scale(1.03);
}

.gallery-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.95);
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.4), rgba(17, 24, 39, 0.8));
  backdrop-filter: blur(15px);
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 50%;
  display: none;
  place-items: center;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transform: translateY(-50%);
}

.gallery-arrow.prev {
  left: 14px;
}

.gallery-arrow.next {
  right: 14px;
}

.plan-scroll {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-bottom: 8px;
}

.plan-scroll::-webkit-scrollbar {
  display: none;
}

.plan-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.plan-card {
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  width: 100%;
  height: 480px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--surface);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .plan-card {
    height: 420px;
  }
}

@media (max-width: 480px) {
  .plan-card {
    height: auto;
    min-height: 380px;
  }
}

.plan-card:hover,
.plan-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 255, 255, 0.3);
}

.plan-image {
  width: 100%;
  height: 280px;
  background: #f8f9fa;
  overflow: hidden;
}

@media (max-width: 768px) {
  .plan-image {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .plan-image {
    height: 200px;
  }
}

.plan-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.plan-content {
  padding: 20px;
  flex: 1;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .plan-content {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .plan-content {
    padding: 14px;
  }
}

.plan-content h3 {
  margin: 0 0 8px 0;
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.plan-content p {
  margin: 8px 0;
  color: var(--text);
  line-height: 1.6;
  font-weight: 500;
}

.plan-content .plan-details {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 16px;
  font-weight: 500;
}

.plan-content .plan-enquiry-btn {
  width: 100%;
  min-height: 44px;
  padding: 0 20px;
  color: #fff;
  background: #ff5722;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.plan-content .plan-enquiry-btn:hover {
  background: #e64a19;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 87, 34, 0.3);
}



.location-section {
  margin-top: 76px;
  padding: 76px 0 24px;
  background:
    radial-gradient(circle at top left, rgba(180, 138, 90, 0.2), transparent 32%),
    linear-gradient(180deg, #18283c 0%, #101a28 100%);
  color: #fff;
}

.location-grid {
  position: relative;
}

.location-copy h2 {
  font-size: clamp(2rem, 5.2vw, 3.4rem);
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  font-weight: 700;
}

.location-copy p,
.location-card p {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 18px;
}

.address-stack {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.address-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.address-item strong {
  display: block;
  margin-bottom: 6px;
}

.location-card {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.12);
}

.location-card iframe {
  width: 100%;
  max-width: 100%;
  height: 220px;
  border: 0;
  border-radius: 20px;
  margin-top: 18px;
}

.footer-note {
  margin-top: 20px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.site-footer {
  margin-top: 40px;
  padding: 28px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-inner {
  display: grid;
  gap: 24px;
}

.footer-brand {
  display: grid;
  gap: 12px;
}

.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.footer-logo img {
  height: 64px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.footer-brand p,
.footer-meta {
  margin: 0;
  line-height: 1.75;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-address h4 {
  margin: 0 0 8px 0;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-address p {
  margin: 4px 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.footer-address strong {
  color: rgba(255, 255, 255, 0.9);
}

.footer-meta {
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.floating-call,
.floating-chat,
.floating-brochure,
.floating-whatsapp {
  position: fixed;
  z-index: 60;
  box-shadow: var(--shadow-md);
}

.floating-call,
.floating-chat {
  bottom: 16px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
}

.floating-call {
  left: 14px;
  background: linear-gradient(135deg, #ff5722, #ff7043);
  box-shadow: 0 8px 24px rgba(255, 87, 34, 0.3);
}

.floating-call:hover,
.floating-call:focus-visible {
  background: linear-gradient(135deg, #e64a19, #ff5722);
  box-shadow: 0 12px 32px rgba(255, 87, 34, 0.4);
  transform: translateY(-2px);
}

.phone-number {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%) scale(0.8);
  background: #1a1a1a;
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 10px;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  pointer-events: auto;
  min-width: 110px;
  text-align: center;
  margin-left: 5px;
}

.phone-number:hover {
  background: #ff5722;
  transform: translateY(-50%) scale(1.05);
}

.phone-number.copied {
  background: #10b981;
  font-size: 0.75rem;
  font-weight: 700;
  transform: translateY(-50%) scale(1.02);
}

.floating-call:hover .phone-number {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.floating-chat {
  right: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  box-shadow: 0 8px 24px rgba(255, 87, 34, 0.25);
}

.floating-chat:hover,
.floating-chat:focus-visible {
  background: linear-gradient(135deg, var(--accent-strong), var(--primary));
  box-shadow: 0 12px 32px rgba(255, 87, 34, 0.35);
  transform: translateY(-2px);
}


.floating-brochure {
  right: 14px;
  bottom: 78px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(19, 34, 56, 0.08);
  font-size: 0.84rem;
  font-weight: 700;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.enquiry-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.enquiry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.enquiry-panel {
  position: relative;
  width: min(440px, calc(100% - 28px));
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(19, 34, 56, 0.12);
  box-shadow: 0 20px 60px rgba(8, 16, 29, 0.35);
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .enquiry-panel {
    width: min(380px, calc(100% - 24px));
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .enquiry-panel {
    width: calc(100% - 20px);
    padding: 18px;
    max-width: 340px;
  }
}

.enquiry-modal.is-open .enquiry-panel {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(19, 34, 56, 0.1);
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.enquiry-logo {
  text-align: center;
  margin-bottom: 16px;
}

.enquiry-logo img {
  width: 120px;
  height: auto;
  max-height: 90px;
  object-fit: contain;
}

.enquiry-panel h2 {
  margin: 0;
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 5vw, 2.2rem);
}

.enquiry-panel p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.enquiry-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.enquiry-form label {
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 600;
}

.enquiry-form input,
.enquiry-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(19, 34, 56, 0.16);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  background: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
}

.enquiry-form input:focus,
.enquiry-form select:focus {
  border-color: rgba(19, 34, 56, 0.42);
  box-shadow: 0 0 0 3px rgba(19, 34, 56, 0.08);
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive Typography Improvements */
@media (max-width: 768px) {
  .section-heading h2 {
    font-size: clamp(1.6rem, 5vw, 2.8rem);
  }
  
  .section-body {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .feature-card h3,
  .highlight-card h3,
  .amenity-card h3,
  .plan-card h3 {
    font-size: 1.1rem;
  }
  
  .feature-card p,
  .highlight-card p,
  .amenity-card p,
  .plan-card p {
    font-size: 0.95rem;
  }
  
  .info-card strong,
  .stat-card strong {
    font-size: 1rem;
  }
  
  .info-card span,
  .stat-card span {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .section-heading h2 {
    font-size: clamp(1.4rem, 4.5vw, 2.4rem);
  }
  
  .section-body {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .feature-card h3,
  .highlight-card h3,
  .amenity-card h3,
  .plan-card h3 {
    font-size: 1rem;
  }
  
  .feature-card p,
  .highlight-card p,
  .amenity-card p,
  .plan-card p {
    font-size: 0.9rem;
  }
  
  .info-card strong,
  .stat-card strong {
    font-size: 0.95rem;
  }
  
  .info-card span,
  .stat-card span {
    font-size: 0.85rem;
  }
}

@media (min-width: 640px) {
  .container,
  .hero-inner {
    width: min(var(--container), calc(100% - 40px));
  }
  
  .cta-row,
  .stats-grid,
  .quick-info-grid,
  .highlights-grid,
  .amenities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-track {
    grid-auto-flow: column;
    grid-auto-columns: minmax(290px, 1fr);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 24px;
  }

  .cta-row {
    justify-content: center;
  }

  .overview-copy,
  .location-card {
    padding: 28px;
  }

  .location-card iframe {
    height: 280px;
  }

  .plan-scroll {
    grid-auto-columns: calc((100% - 16px) / 2);
  }

  .hero-card {
    padding: 30px;
  }

  .price-pill {
    min-height: 96px;
    padding: 18px;
  }

  .btn {
    min-height: 50px;
  }
}

@media (min-width: 900px) {
  .nav-shell {
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    min-height: 84px;
  }

  .nav-panel {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-nav a {
    padding: 10px 14px;
  }

  .nav-cta {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    min-height: calc(100vh - 48px);
    margin-top: -40px;
  }

  .hero-inner {
    padding: 32px 0 48px;
    min-height: calc(100vh - 48px);
    align-items: center;
    justify-content: center;
  }

  .hero-card {
    padding: 38px;
  }

  .quick-info {
    margin-top: -36px;
  }

  .gallery-arrow {
    display: grid;
  }

  section {
    padding-top: 96px;
    scroll-margin-top: 108px;
  }

  .location-section {
    margin-top: 96px;
    padding-top: 96px;
  }
}

@media (min-width: 1120px) {
  .overview-card,
  .location-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .infrastructure-grid {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  }

  .plan-scroll {
    grid-auto-columns: calc((100% - 48px) / 4);
  }

  .quick-info-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .highlights-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .amenities-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gallery-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    overflow-x: visible;
    scroll-snap-type: none;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    align-items: start;
  }
}

@media (min-width: 1400px) {
  .container {
    width: min(1320px, calc(100% - 40px));
  }

  .hero-card {
    max-width: 820px;
    padding: 42px;
  }

  .location-card iframe {
    height: 320px;
  }

  .plan-scroll {
    grid-auto-columns: calc((100% - 32px) / 4);
  }
}

@media (min-width: 1600px) {
  .container {
    width: min(1440px, calc(100% - 40px));
  }

  .hero-card {
    max-width: 880px;
    padding: 46px;
  }

  .location-card iframe {
    height: 360px;
  }
}

@media (max-width: 899px) {
  .brand-subtitle {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
  }
}

@media (max-width: 639px) {
  /* Mobile Optimizations */
  .brand-mark {
    height: 36px;
  }

  .brand-mark img {
    height: 36px;
  }

  .brand-title {
    font-size: 1rem;
  }

  .brand-subtitle {
    max-width: 145px;
    font-size: 0.7rem;
  }

  /* Hero Section Mobile Fixes */
  .hero {
    min-height: calc(100vh - 20px);
    margin-top: -20px;
  }

  .hero-inner {
    padding: 5px 0 20px;
    min-height: calc(100vh - 20px);
  }

  .hero-card {
    padding: 24px 20px;
    border-radius: 20px;
    margin-top: 10px;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 10vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 12px;
  }

  .hero p {
    font-size: 0.9rem;
    margin: 8px auto 0;
    line-height: 1.6;
  }

  .hero-caption {
    font-size: 0.85rem;
    margin-top: 10px;
  }

  /* Price Pills Mobile */
  .price-pills {
    margin: 20px 0 0;
    gap: 10px;
  }

  .price-pill {
    flex-basis: calc(50% - 5px);
    min-height: 80px;
    padding: 12px 10px;
    font-size: 0.9rem;
  }

  .price-pill strong {
    font-size: 0.95rem;
  }

  .price-pill span {
    font-size: 0.8rem;
  }

  /* Buttons Mobile */
  .cta-row {
    margin-top: 16px;
    gap: 10px;
  }

  .btn {
    min-height: 44px;
    padding: 0 16px;
    font-size: 0.85rem;
  }

  /* Section Spacing Mobile */
  section {
    padding: 60px 0 0;
    scroll-margin-top: 80px;
  }

  .section-heading {
    margin-bottom: 16px;
  }

  .section-heading h2 {
    font-size: clamp(1.6rem, 8vw, 2.8rem);
  }

  .section-body {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  /* Cards Mobile */
  .hero-card,
  .overview-copy,
  .location-card {
    padding: 20px;
    border-radius: 20px;
  }

  .feature-card,
  .highlight-card,
  .amenity-card,
  .info-card,
  .plan-content,
  .plan-overlay-content {
    padding: 18px;
  }

  /* Images Mobile */
  .overview-image img,
  .infrastructure-image img,
  .plan-card img,
  .gallery-slide img {
    min-height: 160px;
  }

  .location-card iframe {
    height: 200px;
  }

  /* Plan Cards Mobile */
  .plan-scroll {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .plan-card {
    height: auto;
    min-height: 420px;
  }

  
  /* Enquiry Modal Mobile */
  .enquiry-panel {
    padding: 20px;
    width: calc(100% - 20px);
  }

  /* Quick Info Mobile */
  .quick-info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .info-card {
    padding: 16px;
  }

  .card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }

  /* Stats Mobile */
  .stats-grid {
    gap: 10px;
  }

  .stat-card {
    padding: 14px;
  }

  /* Amenities Mobile */
  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Highlights Mobile */
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Gallery Mobile */
  .gallery-shell {
    margin-top: 20px;
  }

  .gallery-track {
    gap: 16px;
  }

  /* Footer Mobile */
  .footer-inner {
    gap: 20px;
  }

  .footer-brand h3 {
    font-size: 1.2rem;
  }

  /* Location Mobile */
  .location-section {
    margin-top: 60px;
    padding: 60px 0 20px;
  }

  .location-copy h2 {
    font-size: clamp(1.6rem, 8vw, 2.8rem);
  }

  .address-stack {
    gap: 12px;
    margin-top: 20px;
  }

  .address-item {
    padding: 14px;
  }
}

/* Tablet Optimizations (640px - 1024px) */
@media (min-width: 640px) and (max-width: 1023px) {
  .container,
  .hero-inner {
    width: min(var(--container), calc(100% - 32px));
  }

  /* Hero Tablet */
  .hero {
    min-height: calc(100vh - 30px);
    margin-top: -25px;
  }

  .hero-inner {
    padding: 15px 0 30px;
    min-height: calc(100vh - 30px);
  }

  .hero-card {
    padding: 28px 24px;
    max-width: 680px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 7vw, 4.2rem);
  }

  .hero p {
    font-size: 0.95rem;
  }

  /* Price Pills Tablet */
  .price-pills {
    margin: 24px 0 0;
    gap: 12px;
  }

  .price-pill {
    min-height: 92px;
    padding: 16px;
  }

  /* Buttons Tablet */
  .btn {
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.9rem;
  }

  /* Section Tablet */
  section {
    padding: 70px 0 0;
    scroll-margin-top: 90px;
  }

  .section-heading h2 {
    font-size: clamp(1.8rem, 6vw, 3.2rem);
  }

  .section-body {
    font-size: 0.95rem;
  }

  /* Grids Tablet */
  .quick-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Cards Tablet */
  .info-card {
    padding: 18px;
  }

  .card-icon {
    width: 48px;
    height: 48px;
  }

  /* Gallery Tablet */
  .gallery-shell {
    margin-top: 25px;
  }

  .gallery-track {
    gap: 20px;
  }

  /* Plan Cards Tablet */
  .plan-scroll {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Location Tablet */
  .location-section {
    margin-top: 70px;
    padding: 70px 0 24px;
  }

  .location-card iframe {
    height: 240px;
  }

  /* Floating Buttons Tablet */
  .floating-call,
  .floating-chat,
  .floating-whatsapp {
    width: 56px;
    height: 56px;
  }

  .floating-brochure {
    bottom: 84px;
    padding: 14px 18px;
    font-size: 0.88rem;
  }

  .floating-whatsapp {
    bottom: 84px;
  }
}

/* Large Mobile (480px - 639px) */
@media (min-width: 480px) and (max-width: 639px) {
  .quick-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-pill {
    flex-basis: calc(33.333% - 7px);
  }
}

/* Small Mobile (320px - 479px) */
@media (max-width: 479px) {
  .hero h1 {
    font-size: clamp(1.6rem, 12vw, 2.8rem);
  }

  .price-pill {
    flex-basis: 100%;
    min-height: 70px;
  }

  .cta-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  /* Touch-friendly improvements */
  .price-pill,
  .btn,
  .floating-call,
  .floating-chat,
  .floating-whatsapp {
    min-height: 48px;
    cursor: pointer;
  }

  /* Performance optimizations */
  .hero {
    background-attachment: scroll;
  }

  /* Reduce motion for better performance */
  .hero-card,
  .amenity-card,
  .highlight-card {
    transition: transform 0.2s ease;
  }
}

/* Ultra-wide screens (above 1600px) */
@media (min-width: 1601px) {
  .container {
    width: min(1400px, calc(100% - 60px));
  }

  .hero-card {
    max-width: 920px;
    padding: 52px;
  }

  .hero h1 {
    font-size: clamp(3rem, 4vw, 6rem);
  }

  .section-heading h2 {
    font-size: clamp(2.4rem, 3.5vw, 4.2rem);
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .brand-mark img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Dark mode support preparation */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1a1a1a;
    --bg-elevated: #2d2d2d;
    --surface: rgba(255, 255, 255, 0.05);
    --surface-solid: #2d2d2d;
    --text: #ffffff;
    --muted: #a0a0a0;
    --border: rgba(255, 255, 255, 0.1);
  }
}

@media (min-width: 640px) {
  .floating-chat {
    width: 48px;
    height: 48px;
    bottom: 12px;
  }

  .floating-call {
    left: 12px;
  }

  .floating-chat {
    right: 12px;
  }

  .floating-brochure {
    right: 12px;
    bottom: 70px;
    padding: 10px 14px;
    font-size: 0.8rem;
  }
}

@media (max-width: 639px) {
  .container,
  .hero-inner {
    width: calc(100% - 24px);
  }

  .plan-scroll {
    grid-auto-columns: 100%;
  }

  .plan-gallery-card {
    min-height: 380px;
  }

  
  .hero-card {
    padding: 24px 20px;
  }

  .price-pill {
    min-height: 80px;
    padding: 14px 12px;
  }

  .btn {
    min-height: 44px;
    font-size: 0.9rem;
    padding: 0 18px;
  }

  
  .enquiry-panel {
    width: min(380px, calc(100% - 20px));
    padding: 20px;
  }

  .enquiry-form input,
  .enquiry-form select {
    min-height: 44px;
    font-size: 0.9rem;
  }

  .brand-mark img {
    max-height: 36px;
    width: auto;
  }

  .footer-logo img {
    height: 52px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 20px);
  }

  .hero-card,
  .overview-copy,
  .location-card {
    padding: 18px;
  }

  .hero h1 {
    font-size: clamp(2rem, 7vw, 3.2rem);
  }

  .price-pill {
    flex-basis: 100%;
    max-width: 100%;
    min-height: 80px;
  }

  .btn {
    min-height: 44px;
    font-size: 0.88rem;
  }

  .section-heading h2 {
    font-size: clamp(1.4rem, 4.5vw, 2.4rem);
  }

  .location-card iframe {
    height: 180px;
  }
}
