/* ============================================================
   Ozana Living – Main Stylesheet  |  Niddo-inspired theme
   ============================================================ */

/* ── Google Fonts loaded in HTML ── */

/* ============================================================
   0. CSS RESET & VARIABLES
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green:        #c9a84c;
  --green-hover:  #a8882a;
  --green-pale:   #fdf4dc;
  --green-dark:   #7c5c1a;
  --lime:         #d4a847;
  --lime-hover:   #b88a2e;
  --teal-dark:    #1e1400;
  --bg:           #f9f6f2;
  --bg-2:         #f1ede8;
  --bg-dark:      #0f172a;
  --text:         #0f172a;
  --text-muted:   #64748b;
  --border:       #e2e8f0;
  --white:        #ffffff;
  --card-shadow:  0 4px 24px rgba(15, 23, 42, 0.07);
  --card-shadow-hover: 0 12px 40px rgba(15, 23, 42, 0.13);
  --radius:       14px;
  --radius-sm:    8px;
  --transition:   0.3s ease;
  --ff-heading:   'Playfair Display', Georgia, serif;
  --ff-body:      'Raleway', 'Segoe UI', sans-serif;
}

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

body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

section { padding: 96px 0; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text);
  background: none;
  padding: 0;
  border-radius: 0;
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--lime);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-title {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.75;
}

/* ============================================================
   1. PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden { opacity: 0; visibility: hidden; }

.preloader-logo {
  font-family: var(--ff-heading);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.preloader-logo span { color: var(--green); }

.preloader-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(255,255,255,0.15);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   2. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(15,23,42,0.07);
  transition: box-shadow var(--transition), padding var(--transition);
  padding: 18px 0;
}

.nav.scrolled {
  box-shadow: 0 2px 24px rgba(15,23,42,0.12);
  padding: 13px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo { display: flex; flex-direction: column; line-height: 1.1; }

.nav-logo-name {
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}

.nav-logo-sub {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lime);
  transition: width var(--transition);
}

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

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

/* Nav CTA */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 10px 22px;
  border-radius: 50px;
  transition: background var(--transition), transform 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--green-hover);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  z-index: 1001;
  position: relative;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   3. MOBILE MENU
   ============================================================ */
