﻿/* ══════════════════════════════════════
   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: 20px 60px;
  min-height: 60px;
  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: 120px;
  height: 75px;
  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 {
  height: 100vh;
  position: relative;
  background: url('../images/Cover Photo.webp') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(112, 112, 121, 0.75) 0%, rgba(126, 126, 128, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 700px;
  padding: 0 20px;
}

.hero-tag {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 16px;
  font-family: 'Poppins', sans-serif;
}

.hero-content h2 {
  font-size: 64px;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-sub {
  font-size: 17px;
  color: #ddd;
  margin-bottom: 10px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}

.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: white;
  border: 2px solid #d4af37;
}

.btn-outline:hover {
  background: #d4af37;
  color: #0f172a;
  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; }

  .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: 320px;
  position: relative;
  background: url('../images/Cover Photo.webp') center/cover no-repeat;
  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.82) 0%, rgba(10,10,20,0.6) 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 #d4af37;
  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% + 14px);
  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;
}

/* little arrow pointer */
.dropdown::before {
  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);
}

.dropdown::after {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #0f172a;
}

.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 WHATSAPP BUTTON
══════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.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);
}
