﻿/* ══════════════════════════════════════
   BASE
══════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;500;600&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f8f5f0;
  color: #1a1a2e;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 60px;
  min-height: 44px;
  background: rgba(10, 10, 20, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.nav-logo h1 {
  color: #d4af37;
  font-size: 26px;
  letter-spacing: 1px;
  line-height: 1;
}

.nav-logo span {
  color: #aaa;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
}

.nav-logo img {
  width: 90px;
  height: 56px;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #d4af37;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  color: #d4af37;
  font-size: 24px;
  cursor: pointer;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  overflow: hidden;
}

/* LEFT — pure image, no overlay */
.hero-left-img {
  position: relative;
  overflow: hidden;
}

.hero-left-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 7s ease;
}

.hero-left-img:hover img {
  transform: scale(1.04);
}

.hero-img-location-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(10, 22, 48, 0.85);
  color: #d4af37;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-left: 3px solid #d4af37;
  backdrop-filter: blur(6px);
  border-radius: 0 4px 4px 0;
}

/* RIGHT — rich grid panel (now full width) */
.hero-right-panel {
  background: linear-gradient(150deg, #0a1e3c 0%, #0e3558 60%, #0a2a4a 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='69.28' viewBox='0 0 60 69.28'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1'%3E%3C!-- Top face --%3E%3Cpolygon points='30,0 60,17.32 30,34.64 0,17.32'/%3E%3C!-- Left face --%3E%3Cpolygon points='0,17.32 30,34.64 30,69.28 0,51.96'/%3E%3C!-- Right face --%3E%3Cpolygon points='60,17.32 60,51.96 30,69.28 30,34.64'/%3E%3C!-- Center vertical line --%3E%3Cline x1='30' y1='34.64' x2='30' y2='0'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 69.28px;
  background-repeat: repeat;
}

.hero-right-inner {
  position: relative;
  z-index: 1;
  padding: 80px 60px;
  width: 100%;
  max-width: 780px;
}

/* Tag row */
.hero-tag-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-tag-dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: #d4af37;
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero-tag-text {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #d4af37;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

/* Title */
.hero-title {
  font-size: 68px;
  line-height: 1.0;
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin: 0 0 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-title-gold {
  color: #d4af37;
  font-style: italic;
}

/* Divider */
.hero-divider {
  width: 55px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #f0d060);
  border-radius: 2px;
  margin-bottom: 18px;
}

/* Feature chips — 2 column grid */
.hero-chips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 13px;
  color: #cbd5e1;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  cursor: default;
}

.hero-chip:hover {
  background: rgba(212,175,55,0.15);
  border-color: #d4af37;
  color: #f0d060;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.2);
}

/* Info grid — single gold stat card */
.hero-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 28px;
}

.hero-info-card {
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-info-card strong {
  font-size: 26px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  display: block;
  transition: transform 0.3s ease;
}

.hero-info-card p {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 4px 0 0;
  font-family: 'Poppins', sans-serif;
}

.gold-card {
  background: linear-gradient(135deg, #c8961e, #f0d060);
  padding: 28px 22px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.gold-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 16px 40px rgba(212,175,55,0.45);
}

.gold-card:hover strong {
  animation: starPulse 0.5s ease;
}

@keyframes starPulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.25); }
  100% { transform: scale(1); }
}

.gold-card strong, .gold-card p { color: #0a1e3c; }

.dark-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.6);
}

.dark-card strong { color: #d4af37; }
.dark-card p { color: #94a3b8; }

/* Buttons */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-hero-outline {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.45);
}

.btn-hero-outline:hover {
  border-color: #d4af37;
  color: #d4af37;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212,175,55,0.2);
}

/* Mobile */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left-img { height: 45vh; }
  .hero-right-inner { padding: 60px 32px; }
  .hero-title { font-size: 48px; }
  .hero-chips-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .hero-chips-grid { grid-template-columns: 1fr; }
  .hero-right-inner { padding: 40px 20px; }
}

.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: linear-gradient(135deg, #d4af37, #f0d060);
  color: #0f172a;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #b8962e, #d4af37);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212,175,55,0.4);
}

.btn-outline {
  background: transparent;
  color: #0f172a;
  border: 2px solid #0f172a;
}

.btn-outline:hover {
  background: #0f172a;
  color: white;
  transform: translateY(-2px);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-hint span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  position: relative;
}

.hero-scroll-hint span::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #d4af37;
  border-radius: 2px;
  animation: scrollDot 1.6s infinite;
}

@keyframes scrollDot {
  0%   { top: 6px; opacity: 1; }
  100% { top: 22px; opacity: 0; }
}

/* ══════════════════════════════════════
   SECTION TITLE
══════════════════════════════════════ */
.section-title {
  text-align: center;
  padding: 60px 20px 20px;
}

.sub-label {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.section-title h2 {
  font-size: 36px;
  color: #0f172a;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #f0d060);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about-section {
  display: flex;
  align-items: stretch;
  gap: 60px;
  padding: 80px;
  background: #fcfbfa;
}

.about-img {
  flex: 1.1;
  position: relative;
  min-height: 500px;
}

.about-img img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  display: block;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, #d4af37, #f0d060);
  color: #0f172a;
  padding: 20px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(212,175,55,0.4);
}

