/* ============================================
   KISKINDHA ROMA — White Theme Stylesheet
   ============================================ */

:root {
  --gold: #b8962e;
  --gold-light: #d4aa3f;
  --gold-dark: #8b6914;
  --gold-subtle: #f5edd8;
  --bg: #ffffff;
  --bg-2: #fafaf8;
  --bg-3: #f4f1eb;
  --border: #e8e2d6;
  --border-gold: rgba(184,150,46,0.25);
  --text-primary: #1a1208;
  --text-secondary: #5c5040;
  --text-muted: #9a8c79;
  --white: #ffffff;
  --wa-green: #25d366;
  --wa-dark: #128c7e;
  --dark-footer: #12100c;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 12px rgba(26,18,8,0.08);
  --shadow-md: 0 4px 24px rgba(26,18,8,0.12);
  --shadow-lg: 0 8px 48px rgba(26,18,8,0.14);
  --shadow-gold: 0 4px 20px rgba(184,150,46,0.18);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ======== TYPOGRAPHY ======== */
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.15;
}

em { font-style: italic; color: var(--gold); }

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ======== BUTTONS ======== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--text-primary);
  color: #fff;
}
.btn-primary:hover {
  background: #2e2010;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
}
.btn-outline:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #fff;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-card-primary {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}
.btn-card-primary:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
}

.btn-card-wa {
  background: var(--wa-green);
  color: white;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.btn-card-wa:hover {
  background: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}

/* ======== NAVBAR ======== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
  padding: 0.7rem 0;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  aspect-ratio: auto;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.logo-symbol { color: var(--gold); font-size: 1.2rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: auto;
}

.nav-links a {
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-secondary);
  transition: var(--transition);
  border-radius: var(--radius-sm);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text-primary);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  background: var(--wa-green);
  color: white;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--transition);
  flex-shrink: 0;
}
.nav-cta:hover {
  background: #1db954;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37,211,102,0.25);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ======== HERO ======== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-3);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(184,150,46,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(184,150,46,0.05) 0%, transparent 50%),
    var(--bg-3);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b8962e' fill-opacity='0.04'%3E%3Cpath d='M50 50v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM50 10V6h-2v4h-4v2h4v4h2v-4h4v-2h-4zM10 50v-4H8v4H4v2h4v4h2v-4h4v-2h-4zM10 10V6H8v4H4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-particles { position: absolute; inset: 0; overflow: hidden; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 900px;
  animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-logo-wrap {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.hero-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ======== BRAND STRIP ======== */
.brand-strip {
  background: var(--text-primary);
  padding: 1rem 2rem;
  overflow: hidden;
}

.strip-items {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}

.strip-icon { font-size: 0.95rem; }
.strip-divider { color: var(--gold); font-size: 0.55rem; opacity: 0.6; }

/* ======== SECTION CONTAINER ======== */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ======== PROPERTIES SECTION ======== */
.properties-section {
  padding: 7rem 0;
  background: var(--bg);
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.property-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  contain: layout style; /* prevent layout shifts */
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.property-card.featured {
  border-color: rgba(184,150,46,0.35);
  box-shadow: var(--shadow-gold);
}

/* Coming Soon card styles */
.property-card.coming-soon {
  opacity: 0.75;
}
.property-card.coming-soon:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
}

.coming-soon-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(250,250,248,0.88);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-lg);
}

.coming-soon-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.coming-soon-sub {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.card-image-wrap {
  position: relative;
  overflow: hidden;
  height: 230px;
  background: var(--bg-3); /* placeholder while image loads */
}

.card-image {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.6s ease;
  background: var(--bg-3);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.property-card:hover .card-image img {
  transform: scale(1.04);
}

.property-illustration {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.95);
  color: var(--text-primary);
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  border: 1px solid var(--border-gold);
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.featured-badge {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}

.card-body {
  padding: 1.75rem;
}

.card-location {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.card-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.card-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  list-style: none;
}

.card-amenities li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.card-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

/* ======== WHY SECTION ======== */
.why-section {
  padding: 7rem 0;
  background: var(--bg-3);
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.why-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--border-gold);
}

.why-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }

.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.why-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; }

/* ======== ROME SECTION ======== */
.rome-section {
  padding: 7rem 0;
  background: var(--bg);
  content-visibility: auto;
  contain-intrinsic-size: 0 700px;
}

.rome-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.rome-text .section-title { margin-bottom: 1rem; }

.rome-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.rome-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.rome-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-left: 2px solid var(--border-gold);
  padding-left: 1rem;
}

.rome-card-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.rome-stat-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ======== TESTIMONIALS ======== */
.testimonials-section {
  padding: 7rem 0;
  background: var(--bg-2);
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}

.testimonial-card.featured-testimonial {
  border-color: rgba(184,150,46,0.4);
  background: var(--gold-subtle);
}

.stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.1em; margin-bottom: 1rem; }

.testimonial-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.reviewer { display: flex; align-items: center; gap: 0.75rem; }

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
}

.reviewer strong { display: block; font-size: 0.875rem; color: var(--text-primary); font-weight: 500; }
.reviewer span { font-size: 0.775rem; color: var(--text-muted); }