@media (max-width: 1024px) {
  .nav {
    background: var(--white);
    box-shadow: 0 2px 16px rgba(15,23,42,0.08);
    padding: 14px 0;
  }

  .nav-logo-name { color: var(--text); }
  .nav-hamburger { display: flex; }
  .nav-hamburger span { background: var(--text); }

  .nav-links {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    background: var(--bg-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    height: 0;
    overflow: hidden;
    transition: height 0.4s ease;
    z-index: 1000;
  }

  .nav-links a {
    font-size: 1.25rem;
    padding: 18px 0;
    width: 100%;
    text-align: center;
    color: rgba(255,255,255,0.85);
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .nav.scrolled .nav-links a { color: rgba(255,255,255,0.85); }

  .nav-links a::after { display: none; }

  .nav-links .nav-cta {
    margin-top: 24px;
    width: auto;
    padding: 12px 32px;
  }

  .nav-cta.desktop-only { display: none; }
}

/* ============================================================
   4. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
  padding-top: 76px;
}

.hero-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 54%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1200&auto=format&fit=crop&q=80') center/cover no-repeat;
  border-radius: 0 0 0 72px;
  z-index: 0;
}

.hero-overlay { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 68% 1fr;
  gap: 48px;
  align-items: center;
  min-height: calc(92vh - 76px);
}

.hero-left {
  padding: 60px 0 60px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-tag::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--lime);
  border-radius: 2px;
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--ff-body);
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.12;
  margin-bottom: 22px;
}

.hero-title em { font-style: normal; color: var(--teal-dark); }

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.78;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--teal-dark);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 14px 30px;
  border-radius: 50px;
  transition: background var(--transition), transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(22,60,42,0.25);
}

.btn-primary:hover {
  background: #0f2c1e;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(22,60,42,0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 14px 30px;
  border-radius: 50px;
  border: 2px solid var(--border);
  transition: border-color var(--transition), background var(--transition), transform 0.2s;
}

.btn-outline:hover {
  border-color: var(--teal-dark);
  background: rgba(22,60,42,0.05);
  transform: translateY(-2px);
}

/* Hero stats card */
.hero-right {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding-bottom: 60px;
  padding-left: 40px;
  position: relative;
  z-index: 2;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 12px 48px rgba(15,23,42,0.14);
  min-width: 280px;
}

.hero-card-title {
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-stat {
  text-align: center;
  padding: 16px 10px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.hero-stat-value {
  font-family: var(--ff-body);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--teal-dark);
  line-height: 1;
  margin-bottom: 5px;
}

.hero-stat-label {
  font-size: 0.70rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.70rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  z-index: 2;
}

.hero-scroll i { font-size: 1rem; color: var(--lime); }

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

/* ============================================================
   5. ABOUT SECTION
   ============================================================ */
.about { background: #aa9866; padding: 40px 0 140px; }

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 16px 0;
}

.about-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 12px 30px 18px;
  text-align: center;
}

.about-stat-value {
  font-family: var(--ff-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--teal-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.about-img-wrap {
  position: relative;
  overflow: visible;
  margin-right: -120px;
  padding-top: 80px;
}

.about-img-main {
  height: 530px;
  object-fit: cover;
  border-radius: 60px;
  display: block;
  box-shadow: var(--card-shadow);
  margin-left: -15px;
  width: calc(100% + 240px);
}

.about-img-row {
  position: absolute;
  bottom: -210px;
  left: -250px;
  width: 560px;
  height: 420px;
}

.about-img-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 80px;
  border: 23px solid #aa9866;
  display: block;
}

.about-caption {
  position: absolute;
  bottom: -150px;
  left: 330px;
  right: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
}

.about-badge {
  position: absolute;
  top: 16px;
  right: -16px;
  background: var(--green);
  color: var(--white);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 4px 20px rgba(34,197,94,0.4);
}

.about-badge small {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 2px;
}

.about-text .section-subtitle {
  max-width: 100%;
  margin-bottom: 32px;
}

.about-bullets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 80px;
}

.about-bullet {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
}

.about-bullet i { color: var(--lime); font-size: 3.2rem; flex-shrink: 0; width: 52px; text-align: center; }

/* ============================================================
   6. ROOM DETAILS (TABS)
   ============================================================ */
.rooms { background: var(--bg-2); }

.rooms-header {
  text-align: center;
  margin-bottom: 52px;
}

.rooms-header .section-subtitle { margin: 0 auto; }

.rooms-tab-btns {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.room-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 11px 26px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  transition: all var(--transition);
}

.room-tab i { font-size: 0.9rem; }

.room-tab:hover,
.room-tab.active {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(22,60,42,0.25);
}

.rooms-panels { position: relative; }

.room-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.room-panel.active { display: block; }

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

.room-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
  align-items: stretch;
  background: var(--teal-dark);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(15,23,42,0.14);
}

.room-panel-img {
  height: 460px;
  overflow: hidden;
  order: 2;
}

.room-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.room-panel:hover .room-panel-img img { transform: scale(1.04); }

.room-panel-info {
  order: 1;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.room-panel-icon {
  width: 56px;
  height: 56px;
  background: var(--lime);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.room-panel-icon i { font-size: 1.4rem; color: var(--text); }

.room-panel-info h3 {
  font-family: var(--ff-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.room-panel-info p {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  margin-bottom: 28px;
}

.room-specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.room-specs li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
  padding: 10px 16px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--lime);
}

.room-specs li i { color: var(--lime); font-size: 0.85rem; flex-shrink: 0; }

/* ============================================================
   7. APARTMENTS SECTION
   ============================================================ */
.apartments { background: var(--bg); }

.apartments-header { text-align: center; margin-bottom: 48px; }
.apartments-header .section-subtitle { margin: 0 auto; }

/* Floor filter */
.floor-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}

.floor-btn {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  transition: all var(--transition);
}

.floor-btn:hover,
.floor-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(34,197,94,0.28);
}

/* Apartment grid */
.apt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.apt-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.3s ease;
  display: flex;
  flex-direction: column;
}

.apt-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
}

.apt-card.hidden { display: none; }

