/*
  Global styles for the site. Keep it small and composable.
  Structure:
  - CSS reset
  - Design tokens (colors, spacing, typography)
  - Base elements
  - Layout helpers
  - Components
*/

/* 1) Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
}

/* 2) Tokens */
:root {
  --color-bg: #ffffff;
  --color-fg: #f4f6f8;
  --color-muted: #9aa4b2;
  --color-primary: #4f46e5;
  --color-accent: #eab308; /* golden accent */
  --radius: 12px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --max-w: 1100px;
}

/* 3) Base */
body {
  background: var(--color-bg);
  color: var(--color-fg);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    sans-serif;
  line-height: 1.6;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 var(--space-4);
}
p {
  margin: 0 0 var(--space-4);
  color: var(--color-muted);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* 4) Layout */
.container {
  width: min(100% - 2rem, var(--max-w));
  margin-inline: auto;
  padding: var(--space-6) 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav .brand {
  font-weight: 700;
  font-size: 1.1rem;
}
.nav .menu {
  list-style: none;
  display: flex;
  gap: var(--space-4);
  margin: 0;
  padding: 0;
}

.hero {
  padding: var(--space-8) 0;
}

/* 5) Hero Header */
.hero-header {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: clip;
  /* Default hero image; override via inline style or page-specific CSS */
  --hero-image: url("/assets/images/mirissa.webp");
}
.hero-header .hero-media {
  position: absolute;
  inset: 0;
  background: var(--hero-image) center/cover no-repeat fixed;
  filter: saturate(1.1);
  transform: translateY(var(--hero-parallax, 0px)) scale(1.02);
  will-change: transform;
}
.hero-header .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(180, 60, 60, 0.25),
    rgba(14, 15, 18, 0.65)
  );
}
.hero-header .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero-header .hero-content .hero-logo,
.hero-header .hero-title .line,
.hero-header .hero-subtitle,
.hero-header .hero-ctas {
  opacity: 0;
  transform: translateY(12px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes kenburns {
  from {
    transform: translateY(var(--hero-parallax, 0px)) scale(1.02);
  }
  to {
    transform: translateY(var(--hero-parallax, 0px)) scale(1.02);
  }
}

/* Hero image animation disabled */
/* .hero-header.is-ready .hero-media {
  animation: kenburns 24s ease-in-out infinite alternate;
} */

.hero-header.is-ready .hero-content .hero-logo {
  animation: fadeUp 0.8s ease-out 0.1s forwards;
}
.hero-header.is-ready .hero-title .line:nth-child(1) {
  animation: fadeUp 0.8s ease-out 0.2s forwards;
}
.hero-header.is-ready .hero-title .line:nth-child(2) {
  animation: fadeUp 0.8s ease-out 0.35s forwards;
}
.hero-header.is-ready .hero-title .line.highlight {
  animation: fadeUp 0.8s ease-out 0.5s forwards;
}
.hero-header.is-ready .hero-subtitle {
  animation: fadeUp 0.8s ease-out 0.7s forwards;
}
.hero-header.is-ready .hero-ctas {
  animation: fadeUp 0.8s ease-out 0.9s forwards;
}
.hero-header .hero-logo {
  height: 96px;
  margin: 0 auto var(--space-6);
}
.hero-header .hero-title {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 0 0 var(--space-4);
}
.hero-header .hero-title .line {
  display: block;
  font-size: clamp(24px, 4vw, 42px);
}
.hero-header .hero-title .line.highlight {
  font-size: clamp(36px, 10vw, 80px);
  font-weight: 600;
}
.hero-header .hero-subtitle {
  color: #fff;
  opacity: 0.9;
  margin-bottom: var(--space-8);
}
.hero-header .hero-ctas {
  display: flex;
  gap: var(--space-6);
  justify-content: center;
  flex-wrap: wrap;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: transform 0.2s ease, filter 0.2s ease, background-color 0.2s ease,
    color 0.2s ease;
}
.cta:hover {
  transform: translateY(-2px) scale(1.05);
}
.cta-discover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}
.cta-discover:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 640px) {
  .hero-header {
    min-height: 100vh;
    min-height: 100svh;
    --hero-image: url("/assets/images/mirissamobile.png");
  }
  .hero-header .hero-logo {
    height: 72px;
  }
}

/* Generic reveal utility (for future sections) */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Why Choose Section */
.why-choose {
  /* padding: var(--space-8) 0; */
  background: #ffffff;
}

.why-choose-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}

.why-choose-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  /* background: linear-gradient(135deg, #f97316, #ea580c); */
  padding: var(--space-6);
  border: 2px solid #ea580c;
  border-radius: var(--radius);
  color: #ea580c;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.2);
}

.feature-number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  min-width: 60px;
  opacity: 0.9;
}

.feature-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 var(--space-2);
  line-height: 1.3;
}

.feature-content p {
  margin: 0;
  opacity: 0.9;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* .why-choose-main {
  padding: var(--space-6) 0;
} */

.why-choose-main h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 var(--space-4);
  color: #1f2937;
}

.why-choose-main p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 0 var(--space-6);
  color: #6b7280;
}

.cta-primary {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: white;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius);
  font-weight: 600;
  text-transform: none;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
  text-decoration: none;
}

@media (max-width: 768px) {
  .why-choose-content {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .why-choose-main {
    order: -1;
    text-align: center;
    padding: 0 0 var(--space-4);
  }

  .feature-card {
    padding: var(--space-4);
  }

  .feature-number {
    font-size: 2rem;
    min-width: 50px;
  }

  .feature-content h3 {
    font-size: 1.1rem;
  }

  .feature-content p {
    font-size: 0.9rem;
  }
}

/* Gallery Grid Section */
.gallery {
  padding: 0;
  background: #ffffff;
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 8px;
  max-width: 100%;
  height: 408px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-medium {
  grid-column: span 1;
  grid-row: span 2;
}

.gallery-center {
  grid-column: 3;
  grid-row: span 2;
}

.gallery-small {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-extra {
  grid-column: 4;
  grid-row: 1;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

/* Gallery slider animations */
.gallery-slide-next {
  transform: translateX(100%);
}

.gallery-slide-in {
  transform: translateX(0);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slide-out {
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 150px);
    height: 608px;
  }

  .gallery-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-medium {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-center {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-small {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-extra {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 120px);
    height: 728px;
  }

  .gallery-large,
  .gallery-medium,
  .gallery-center,
  .gallery-small,
  .gallery-extra {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  text-decoration: none;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

@media (max-width: 640px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

button {
  background: var(--color-primary);
  color: white;
  border: 0;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius);
  cursor: pointer;
}
button:hover {
  filter: brightness(1.1);
}

/* Key Features Section */
.key-features {
  /* padding: var(--space-8) 0; */
  background: #f8fafc;
}

.key-features-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.key-features-header h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}

.feature-detail-card {
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(249, 115, 22, 0.3);
}

.feature-detail-header {
  background: rgba(255, 255, 255, 0.1);
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-detail-header h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

.feature-detail-content {
  padding: var(--space-6);
  color: white;
  height: 250px;
}

.feature-detail-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 var(--space-4);
  color: white;
}

.feature-detail-content p {
  margin: 0 0 var(--space-4);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.feature-detail-content p:last-child {
  margin-bottom: 0;
}

.profit-breakdown {
  display: flex;
  gap: var(--space-6);
  margin-top: var(--space-4);
}

.profit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.profit-percentage {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.profit-label {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design for Key Features */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .feature-detail-card {
    min-height: auto;
  }

  .feature-detail-content {
    height: 300px;
    padding: 10px;
    /* padding: var(--space-5); */
  }

  .profit-breakdown {
    gap: var(--space-4);
    /* flex-direction: column; */
  }

  .profit-item {
    margin-bottom: var(--space-3);
  }

  .profit-percentage {
    font-size: 2rem;
  }
}

/* Owner Benefits Section */
.owner-benefits {
  /* padding: var(--space-8) 0; */
  margin-bottom: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.owner-benefits::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="80" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.owner-benefits-header {
  text-align: center;
  margin-bottom: var(--space-8);
  position: relative;
  z-index: 1;
}

.owner-benefits-header h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: white;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  position: relative;
  z-index: 1;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: var(--space-6);
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin: 0 0 var(--space-3);
  line-height: 1.3;
}

.benefit-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Responsive Design for Owner Benefits */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .benefit-card {
    padding: var(--space-5);
  }
}

/* Project Details Section */
.project-details {
  padding: var(--space-8) 0;
  background: #ffffff;
}

.project-details-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.project-details-header h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.project-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.project-detail-item {
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  border: none;
  border-radius: 20px;
  padding: 20px;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  min-width: 240px;
  flex: 1;
  max-width: 280px;
}

.project-detail-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f97316, #ea580c, #dc2626);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.project-detail-item:hover::before {
  transform: scaleX(1);
}

.project-detail-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.15);
  background: linear-gradient(145deg, #ffffff, #fef7f0);
}

.project-detail-item h3 {
  font-size: 0.75rem;
  font-weight: 700;
  color: #f97316;
  margin: 0 0 var(--space-2);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

.project-detail-item p {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  line-height: 1.3;
}

/* Responsive Design for Project Details */
@media (max-width: 1024px) {
  .project-detail-item {
    min-width: 220px;
    max-width: 300px;
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .project-grid {
    gap: var(--space-3);
  }

  .project-detail-item {
    min-width: 200px;
    max-width: 100%;
    /* padding: var(--space-4) var(--space-5); */
  }

  .project-detail-item h3 {
    font-size: 0.7rem;
  }

  .project-detail-item p {
    font-size: 1.1rem;
  }
}

/* Amenities Section */
.amenities {
  padding: var(--space-8) 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.amenities-header {
  text-align: center;
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.amenities-header h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 var(--space-4);
}

.amenities-header p {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-8);
  max-width: 1200px;
  margin: 0 auto;
}

.amenity-card {
  background: #ffffff;
  border-radius: 20px;
  padding: var(--space-8);
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.amenity-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f97316, #ea580c);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.amenity-card:hover::before {
  transform: scaleX(1);
}

.amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
  border-color: #f97316;
}

.amenity-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-4);
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.amenity-icon svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
}

.amenity-card:hover .amenity-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #ea580c, #dc2626);
}

.amenity-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 var(--space-3);
  line-height: 1.3;
}

.amenity-card p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

/* Responsive Design for Amenities */
@media (max-width: 1024px) {
  .amenities-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-6);
  }

  .amenity-card {
    padding: var(--space-6);
  }
}