.badge-num {
  display: block;
  font-size: 28px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.badge-txt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 38px;
  color: #0f172a;
  margin-bottom: 6px;
}

.about-text h2::after {
  content: '';
  display: block;
  width: 55px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #f0d060);
  margin-top: 10px;
  border-radius: 2px;
}

.about-text p {
  color: #555;
  line-height: 1.9;
  margin: 16px 0;
  font-size: 15px;
}

.about-stats {
  display: flex;
  gap: 30px;
  margin: 28px 0;
}

.stat {
  text-align: center;
  padding: 16px 24px;
  background: #f8f5f0;
  border-radius: 10px;
  border-bottom: 3px solid #d4af37;
}

.stat span {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: #d4af37;
  font-family: 'Playfair Display', serif;
}

.stat p {
  font-size: 12px;
  color: #666;
  margin: 4px 0 0;
  padding: 0;
}

/* ══════════════════════════════════════
   SERVICES — APARTMENT TYPES
══════════════════════════════════════ */
.apt-types {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 10px 60px 40px;
  flex-wrap: wrap;
}

.apt-card {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  padding: 30px 40px;
  border-radius: 14px;
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  border: 1px solid rgba(212,175,55,0.3);
  transition: all 0.35s;
  cursor: default;
}

.apt-card:hover {
  transform: translateY(-8px);
  border-color: #d4af37;
  box-shadow: 0 16px 40px rgba(212,175,55,0.2);
}

.apt-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.apt-card h4 {
  font-size: 16px;
  color: #d4af37;
  font-family: 'Playfair Display', serif;
}

/* ══════════════════════════════════════
   SERVICES — AMENITIES GRID
══════════════════════════════════════ */
.amenities-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  padding: 0 60px 50px;
}

.amenity-col {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border-top: 4px solid #d4af37;
  transition: transform 0.3s, box-shadow 0.3s;
}

