/* 
  Villa Euphoria - Luxury Vacation Home
  Design System & Styles
*/

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* CSS Variables */
:root {
  --color-dark: #0e0e11;
  --color-dark-accent: #1c1c24;
  --color-light: #FAF7F2;
  --color-light-accent: #f2ede4;
  --color-accent: #D4AF37; /* Gold/Champagne */
  --color-accent-hover: #bfa130;
  --color-accent-rgb: 212, 175, 55;
  --color-text-dark: #1a1a1e;
  --color-text-light: #fafafa;
  --color-text-muted: #8e8e93;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Montserrat', sans-serif;
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --border-radius: 12px;
  --glass-bg: rgba(28, 28, 36, 0.7);
  --glass-border: rgba(212, 175, 55, 0.15);
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-light);
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.03em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-gold {
  color: var(--color-accent);
}

.btn-luxury {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  padding: 1.1rem 2.2rem;
  background-color: var(--color-dark);
  color: var(--color-text-light);
  border: 1px solid var(--color-accent);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--color-accent);
  transition: var(--transition-smooth);
  z-index: -1;
}

.btn-luxury:hover {
  color: var(--color-dark);
  border-color: var(--color-accent);
}

.btn-luxury:hover::before {
  width: 100%;
}

.btn-luxury-light {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  padding: 1.1rem 2.2rem;
  background-color: transparent;
  color: var(--color-text-light);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-luxury-light:hover {
  background-color: var(--color-text-light);
  color: var(--color-dark);
  border-color: var(--color-text-light);
}

/* Section Common Styles */
section {
  padding: 8rem 0;
  position: relative;
}

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

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  position: relative;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background-color: var(--color-accent);
  margin: 1.5rem auto 0;
}

.section-header p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-text-muted);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.2rem 0;
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 0.6rem 0;
  background-color: rgba(14, 14, 17, 0.95);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--color-accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  height: 130px;
  width: auto;
  max-width: 380px;
  box-sizing: border-box;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

header.scrolled .logo-img {
  height: 80px;
}

header.scrolled .brand-name {
  font-size: 1.8rem;
}


/* Nav Menu */
nav ul {
  display: flex;
  list-style: none;
  gap: 3rem;
}

nav a {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  padding: 0.5rem 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-accent);
  transition: var(--transition-fast);
}

nav a:hover {
  color: var(--color-text-light);
}

nav a:hover::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-text-light);
  margin-bottom: 5px;
  transition: var(--transition-fast);
}

.menu-toggle span:last-child {
  margin-bottom: 0;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  background-color: var(--color-dark);
  color: var(--color-text-light);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 160px;
  padding-bottom: 60px;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-content-centered {
  max-width: 850px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s forwards cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.hero-banner-img {
  width: 100%;
  max-width: 720px; /* Enlarge the logo banner as requested by the user */
  height: auto;
  margin-bottom: 2.8rem;
  transition: var(--transition-smooth);
}

.hero-banner-img:hover {
  transform: translateY(-5px);
}

.hero-desc {
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
  line-height: 1.8;
  max-width: 700px;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* Responsive Hero overrides */
@media (max-width: 768px) {
  .hero {
    padding-top: 120px;
    padding-bottom: 40px;
  }
  .hero-banner-img {
    max-width: 290px;
    margin-bottom: 1.5rem;
  }
  .hero-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  .hero-buttons a {
    width: 100%;
  }
}



/* Smart Experience Section */
.smart-experience {
  background-color: var(--color-light);
}

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

.smart-card {
  background: white;
  padding: 3.5rem 2.5rem;
  border-radius: 4px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.smart-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.08);
  border-color: var(--color-accent);
}

.smart-icon {
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-light-accent);
  color: var(--color-accent);
  transition: var(--transition-smooth);
}

.smart-card:hover .smart-icon {
  background-color: var(--color-dark);
  color: var(--color-accent);
}

.card-svg-icon {
  width: 28px;
  height: 28px;
}

.smart-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-family: var(--font-serif);
}

.smart-card p {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
}

/* Digital Lock Interactive Demo Section */
.digital-demo {
  background-color: var(--color-dark);
  color: var(--color-text-light);
  overflow: hidden;
}

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

.demo-text h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.demo-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.features-list {
  list-style: none;
  margin-bottom: 3rem;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-weight: 400;
  font-size: 0.95rem;
}