@media (max-width: 768px) {
  .amenities {
    padding: var(--space-6) 0;
  }

  .amenities-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-5);
  }

  .amenity-card {
    padding: var(--space-5);
  }

  .amenity-icon {
    width: 48px;
    height: 48px;
  }

  .amenity-icon svg {
    width: 20px;
    height: 20px;
  }

  .amenity-card h3 {
    font-size: 1rem;
  }

  .amenity-card p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .project-grid {
    flex-direction: column;
    align-items: center;
  }

  .project-detail-item {
    min-width: 280px;
    max-width: 320px;
  }
}

/* Contact Form Section */
.contact-form {
  padding: var(--space-8) 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.contact-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.contact-header h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 var(--space-4);
}

.contact-header p {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  padding: var(--space-6);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  flex: 1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group label {
  font-weight: 600;
  color: #374151;
  font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: var(--space-3);
  border: 2px solid #e5e7eb;
  border-radius: var(--radius);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  background: #ffffff;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #6b7280;
  -webkit-tap-highlight-color: transparent;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
  accent-color: #f97316;
  flex-shrink: 0;
  margin-top: 2px;
}

.form-submit-btn {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: white;
  border: none;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.form-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-loading {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.btn-loading::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.form-message {
  padding: var(--space-4);
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
  margin-top: var(--space-4);
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-message.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* Contact Content Layout */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-6);
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
  height: 600px;
}

/* Contact Details Section */
.contact-details {
  position: relative;
  display: flex;
  flex-direction: column;
}

.contact-info-card {
  /* background: white; */
  border-radius: 16px;
  padding: var(--space-5);
  /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); */
  position: relative;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-info-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 var(--space-3);
}

.contact-description {
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: var(--space-4);
  font-size: 0.85rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  padding: var(--space-3);
  background: rgba(249, 115, 22, 0.05);
  border-radius: var(--radius);
  border-left: 4px solid #f97316;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(249, 115, 22, 0.1);
  transform: translateX(5px);
}

.contact-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  color: white;
}

.contact-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 var(--space-1);
}

.contact-text p {
  color: #6b7280;
  margin: 0 0 var(--space-1);
  font-size: 0.8rem;
  line-height: 1.3;
}

.contact-text p:last-child {
  margin-bottom: 0;
}

/* Social Links */
.social-links {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid #e5e7eb;
}

.social-links h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 var(--space-3);
}

.social-icons {
  display: flex;
  gap: var(--space-3);
}

.social-link {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

/* Update form container for two-column layout */
.form-container {
  max-width: none;
  margin: 0;
  height: 500px;
  display: flex;
  flex-direction: column;
}

/* Responsive Design for Contact Form */
@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .contact-details {
    order: 2;
  }

  .form-container {
    order: 1;
  }
}

@media (max-width: 768px) {
  .contact-form {
    padding: var(--space-5) 0;
  }

  .contact-header {
    margin-bottom: var(--space-6);
  }

  .contact-header h2 {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: var(--space-3);
  }

  .contact-header p {
    padding: 0 var(--space-4);
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .contact-content {
    margin: 0 var(--space-3);
    height: auto;
  }

  .contact-info-card {
    padding: var(--space-4);
    border-radius: 12px;
    margin-bottom: var(--space-4);
  }

  .contact-info-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-3);
    text-align: center;
  }

  .contact-description {
    font-size: 0.8rem;
    text-align: center;
    margin-bottom: var(--space-4);
  }

  .contact-item {
    flex-direction: row;
    text-align: left;
    gap: var(--space-3);
    padding: var(--space-3);
    margin-bottom: var(--space-3);
  }

  .contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex-shrink: 0;
  }

  .contact-icon svg {
    width: 16px;
    height: 16px;
  }

  .contact-text h4 {
    font-size: 0.9rem;
    margin-bottom: var(--space-1);
  }

  .contact-text p {
    font-size: 0.75rem;
    line-height: 1.3;
  }

  .social-links {
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    text-align: center;
  }

  .social-links h4 {
    font-size: 0.9rem;
    margin-bottom: var(--space-3);
  }

  .social-icons {
    justify-content: center;
    gap: var(--space-2);
  }

  .social-link {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .social-link svg {
    width: 16px;
    height: 16px;
  }

  .form-container {
    padding: var(--space-4);
    border-radius: 12px;
    height: auto;
  }

  .enquiry-form {
    gap: var(--space-4);
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .form-group {
    gap: var(--space-2);
  }

  .form-group label {
    font-size: 0.85rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: var(--space-3);
    font-size: 16px; /* Prevents zoom on iOS */
    min-height: 44px; /* Better touch target */
    border-radius: 8px;
  }

  .form-group textarea {
    min-height: 100px;
  }

  .checkbox-label {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
  }

  .form-submit-btn {
    padding: var(--space-3) var(--space-5);
    font-size: 0.95rem;
    min-height: 44px;
    margin-top: var(--space-2);
  }
}

@media (max-width: 480px) {
  .contact-form {
    padding: var(--space-4) 0;
  }

  .contact-header {
    margin-bottom: var(--space-5);
  }

  .contact-header h2 {
    font-size: clamp(20px, 7vw, 28px);
    margin-bottom: var(--space-2);
  }

  .contact-header p {
    padding: 0 var(--space-2);
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .contact-content {
    margin: 0 var(--space-2);
  }

  .contact-info-card {
    padding: var(--space-3);
    border-radius: 10px;
    margin-bottom: var(--space-3);
  }

  .contact-info-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-2);
  }

  .contact-description {
    font-size: 0.75rem;
    margin-bottom: var(--space-3);
  }

  .contact-item {
    padding: var(--space-2);
    margin-bottom: var(--space-2);
    gap: var(--space-2);
  }

  .contact-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
  }

  .contact-icon svg {
    width: 14px;
    height: 14px;
  }

  .contact-text h4 {
    font-size: 0.8rem;
    margin-bottom: 2px;
  }

  .contact-text p {
    font-size: 0.7rem;
    line-height: 1.2;
    margin-bottom: 2px;
  }

  .social-links {
    margin-top: var(--space-3);
    padding-top: var(--space-3);
  }

  .social-links h4 {
    font-size: 0.8rem;
    margin-bottom: var(--space-2);
  }

  .social-icons {
    gap: var(--space-1);
  }

  .social-link {
    width: 28px;
    height: 28px;
    border-radius: 6px;
  }

  .social-link svg {
    width: 14px;
    height: 14px;
  }

  .form-container {
    padding: var(--space-3);
    margin: 0 var(--space-1);
    border-radius: 10px;
  }

  .enquiry-form {
    gap: var(--space-3);
  }

  .form-group {
    gap: var(--space-1);
  }

  .form-group label {
    font-size: 0.8rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px;
    font-size: 16px; /* Prevents zoom on iOS */
    min-height: 42px;
    border-radius: 6px;
  }

  .form-group textarea {
    min-height: 80px;
    padding: 12px;
  }

  .checkbox-label {
    font-size: 0.75rem;
    line-height: 1.3;
  }

  .checkbox-label input[type="checkbox"] {
    width: 15px;
    height: 15px;
  }

  .form-submit-btn {
    padding: 12px var(--space-4);
    font-size: 0.9rem;
    min-height: 42px;
    font-weight: 600;
    margin-top: var(--space-2);
  }
}