.amenity-col:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.amenity-heading {
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.amenity-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.amenity-list li {
  font-size: 14px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s;
}

.amenity-list li:hover {
  color: #0f172a;
}

.check {
  color: #d4af37;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   EXTRA SERVICES
══════════════════════════════════════ */
.extra-services {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 0 60px 70px;
  flex-wrap: wrap;
}

.extra-card {
  background: linear-gradient(135deg, #d4af37 0%, #f0d060 100%);
  color: #0f172a;
  padding: 36px 30px;
  border-radius: 14px;
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  transition: all 0.35s;
  box-shadow: 0 8px 25px rgba(212,175,55,0.3);
}

.extra-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(212,175,55,0.4);
}

.extra-icon {
  font-size: 42px;
  margin-bottom: 14px;
}

.extra-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}

.extra-card p {
  font-size: 13px;
  color: #333;
  line-height: 1.6;
}

/* ══════════════════════════════════════
   FEATURED APARTMENTS CARDS
══════════════════════════════════════ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  padding: 20px 60px 70px;
}

.card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0,0,0,0.09);
  transition: transform 0.35s, box-shadow 0.35s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s;
}

.card:hover .card-img-wrap img {
  transform: scale(1.07);
}

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #0f172a;
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.card-badge.gold {
  background: linear-gradient(135deg, #d4af37, #f0d060);
  color: #0f172a;
}

.card-body {
  padding: 20px 22px 24px;
}

.card-body h3 {
  font-size: 20px;
  color: #0f172a;
  margin-bottom: 6px;
}

.card-loc {
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
}

.card-price {
  font-size: 22px;
  font-weight: 700;
  color: #d4af37;
  font-family: 'Playfair Display', serif;
  margin-bottom: 16px;
}

.card-price span {
  font-size: 13px;
  color: #888;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

.btn-card {
  display: inline-block;
  padding: 10px 24px;
  background: #0f172a;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-card:hover {
  background: linear-gradient(135deg, #d4af37, #f0d060);
  color: #0f172a;
  transform: translateY(-2px);
}

/* ══════════════════════════════════════
   GALLERY
══════════════════════════════════════ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 20px 60px 70px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,20,0.75), transparent);
  color: white;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0;
  transition: opacity 0.35s;
}

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

/* ══════════════════════════════════════
   REGISTER
══════════════════════════════════════ */
.register-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.register-box {
  background: white;
  width: 100%;
  max-width: 480px;
  padding: 48px 44px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  text-align: center;
}

.register-box h2 {
  font-size: 28px;
  color: #0f172a;
  margin-bottom: 6px;
}

.register-box > p {
  color: #777;
  margin-bottom: 28px;
  font-size: 14px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input {
  padding: 13px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}

button[type="submit"] {
  padding: 14px;
  border: none;
  background: linear-gradient(135deg, #d4af37, #f0d060);
  color: #0f172a;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
}

button[type="submit"]:hover {
  background: linear-gradient(135deg, #b8962e, #d4af37);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212,175,55,0.4);
}

.login-link {
  margin-top: 18px;
  font-size: 13px;
  color: #666;
}

.login-link a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
}

.reg-message {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
}

.reg-message.success { color: #16a34a; }
.reg-message.error   { color: #dc2626; }

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact-section {
  background: #f8f5f0;
  padding: 20px 80px 80px;
}

.contact-wrapper {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(212,175,55,0.2);
}

.contact-info h3 {
  font-size: 24px;
  margin-bottom: 28px;
  color: #d4af37;
}

.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-detail span {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.7;
}

.contact-form {
  flex: 1.4;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form textarea {
  padding: 13px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  resize: vertical;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form textarea:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: #0a0a14;
  padding: 60px 60px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr 1.4fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid #1e1e2e;
}

.footer-logo {
  color: #d4af37;
  font-size: 28px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.footer-tagline {
  color: #e4e2e2;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 14px;
}

.footer-desc {
  color: #d6d4d4;
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer-contact-mini p {
  color: #e0dede;
  font-size: 12px;
  line-height: 1.9;
}

.footer-col-title {
  color: #d4af37;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #1e1e2e;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  color: #dad3d3;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}

.footer-nav a:hover {
  color: #d4af37;
  padding-left: 6px;
}

.footer-map {
  margin-bottom: 12px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #1e1e2e;
}

.footer-map-link {
  display: inline-block;
  color: #d4af37;
  font-size: 13px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-map-link:hover {
  opacity: 0.8;
}

.footer-review-text {
  color: #e9e9e9;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.footer-stars {
  font-size: 20px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.btn-review {
  display: block;
  text-align: center;
  padding: 11px 20px;
  background: linear-gradient(135deg, #d4af37, #f0d060);
  color: #0f172a;
  text-decoration: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s;
  margin-bottom: 10px;
}

.btn-review:hover {
  background: linear-gradient(135deg, #b8962e, #d4af37);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212,175,55,0.4);
}

.btn-whatsapp-footer {
  display: block;
  text-align: center;
  padding: 11px 20px;
  background: #25d366;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s;
}

.btn-whatsapp-footer:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37,211,102,0.35);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  color: #555;
  font-size: 12px;
}

/* ── Responsive footer ── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 40px 20px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ══════════════════════════════════════
   BOOKING & LOGIN PAGES
══════════════════════════════════════ */
.booking-container,
.login-box {
  width: 440px;
  margin: 80px auto;
  background: white;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* ══════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-up {
  animation: fadeUp 1s ease forwards;
}

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

/* stagger children */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .nav-links { display: none; flex-direction: column; gap: 16px; position: absolute; top: 70px; left: 0; right: 0; background: #0a0a14; padding: 24px; }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }

  .hero-content h2 { font-size: 38px; }
  .hero-content { padding: 0 30px; text-align: left; }

  .about-section { flex-direction: column; padding: 40px 24px; }
  .about-badge { right: 0; bottom: -16px; }
  .about-stats { flex-wrap: wrap; gap: 14px; }

  .amenities-section { padding: 0 20px 40px; }
  .apt-types, .extra-services { padding: 10px 20px 40px; }

  .cards { padding: 20px; }
  .gallery { grid-template-columns: repeat(2, 1fr); padding: 10px 20px 40px; }

  .contact-section { padding: 20px 20px 60px; }
  .contact-wrapper { flex-direction: column; }

  .footer { padding: 30px 20px; }
}

@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr 1fr; }
  .hero-content h2 { font-size: 30px; }
}

/* ══════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════ */
.page-hero {
  height: 380px;
  position: relative;
  background: url('../images/Cover Photo.webp') center/cover no-repeat;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,20,0.52) 0%, rgba(10,10,20,0.35) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.page-hero-content h2 {
  font-size: 48px;
  margin: 8px 0;
}

.page-hero-content p {
  font-size: 15px;
  color: #ddd;
}

/* ══════════════════════════════════════
   FILTER BAR
══════════════════════════════════════ */
.filter-section {
  padding: 36px 60px 10px;
  display: flex;
  justify-content: center;
}

.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 9px 24px;
  border: 2px solid #d4af37;
  background: transparent;
  color: #0f172a;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, #d4af37, #f0d060);
  color: #0f172a;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(212,175,55,0.35);
}

/* ══════════════════════════════════════
   APARTMENTS SECTION
══════════════════════════════════════ */
.apts-section {
  padding: 20px 0 60px;
}

.no-results {
  text-align: center;
  color: #888;
  padding: 60px 20px;
  font-size: 15px;
}

/* Extra card details */
.card-type-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #d4af37;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.card-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 12px;
}

.card-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.amenity-tag {
  font-size: 11px;
  background: #f0f0f0;
  color: #444;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 500;
}

.card-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

/* ══════════════════════════════════════
   BOOKING PAGE
══════════════════════════════════════ */
.booking-page {
  background: #f8f5f0;
  padding: 60px 60px 80px;
  min-height: calc(100vh - 70px);
}

.booking-layout {
  display: flex;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
}

.booking-form-wrap {
  flex: 1.4;
  background: white;
  padding: 44px 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.09);
}

.booking-form-wrap h2 {
  font-size: 32px;
  color: #0f172a;
  margin-bottom: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.3px;
}

.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: white;
  color: #1a1a2e;
}

.form-group select:focus,
.form-group textarea:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 8px 0 20px;
}

.form-section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 16px;
}

.btn-submit {
  width: 100%;
  padding: 15px;
  border: none;
  background: linear-gradient(135deg, #d4af37, #f0d060);
  color: #0f172a;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
  margin-top: 8px;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #b8962e, #d4af37);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212,175,55,0.4);
}

/* Booking Summary */
.booking-summary {
  flex: 0.8;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  padding: 32px 28px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  position: sticky;
  top: 90px;
  border: 1px solid rgba(212,175,55,0.2);
}

.booking-summary h3 {
  font-size: 20px;
  color: #d4af37;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.summary-img-wrap {
  margin-bottom: 18px;
  border-radius: 10px;
  overflow: hidden;
}

.summary-img-wrap img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.summary-placeholder {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
  text-align: center;
  padding: 10px 0;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 13px;
}

.summary-row span {
  color: #aaa;
  flex-shrink: 0;
}

.summary-row strong {
  color: #fff;
  text-align: right;
}

.apt-name-row strong {
  color: #d4af37;
}

.summary-divider {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 6px 0;
}

.total-row {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(212,175,55,0.3);
}

.total-row span {
  font-size: 15px;
  font-weight: 700;
  color: #d4af37;
}

.total-row strong {
  font-size: 20px;
  color: #d4af37;
  font-family: 'Playfair Display', serif;
}

/* ══════════════════════════════════════
   CONFIRMATION MODAL
══════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

.modal-box {
  background: white;
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: modalPop 0.35s ease;
}

@keyframes modalPop {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.modal-icon {
  font-size: 52px;
  margin-bottom: 16px;
}

.modal-box h3 {
  font-size: 26px;
  color: #0f172a;
  margin-bottom: 14px;
}

.modal-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 28px;
}

.modal-box code {
  background: #f0f0f0;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 13px;
  color: #0f172a;
}

.modal-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline-dark {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  background: transparent;
  color: #0f172a;
  border: 2px solid #0f172a;
}

.btn-outline-dark:hover {
  background: #0f172a;
  color: white;
  transform: translateY(-2px);
}

/* ══════════════════════════════════════
   AUTH PAGE (Login)
══════════════════════════════════════ */
.auth-page {
  min-height: calc(100vh - 70px);
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}

.auth-card {
  background: white;
  width: 100%;
  max-width: 460px;
  padding: 48px 44px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.auth-brand {
  text-align: center;
  margin-bottom: 28px;
}

.auth-brand h1 {
  color: #d4af37;
  font-size: 30px;
  letter-spacing: 1px;
}

.auth-brand span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
  font-family: 'Poppins', sans-serif;
}

.auth-sub {
  text-align: center;
  color: #777;
  font-size: 13px;
  margin-bottom: 28px;
}

.toggle-pw {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 16px;
  user-select: none;
  margin-top: 10px;
}

/* ══════════════════════════════════════
   RESPONSIVE — NEW PAGES
══════════════════════════════════════ */
@media (max-width: 900px) {
  .booking-layout {
    flex-direction: column;
  }

  .booking-summary {
    position: static;
    width: 100%;
  }

  .booking-page {
    padding: 40px 20px 60px;
  }
}

@media (max-width: 768px) {
  .filter-section { padding: 28px 20px 10px; }
  .page-hero-content h2 { font-size: 34px; }
  .form-row { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: 32px 24px; }
  .auth-card { padding: 36px 24px; }
}

/* ══════════════════════════════════════
   FACILITIES — AMENITY CARDS (hotel style)
══════════════════════════════════════ */
#facilities {
  background: #f8f5f0;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 10px 60px 70px;
  background: #f8f5f0;
}

.amenity-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 44px 30px;
  border: 1px solid #ddd;
  margin: -1px 0 0 -1px;
  background: #f8f5f0;
  transition: box-shadow 0.3s, border-color 0.3s;
  cursor: default;
}

.amenity-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border-color: #0f172a;
  z-index: 1;
  position: relative;
}

.amenity-card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  color: #0f172a;
}

.amenity-card-icon svg {
  width: 100%;
  height: 100%;
}

.amenity-card-title {
  font-size: 15px;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.amenity-card-link {
  font-size: 11px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
  color: #0f172a;
  text-transform: uppercase;
  border-bottom: 1.5px solid #0f172a;
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

.amenity-card:hover .amenity-card-link {
  color: #d4af37;
  border-color: #d4af37;
}

.amenity-card:hover .amenity-card-icon {
  color: #d4af37;
}

@media (max-width: 768px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 10px 20px 50px;
  }
}

@media (max-width: 480px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════
   SERVICES GRID (icon + text rows)
══════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 60px 70px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: white;
  border-radius: 14px;
  padding: 24px 22px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  border-left: 4px solid #ffffff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.service-icon {
  font-size: 32px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.service-text h4 {
  font-size: 15px;
  color: #0f172a;
  margin-bottom: 6px;
  font-family: 'Playfair Display', serif;
}

.service-text p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px 50px;
  }
}

@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════
   NAVBAR DROPDOWN
══════════════════════════════════════ */
.has-dropdown {
  position: relative;
}

.dropdown-toggle .arrow {
  font-size: 10px;
  display: inline-block;
  transition: transform 0.3s;
  margin-left: 3px;
  vertical-align: middle;
}

.has-dropdown:hover .dropdown-toggle .arrow {
  transform: rotate(180deg);
}

.dropdown {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #0f172a;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 10px;
  min-width: 220px;
  list-style: none;
  padding: 8px 0;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 2000;
}

/* Transparent bridge fills the gap between trigger and dropdown so hover isn't lost */
.dropdown::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  height: 20px;
  background: transparent;
}