.apt-img-wrap {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.apt-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

/* Status badge – top left */
.apt-status {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
}

.apt-status.disponibil {
  background: rgba(34,197,94,0.85);
  color: var(--white);
}

.apt-status.rezervat {
  background: rgba(234,179,8,0.90);
  color: #1a1000;
}

/* mp badge – top right – Niddo style (lime) */
.apt-mp-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--lime);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 14px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.apt-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.apt-number {
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.apt-features {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.apt-feat {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.80rem;
  font-weight: 600;
  color: var(--text-muted);
}

.apt-feat i { color: var(--green); font-size: 0.82rem; }

.apt-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.apt-price {
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.apt-price span {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-muted);
  display: block;
  font-family: var(--ff-body);
  margin-top: 1px;
}

/* Niddo-style: pill button + circular arrow */
.apt-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.apt-btn {
  display: inline-flex;
  align-items: center;
  background: var(--teal-dark);
  color: var(--white);
  font-size: 0.80rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 10px 20px;
  border-radius: 50px;
  transition: background var(--transition), transform 0.2s;
  white-space: nowrap;
}

.apt-btn:hover {
  background: var(--green-hover);
  transform: translateY(-1px);
}

.apt-btn.disabled {
  background: #cbd5e1;
  color: #94a3b8;
  pointer-events: none;
  cursor: default;
}

span.apt-arrow.disabled {
  background: #e2e8f0;
  pointer-events: none;
  color: #94a3b8;
  cursor: default;
}

.apt-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 0.85rem;
  transition: background var(--transition), transform 0.2s;
  flex-shrink: 0;
}

.apt-arrow:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.apt-btn.disabled + .apt-arrow {
  background: #e2e8f0;
  pointer-events: none;
  color: #94a3b8;
}

/* ============================================================
   8. WHY CHOOSE US
   ============================================================ */
.why-us { background: var(--bg); }

.why-us-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.why-us-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: center;
}

.why-us-img-wrap {
  position: relative;
}

.why-us-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  display: block;
}

.why-us-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--lime);
  box-shadow: 0 4px 20px rgba(15,23,42,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.4;
  padding: 12px;
}

.why-us-badge strong {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--teal-dark);
  display: block;
  line-height: 1;
  margin-bottom: 3px;
}

.why-us-text { }

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow var(--transition), border-color var(--transition), transform 0.3s;
}

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

.why-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--lime);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.why-icon i { font-size: 1.1rem; color: var(--text); }

.why-card-body { flex: 1; }

.why-title {
  font-family: var(--ff-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.why-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   9. FEATURES / FACILITĂȚI
   ============================================================ */
.features { background: var(--bg-2); }

.features-header { text-align: center; margin-bottom: 56px; }

.features-header .section-subtitle { margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: box-shadow var(--transition), transform 0.3s, border-color var(--transition);
}

.feature-card:hover {
  box-shadow: var(--card-shadow-hover);
  border-color: var(--green);
  transform: translateY(-4px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon i { font-size: 1.5rem; color: var(--green-hover); }

.feature-name {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.68;
}

/* ============================================================
   10. LOCATION SECTION
   ============================================================ */
.location { background: var(--bg); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.location-text .section-subtitle {
  max-width: 100%;
  margin-bottom: 32px;
}

.proximity-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.proximity-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.proximity-item:hover {
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(34,197,94,0.10);
}

.proximity-icon {
  width: 42px;
  height: 42px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.proximity-icon i { font-size: 1.1rem; color: var(--green-hover); }

.proximity-info { flex: 1; }

.proximity-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.proximity-dist {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.proximity-dist span { color: var(--green-hover); font-weight: 700; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  height: 440px;
  border: 1px solid var(--border);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ============================================================
   10b. STATS BAR
   ============================================================ */
.stats-bar {
  background: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1600&auto=format&fit=crop&q=80') center/cover no-repeat;
  position: relative;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,20,15,0.72);
}

.stats-bar .container { position: relative; z-index: 1; }

.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 56px 0;
  text-align: center;
}

.stats-bar-item {
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,0.10);
}

.stats-bar-item:last-child { border-right: none; }

.stats-bar-value {
  font-family: var(--ff-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stats-bar-label {
  font-size: 0.80rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   11. TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--bg); }

.testimonials-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.testimonials-header {
  margin-bottom: 28px;
}

.testimonials-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.proof-avatars {
  display: flex;
  align-items: center;
}

.proof-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--white);
  object-fit: cover;
  margin-right: -10px;
}

.proof-more {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lime);
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text);
  margin-right: 0;
}

.proof-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 14px;
}

.proof-text strong {
  color: var(--text);
  display: block;
  margin-bottom: 2px;
}

.proof-stars {
  display: flex;
  gap: 3px;
  margin-top: 3px;
}

.proof-stars i { color: #f59e0b; font-size: 0.80rem; }

.testimonials-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform 0.3s;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--green-hover);
  font-weight: 600;
}