@media (max-width: 360px) {
  .contact-form {
    padding: var(--space-3) 0;
  }

  .contact-header {
    margin-bottom: var(--space-4);
  }

  .contact-header h2 {
    font-size: clamp(18px, 8vw, 24px);
    margin-bottom: var(--space-2);
  }

  .contact-header p {
    padding: 0 var(--space-2);
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .contact-content {
    margin: 0 var(--space-1);
  }

  .contact-info-card {
    padding: var(--space-2);
    border-radius: 8px;
    margin-bottom: var(--space-3);
  }

  .contact-info-card h3 {
    font-size: 1rem;
    margin-bottom: var(--space-2);
  }

  .contact-description {
    font-size: 0.7rem;
    margin-bottom: var(--space-2);
  }

  .contact-item {
    padding: var(--space-1);
    margin-bottom: var(--space-1);
    gap: var(--space-1);
  }

  .contact-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
  }

  .contact-icon svg {
    width: 12px;
    height: 12px;
  }

  .contact-text h4 {
    font-size: 0.75rem;
    margin-bottom: 1px;
  }

  .contact-text p {
    font-size: 0.65rem;
    line-height: 1.1;
    margin-bottom: 1px;
  }

  .social-links {
    margin-top: var(--space-2);
    padding-top: var(--space-2);
  }

  .social-links h4 {
    font-size: 0.75rem;
    margin-bottom: var(--space-1);
  }

  .social-link {
    width: 24px;
    height: 24px;
    border-radius: 4px;
  }

  .social-link svg {
    width: 12px;
    height: 12px;
  }

  .form-container {
    padding: var(--space-2);
    margin: 0 var(--space-1);
    border-radius: 8px;
  }

  .enquiry-form {
    gap: var(--space-2);
  }

  .form-group {
    gap: 4px;
  }

  .form-group label {
    font-size: 0.75rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px;
    font-size: 16px;
    min-height: 40px;
    border-radius: 4px;
  }

  .form-group textarea {
    min-height: 70px;
  }

  .checkbox-label {
    font-size: 0.7rem;
    line-height: 1.2;
  }

  .checkbox-label input[type="checkbox"] {
    width: 14px;
    height: 14px;
  }

  .form-submit-btn {
    padding: 10px var(--space-3);
    font-size: 0.85rem;
    min-height: 40px;
    margin-top: var(--space-1);
  }
}

footer {
  border-top: 1px solid #22252b;
  margin-top: var(--space-8);
  color: #000000;
}






/*
  Global styles for the site. Keep it small and composable.
  Structure:
  - CSS reset
  - Design tokens (colors, spacing, typography)
  - Base elements
  - Layout helpers
  - Components
*/

/* 1) Reset */
/**,*/
/**::before,*/
/**::after {*/
/*  box-sizing: border-box;*/
/*}*/
/*html,*/
/*body {*/
/*  margin: 0;*/
/*  padding: 0;*/
/*  height: 100%;*/
/*}*/
/*img,*/
/*picture,*/
/*video,*/
/*canvas,*/
/*svg {*/
/*  display: block;*/
/*  max-width: 100%;*/
/*}*/
/*input,*/
/*button,*/
/*textarea,*/
/*select {*/
/*  font: inherit;*/
/*}*/

/* 2) Tokens */
/*:root {*/
/*  --color-bg: #ffffff;*/
/*  --color-fg: #f4f6f8;*/
/*  --color-muted: #9aa4b2;*/
/*  --color-primary: #4f46e5;*/
  --color-accent: #eab308; /* golden accent */
/*  --radius: 12px;*/
/*  --space-1: 4px;*/
/*  --space-2: 8px;*/
/*  --space-3: 12px;*/
/*  --space-4: 16px;*/
/*  --space-6: 24px;*/
/*  --space-8: 32px;*/
/*  --max-w: 1100px;*/
/*}*/

/* 3) Base */
/*body {*/
/*  background: var(--color-bg);*/
/*  color: var(--color-fg);*/
/*  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,*/
/*    sans-serif;*/
/*  line-height: 1.6;*/
/*}*/

/*h1,*/
/*h2,*/
/*h3 {*/
/*  line-height: 1.2;*/
/*  margin: 0 0 var(--space-4);*/
/*}*/
/*p {*/
/*  margin: 0 0 var(--space-4);*/
/*  color: var(--color-muted);*/
/*}*/

/*a {*/
/*  color: var(--color-primary);*/
/*  text-decoration: none;*/
/*}*/
/*a:hover {*/
/*  text-decoration: underline;*/
/*}*/

/* 4) Layout */
/*.container {*/
/*  width: min(100% - 2rem, var(--max-w));*/
/*  margin-inline: auto;*/
/*  padding: var(--space-6) 0;*/
/*}*/

/*.nav {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: space-between;*/
/*}*/
/*.nav .brand {*/
/*  font-weight: 700;*/
/*  font-size: 1.1rem;*/
/*}*/
/*.nav .menu {*/
/*  list-style: none;*/
/*  display: flex;*/
/*  gap: var(--space-4);*/
/*  margin: 0;*/
/*  padding: 0;*/
/*}*/

/*.hero {*/
/*  padding: var(--space-8) 0;*/
/*}*/

/* 5) Hero Header */
/*.hero-header {*/
/*  position: relative;*/
/*  min-height: 100vh;*/
/*  min-height: 100svh;*/
/*  display: grid;*/
/*  align-items: center;*/
/*  overflow: clip;*/
  /* Default hero image; override via inline style or page-specific CSS */
/*  --hero-image: url("/assets/images/mirissa.webp");*/
/*}*/
/*.hero-header .hero-media {*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  background: var(--hero-image) center/cover no-repeat fixed;*/
/*  filter: saturate(1.1);*/
/*  transform: translateY(var(--hero-parallax, 0px)) scale(1.02);*/
/*  will-change: transform;*/
/*}*/
/*.hero-header .hero-overlay {*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  background: linear-gradient(*/
/*    180deg,*/
/*    rgba(180, 60, 60, 0.25),*/
/*    rgba(14, 15, 18, 0.65)*/
/*  );*/
/*}*/
/*.hero-header .hero-content {*/
/*  position: relative;*/
/*  z-index: 2;*/
/*  text-align: center;*/
/*}*/
/*.hero-header .hero-content .hero-logo,*/
/*.hero-header .hero-title .line,*/
/*.hero-header .hero-subtitle,*/
/*.hero-header .hero-ctas {*/
/*  opacity: 0;*/
/*  transform: translateY(12px);*/
/*}*/

/*@keyframes fadeUp {*/
/*  from {*/
/*    opacity: 0;*/
/*    transform: translateY(12px);*/
/*  }*/
/*  to {*/
/*    opacity: 1;*/
/*    transform: translateY(0);*/
/*  }*/
/*}*/
/*@keyframes kenburns {*/
/*  from {*/
/*    transform: translateY(var(--hero-parallax, 0px)) scale(1.02);*/
/*  }*/
/*  to {*/
/*    transform: translateY(var(--hero-parallax, 0px)) scale(1.02);*/
/*  }*/
/*}*/

/* Hero image animation disabled */
/* .hero-header.is-ready .hero-media {
  animation: kenburns 24s ease-in-out infinite alternate;
} */

/*.hero-header.is-ready .hero-content .hero-logo {*/
/*  animation: fadeUp 0.8s ease-out 0.1s forwards;*/
/*}*/
/*.hero-header.is-ready .hero-title .line:nth-child(1) {*/
/*  animation: fadeUp 0.8s ease-out 0.2s forwards;*/
/*}*/
/*.hero-header.is-ready .hero-title .line:nth-child(2) {*/
/*  animation: fadeUp 0.8s ease-out 0.35s forwards;*/
/*}*/
/*.hero-header.is-ready .hero-title .line.highlight {*/
/*  animation: fadeUp 0.8s ease-out 0.5s forwards;*/
/*}*/
/*.hero-header.is-ready .hero-subtitle {*/
/*  animation: fadeUp 0.8s ease-out 0.7s forwards;*/
/*}*/
/*.hero-header.is-ready .hero-ctas {*/
/*  animation: fadeUp 0.8s ease-out 0.9s forwards;*/
/*}*/
/*.hero-header .hero-logo {*/
/*  height: 96px;*/
/*  margin: 0 auto var(--space-6);*/
/*}*/
/*.hero-header .hero-title {*/
/*  font-family: "Georgia", "Times New Roman", serif;*/
/*  font-weight: 500;*/
/*  letter-spacing: 1px;*/
/*  margin: 0 0 var(--space-4);*/
/*}*/
/*.hero-header .hero-title .line {*/
/*  display: block;*/
/*  font-size: clamp(24px, 4vw, 42px);*/
/*}*/
/*.hero-header .hero-title .line.highlight {*/
/*  font-size: clamp(36px, 10vw, 80px);*/
/*  font-weight: 600;*/
/*}*/
/*.hero-header .hero-subtitle {*/
/*  color: #fff;*/
/*  opacity: 0.9;*/
/*  margin-bottom: var(--space-8);*/
/*}*/
/*.hero-header .hero-ctas {*/
/*  display: flex;*/
/*  gap: var(--space-6);*/
/*  justify-content: center;*/
/*  flex-wrap: wrap;*/
/*}*/
/*.cta {*/
/*  display: inline-flex;*/
/*  align-items: center;*/
/*  gap: var(--space-2);*/
/*  padding: var(--space-4) var(--space-6);*/
/*  border-radius: 999px;*/
/*  text-transform: uppercase;*/
/*  font-size: 0.9rem;*/
/*  font-weight: 700;*/
/*  letter-spacing: 0.06em;*/
/*  transition: transform 0.2s ease, filter 0.2s ease, background-color 0.2s ease,*/
/*    color 0.2s ease;*/
/*}*/
/*.cta:hover {*/
/*  transform: translateY(-2px) scale(1.05);*/
/*}*/
/*.cta-discover {*/
/*  background: rgba(255, 255, 255, 0.15);*/
/*  color: #fff;*/
/*  border: 2px solid rgba(255, 255, 255, 0.3);*/
/*  backdrop-filter: blur(10px);*/
/*}*/
/*.cta-discover:hover {*/
/*  background: rgba(255, 255, 255, 0.25);*/
/*  border-color: rgba(255, 255, 255, 0.5);*/
/*}*/