/* little arrow pointer */
.dropdown::after {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(212, 175, 55, 0.25);
  pointer-events: none;
}

.has-dropdown:hover .dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  color: #ccc;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
  white-space: nowrap;
}

.dropdown li a:hover {
  background: rgba(212, 175, 55, 0.1);
  color: #d4af37;
  padding-left: 26px;
}

.dropdown li a::after {
  display: none; /* remove the underline animation from base nav-links a */
}

/* divider between dropdown items */
.dropdown li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Mobile: show dropdown as expanded list */
@media (max-width: 768px) {
  .dropdown {
    position: static;
    visibility: visible;
    opacity: 1;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.04);
    min-width: unset;
    padding: 4px 0;
    display: none;
  }

  .has-dropdown.open .dropdown {
    display: block;
  }

  .dropdown::before,
  .dropdown::after {
    display: none;
  }

  .dropdown li a {
    padding: 9px 28px;
    font-size: 13px;
  }

  .dropdown-toggle .arrow {
    float: right;
  }
}

/* ── Dropdown section labels & divider ── */
.dropdown-section-label {
  padding: 8px 20px 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #d4af37;
  font-family: 'Poppins', sans-serif;
  pointer-events: none;
}

.dropdown-divider {
  height: 1px;
  background: rgba(212, 175, 55, 0.2);
  margin: 6px 0;
  list-style: none;
}