/* ============================================================
   12. FAQ SECTION
   ============================================================ */
.faq { background: var(--bg-2); }

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

/* Image collage – left column */
.faq-images {
  position: relative;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 560px;
}

.faq-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.faq-images-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: var(--teal-dark);
  border-radius: var(--radius);
  padding: 24px 28px;
  text-align: center;
}

.faq-images-overlay p {
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}

.faq-images-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--lime);
  color: var(--text);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 11px 24px;
  border-radius: 50px;
  transition: background var(--transition), transform 0.2s;
}

.faq-images-cta:hover {
  background: var(--lime-hover);
  transform: translateY(-2px);
}

/* Right column: header above accordion */
.faq-right .faq-header {
  margin-bottom: 28px;
}

.faq-right .section-subtitle { max-width: 100%; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: var(--green);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  transition: color var(--transition);
}

.faq-item.open .faq-question { color: var(--green-hover); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform 0.3s;
}

.faq-icon i { font-size: 0.75rem; color: var(--text-muted); transition: color var(--transition); }

.faq-item.open .faq-icon {
  background: var(--green-pale);
  transform: rotate(45deg);
}

.faq-item.open .faq-icon i { color: var(--green-hover); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 22px 20px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   13. CONTACT SECTION
   ============================================================ */
.contact { background: var(--bg); }

.contact-header { margin-bottom: 52px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 52px;
  align-items: start;
}

/* Contact image + overlaid info cards (right column) */
.contact-img-wrap {
  position: relative;
  height: 100%;
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
}

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

.contact-cards-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  padding: 24px;
  background: rgba(10,20,15,0.55);
  border-radius: var(--radius);
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(22,60,42,0.88);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  transition: background var(--transition);
}

.contact-card:hover { background: rgba(22,60,42,0.96); }

.contact-card-icon {
  width: 40px;
  height: 40px;
  background: var(--lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon i { font-size: 1rem; color: var(--text); }

.contact-card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 3px;
}

.contact-card-value {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 50px;
  transition: background var(--transition), transform 0.2s;
  box-shadow: 0 4px 16px rgba(37,211,102,0.30);
  margin-top: 16px;
}

.btn-whatsapp:hover {
  background: #1db954;
  transform: translateY(-2px);
}

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
}

.form-title {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}

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

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

.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--ff-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.12);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2322c55e' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 15px 24px;
  border-radius: 50px;
  transition: background var(--transition), transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(34,197,94,0.30);
  margin-top: 4px;
}

.btn-submit:hover {
  background: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34,197,94,0.40);
}

.form-success { display: none; text-align: center; padding: 32px 20px; }
.form-success.show { display: block; }

.form-success i {
  font-size: 3rem;
  color: var(--green);
  margin-bottom: 16px;
  display: block;
}

.form-success p {
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  color: var(--text);
}

/* ============================================================
   14. FOOTER (EXTENDED)
   ============================================================ */
.footer { background: var(--teal-dark); }