/*@media (max-width: 640px) {*/
/*  .hero-header {*/
/*    min-height: 100vh;*/
/*    min-height: 100svh;*/
/*     --hero-image: url("/assets/images/mirissamobile.png");*/
/*  }*/
/*  .hero-header .hero-logo {*/
/*    height: 72px;*/
/*  }*/
/*}*/

/* Generic reveal utility (for future sections) */
/*.reveal {*/
/*  opacity: 0;*/
/*  transform: translateY(12px);*/
/*  transition: opacity 0.6s ease, transform 0.6s ease;*/
/*}*/
/*.reveal.is-visible {*/
/*  opacity: 1;*/
/*  transform: translateY(0);*/
/*}*/

/* Why Choose Section */
/*.why-choose {*/
  /* padding: var(--space-8) 0; */
/*  background: #ffffff;*/
/*}*/

/*.why-choose-content {*/
/*  display: grid;*/
/*  grid-template-columns: 1fr 1fr;*/
/*  gap: var(--space-8);*/
/*  align-items: start;*/
/*}*/

/*.why-choose-features {*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  gap: var(--space-4);*/
/*}*/

/*.feature-card {*/
/*  display: flex;*/
/*  align-items: flex-start;*/
/*  gap: var(--space-4);*/
  /* background: linear-gradient(135deg, #f97316, #ea580c); */
/*  padding: var(--space-6);*/
/*  border: 2px solid #ea580c;*/
/*  border-radius: var(--radius);*/
/*  color: #ea580c;*/
/*  transition: transform 0.3s ease, box-shadow 0.3s ease;*/
/*}*/

/*.feature-card:hover {*/
/*  transform: translateY(-2px);*/
/*  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.2);*/
/*}*/

/*.feature-number {*/
/*  font-size: 2.5rem;*/
/*  font-weight: 700;*/
/*  line-height: 1;*/
/*  min-width: 60px;*/
/*  opacity: 0.9;*/
/*}*/

/*.feature-content h3 {*/
/*  font-size: 1.25rem;*/
/*  font-weight: 600;*/
/*  margin: 0 0 var(--space-2);*/
/*  line-height: 1.3;*/
/*}*/

/*.feature-content p {*/
/*  margin: 0;*/
/*  opacity: 0.9;*/
/*  line-height: 1.5;*/
/*  font-size: 0.95rem;*/
/*}*/

/* .why-choose-main {
  padding: var(--space-6) 0;
} */

/*.why-choose-main h2 {*/
/*  font-size: clamp(28px, 4vw, 48px);*/
/*  font-weight: 700;*/
/*  line-height: 1.2;*/
/*  margin: 0 0 var(--space-4);*/
/*  color: #1f2937;*/
/*}*/

/*.why-choose-main p {*/
/*  font-size: 1.1rem;*/
/*  line-height: 1.6;*/
/*  margin: 0 0 var(--space-6);*/
/*  color: #6b7280;*/
/*}*/

/*.cta-primary {*/
/*  background: linear-gradient(135deg, #f97316, #ea580c);*/
/*  color: white;*/
/*  padding: var(--space-4) var(--space-6);*/
/*  border-radius: var(--radius);*/
/*  font-weight: 600;*/
/*  text-transform: none;*/
/*  font-size: 1rem;*/
/*  border: none;*/
/*  cursor: pointer;*/
/*  transition: transform 0.2s ease, box-shadow 0.2s ease;*/
/*}*/

/*.cta-primary:hover {*/
/*  transform: translateY(-1px);*/
/*  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);*/
/*  text-decoration: none;*/
/*}*/

/*@media (max-width: 768px) {*/
/*  .why-choose-content {*/
/*    grid-template-columns: 1fr;*/
/*    gap: var(--space-6);*/
/*  }*/

/*  .why-choose-main {*/
/*    order: -1;*/
/*    text-align: center;*/
/*    padding: 0 0 var(--space-4);*/
/*  }*/

/*  .feature-card {*/
/*    padding: var(--space-4);*/
/*  }*/

/*  .feature-number {*/
/*    font-size: 2rem;*/
/*    min-width: 50px;*/
/*  }*/

/*  .feature-content h3 {*/
/*    font-size: 1.1rem;*/
/*  }*/

/*  .feature-content p {*/
/*    font-size: 0.9rem;*/
/*  }*/
/*}*/

/* Gallery Grid Section */
/*.gallery {*/
/*  padding: 0;*/
/*  background: #ffffff;*/
/*  overflow: hidden;*/
/*}*/

/*.gallery-grid {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(4, 1fr);*/
/*  grid-template-rows: repeat(2, 200px);*/
/*  gap: 8px;*/
/*  max-width: 100%;*/
/*  height: 408px;*/
/*}*/

/*.gallery-item {*/
/*  position: relative;*/
/*  overflow: hidden;*/
/*  border-radius: 8px;*/
/*  transition: transform 0.3s ease, box-shadow 0.3s ease;*/
/*}*/

/*.gallery-item:hover {*/
/*  transform: scale(1.02);*/
/*  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);*/
/*  z-index: 2;*/
/*}*/

/*.gallery-large {*/
/*  grid-column: span 2;*/
/*  grid-row: span 2;*/
/*}*/

/*.gallery-medium {*/
/*  grid-column: span 1;*/
/*  grid-row: span 2;*/
/*}*/

/*.gallery-center {*/
/*  grid-column: 3;*/
/*  grid-row: span 2;*/
/*}*/

/*.gallery-small {*/
/*  grid-column: span 1;*/
/*  grid-row: span 1;*/
/*}*/

/*.gallery-extra {*/
/*  grid-column: 4;*/
/*  grid-row: 1;*/
/*}*/

/*.gallery-image {*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  object-fit: cover;*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  transition: transform 0.6s ease;*/
/*}*/

/*.gallery-item:hover .gallery-image {*/
/*  transform: scale(1.05);*/
/*}*/

/* Gallery slider animations */
/*.gallery-slide-next {*/
/*  transform: translateX(100%);*/
/*}*/

/*.gallery-slide-in {*/
/*  transform: translateX(0);*/
/*  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);*/
/*}*/

/*.gallery-slide-out {*/
/*  transform: translateX(-100%);*/
/*  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);*/
/*}*/

/*@media (max-width: 768px) {*/
/*  .gallery-grid {*/
/*    grid-template-columns: repeat(2, 1fr);*/
/*    grid-template-rows: repeat(4, 150px);*/
/*    height: 608px;*/
/*  }*/

/*  .gallery-large {*/
/*    grid-column: span 2;*/
/*    grid-row: span 1;*/
/*  }*/

/*  .gallery-medium {*/
/*    grid-column: span 1;*/
/*    grid-row: span 1;*/
/*  }*/

/*  .gallery-center {*/
/*    grid-column: span 2;*/
/*    grid-row: span 1;*/
/*  }*/

/*  .gallery-small {*/
/*    grid-column: span 1;*/
/*    grid-row: span 1;*/
/*  }*/

/*  .gallery-extra {*/
/*    grid-column: span 1;*/
/*    grid-row: span 1;*/
/*  }*/
/*}*/

/*@media (max-width: 480px) {*/
/*  .gallery-grid {*/
/*    grid-template-columns: 1fr;*/
/*    grid-template-rows: repeat(6, 120px);*/
/*    height: 728px;*/
/*  }*/

/*  .gallery-large,*/
/*  .gallery-medium,*/
/*  .gallery-center,*/
/*  .gallery-small,*/
/*  .gallery-extra {*/
/*    grid-column: span 1;*/
/*    grid-row: span 1;*/
/*  }*/
/*}*/

/* Respect reduced motion */
/*@media (prefers-reduced-motion: reduce) {*/
/*  *,*/
/*  *::before,*/
/*  *::after {*/
/*    animation: none !important;*/
/*    transition: none !important;*/
/*  }*/
/*}*/

/* WhatsApp floating button */
/*.whatsapp-float {*/
/*  position: fixed;*/
/*  bottom: 24px;*/
/*  right: 24px;*/
/*  width: 60px;*/
/*  height: 60px;*/
/*  background: #25d366;*/
/*  border-radius: 50%;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);*/
/*  z-index: 1000;*/
/*  transition: transform 0.3s ease, box-shadow 0.3s ease;*/
/*  text-decoration: none;*/
/*}*/

/*.whatsapp-float:hover {*/
/*  transform: scale(1.1);*/
/*  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);*/
/*  text-decoration: none;*/
/*}*/