.features-list li::before {
  content: '✓';
  color: var(--color-accent);
  font-weight: bold;
}

/* Booking & Smart Key Generator Section */
.booking-section {
  background-color: var(--color-light-accent);
}

.booking-wrapper {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.booking-form-container {
  padding: 4rem;
}

.booking-form-container h3 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--color-text-dark);
}

.form-group input, .form-group select {
  font-family: var(--font-sans);
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.95rem;
  background-color: #fcfcfc;
  outline: none;
  transition: var(--transition-fast);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  cursor: pointer;
  padding-right: 2.5rem;
}

.form-group input:focus, .form-group select:focus {
  border-color: var(--color-accent);
  background-color: white;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.services-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 1rem 0 2rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  font-size: 0.9rem;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
}

.price-summary {
  background-color: var(--color-light);
  padding: 1.5rem;
  border-radius: 6px;
  margin-bottom: 2.5rem;
  border: 1px dashed rgba(212, 175, 55, 0.3);
}

.price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}

.price-row:last-child {
  margin-bottom: 0;
  padding-top: 0.8rem;
  border-top: 1px solid #ddd;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Smart Online Check-In Portal */
.simulated-email-container {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 480px;
  position: relative;
}

.email-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.checkin-display-container {
  background-color: var(--color-dark);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  color: var(--color-text-light);
  position: relative;
  min-height: 560px;
  width: 100%;
}

.checkin-portal {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.checkin-steps {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 1rem;
  position: relative;
  padding: 0;
}

.checkin-steps::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 5%;
  right: 5%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  width: 25%;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-dark-accent);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: var(--transition-fast);
}

.step-indicator.active .step-number {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-dark);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.step-indicator.active {
  color: var(--color-text-light);
}

.step-indicator.completed .step-number {
  background-color: #10b981;
  border-color: #10b981;
  color: white;
}

.step-indicator.completed {
  color: #10b981;
}

.checkin-step-content {
  display: none;
  animation: fadeIn 0.4s ease-in-out forwards;
  width: 100%;
}

.checkin-step-content.active {
  display: block;
}

/* Idle State */
.checkin-idle {
  text-align: center;
  padding: 4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.checkin-idle-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite ease-in-out;
}

/* Document Upload Card */
.upload-container {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
}

.upload-zone {
  border: 1.5px dashed rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.02);
  padding: 1.2rem 1rem;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

.upload-zone:hover {
  border-color: var(--color-accent);
  background: rgba(212, 175, 55, 0.03);
}

.upload-zone input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-icon {
  font-size: 1.4rem;
  color: var(--color-accent);
  margin-bottom: 0.3rem;
}

.upload-text {
  font-size: 0.78rem;
  color: var(--color-text-light);
}

.upload-subtext {
  font-size: 0.65rem;
  color: var(--color-text-muted);
  margin-top: 0.2rem;
}

.document-preview-container {
  display: flex;
  gap: 1rem;
  width: 100%;
  margin-top: 0.5rem;
}

.doc-preview-box {
  flex: 1;
  height: 100px;
  background-color: var(--color-dark-accent);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.doc-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doc-preview-placeholder {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  text-align: center;
  padding: 0.5rem;
}

.btn-checkin-next {
  width: 100%;
  margin-top: 1rem;
}

/* OCR Scanner View */
.ocr-container {
  text-align: center;
  padding: 0.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.ocr-scanner-window {
  width: 100%;
  max-width: 280px;
  height: 150px;
  background-color: #050507;
  border: 1px solid var(--color-accent);
  border-radius: 8px;
  margin-bottom: 1.2rem;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.ocr-scanner-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 1;
}

.ocr-scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-accent);
  box-shadow: 0 0 10px var(--color-accent);
  animation: documentScan 2.5s infinite ease-in-out;
  z-index: 5;
}

.ocr-scanner-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  position: relative;
  z-index: 2;
}

.ocr-progress-container {
  width: 100%;
  margin-bottom: 1.2rem;
}

.ocr-status-text {
  font-size: 0.75rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
  min-height: 1.2rem;
}