.dropdown li.dropdown-section-label + li {
  border-top: none;
}

.dropdown li.dropdown-divider + li {
  border-top: none;
}

/* ══════════════════════════════════════
   FLOATING SOCIAL BUTTONS (WhatsApp + Instagram + Facebook)
══════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Instagram FAB */
.insta-fab {
  width: 48px;
  height: 48px;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(214, 36, 159, 0.45);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.insta-fab:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 24px rgba(214, 36, 159, 0.65);
}

.insta-fab svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.insta-fab::before {
  content: 'Follow on Instagram';
  position: absolute;
  right: 58px;
  background: #0f172a;
  color: white;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.insta-fab:hover::before {
  opacity: 1;
}

/* Facebook FAB */
.fb-fab {
  width: 48px;
  height: 48px;
  background: #1877f2;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(24, 119, 242, 0.45);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.fb-fab:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 24px rgba(24, 119, 242, 0.65);
}

.fb-fab svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.fb-fab::before {
  content: 'Follow on Facebook';
  position: absolute;
  right: 58px;
  background: #0f172a;
  color: white;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.fb-fab:hover::before {
  opacity: 1;
}

.whatsapp-fab {
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: waPulse 2.5s infinite;
}

.whatsapp-fab:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.7);
  animation: none;
}

.whatsapp-fab svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.call-fab {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  transition: transform 0.3s, background 0.3s;
}

.call-fab:hover {
  transform: scale(1.1);
  background: rgba(255,255,255,0.25);
}

.call-fab svg {
  width: 20px;
  height: 20px;
  fill: white;
}

/* tooltip label */
.whatsapp-fab::before {
  content: 'Chat on WhatsApp';
  position: absolute;
  right: 68px;
  background: #0f172a;
  color: white;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.whatsapp-fab:hover::before {
  opacity: 1;
}

@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 20px;
    right: 18px;
  }
  .whatsapp-fab {
    width: 52px;
    height: 52px;
  }
}

/* ══════════════════════════════════════
   GET AVAILABILITY FORM
══════════════════════════════════════ */
.availability-form {
  background: white;
  border-radius: 14px;
  padding: 32px 36px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.avail-title {
  font-size: 20px;
  font-family: 'Playfair Display', serif;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0e8d0;
}

.avail-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #f4f4f4;
}

.avail-row:last-of-type {
  border-bottom: none;
}

.avail-row label {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
}

.avail-row input,
.avail-row select,
.avail-row textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #e8e8e8;
  border-radius: 8px;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: #fafafa;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.avail-row input:focus,