/*.whatsapp-float svg {*/
/*  width: 32px;*/
/*  height: 32px;*/
/*  fill: white;*/
/*}*/

/*@media (max-width: 640px) {*/
/*  .whatsapp-float {*/
/*    width: 56px;*/
/*    height: 56px;*/
/*    bottom: 20px;*/
/*    right: 20px;*/
/*  }*/
/*  .whatsapp-float svg {*/
/*    width: 28px;*/
/*    height: 28px;*/
/*  }*/
/*}*/

/*button {*/
/*  background: var(--color-primary);*/
/*  color: white;*/
/*  border: 0;*/
/*  padding: var(--space-3) var(--space-4);*/
/*  border-radius: var(--radius);*/
/*  cursor: pointer;*/
/*}*/
/*button:hover {*/
/*  filter: brightness(1.1);*/
/*}*/

/* Key Features Section */
/*.key-features {*/
  /* padding: var(--space-8) 0; */
/*  background: #f8fafc;*/
/*}*/

/*.key-features-header {*/
/*  text-align: center;*/
/*  margin-bottom: var(--space-8);*/
/*}*/

/*.key-features-header h2 {*/
/*  font-size: clamp(32px, 5vw, 56px);*/
/*  font-weight: 700;*/
/*  color: #1f2937;*/
/*  margin: 0;*/
/*}*/

/*.features-grid {*/
/*  display: grid;*/
/*  grid-template-columns: 1fr 1fr;*/
/*  gap: var(--space-8);*/
/*  align-items: start;*/
/*}*/

/*.feature-detail-card {*/
/*  background: linear-gradient(135deg, #f97316, #ea580c);*/
/*  border-radius: var(--radius);*/
/*  overflow: hidden;*/
/*  transition: transform 0.3s ease, box-shadow 0.3s ease;*/
/*  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
/*}*/

/*.feature-detail-card:hover {*/
/*  transform: translateY(-4px);*/
/*  box-shadow: 0 12px 25px rgba(249, 115, 22, 0.3);*/
/*}*/

/*.feature-detail-header {*/
/*  background: rgba(255, 255, 255, 0.1);*/
/*  padding: var(--space-4) var(--space-6);*/
/*  border-bottom: 1px solid rgba(255, 255, 255, 0.2);*/
/*}*/

/*.feature-detail-header h3 {*/
/*  color: white;*/
/*  font-size: 1.5rem;*/
/*  font-weight: 700;*/
/*  margin: 0;*/
/*  text-align: center;*/
/*}*/

/*.feature-detail-content {*/
/*  padding: var(--space-6);*/
/*  color: white;*/
/*  height: 250px;*/
/*}*/

/*.feature-detail-content h4 {*/
/*  font-size: 1.25rem;*/
/*  font-weight: 600;*/
/*  margin: 0 0 var(--space-4);*/
/*  color: white;*/
/*}*/

/*.feature-detail-content p {*/
/*  margin: 0 0 var(--space-4);*/
/*  line-height: 1.6;*/
/*  color: rgba(255, 255, 255, 0.9);*/
/*}*/

/*.feature-detail-content p:last-child {*/
/*  margin-bottom: 0;*/
/*}*/

/*.profit-breakdown {*/
/*  display: flex;*/
/*  gap: var(--space-6);*/
/*  margin-top: var(--space-4);*/
/*}*/

/*.profit-item {*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  align-items: center;*/
/*  text-align: center;*/
/*  flex: 1;*/
/*}*/

/*.profit-percentage {*/
/*  font-size: 2.5rem;*/
/*  font-weight: 700;*/
/*  color: white;*/
/*  line-height: 1;*/
/*  margin-bottom: var(--space-2);*/
/*}*/

/*.profit-label {*/
/*  font-size: 1.1rem;*/
/*  font-weight: 500;*/
/*  color: rgba(255, 255, 255, 0.9);*/
/*}*/

/* Responsive Design for Key Features */
/*@media (max-width: 768px) {*/
/*  .features-grid {*/
/*    grid-template-columns: 1fr;*/
/*    gap: var(--space-6);*/
/*  }*/

/*  .feature-detail-card {*/
/*    min-height: auto;*/
/*  }*/

/*  .feature-detail-content {*/
/*    height: 300px;*/
/*    padding: 10px;*/
    /* padding: var(--space-5); */
/*  }*/

/*  .profit-breakdown {*/
/*    gap: var(--space-4);*/
    /* flex-direction: column; */
/*  }*/

/*  .profit-item {*/
/*    margin-bottom: var(--space-3);*/
/*  }*/

/*  .profit-percentage {*/
/*    font-size: 2rem;*/
/*  }*/
/*}*/

/* Owner Benefits Section */
/*.owner-benefits {*/
  /* padding: var(--space-8) 0; */
/*  margin-bottom: 20px;*/
/*  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
/*  position: relative;*/
/*  overflow: hidden;*/
/*}*/

/*.owner-benefits::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  right: 0;*/
/*  bottom: 0;*/
/*  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="80" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');*/
/*  opacity: 0.3;*/
/*  pointer-events: none;*/
/*}*/

/*.owner-benefits-header {*/
/*  text-align: center;*/
/*  margin-bottom: var(--space-8);*/
/*  position: relative;*/
/*  z-index: 1;*/
/*}*/

/*.owner-benefits-header h2 {*/
/*  font-size: clamp(32px, 5vw, 56px);*/
/*  font-weight: 700;*/
/*  color: white;*/
/*  margin: 0;*/
/*  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);*/
/*}*/

/*.benefits-grid {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(3, 1fr);*/
/*  gap: var(--space-6);*/
/*  position: relative;*/
/*  z-index: 1;*/
/*}*/

/*.benefit-card {*/
/*  background: rgba(255, 255, 255, 0.15);*/
/*  backdrop-filter: blur(10px);*/
/*  -webkit-backdrop-filter: blur(10px);*/
/*  border: 1px solid rgba(255, 255, 255, 0.2);*/
/*  border-radius: 16px;*/
/*  padding: var(--space-6);*/
/*  transition: all 0.3s ease;*/
/*  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);*/
/*  position: relative;*/
/*  overflow: hidden;*/
/*}*/

/*.benefit-card::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  right: 0;*/
/*  height: 2px;*/
/*  background: linear-gradient(*/
/*    90deg,*/
/*    transparent,*/
/*    rgba(255, 255, 255, 0.4),*/
/*    transparent*/
/*  );*/
/*  opacity: 0;*/
/*  transition: opacity 0.3s ease;*/
/*}*/

/*.benefit-card:hover {*/
/*  transform: translateY(-8px);*/
/*  background: rgba(255, 255, 255, 0.25);*/
/*  border-color: rgba(255, 255, 255, 0.3);*/
/*  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);*/
/*}*/

/*.benefit-card:hover::before {*/
/*  opacity: 1;*/
/*}*/

/*.benefit-card h3 {*/
/*  font-size: 1.25rem;*/
/*  font-weight: 600;*/
/*  color: white;*/
/*  margin: 0 0 var(--space-3);*/
/*  line-height: 1.3;*/
/*}*/

/*.benefit-card p {*/
/*  font-size: 0.95rem;*/
/*  line-height: 1.6;*/
/*  color: rgba(255, 255, 255, 0.9);*/
/*  margin: 0;*/
/*}*/

/* Responsive Design for Owner Benefits */
/*@media (max-width: 1024px) {*/
/*  .benefits-grid {*/
/*    grid-template-columns: repeat(2, 1fr);*/
/*    gap: var(--space-5);*/
/*  }*/
/*}*/

/*@media (max-width: 768px) {*/
/*  .benefits-grid {*/
/*    grid-template-columns: 1fr;*/
/*    gap: var(--space-4);*/
/*  }*/

/*  .benefit-card {*/
/*    padding: var(--space-5);*/
/*  }*/
/*}*/

/* Project Details Section */
/*.project-details {*/
/*  padding: var(--space-8) 0;*/
/*  background: #ffffff;*/
/*}*/

/*.project-details-header {*/
/*  text-align: center;*/
/*  margin-bottom: var(--space-8);*/
/*}*/

/*.project-details-header h2 {*/
/*  font-size: clamp(32px, 5vw, 56px);*/
/*  font-weight: 700;*/
/*  color: #1f2937;*/
/*  margin: 0;*/
/*}*/

/*.project-grid {*/
/*  display: flex;*/
/*  flex-wrap: wrap;*/
/*  gap: var(--space-4);*/
/*  max-width: 1200px;*/
/*  margin: 0 auto;*/
/*  justify-content: center;*/
/*}*/

/*.project-detail-item {*/
/*  background: linear-gradient(145deg, #ffffff, #f8fafc);*/
/*  border: none;*/
/*  border-radius: 20px;*/
/*  padding: 20px;*/
/*  text-align: left;*/
/*  transition: all 0.3s ease;*/
/*  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);*/
/*  position: relative;*/
/*  overflow: hidden;*/
/*  min-width: 240px;*/
/*  flex: 1;*/
/*  max-width: 280px;*/
/*}*/

/*.project-detail-item::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  right: 0;*/
/*  height: 4px;*/
/*  background: linear-gradient(90deg, #f97316, #ea580c, #dc2626);*/
/*  transform: scaleX(0);*/
/*  transform-origin: left;*/
/*  transition: transform 0.3s ease;*/
/*}*/