.ocr-progress-bar {
  width: 100%;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.ocr-progress-fill {
  height: 100%;
  width: 0%;
  background-color: var(--color-accent);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.ocr-console-log {
  width: 100%;
  background-color: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 6px;
  padding: 0.6rem;
  font-family: monospace;
  font-size: 0.68rem;
  color: #8e8e93;
  text-align: left;
  height: 80px;
  overflow-y: auto;
  line-height: 1.4;
}

.ocr-log-line {
  margin-bottom: 0.2rem;
}
.ocr-log-line.success {
  color: #10b981;
}

/* Signature Step */
.signature-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.signature-pad-wrapper {
  width: 100%;
  background: white;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.5rem;
  margin-bottom: 0.8rem;
}

.signature-canvas {
  width: 100%;
  height: 130px;
  background-color: #fafafa;
  border-radius: 4px;
  cursor: crosshair;
  touch-action: none;
}

.signature-actions {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 1rem;
}

.btn-signature-clear {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-text-muted);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-signature-clear:hover {
  border-color: var(--color-text-light);
  color: var(--color-text-light);
}

.signature-terms {
  font-size: 0.65rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.4;
}

/* Receipt Screen */
.receipt-wrapper {
  background: white;
  color: var(--color-text-dark);
  border-radius: 12px;
  padding: 1.5rem;
  width: 100%;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  border: 1px solid var(--color-accent);
  position: relative;
  background-image: 
    radial-gradient(circle at 100% 0%, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
  animation: scaleIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.receipt-header {
  text-align: center;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.receipt-badge {
  display: inline-block;
  background-color: rgba(16, 185, 129, 0.1);
  color: #10b981;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.3rem 0.8rem;
  border-radius: 30px;
  margin-bottom: 0.6rem;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.receipt-header h4 {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
  font-family: var(--font-serif);
}

.receipt-id {
  font-size: 0.65rem;
  font-family: monospace;
  color: var(--color-text-muted);
}

.receipt-body {
  font-size: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #f2ede4;
  padding-bottom: 0.4rem;
}

.receipt-row:last-child {
  border-bottom: none;
}

.receipt-row span:first-child {
  color: var(--color-text-muted);
  font-weight: 500;
}

.receipt-row span:last-child {
  font-weight: 600;
  color: var(--color-text-dark);
}

.receipt-signature-preview {
  margin-top: 0.6rem;
  border-top: 1px dashed #ddd;
  padding-top: 0.6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.receipt-signature-img {
  height: 40px;
  width: auto;
  border-bottom: 1px solid #1a1a1e;
  max-width: 130px;
}

.receipt-footer {
  margin-top: 1.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.barcode-svg {
  width: 100%;
  max-width: 200px;
  height: 40px;
}

.receipt-instructions {
  font-size: 0.65rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

@keyframes documentScan {
  0% { top: 0%; }
  50% { top: 100%; }
  100% { top: 0%; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.03); opacity: 1; }
}

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

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Gallery Section */
.gallery-section {
  background-color: var(--color-dark);
  color: var(--color-text-light);
}

.gallery-section .filter-btn.active {
  color: var(--color-text-light);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.filter-btn {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  color: var(--color-text-muted);
  position: relative;
  transition: var(--transition-fast);
}

.filter-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: var(--color-accent);
  transition: var(--transition-fast);
}

.filter-btn.active {
  color: var(--color-text-dark);
  font-weight: 500;
}

.filter-btn.active::after {
  width: 40px;
}

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

.gallery-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 380px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(14, 14, 17, 0.1) 0%, rgba(14, 14, 17, 0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info h4 {
  color: var(--color-text-light);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.gallery-info p {
  color: var(--color-accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* Lightbox Modal Public Gallery */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 2500;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(14, 14, 17, 0.92);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 85%;
  max-height: 80vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: zoomIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-content img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--color-text-light);
  max-width: 600px;
}

.lightbox-caption h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}

.lightbox-caption p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0.8;
  transition: var(--transition-fast);
  z-index: 2600;
}

.lightbox-close:hover {
  background: var(--color-accent);
  color: var(--color-dark);
  border-color: var(--color-accent);
  transform: scale(1.05);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--color-accent);
  font-size: 1.8rem;
  cursor: pointer;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  z-index: 2600;
}

.lightbox-nav:hover {
  background: var(--color-accent);
  color: var(--color-dark);
  border-color: var(--color-accent);
  transform: translateY(-50%) scale(1.05);
}

.lightbox-nav.prev {
  left: 3rem;
}

.lightbox-nav.next {
  right: 3rem;
}

@media (max-width: 768px) {
  .lightbox-content {
    max-width: 95%;
  }
  .lightbox-content img {
    max-height: 60vh;
  }
  .lightbox-nav {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }
  .lightbox-nav.prev {
    left: 0.8rem;
  }
  .lightbox-nav.next {
    right: 0.8rem;
  }
  .lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
  }
}

/* Contact Section */
.contact-section {
  background-color: var(--color-dark);
  color: var(--color-text-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
}

.contact-info h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 3rem;
  font-weight: 300;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-top: 0.2rem;
}

.contact-item h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: 0.4rem;
}

.contact-item p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin-bottom: 0;
}

.contact-form {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4rem;
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
}

.contact-form .form-group label {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form input, .contact-form textarea {
  font-family: var(--font-sans);
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  font-size: 0.95rem;
  background-color: rgba(255, 255, 255, 0.03);
  color: var(--color-text-light);
  outline: none;
  transition: var(--transition-fast);
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--color-accent);
  background-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Success notification toast */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--color-dark-accent);
  border-left: 4px solid var(--color-accent);
  color: var(--color-text-light);
  padding: 1rem 2rem;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 1000;
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* Footer Section */
footer {
  background-color: #08080a;
  color: rgba(255, 255, 255, 0.4);
  padding: 4rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.05);
  text-align: center;
  font-size: 0.85rem;
}

.footer-logo {
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  border: 1px solid var(--color-accent);
  padding: 8px;
  box-sizing: border-box;
  object-fit: contain;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.copyright {
  letter-spacing: 0.05em;
}

/* Keyframes */
@keyframes kenBurns {
  0% {
    transform: scale(1.02) translate(0, 0);
  }
  100% {
    transform: scale(1.1) translate(-1%, -1%);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(35px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes qrScan {
  0% {
    top: 0%;
  }
  50% {
    top: 100%;
  }
  100% {
    top: 0%;
  }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  h1 {
    font-size: 3.5rem;
  }
  .smart-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .booking-grid {
    grid-template-columns: 1fr;
  }
  .demo-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 5rem 0;
  }
  .section-header {
    margin-bottom: 3.5rem;
  }
  .section-header h2 {
    font-size: 2.2rem;
  }
  header {
    padding: 1rem 0;
    background-color: rgba(14, 14, 17, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  }
  nav {
    position: fixed;
    top: 80px;
    left: 100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--color-dark);
    padding: 3rem 2rem;
    transition: var(--transition-smooth);
    z-index: 99;
  }
  nav.active {
    left: 0;
  }
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  .menu-toggle {
    display: block;
  }
  .menu-toggle.active span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero-desc {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  .smart-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-filters {
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  .booking-form-container {
    padding: 2.5rem 1.5rem;
  }
  .key-display-container {
    padding: 3rem 1.5rem;
  }
  .contact-form {
    padding: 2.5rem 1.5rem;
  }
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .simulated-email-container {
    padding: 1.5rem 1rem;
    min-height: auto;
  }
  .email-details-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
}

/* Reviews Public Testimonials styles */
.reviews-section {
  background-color: var(--color-light);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.public-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.review-public-card {
  background: white;
  padding: 2.5rem;
  border-radius: 4px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.review-public-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.06);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.review-header h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-dark);
}

.review-stars {
  color: var(--color-accent);
  font-size: 0.9rem;
}

.review-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  font-style: italic;
}

.add-review-wrapper {
  background: white;
  border-radius: 4px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 3.5rem;
  max-width: 750px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
}

.add-review-wrapper h3 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--color-dark);
}

/* --- Booking Modal & Bottom Sheet styles --- */
.booking-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(14, 14, 17, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal-card {
  background: rgba(28, 28, 36, 0.96);
  border: 1px solid var(--color-accent);
  border-radius: 12px;
  width: 90%;
  max-width: 580px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
  padding: 3rem 2.5rem;
  color: var(--color-text-light);
  position: relative;
  transform: scale(0.9) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.booking-modal-overlay.active .booking-modal-card {
  transform: scale(1) translateY(0);
}

/* Close Button */
.booking-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-accent);
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-fast);
  z-index: 10;
  padding: 0.2rem;
}

.booking-modal-close:hover {
  color: var(--color-text-light);
  transform: scale(1.1);
}

/* Form Styles adaptations inside Modal */
.booking-modal-card .form-group label {
  color: rgba(255, 255, 255, 0.7);
}

.booking-modal-card input {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.booking-modal-card input:focus {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: var(--color-accent);
}

/* Custom Scrollbar for Modal Card */
.booking-modal-card::-webkit-scrollbar {
  width: 6px;
}
.booking-modal-card::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}
.booking-modal-card::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.3);
  border-radius: 3px;
}
.booking-modal-card::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 175, 55, 0.5);
}