.avail-row select:focus,
.avail-row textarea:focus {
  border-color: #d4af37;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}

.avail-row textarea {
  resize: vertical;
  min-height: 80px;
  align-self: start;
}

/* align textarea label to top */
.avail-row:has(textarea) {
  align-items: flex-start;
}

.avail-row:has(textarea) label {
  padding-top: 10px;
}

.avail-submit-row {
  margin-top: 10px;
  border-bottom: none !important;
}

.avail-submit-row button {
  padding: 12px 36px;
  background: linear-gradient(135deg, #d4af37, #f0d060);
  color: #0f172a;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.avail-submit-row button:hover {
  background: linear-gradient(135deg, #b8962e, #d4af37);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212,175,55,0.4);
}

/* Responsive */
@media (max-width: 600px) {
  .avail-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .avail-row:has(textarea) label {
    padding-top: 0;
  }

  .availability-form {
    padding: 24px 20px;
  }
}

/* ── Featured apartments on dark bg ── */
#featured-apartments .card {
  background: white;
}

#featured-apartments .card-type-tag {
  background: rgba(212,175,55,0.15);
}

#featured-apartments .amenity-tag {
  background: #f0f0f0;
}

/* ══════════════════════════════════════
   OWNER CARD (homepage inline)
══════════════════════════════════════ */
.owner-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 22px 0 26px;
}

.owner-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #f0d060);
  color: #0f172a;
  font-size: 18px;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 1px;
}

.owner-info h4 {
  font-size: 16px;
  color: #d4af37;
  font-family: 'Playfair Display', serif;
  margin-bottom: 2px;
}

.owner-info span {
  font-size: 11px;
  color: #aaa;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  display: block;
  margin-bottom: 6px;
}

.owner-info p {
  font-size: 12px;
  color: #888;
  line-height: 1.6;
  margin: 0;
}

/* ══════════════════════════════════════
   OWNER SECTION (about page)
══════════════════════════════════════ */
.owner-section {
  background: #f8f5f0;
  padding: 20px 0 80px;
}

.owner-profile {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 60px;
}

.owner-avatar-lg {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #f0d060);
  color: #0f172a;
  font-size: 32px;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 28px rgba(212,175,55,0.35);
  letter-spacing: 2px;
}

.owner-details {
  flex: 1;
}

.owner-details h3 {
  font-size: 30px;
  color: #0f172a;
  margin-bottom: 4px;
}

.owner-title {
  font-size: 13px;
  color: #d4af37;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  font-family: 'Poppins', sans-serif;
}

/* Timeline */
.owner-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
  border-left: 2px solid #e0d5c0;
  padding-left: 24px;
  position: relative;
}

.timeline-item {
  position: relative;
  padding-bottom: 24px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -31px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #aaa;
  border: 2px solid #f8f5f0;
}

.timeline-dot.gold {
  background: linear-gradient(135deg, #d4af37, #f0d060);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.2);
}

.timeline-year {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #d4af37;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* Quote */
.owner-quote {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-left: 4px solid #d4af37;
  border-radius: 10px;
  padding: 20px 24px;
  margin: 0 0 24px;
  font-size: 14px;
  color: #ccc;
  line-height: 1.8;
  font-style: italic;
}

.owner-quote cite {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-style: normal;
  color: #d4af37;
  font-weight: 600;
}

/* Badges */
.owner-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.owner-badge {
  font-size: 12px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  background: white;
  color: #0f172a;
  border: 1px solid #e0d5c0;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Responsive */
@media (max-width: 768px) {
  .owner-profile {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    text-align: center;
  }

  .owner-timeline {
    text-align: left;
  }

  .owner-badges {
    justify-content: center;
  }

  .owner-card {
    flex-direction: column;
    text-align: center;
  }
}

/* ══════════════════════════════════════
   OWNER — WHAT HE BRINGS GRID
══════════════════════════════════════ */
.owner-brings {
  margin: 28px 0;
}

.owner-brings h4 {
  font-size: 16px;
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  margin-bottom: 16px;
}

.brings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.brings-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: white;
  border-radius: 10px;
  padding: 16px;
  border: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s, transform 0.3s;
}

.brings-item:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.brings-icon {
  font-size: 26px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.brings-item strong {
  display: block;
  font-size: 13px;
  color: #0f172a;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 4px;
}

.brings-item p {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 600px) {
  .brings-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════
   SVG ICON STYLES — SERVICES
══════════════════════════════════════ */

/* Apt type cards — SVG icon */
.apt-icon-svg {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: rgba(212,175,55,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.4s;
}

.apt-icon-svg svg {
  width: 28px;
  height: 28px;
  stroke: #d4af37;
  transition: stroke 0.3s, transform 0.4s;
}

.apt-card:hover .apt-icon-svg {
  background: rgba(212,175,55,0.25);
  transform: scale(1.1);
}

.apt-card:hover .apt-icon-svg svg {
  transform: rotate(8deg) scale(1.15);
  stroke: #f0d060;
}

/* Service item — SVG icon */
.service-icon-svg {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.06));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212,175,55,0.2);
  transition: background 0.3s, transform 0.35s, box-shadow 0.35s;
}

.service-icon-svg svg {
  width: 24px;
  height: 24px;
  stroke: #d4af37;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), stroke 0.3s;
}

.service-item:hover .service-icon-svg {
  background: linear-gradient(135deg, #d4af37, #f0d060);
  box-shadow: 0 6px 20px rgba(212,175,55,0.35);
  transform: scale(1.08);
}

.service-item:hover .service-icon-svg svg {
  stroke: #0f172a;
  transform: scale(1.2) rotate(-6deg);
}

/* ══════════════════════════════════════
   STAGGER ENTRANCE ANIMATIONS
══════════════════════════════════════ */

/* Apt cards — slide up with stagger */
.anim-card {
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 0.6s ease forwards;
  animation-delay: calc(var(--i) * 0.15s);
}

/* Service items — fade in from left with stagger */
.anim-service {
  opacity: 0;
  transform: translateX(-24px);
  animation: fadeInLeft 0.55s ease forwards;
  animation-delay: calc(0.2s + var(--i) * 0.1s);
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Pause animations until section is in view */
.anim-card,
.anim-service {
  animation-play-state: paused;
}

.services-animated .anim-card,
.services-animated .anim-service {
  animation-play-state: running;
}

/* ── Icon pulse on page load for apt cards ── */
@keyframes iconPulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.18); }
  100% { transform: scale(1); }
}

.apt-card .apt-icon-svg {
  animation: iconPulse 2.4s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.4s);
}