/*.project-detail-item:hover::before {*/
/*  transform: scaleX(1);*/
/*}*/

/*.project-detail-item:hover {*/
/*  transform: translateY(-6px);*/
/*  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.15);*/
/*  background: linear-gradient(145deg, #ffffff, #fef7f0);*/
/*}*/

/*.project-detail-item h3 {*/
/*  font-size: 0.75rem;*/
/*  font-weight: 700;*/
/*  color: #f97316;*/
/*  margin: 0 0 var(--space-2);*/
/*  text-transform: uppercase;*/
/*  letter-spacing: 1px;*/
/*  line-height: 1.2;*/
/*}*/

/*.project-detail-item p {*/
/*  font-size: 1.25rem;*/
/*  font-weight: 600;*/
/*  color: #1f2937;*/
/*  margin: 0;*/
/*  line-height: 1.3;*/
/*}*/

/* Responsive Design for Project Details */
/*@media (max-width: 1024px) {*/
/*  .project-detail-item {*/
/*    min-width: 220px;*/
/*    max-width: 300px;*/
/*    padding: 10px;*/
/*  }*/
/*}*/

/*@media (max-width: 768px) {*/
/*  .project-grid {*/
/*    gap: var(--space-3);*/
/*  }*/

/*  .project-detail-item {*/
/*    min-width: 200px;*/
/*    max-width: 100%;*/
    /* padding: var(--space-4) var(--space-5); */
/*  }*/

/*  .project-detail-item h3 {*/
/*    font-size: 0.7rem;*/
/*  }*/

/*  .project-detail-item p {*/
/*    font-size: 1.1rem;*/
/*  }*/
/*}*/

/* Amenities Section */
/*.amenities {*/
/*  padding: var(--space-8) 0;*/
/*  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);*/
/*}*/

/*.amenities-header {*/
/*  text-align: center;*/
/*  margin-bottom: var(--space-8);*/
/*  max-width: 600px;*/
/*  margin-left: auto;*/
/*  margin-right: auto;*/
/*}*/

/*.amenities-header h2 {*/
/*  font-size: clamp(32px, 5vw, 48px);*/
/*  font-weight: 700;*/
/*  color: #1f2937;*/
/*  margin: 0 0 var(--space-4);*/
/*}*/

/*.amenities-header p {*/
/*  font-size: 1.125rem;*/
/*  color: #6b7280;*/
/*  line-height: 1.6;*/
/*  margin: 0;*/
/*}*/

/*.amenities-grid {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));*/
/*  gap: var(--space-8);*/
/*  max-width: 1200px;*/
/*  margin: 0 auto;*/
/*}*/

/*.amenity-card {*/
/*  background: #ffffff;*/
/*  border-radius: 20px;*/
/*  padding: var(--space-8);*/
/*  text-align: center;*/
/*  transition: all 0.3s ease;*/
/*  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);*/
/*  position: relative;*/
/*  overflow: hidden;*/
/*  border: 1px solid #e5e7eb;*/
/*}*/

/*.amenity-card::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  right: 0;*/
/*  height: 4px;*/
/*  background: linear-gradient(90deg, #f97316, #ea580c);*/
/*  transform: scaleX(0);*/
/*  transform-origin: center;*/
/*  transition: transform 0.3s ease;*/
/*}*/

/*.amenity-card:hover::before {*/
/*  transform: scaleX(1);*/
/*}*/

/*.amenity-card:hover {*/
/*  transform: translateY(-8px);*/
/*  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);*/
/*  border-color: #f97316;*/
/*}*/

/*.amenity-icon {*/
/*  width: 56px;*/
/*  height: 56px;*/
/*  margin: 0 auto var(--space-4);*/
/*  background: linear-gradient(135deg, #f97316, #ea580c);*/
/*  border-radius: 50%;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  transition: all 0.3s ease;*/
/*}*/

/*.amenity-icon svg {*/
/*  width: 24px;*/
/*  height: 24px;*/
/*  color: #ffffff;*/
/*}*/

/*.amenity-card:hover .amenity-icon {*/
/*  transform: scale(1.1);*/
/*  background: linear-gradient(135deg, #ea580c, #dc2626);*/
/*}*/

/*.amenity-card h3 {*/
/*  font-size: 1.125rem;*/
/*  font-weight: 700;*/
/*  color: #1f2937;*/
/*  margin: 0 0 var(--space-3);*/
/*  line-height: 1.3;*/
/*}*/

/*.amenity-card p {*/
/*  font-size: 0.875rem;*/
/*  color: #6b7280;*/
/*  line-height: 1.5;*/
/*  margin: 0;*/
/*}*/

/* Responsive Design for Amenities */
/*@media (max-width: 1024px) {*/
/*  .amenities-grid {*/
/*    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));*/
/*    gap: var(--space-6);*/
/*  }*/

/*  .amenity-card {*/
/*    padding: var(--space-6);*/
/*  }*/
/*}*/

/*@media (max-width: 768px) {*/
/*  .amenities {*/
/*    padding: var(--space-6) 0;*/
/*  }*/

/*  .amenities-grid {*/
/*    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));*/
/*    gap: var(--space-5);*/
/*  }*/

/*  .amenity-card {*/
/*    padding: var(--space-5);*/
/*  }*/

/*  .amenity-icon {*/
/*    width: 48px;*/
/*    height: 48px;*/
/*  }*/

/*  .amenity-icon svg {*/
/*    width: 20px;*/
/*    height: 20px;*/
/*  }*/

/*  .amenity-card h3 {*/
/*    font-size: 1rem;*/
/*  }*/

/*  .amenity-card p {*/
/*    font-size: 0.8rem;*/
/*  }*/
/*}*/

/*@media (max-width: 480px) {*/
/*  .project-grid {*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*  }*/

/*  .project-detail-item {*/
/*    min-width: 280px;*/
/*    max-width: 320px;*/
/*  }*/
/*}*/

/* Contact Form Section */
/*.contact-form {*/
/*  padding: var(--space-8) 0;*/
/*  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);*/
/*  position: relative;*/
/*}*/

/*.contact-header {*/
/*  text-align: center;*/
/*  margin-bottom: var(--space-8);*/
/*}*/

/*.contact-header h2 {*/
/*  font-size: clamp(32px, 5vw, 56px);*/
/*  font-weight: 700;*/
/*  color: #1f2937;*/
/*  margin: 0 0 var(--space-4);*/
/*}*/

/*.contact-header p {*/
/*  font-size: 1.1rem;*/
/*  color: #6b7280;*/
/*  max-width: 600px;*/
/*  margin: 0 auto;*/
/*  line-height: 1.6;*/
/*}*/

/*.form-container {*/
/*  max-width: 800px;*/
/*  margin: 0 auto;*/
/*  background: white;*/
/*  border-radius: 16px;*/
/*  padding: var(--space-6);*/
/*  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);*/
/*  position: relative;*/
/*}*/

/*.enquiry-form {*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  gap: var(--space-5);*/
/*  flex: 1;*/
/*}*/

/*.form-row {*/
/*  display: grid;*/
/*  grid-template-columns: 1fr 1fr;*/
/*  gap: var(--space-4);*/
/*}*/

/*.form-group {*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  gap: var(--space-2);*/
/*}*/

/*.form-group label {*/
/*  font-weight: 600;*/
/*  color: #374151;*/
/*  font-size: 0.85rem;*/
/*}*/

/*.form-group input,*/
/*.form-group select,*/
/*.form-group textarea {*/
/*  padding: var(--space-3);*/
/*  border: 2px solid #e5e7eb;*/
/*  border-radius: var(--radius);*/
/*  font-size: 0.9rem;*/
/*  transition: all 0.3s ease;*/
/*  background: #ffffff;*/
/*  font-family: inherit;*/
/*}*/

/*.form-group input:focus,*/
/*.form-group select:focus,*/
/*.form-group textarea:focus {*/
/*  outline: none;*/
/*  border-color: #f97316;*/
/*  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);*/
/*}*/

/*.form-group textarea {*/
/*  resize: vertical;*/
/*  min-height: 100px;*/
/*}*/

/*.checkbox-group {*/
/*  flex-direction: row;*/
/*  align-items: flex-start;*/
/*  gap: var(--space-3);*/
/*  margin-top: var(--space-2);*/
/*}*/

/*.checkbox-label {*/
/*  display: flex;*/
/*  align-items: flex-start;*/
/*  gap: var(--space-3);*/
/*  cursor: pointer;*/
/*  font-size: 0.85rem;*/
/*  line-height: 1.5;*/
/*  color: #6b7280;*/
/*  -webkit-tap-highlight-color: transparent;*/
/*}*/

/*.checkbox-label input[type="checkbox"] {*/
/*  width: 20px;*/
/*  height: 20px;*/
/*  margin: 0;*/
/*  cursor: pointer;*/
/*  accent-color: #f97316;*/
/*  flex-shrink: 0;*/
/*  margin-top: 2px;*/
/*}*/