.footer-top { padding: 72px 0 52px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-logo-name {
  font-family: var(--ff-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.footer-logo-sub {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.footer-social:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.48);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links li a::before {
  content: '»';
  font-size: 0.85rem;
  color: var(--green);
}

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

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.55;
}

.footer-contact-list li i {
  color: var(--green);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-newsletter-desc {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin-bottom: 18px;
}

.footer-newsletter-form {
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}

.footer-newsletter-form input {
  flex: 1;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  color: var(--white);
  background: rgba(255,255,255,0.07);
  border: none;
  padding: 12px 18px;
  outline: none;
}

.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }

.footer-newsletter-form button {
  background: var(--lime);
  color: var(--text);
  border: none;
  padding: 12px 20px;
  font-size: 0.9rem;
  transition: background var(--transition);
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-newsletter-form button:hover { background: var(--lime-hover); }

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.28);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom-link {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.28);
  transition: color var(--transition);
}

.footer-bottom-link:hover { color: var(--white); }

.footer-bottom-sep {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.20);
}

/* ============================================================
   15. BACK TO TOP
   ============================================================ */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(34,197,94,0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, background var(--transition), transform 0.2s;
  z-index: 800;
}

#back-to-top.show { opacity: 1; visibility: visible; }

#back-to-top:hover {
  background: var(--green-hover);
  transform: translateY(-3px);
}

/* ============================================================
   16. AOS – Animate On Scroll
   ============================================================ */
[data-aos] {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-aos="fade-up"]    { transform: translateY(32px); }
[data-aos="fade-down"]  { transform: translateY(-32px); }
[data-aos="fade-left"]  { transform: translateX(32px); }
[data-aos="fade-right"] { transform: translateX(-32px); }
[data-aos="zoom-in"]    { transform: scale(0.92); }

[data-aos].aos-animate { opacity: 1; transform: none; }

/* ============================================================
   17. RESPONSIVE – 1200px
   ============================================================ */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

/* ============================================================
   18. RESPONSIVE – 1024px
   ============================================================ */
@media (max-width: 1024px) {
  section { padding: 72px 0; }

  .hero {
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-img {
    width: 100%;
    height: 380px;
    top: auto;
    bottom: 0;
    border-radius: var(--radius) var(--radius) 0 0;
    opacity: 0.35;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-left { padding: 40px 0 360px; }
  .hero-right { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-main { height: 280px; }
  .about-img-row img { height: 140px; }
  .about-badge { top: 12px; right: 12px; }

  .room-panel-grid { grid-template-columns: 1fr; }
  .room-panel-img { height: 280px; order: 1; }
  .room-panel-info { order: 2; padding: 32px 28px; }

  .apt-grid { grid-template-columns: repeat(2, 1fr); }

  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .why-us-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-us-img-wrap img { height: 360px; }
  .why-us-badge { bottom: -14px; right: 14px; }

  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.10); }
  .stats-bar-item:nth-child(2n) { border-bottom: 1px solid rgba(255,255,255,0.10); }
  .stats-bar-item:last-child, .stats-bar-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }

  .testimonials-inner { grid-template-columns: 1fr; gap: 40px; }

  .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .map-wrap { height: 340px; }

  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-images { height: 320px; grid-template-rows: 1fr; grid-template-columns: 1fr 1fr; }
  .faq-images-overlay { display: none; }

  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-img-wrap { min-height: 380px; }
}

/* ============================================================
   19. RESPONSIVE – 768px
   ============================================================ */
@media (max-width: 768px) {
  section { padding: 56px 0; }

  .apt-grid { grid-template-columns: 1fr 1fr; gap: 20px; }

  .features-grid { grid-template-columns: 1fr 1fr; }

  .about-stats { grid-template-columns: repeat(2, 1fr); }

  .form-row { grid-template-columns: 1fr; }

  .contact-form-wrap { padding: 28px 22px; }

  .hero-actions { flex-direction: column; align-items: flex-start; }

  .btn-primary,
  .btn-outline { width: 100%; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   20. RESPONSIVE – 480px
   ============================================================ */
@media (max-width: 480px) {
  .apt-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .why-us-grid { grid-template-columns: 1fr; }
  .about-bullets { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .rooms-tab-btns { gap: 8px; }
  .room-tab { font-size: 0.80rem; padding: 9px 18px; }
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards-overlay { grid-template-columns: 1fr; }

  #back-to-top { bottom: 20px; right: 18px; width: 42px; height: 42px; }

  .floor-filters { gap: 8px; }
  .floor-btn { font-size: 0.78rem; padding: 8px 16px; }
}