.apt-card:hover .apt-icon-svg {
  animation: none;
  transform: scale(1.15);
}

/* ══════════════════════════════════════
   SERVICE DETAIL PAGES
══════════════════════════════════════ */
.service-detail-section {
  background: #fff;
  padding: 80px 80px 70px;
}

.service-detail-grid {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.service-detail-img {
  flex: 1.1;
  border-radius: 16px;
  overflow: hidden;
}

.service-detail-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
 
}
.service-detail-img p{
  color: #555;
  font-size: 15px;
   line-height: 1.9;
}


.service-detail-text {
  flex: 1;
}

.service-detail-text h2 {
  font-size: 34px;
  color: #0f172a;
  margin-bottom: 16px;
  line-height: 1.25;
}

.service-detail-text h2::after {
  content: '';
  display: block;
  width: 55px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #f0d060);
  margin-top: 10px;
  border-radius: 2px;
}

.service-detail-text p {
  color: #555;
  font-size: 15px;
  line-height: 1.9;
  margin: 16px 0;
}

.service-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-top: 24px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

.highlight-item{
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-item i{
    color: #c9a46c; /* Gold color */
    font-size: 18px;
    flex-shrink: 0;
}


/* ── Why Section ── */
.service-why-section {
  background: #f8f5f0;
  padding: 20px 0 70px;
}

.service-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 10px 60px 0;
}

.service-why-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  border-top: 4px solid #d4af37;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

.why-icon {
  font-size: 38px;
  margin-bottom: 14px;
}

.service-why-card h4 {
  font-size: 16px;
  color: #0f172a;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.service-why-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}


.faq {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
}

.faq-title{
    text-align:center;
    font-size:42px;
    margin-bottom:50px;
    color:#222;
    position:relative;
}

.faq-title::after{
    content:"";
    width:80px;
    height:3px;
    background:#c9a46c;
    display:block;
    margin:12px auto 0;
}

.faq h1 {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    background: #fff;
    padding: 18px 25px;
    margin: 0;
    border-left: 5px solid #c9a46c;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.faq p {
    background: #f8f8f8;
    color: #555;
    line-height: 1.8;
    padding: 20px 25px;
    margin: 0 0 25px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}



/* ── CTA Section ── */
.service-cta-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 70px 20px;
  text-align: center;
}

.service-cta-section h2 {
  color: #fff;
  font-size: 34px;
  margin-bottom: 12px;
}

.service-cta-section p {
  color: #ccc;
  font-size: 15px;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.service-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .service-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .service-detail-section {
    padding: 40px 24px 50px;
  }

  .service-detail-grid {
    flex-direction: column;
    gap: 30px;
  }

  .service-detail-img img {
    height: 280px;
  }

  .service-highlights {
    grid-template-columns: 1fr;
  }

  .service-why-grid {
    grid-template-columns: 1fr 1fr;
    padding: 10px 20px 0;
  }
}

@media (max-width: 480px) {
  .service-why-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════
   LOCATION SECTION
══════════════════════════════════════ */
.location-section {
  background: #fff;
  padding: 20px 0 80px;
}

.location-grid {
  display: flex;
  gap: 60px;
  align-items: stretch;
  padding: 10px 80px 0;
}

.location-text {
  flex: 1;
}

.location-text h3 {
  font-size: 28px;
  color: #0f172a;
  margin: 10px 0 18px;
  line-height: 1.3;
}

.location-text h3::after {
  content: '';
  display: block;
  width: 55px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #f0d060);
  margin-top: 10px;
  border-radius: 2px;
}

.location-text p {
  color: #555;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 14px;
}

.location-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.loc-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f8f5f0;
  border-radius: 10px;
  padding: 14px 16px;
  border-left: 3px solid #d4af37;
  transition: transform 0.2s, box-shadow 0.2s;
}