/*.form-submit-btn {*/
/*  background: linear-gradient(135deg, #f97316, #ea580c);*/
/*  color: white;*/
/*  border: none;*/
/*  padding: var(--space-3) var(--space-6);*/
/*  border-radius: var(--radius);*/
/*  font-size: 1rem;*/
/*  font-weight: 600;*/
/*  cursor: pointer;*/
/*  transition: all 0.3s ease;*/
/*  position: relative;*/
/*  overflow: hidden;*/
/*  min-height: 44px;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*}*/

/*.form-submit-btn:hover:not(:disabled) {*/
/*  transform: translateY(-2px);*/
/*  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);*/
/*}*/

/*.form-submit-btn:disabled {*/
/*  opacity: 0.7;*/
/*  cursor: not-allowed;*/
/*  transform: none;*/
/*}*/

/*.btn-loading {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: var(--space-2);*/
/*}*/

/*.btn-loading::after {*/
/*  content: "";*/
/*  width: 16px;*/
/*  height: 16px;*/
/*  border: 2px solid transparent;*/
/*  border-top: 2px solid white;*/
/*  border-radius: 50%;*/
/*  animation: spin 1s linear infinite;*/
/*}*/

/*@keyframes spin {*/
/*  0% {*/
/*    transform: rotate(0deg);*/
/*  }*/
/*  100% {*/
/*    transform: rotate(360deg);*/
/*  }*/
/*}*/

/*.form-message {*/
/*  padding: var(--space-4);*/
/*  border-radius: var(--radius);*/
/*  text-align: center;*/
/*  font-weight: 600;*/
/*  margin-top: var(--space-4);*/
/*  animation: slideDown 0.3s ease-out;*/
/*}*/

/*@keyframes slideDown {*/
/*  from {*/
/*    opacity: 0;*/
/*    transform: translateY(-10px);*/
/*  }*/
/*  to {*/
/*    opacity: 1;*/
/*    transform: translateY(0);*/
/*  }*/
/*}*/

/*.form-message.success {*/
/*  background: #d1fae5;*/
/*  color: #065f46;*/
/*  border: 1px solid #a7f3d0;*/
/*}*/

/*.form-message.error {*/
/*  background: #fee2e2;*/
/*  color: #991b1b;*/
/*  border: 1px solid #fca5a5;*/
/*}*/

/* Contact Content Layout */
/*.contact-content {*/
/*  display: grid;*/
/*  grid-template-columns: 1fr 1.2fr;*/
/*  gap: var(--space-6);*/
/*  max-width: 1200px;*/
/*  margin: 0 auto;*/
/*  align-items: stretch;*/
/*  height: 600px;*/
/*}*/

/* Contact Details Section */
/*.contact-details {*/
/*  position: relative;*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*}*/

/*.contact-info-card {*/
  /* background: white; */
/*  border-radius: 16px;*/
/*  padding: var(--space-5);*/
  /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); */
/*  position: relative;*/
/*  backdrop-filter: blur(10px);*/
/*  border: 1px solid rgba(255, 255, 255, 0.2);*/
/*  height: 100%;*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*}*/

/*.contact-info-card h3 {*/
/*  font-size: 1.3rem;*/
/*  font-weight: 700;*/
/*  color: #1f2937;*/
/*  margin: 0 0 var(--space-3);*/
/*}*/

/*.contact-description {*/
/*  color: #6b7280;*/
/*  line-height: 1.5;*/
/*  margin-bottom: var(--space-4);*/
/*  font-size: 0.85rem;*/
/*}*/

/*.contact-item {*/
/*  display: flex;*/
/*  align-items: flex-start;*/
/*  gap: var(--space-3);*/
/*  margin-bottom: var(--space-4);*/
/*  padding: var(--space-3);*/
/*  background: rgba(249, 115, 22, 0.05);*/
/*  border-radius: var(--radius);*/
/*  border-left: 4px solid #f97316;*/
/*  transition: all 0.3s ease;*/
/*}*/

/*.contact-item:hover {*/
/*  background: rgba(249, 115, 22, 0.1);*/
/*  transform: translateX(5px);*/
/*}*/

/*.contact-icon {*/
/*  flex-shrink: 0;*/
/*  width: 36px;*/
/*  height: 36px;*/
/*  background: linear-gradient(135deg, #f97316, #ea580c);*/
/*  border-radius: 8px;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);*/
/*}*/

/*.contact-icon svg {*/
/*  width: 18px;*/
/*  height: 18px;*/
/*  color: white;*/
/*}*/

/*.contact-text h4 {*/
/*  font-size: 0.95rem;*/
/*  font-weight: 600;*/
/*  color: #1f2937;*/
/*  margin: 0 0 var(--space-1);*/
/*}*/

/*.contact-text p {*/
/*  color: #6b7280;*/
/*  margin: 0 0 var(--space-1);*/
/*  font-size: 0.8rem;*/
/*  line-height: 1.3;*/
/*}*/

/*.contact-text p:last-child {*/
/*  margin-bottom: 0;*/
/*}*/

/* Social Links */
/*.social-links {*/
/*  margin-top: var(--space-4);*/
/*  padding-top: var(--space-4);*/
/*  border-top: 1px solid #e5e7eb;*/
/*}*/

/*.social-links h4 {*/
/*  font-size: 0.95rem;*/
/*  font-weight: 600;*/
/*  color: #1f2937;*/
/*  margin: 0 0 var(--space-3);*/
/*}*/

/*.social-icons {*/
/*  display: flex;*/
/*  gap: var(--space-3);*/
/*}*/

/*.social-link {*/
/*  width: 36px;*/
/*  height: 36px;*/
/*  background: linear-gradient(135deg, #f97316, #ea580c);*/
/*  border-radius: 10px;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  color: white;*/
/*  text-decoration: none;*/
/*  transition: all 0.3s ease;*/
/*  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);*/
/*}*/

/*.social-link:hover {*/
/*  transform: translateY(-3px);*/
/*  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);*/
/*}*/

/*.social-link svg {*/
/*  width: 18px;*/
/*  height: 18px;*/
/*}*/

/* Update form container for two-column layout */
/*.form-container {*/
/*  max-width: none;*/
/*  margin: 0;*/
/*  height: 500px;*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*}*/

/* Responsive Design for Contact Form */
/*@media (max-width: 1024px) {*/
/*  .contact-content {*/
/*    grid-template-columns: 1fr;*/
/*    gap: var(--space-6);*/
/*  }*/

/*  .contact-details {*/
/*    order: 2;*/
/*  }*/

/*  .form-container {*/
/*    order: 1;*/
/*  }*/
/*}*/

/*@media (max-width: 768px) {*/
/*  .contact-form {*/
/*    padding: var(--space-5) 0;*/
/*  }*/

/*  .contact-header {*/
/*    margin-bottom: var(--space-6);*/
/*  }*/

/*  .contact-header h2 {*/
/*    font-size: clamp(24px, 6vw, 36px);*/
/*    margin-bottom: var(--space-3);*/
/*  }*/

/*  .contact-header p {*/
/*    padding: 0 var(--space-4);*/
/*    font-size: 0.95rem;*/
/*    line-height: 1.5;*/
/*  }*/

/*  .contact-content {*/
/*    margin: 0 var(--space-3);*/
/*    height: auto;*/
/*  }*/

/*  .contact-info-card {*/
/*    padding: var(--space-4);*/
/*    border-radius: 12px;*/
/*    margin-bottom: var(--space-4);*/
/*  }*/

/*  .contact-info-card h3 {*/
/*    font-size: 1.2rem;*/
/*    margin-bottom: var(--space-3);*/
/*    text-align: center;*/
/*  }*/

/*  .contact-description {*/
/*    font-size: 0.8rem;*/
/*    text-align: center;*/
/*    margin-bottom: var(--space-4);*/
/*  }*/

/*  .contact-item {*/
/*    flex-direction: row;*/
/*    text-align: left;*/
/*    gap: var(--space-3);*/
/*    padding: var(--space-3);*/
/*    margin-bottom: var(--space-3);*/
/*  }*/

/*  .contact-icon {*/
/*    width: 32px;*/
/*    height: 32px;*/
/*    border-radius: 8px;*/
/*    flex-shrink: 0;*/
/*  }*/

/*  .contact-icon svg {*/
/*    width: 16px;*/
/*    height: 16px;*/
/*  }*/

/*  .contact-text h4 {*/
/*    font-size: 0.9rem;*/
/*    margin-bottom: var(--space-1);*/
/*  }*/

/*  .contact-text p {*/
/*    font-size: 0.75rem;*/
/*    line-height: 1.3;*/
/*  }*/

/*  .social-links {*/
/*    margin-top: var(--space-4);*/
/*    padding-top: var(--space-4);*/
/*    text-align: center;*/
/*  }*/

/*  .social-links h4 {*/
/*    font-size: 0.9rem;*/
/*    margin-bottom: var(--space-3);*/
/*  }*/

/*  .social-icons {*/
/*    justify-content: center;*/
/*    gap: var(--space-2);*/
/*  }*/

/*  .social-link {*/
/*    width: 32px;*/
/*    height: 32px;*/
/*    border-radius: 8px;*/
/*  }*/

/*  .social-link svg {*/
/*    width: 16px;*/
/*    height: 16px;*/
/*  }*/