/* ======== CONTACT SECTION ======== */
.contact-section {
  padding: 7rem 0;
  background: var(--bg-3);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info > p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-details { display: flex; flex-direction: column; gap: 1rem; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.contact-item.whatsapp-contact {
  border-color: rgba(37,211,102,0.3);
  background: rgba(37,211,102,0.04);
  cursor: pointer;
}

.contact-item.whatsapp-contact:hover {
  border-color: rgba(37,211,102,0.5);
  background: rgba(37,211,102,0.08);
  transform: translateX(4px);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--wa-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.contact-icon.email-icon, .contact-icon.loc-icon {
  background: var(--bg-3);
  border: 1px solid var(--border);
  font-size: 1.1rem;
}

.contact-label { display: block; font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.15rem; }
.contact-value { font-size: 0.95rem; color: var(--text-primary); font-weight: 500; }

.contact-actions-panel {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-actions-panel h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.contact-actions-panel > p { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 2rem; line-height: 1.6; }

.property-quick-links { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.75rem; }

.quick-link-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  color: inherit;
}

.quick-link-btn:hover {
  border-color: var(--border-gold);
  background: var(--gold-subtle);
  transform: translateX(4px);
}

.ql-icon { font-size: 1.3rem; width: 34px; text-align: center; }
.quick-link-btn > div { flex: 1; }
.quick-link-btn strong { display: block; font-size: 0.875rem; color: var(--text-primary); font-weight: 500; }
.quick-link-btn small { font-size: 0.75rem; color: var(--text-muted); }

.wa-big-btn {
  width: 100%;
  justify-content: center;
  background: var(--wa-green);
  color: white;
  font-size: 0.95rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
}
.wa-big-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.3); background: #1db954; }

/* ======== FOOTER ======== */
.footer {
  background: var(--dark-footer);
  color: rgba(255,255,255,0.7);
  padding-top: 4rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-brand .logo-text { font-family:'Cormorant Garamond',serif; font-size:1.3rem; color:#fff; margin-left:0.5rem; }
.footer-brand .logo-symbol { color: var(--gold); }
.footer-brand p { margin-top: 0.75rem; font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer-brand .nav-logo-img { height:38px; filter: brightness(0) invert(1); }

.footer-links h4 { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-links ul li a:hover { color: white; padding-left: 4px; }

.footer-contact h4 { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer-wa { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--wa-green); font-weight: 500; margin-bottom: 0.5rem; transition: var(--transition); }
.footer-wa:hover { opacity: 0.8; }
.footer-contact p { font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-bottom: 0.3rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ======== FLOATING WA BUTTON ======== */
.floating-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: var(--wa-green);
  color: white;
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
  transition: var(--transition);
  animation: floatWa 3s ease-in-out infinite;
}

.floating-wa:hover {
  background: #1db954;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
}

@keyframes floatWa {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ======== PROPERTY PAGE ======== */
.info-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  font-size: 0.78rem;
  margin: 0.25rem;
}

.prop-desc p { color: var(--text-secondary); line-height: 1.9; margin-bottom: 1.25rem; font-size: 0.975rem; }
.prop-desc h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--text-primary); margin-bottom: 1rem; margin-top: 2rem; }

.room-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}
.room-card:hover { border-color: var(--border-gold); box-shadow: var(--shadow-sm); }
.room-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--text-primary); margin-bottom: 0.5rem; }
.room-card p { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 0.75rem; }

.divider { height: 1px; background: var(--border); margin: 3rem 0; }

.score-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1a5c3a;
  color: white;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
}
.score-num { font-size: 1.3rem; font-weight: 700; }

.booking-panel {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: 90px;
  box-shadow: var(--shadow-sm);
}

.booking-panel h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--text-primary); margin-bottom: 0.5rem; }
.booking-panel .price-tag { font-size: 2rem; font-family: 'Cormorant Garamond', serif; color: var(--gold); margin-bottom: 1.5rem; }
.booking-panel .price-tag small { font-size: 0.9rem; color: var(--text-muted); }

.prop-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; align-items: start; }

.amenity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }

.amenity-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: var(--transition);
}
.amenity-item:hover { border-color: var(--border-gold); background: var(--gold-subtle); }
.amenity-item .icon { font-size: 1.75rem; margin-bottom: 0.5rem; display: block; }
.amenity-item span:last-child { font-size: 0.8rem; color: var(--text-secondary); display: block; }

/* Photo Gallery */
.photo-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 200px;
  gap: 0.75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 3rem;
}

.gallery-item { overflow: hidden; }
.gallery-item:first-child { grid-row: 1 / 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.gallery-item:hover img { transform: scale(1.04); }

/* ======== COMING SOON PAGE ======== */
.cs-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-3);
  text-align: center;
  padding: 2rem;
  padding-top: 90px;
}

.cs-content {
  max-width: 580px;
}

.cs-logo { height: 80px; width: auto; margin-bottom: 2rem; object-fit: contain; }

.cs-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.cs-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.cs-desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 2.5rem; }

.cs-divider {
  width: 60px;
  height: 1px;
  background: var(--border-gold);
  margin: 2rem auto;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 1024px) {
  .properties-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .rome-content { grid-template-columns: 1fr; gap: 3rem; }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 3rem; }
  .prop-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .properties-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .rome-card-stack { grid-template-columns: 1fr 1fr; }
  .photo-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .photo-gallery .gallery-item:first-child { grid-row: auto; }
  .amenity-grid { grid-template-columns: 1fr 1fr; }
  .footer-container { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(255,255,255,0.98); border-bottom: 1px solid var(--border); padding: 1rem; box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-ctas .btn { padding: 0.75rem 1.5rem; font-size: 0.82rem; }
  .strip-divider { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .floating-wa-text { display: none; }
  .floating-wa { padding: 0.85rem; border-radius: 50%; width: 56px; height: 56px; justify-content: center; }
}