/* Bottom Sheet mobile styles */
@media (max-width: 768px) {
  .booking-modal-overlay {
    align-items: flex-end;
  }

  .booking-modal-card {
    border-radius: 20px 20px 0 0;
    width: 100%;
    max-width: 100%;
    max-height: 85vh;
    padding: 2rem 1.5rem 3rem;
    transform: translateY(100%);
    border-left: none;
    border-right: none;
    border-bottom: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .booking-modal-overlay.active .booking-modal-card {
    transform: translateY(0);
  }

  /* Slide up handle */
  .booking-modal-card::before {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 2px;
    margin: -1rem auto 1.5rem;
  }
}

/* Custom layouts for Villa Euphoria details */
.villa-spaces-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
}
.villa-space-block {
  background: white;
  padding: 3.5rem 3rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}
.villa-space-block:hover {
  border-color: var(--color-accent);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.05);
}
.digital-demo .villa-space-block {
  background: var(--color-dark-accent);
  border-color: rgba(212, 175, 55, 0.1);
  color: var(--color-text-light);
}
.digital-demo .villa-space-block:hover {
  border-color: var(--color-accent);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}
.space-category-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 0.8rem;
  letter-spacing: 0.05em;
}
.space-feature-item {
  margin-bottom: 1.8rem;
}
.space-feature-item:last-child {
  margin-bottom: 0;
}
.space-feature-item h4 {
  font-size: 1.15rem;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.space-feature-icon {
  color: var(--color-accent);
  font-size: 1.25rem;
}
.space-feature-item p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Bedrooms Section */
.bedrooms-section {
  background-color: var(--color-light);
  padding: 8rem 0;
}
.bedrooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.bedroom-card {
  background: white;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.01);
}
.bedroom-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: var(--color-accent);
  opacity: 0.7;
}
.bedroom-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.08);
}
.bedroom-header {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}
.bedroom-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--color-text-dark);
  margin-bottom: 0;
}
.bedroom-capacity {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  background: rgba(212, 175, 55, 0.08);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  display: inline-block;
  border: 1px solid rgba(212, 175, 55, 0.15);
}
.bedroom-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.bedroom-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.bedroom-tag {
  font-size: 0.75rem;
  background-color: var(--color-light-accent);
  color: var(--color-text-dark);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-weight: 500;
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.bedroom-total-capacity-card {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--color-dark) 0%, #1c1c24 100%);
  color: var(--color-text-light);
  border: 1px solid var(--color-accent);
  padding: 3rem;
  border-radius: var(--border-radius);
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.bedroom-total-capacity-text h3 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--color-accent);
  margin-bottom: 0.8rem;
}
.bedroom-total-capacity-text p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  max-width: 650px;
  line-height: 1.7;
}

/* Strategic Location Section */
.location-section {
  background-color: var(--color-dark);
  color: var(--color-text-light);
  padding: 8rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}
.location-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--border-radius);
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition-smooth);
}
.location-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent);
  background: rgba(212, 175, 55, 0.03);
}
.location-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
}
.location-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  color: var(--color-text-light);
}
.location-distance {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.location-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .villa-spaces-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .location-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .bedroom-total-capacity-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  .bedroom-total-capacity-text h3 {
    font-size: 1.8rem;
  }
}

/* Elegant Vector SVG Icons Styling */
.space-feature-icon-svg {
  width: 26px;
  height: 26px;
  stroke: var(--color-accent);
  margin-right: 0.8rem;
  display: inline-block;
  vertical-align: middle;
  transition: var(--transition-fast);
}
.villa-space-block:hover .space-feature-icon-svg {
  transform: scale(1.1);
}
.location-icon-svg {
  width: 48px;
  height: 48px;
  stroke: var(--color-accent);
  margin: 0 auto;
  display: block;
  transition: var(--transition-smooth);
}
.location-card:hover .location-icon-svg {
  transform: scale(1.1) rotate(5deg);
}
.contact-icon-svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-accent);
  display: block;
}