/*  .form-container {*/
/*    padding: var(--space-4);*/
/*    border-radius: 12px;*/
/*    height: auto;*/
/*  }*/

/*  .enquiry-form {*/
/*    gap: var(--space-4);*/
/*  }*/

/*  .form-row {*/
/*    grid-template-columns: 1fr;*/
/*    gap: var(--space-3);*/
/*  }*/

/*  .form-group {*/
/*    gap: var(--space-2);*/
/*  }*/

/*  .form-group label {*/
/*    font-size: 0.85rem;*/
/*  }*/

/*  .form-group input,*/
/*  .form-group select,*/
/*  .form-group textarea {*/
/*    padding: var(--space-3);*/
    font-size: 16px; /* Prevents zoom on iOS */
    min-height: 44px; /* Better touch target */
/*    border-radius: 8px;*/
/*  }*/

/*  .form-group textarea {*/
/*    min-height: 100px;*/
/*  }*/

/*  .checkbox-label {*/
/*    font-size: 0.8rem;*/
/*    line-height: 1.4;*/
/*  }*/

/*  .checkbox-label input[type="checkbox"] {*/
/*    width: 16px;*/
/*    height: 16px;*/
/*  }*/

/*  .form-submit-btn {*/
/*    padding: var(--space-3) var(--space-5);*/
/*    font-size: 0.95rem;*/
/*    min-height: 44px;*/
/*    margin-top: var(--space-2);*/
/*  }*/
/*}*/

/*@media (max-width: 480px) {*/
/*  .contact-form {*/
/*    padding: var(--space-4) 0;*/
/*  }*/

/*  .contact-header {*/
/*    margin-bottom: var(--space-5);*/
/*  }*/

/*  .contact-header h2 {*/
/*    font-size: clamp(20px, 7vw, 28px);*/
/*    margin-bottom: var(--space-2);*/
/*  }*/

/*  .contact-header p {*/
/*    padding: 0 var(--space-2);*/
/*    font-size: 0.85rem;*/
/*    line-height: 1.4;*/
/*  }*/

/*  .contact-content {*/
/*    margin: 0 var(--space-2);*/
/*  }*/

/*  .contact-info-card {*/
/*    padding: var(--space-3);*/
/*    border-radius: 10px;*/
/*    margin-bottom: var(--space-3);*/
/*  }*/

/*  .contact-info-card h3 {*/
/*    font-size: 1.1rem;*/
/*    margin-bottom: var(--space-2);*/
/*  }*/

/*  .contact-description {*/
/*    font-size: 0.75rem;*/
/*    margin-bottom: var(--space-3);*/
/*  }*/

/*  .contact-item {*/
/*    padding: var(--space-2);*/
/*    margin-bottom: var(--space-2);*/
/*    gap: var(--space-2);*/
/*  }*/

/*  .contact-icon {*/
/*    width: 28px;*/
/*    height: 28px;*/
/*    border-radius: 6px;*/
/*  }*/

/*  .contact-icon svg {*/
/*    width: 14px;*/
/*    height: 14px;*/
/*  }*/

/*  .contact-text h4 {*/
/*    font-size: 0.8rem;*/
/*    margin-bottom: 2px;*/
/*  }*/

/*  .contact-text p {*/
/*    font-size: 0.7rem;*/
/*    line-height: 1.2;*/
/*    margin-bottom: 2px;*/
/*  }*/

/*  .social-links {*/
/*    margin-top: var(--space-3);*/
/*    padding-top: var(--space-3);*/
/*  }*/

/*  .social-links h4 {*/
/*    font-size: 0.8rem;*/
/*    margin-bottom: var(--space-2);*/
/*  }*/

/*  .social-icons {*/
/*    gap: var(--space-1);*/
/*  }*/

/*  .social-link {*/
/*    width: 28px;*/
/*    height: 28px;*/
/*    border-radius: 6px;*/
/*  }*/

/*  .social-link svg {*/
/*    width: 14px;*/
/*    height: 14px;*/
/*  }*/

/*  .form-container {*/
/*    padding: var(--space-3);*/
/*    margin: 0 var(--space-1);*/
/*    border-radius: 10px;*/
/*  }*/

/*  .enquiry-form {*/
/*    gap: var(--space-3);*/
/*  }*/

/*  .form-group {*/
/*    gap: var(--space-1);*/
/*  }*/

/*  .form-group label {*/
/*    font-size: 0.8rem;*/
/*  }*/

/*  .form-group input,*/
/*  .form-group select,*/
/*  .form-group textarea {*/
/*    padding: 12px;*/
    font-size: 16px; /* Prevents zoom on iOS */
/*    min-height: 42px;*/
/*    border-radius: 6px;*/
/*  }*/

/*  .form-group textarea {*/
/*    min-height: 80px;*/
/*    padding: 12px;*/
/*  }*/

/*  .checkbox-label {*/
/*    font-size: 0.75rem;*/
/*    line-height: 1.3;*/
/*  }*/

/*  .checkbox-label input[type="checkbox"] {*/
/*    width: 15px;*/
/*    height: 15px;*/
/*  }*/

/*  .form-submit-btn {*/
/*    padding: 12px var(--space-4);*/
/*    font-size: 0.9rem;*/
/*    min-height: 42px;*/
/*    font-weight: 600;*/
/*    margin-top: var(--space-2);*/
/*  }*/
/*}*/

/*@media (max-width: 360px) {*/
/*  .contact-form {*/
/*    padding: var(--space-3) 0;*/
/*  }*/

/*  .contact-header {*/
/*    margin-bottom: var(--space-4);*/
/*  }*/

/*  .contact-header h2 {*/
/*    font-size: clamp(18px, 8vw, 24px);*/
/*    margin-bottom: var(--space-2);*/
/*  }*/

/*  .contact-header p {*/
/*    padding: 0 var(--space-2);*/
/*    font-size: 0.8rem;*/
/*    line-height: 1.3;*/
/*  }*/

/*  .contact-content {*/
/*    margin: 0 var(--space-1);*/
/*  }*/

/*  .contact-info-card {*/
/*    padding: var(--space-2);*/
/*    border-radius: 8px;*/
/*    margin-bottom: var(--space-3);*/
/*  }*/

/*  .contact-info-card h3 {*/
/*    font-size: 1rem;*/
/*    margin-bottom: var(--space-2);*/
/*  }*/

/*  .contact-description {*/
/*    font-size: 0.7rem;*/
/*    margin-bottom: var(--space-2);*/
/*  }*/

/*  .contact-item {*/
/*    padding: var(--space-1);*/
/*    margin-bottom: var(--space-1);*/
/*    gap: var(--space-1);*/
/*  }*/

/*  .contact-icon {*/
/*    width: 24px;*/
/*    height: 24px;*/
/*    border-radius: 4px;*/
/*  }*/

/*  .contact-icon svg {*/
/*    width: 12px;*/
/*    height: 12px;*/
/*  }*/

/*  .contact-text h4 {*/
/*    font-size: 0.75rem;*/
/*    margin-bottom: 1px;*/
/*  }*/

/*  .contact-text p {*/
/*    font-size: 0.65rem;*/
/*    line-height: 1.1;*/
/*    margin-bottom: 1px;*/
/*  }*/

/*  .social-links {*/
/*    margin-top: var(--space-2);*/
/*    padding-top: var(--space-2);*/
/*  }*/

/*  .social-links h4 {*/
/*    font-size: 0.75rem;*/
/*    margin-bottom: var(--space-1);*/
/*  }*/

/*  .social-link {*/
/*    width: 24px;*/
/*    height: 24px;*/
/*    border-radius: 4px;*/
/*  }*/

/*  .social-link svg {*/
/*    width: 12px;*/
/*    height: 12px;*/
/*  }*/

/*  .form-container {*/
/*    padding: var(--space-2);*/
/*    margin: 0 var(--space-1);*/
/*    border-radius: 8px;*/
/*  }*/

/*  .enquiry-form {*/
/*    gap: var(--space-2);*/
/*  }*/

/*  .form-group {*/
/*    gap: 4px;*/
/*  }*/

/*  .form-group label {*/
/*    font-size: 0.75rem;*/
/*  }*/

/*  .form-group input,*/
/*  .form-group select,*/
/*  .form-group textarea {*/
/*    padding: 10px;*/
/*    font-size: 16px;*/
/*    min-height: 40px;*/
/*    border-radius: 4px;*/
/*  }*/

/*  .form-group textarea {*/
/*    min-height: 70px;*/
/*  }*/

/*  .checkbox-label {*/
/*    font-size: 0.7rem;*/
/*    line-height: 1.2;*/
/*  }*/

/*  .checkbox-label input[type="checkbox"] {*/
/*    width: 14px;*/
/*    height: 14px;*/
/*  }*/

/*  .form-submit-btn {*/
/*    padding: 10px var(--space-3);*/
/*    font-size: 0.85rem;*/
/*    min-height: 40px;*/
/*    margin-top: var(--space-1);*/
/*  }*/
/*}*/

/*footer {*/
/*  border-top: 1px solid #22252b;*/
/*  margin-top: var(--space-8);*/
/*  color: #000000;*/
/*}*/