.loc-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.loc-item > span {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.loc-item div strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 3px;
  font-family: 'Poppins', sans-serif;
}

.loc-item div p {
  font-size: 12px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.location-map-wrap {
  flex: 1;
  min-height: 480px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

@media (max-width: 1024px) {
  .location-grid {
    padding: 10px 40px 0;
  }
}

@media (max-width: 768px) {
  .location-grid {
    flex-direction: column;
    padding: 10px 24px 0;
    gap: 30px;
  }

  .location-map-wrap {
    min-height: 320px;
  }

  .location-highlights {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════
   GOOGLE REVIEWS MARQUEE
══════════════════════════════════════ */
.reviews-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 0 0 60px;
  overflow: hidden;
}

.reviews-section .section-title h2 {
  color: #fff;
}

.reviews-section .section-title h2::after {
  background: linear-gradient(90deg, #d4af37, #f0d060);
}

.reviews-marquee-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px 0 30px;
}

/* Outer container clips the overflow */
.reviews-track-outer {
  overflow: hidden;
  width: 100%;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* Inner scrolling track */
.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.reviews-track.left {
  animation: scrollLeft 40s linear infinite;
}

.reviews-track.right {
  animation: scrollRight 40s linear infinite;
}

/* Pause on hover */
.reviews-track-outer:hover .reviews-track {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Individual review card */
.review-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 24px;
  width: 300px;
  flex-shrink: 0;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  border-top: 3px solid #d4af37;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.25);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-meta strong {
  font-size: 14px;
  color: #0f172a;
  font-family: 'Poppins', sans-serif;
}

.review-meta span {
  font-size: 12px;
  color: #888;
}

.review-score {
  background: #1a3a8f;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-stars {
  font-size: 13px;
  letter-spacing: 1px;
}

.review-title {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  font-family: 'Poppins', sans-serif;
  margin: 0;
}

.review-text {
  font-size: 13px;
  color: #555;
  line-height: 1.65;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-date {
  font-size: 11px;
  color: #aaa;
  margin-top: 4px;
}

/* CTA below marquee */
.reviews-cta {
  text-align: center;
  margin-top: 10px;
  padding: 0 20px;
}

.reviews-cta p {
  color: #ccc;
  font-size: 15px;
  margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .review-card {
    width: 260px;
    padding: 18px 18px;
  }

  .reviews-track.left {
    animation-duration: 30s;
  }

  .reviews-track.right {
    animation-duration: 30s;
  }
}

/* ══════════════════════════════════════
   BUSINESS HOURS
══════════════════════════════════════ */
.business-hours {
  margin-top: 28px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 20px 22px;
}

.hours-title {
  font-size: 14px;
  font-weight: 700;
  color: #d4af37;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  gap: 12px;
}

.hours-row:last-of-type {
  border-bottom: none;
}

.hours-day {
  font-size: 13px;
  color: #ccc;
  font-family: 'Poppins', sans-serif;
}

.hours-time {
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-align: right;
}

.open-badge {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.35);
}

.hours-note {
  font-size: 12px;
  color: #22c55e;
  margin-top: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

/* ══════════════════════════════════════
   GOOGLE RATING SUMMARY
══════════════════════════════════════ */
.google-rating-summary {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto 40px;
  padding: 32px 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Left: big score */
.grs-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 130px;
}

.grs-score {
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.grs-stars {
  display: flex;
  gap: 2px;
  font-size: 22px;
}

.grs-star.filled { color: #fbbc04; }
.grs-star.half   { color: #fbbc04; opacity: 0.5; }

.grs-count {
  font-size: 13px;
  color: #aaa;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.grs-link {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 12px;
  color: #d4af37;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  transition: opacity 0.2s;
}

.grs-link:hover { opacity: 0.8; }

/* Middle: bar chart */
.grs-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 180px;
  justify-content: center;
}

.grs-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.grs-bar-label {
  font-size: 13px;
  color: #aaa;
  font-family: 'Poppins', sans-serif;
  width: 10px;
  text-align: right;
  flex-shrink: 0;
}

.grs-bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}

.grs-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #fbbc04, #f0d060);
  border-radius: 4px;
  transition: width 1s ease;
}

/* Right: review snippets */
.grs-snippets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  min-width: 240px;
  max-width: 380px;
}

.grs-snippet {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 12px 14px;
  border-left: 3px solid #d4af37;
}

.grs-snippet-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.grs-snippet-body {
  flex: 1;
}

.grs-snippet-stars {
  color: #fbbc04;
  font-size: 12px;
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.grs-snippet-body p {
  font-size: 12px;
  color: #ccc;
  line-height: 1.6;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.grs-snippet-body p strong {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .google-rating-summary {
    padding: 24px 20px;
    gap: 24px;
  }

  .grs-score {
    font-size: 52px;
  }

  .grs-snippets {
    max-width: 100%;
  }

  .business-hours {
    margin-top: 20px;
  }
}
