/* Eran Wickramaratne — Relxtower-inspired design system */
:root {
  --gold: #C89658;
  --gold-dark: #b5844a;
  --gold-light: #c19b67;
  --gold-pale: #f8f1e8;
  --charcoal: #1A2122;
  --charcoal-deep: #0f1717;
  --text: #333333;
  --text-muted: #777777;
  --text-light: #999999;
  --white: #ffffff;
  --off-white: #f9f9f9;
  --border: #e8e8e8;
  --error: #c0392b;
  --success: #27ae60;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --container: 1170px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.3;
  color: var(--charcoal);
}

.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-size: 36px;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--gold);
  font-family: var(--font-serif);
  margin-bottom: 20px;
}

.section-desc {
  color: var(--text-muted);
  max-width: 600px;
}

.title-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 15px 0 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}

.btn-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.btn-round {
  border-radius: 50px;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 12px;
}

/* ========== TOP BAR ========== */
.top-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: 13px;
  color: var(--text-muted);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.top-bar-contact span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-bar-contact svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
  flex-shrink: 0;
}

.top-bar-contact a:hover {
  color: var(--gold);
}

/* ========== HEADER / NAV ========== */
.main-header {
  position: relative;
  z-index: 1000;
}

.nav-bar {
  display: flex;
  align-items: stretch;
  min-height: 80px;
}

.nav-logo {
  background: var(--charcoal);
  display: flex;
  align-items: center;
  padding: 0 28px;
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.logo img,
.logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

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

.nav-menu-wrap {
  background: var(--gold);
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  position: relative;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-menu a {
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 14px;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--white);
}

.nav-signup {
  background: var(--charcoal);
  display: flex;
  align-items: center;
  padding: 0 28px;
  flex-shrink: 0;
}

.nav-signup a {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-signup a:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  margin: 5px 0;
  transition: var(--transition);
}

.main-header.is-sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* ========== PAGE HERO ========== */
.page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 23, 0.65);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 15px;
}

.page-hero h1 {
  color: var(--white);
  font-size: 48px;
  margin-bottom: 12px;
}

.breadcrumb {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb .current {
  color: var(--gold);
}

/* ========== HOME HERO SLIDER ========== */
.hero-slider {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 23, 0.75) 0%, rgba(15, 23, 23, 0.35) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 560px;
  padding: 100px 0;
}

.hero-content h1 {
  color: var(--white);
  font-size: 52px;
  margin-bottom: 20px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 25px 0 30px;
}

.hero-features li {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-features li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-price {
  margin-top: 20px;
}

.hero-price span {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.hero-price strong {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--gold);
}

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.hero-dots button.active {
  background: var(--gold);
  border-color: var(--gold);
}

/* ========== SECTIONS ========== */
.section {
  padding: 90px 0;
}

.section-gray {
  background: var(--off-white);
}

.section-dark {
  background: var(--charcoal);
  color: var(--white);
}

.section-gold {
  background: var(--gold);
  color: var(--white);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 28px 24px;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  max-width: 160px;
  z-index: 2;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--gold);
}

.stat-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Apartment / Interior cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.apt-card {
  background: var(--white);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.apt-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

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

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

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

.apt-card-body {
  padding: 25px;
}

.apt-card-explore {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.apt-card-body h4 {
  font-size: 22px;
}

.apt-card-body h4 a:hover {
  color: var(--gold);
}

/* Featured property */
.featured-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.featured-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.featured-list {
  margin: 20px 0 25px;
}

.featured-list li {
  padding: 8px 0;
  padding-left: 22px;
  position: relative;
  color: var(--text-muted);
}

.featured-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.featured-price span {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.featured-price strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--gold);
  margin: 5px 0 20px;
}

/* Services */
.service-card {
  background: var(--white);
  padding: 40px 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  transition: all var(--transition);
  height: 100%;
}

.service-card:hover,
.service-card.highlight {
  background: var(--gold-pale);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--gold);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.service-card h5 {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 18px;
}

.read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.read-more:hover {
  color: var(--charcoal);
}

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

/* CTA Banner */
.cta-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 100px 0;
  color: var(--white);
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(200, 150, 88, 0.88);
}

.cta-banner-content {
  position: relative;
  z-index: 1;
}

.cta-banner-content > span {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.95;
}

.cta-banner-content h2 {
  color: var(--white);
  font-size: 42px;
  margin-bottom: 15px;
}

.cta-banner-content .cta-email {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  display: block;
}

.cta-banner-content .cta-email a {
  color: var(--white);
}

.cta-banner-content .cta-email a:hover {
  color: var(--charcoal);
}

/* Plans tabs */
.plans-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.plan-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.plan-tab {
  padding: 10px 20px;
  background: var(--off-white);
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  transition: var(--transition);
}

.plan-tab.active,
.plan-tab:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.plan-panel {
  display: none;
}

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

.plan-panel p {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.plan-specs {
  margin: 20px 0;
}

.plan-specs li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-specs li span {
  color: var(--gold);
  font-weight: 500;
  text-transform: none;
}

.plan-image img {
  width: 100%;
  border: 1px solid var(--border);
}

/* Availability table */
.availability-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.availability-table thead {
  background: var(--gold);
  color: var(--white);
}

.availability-table th,
.availability-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.availability-table th {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}

.availability-table tbody tr:hover {
  background: var(--gold-pale);
}

.table-wrap {
  overflow-x: auto;
}

/* Neighborhoods */
.neighborhood-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.neighborhood-item {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 30px 25px;
  position: relative;
  transition: border-color var(--transition);
}

.neighborhood-item:hover {
  border-color: var(--gold);
}

.neighborhood-item h5 {
  font-size: 18px;
  margin-bottom: 8px;
}

.neighborhood-item p {
  color: var(--text-muted);
  font-size: 14px;
}

.neighborhood-item .star {
  position: absolute;
  bottom: 15px;
  right: 15px;
  color: var(--gold);
  font-size: 14px;
}

/* Amenities strip */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.detail-content h3 {
  font-size: 22px;
}

.detail-sidebar .btn {
  box-sizing: border-box;
}

.footer-social a {
  font-family: var(--font-sans);
  font-weight: 600;
}

.amenity-box {
  border: 1px solid var(--border);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  background: var(--white);
}

.amenity-box span {
  font-size: 14px;
  font-weight: 500;
}

.amenity-box .star {
  position: absolute;
  bottom: 10px;
  right: 12px;
  color: var(--gold);
  font-size: 12px;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 35px 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.testimonial-card .quote {
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.testimonial-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

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

.testimonial-author h6 {
  font-size: 16px;
  margin-bottom: 2px;
}

.testimonial-author span {
  font-size: 12px;
  color: var(--text-muted);
}

/* News / Blog cards */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card {
  background: var(--white);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.news-card-body {
  padding: 25px;
}

.news-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.news-meta span {
  color: var(--gold);
}

.news-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

.news-card h4 a:hover {
  color: var(--gold);
}

.news-card p {
  color: var(--text-muted);
  font-size: 14px;
}

/* Contact section home */
.contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-info-panel {
  background: var(--charcoal);
  color: var(--white);
  padding: 50px 40px;
}

.contact-info-block {
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-info-block:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: var(--gold);
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-info-block h5 {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 10px;
}

.contact-info-block p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.contact-info-block a {
  color: var(--gold);
}

.contact-info-block a:hover {
  color: var(--white);
}

.contact-form-panel {
  background: var(--white);
  padding: 50px 40px;
}

.contact-form-panel h3 {
  margin-bottom: 25px;
  font-size: 28px;
}

/* Forms */
.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition);
  outline: none;
  appearance: auto;
}

select.form-control {
  cursor: pointer;
  height: 48px;
}

.form-control:focus {
  border-color: var(--gold);
}

.form-control.error {
  border-color: var(--error);
}

.form-control.success {
  border-color: var(--success);
}

.form-error {
  display: none;
  font-size: 12px;
  color: var(--error);
  margin-top: 6px;
}

.form-group.has-error .form-error {
  display: block;
}

.form-group.has-error .form-control {
  border-color: var(--error);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.form-success {
  display: none;
  background: #e8f8ef;
  border: 1px solid var(--success);
  color: var(--success);
  padding: 16px 20px;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 14px;
}

.form-success.show {
  display: block;
}

.form-icon-field {
  position: relative;
}

.form-icon-field .form-control {
  padding-right: 45px;
}

.form-icon-field .field-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  pointer-events: none;
}

.form-icon-field textarea ~ .field-icon {
  top: 20px;
  transform: none;
}

/* Partners */
.partners-bar {
  background: var(--gold);
  padding: 40px 0;
}

.partners-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.partner-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--charcoal-deep);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 80px;
}

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

.footer-about .logo {
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 22px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 13px;
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.footer-col h5 {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 8px;
}

.footer-col .title-line {
  margin-bottom: 22px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-col ul a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: var(--gold);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  font-size: 18px;
}

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

.back-to-top:hover {
  background: var(--charcoal);
}

/* ========== BLOG LAYOUT ========== */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
}

.blog-post-item {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.blog-post-item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  margin-bottom: 25px;
}

.blog-post-item h2 {
  font-size: 28px;
  margin: 12px 0 15px;
}

.blog-post-item h2 a:hover {
  color: var(--gold);
}

.blog-post-item .excerpt {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.blog-quote {
  background: var(--off-white);
  padding: 40px;
  margin: 30px 0;
  position: relative;
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.5;
  color: var(--charcoal);
}

.blog-quote::before {
  content: "\201C";
  font-size: 80px;
  color: var(--gold);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
  opacity: 0.5;
}

.sidebar-widget {
  background: var(--white);
  margin-bottom: 35px;
}

.sidebar-widget h4 {
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.search-form {
  display: flex;
}

.search-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  outline: none;
}

.search-form button {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 0 18px;
  cursor: pointer;
}

.search-form button:hover {
  background: var(--gold-dark);
}

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

.insta-grid img {
  width: 100%;
  height: 90px;
  object-fit: cover;
}

.category-list li {
  border-bottom: 1px solid var(--border);
}

.category-list a {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 14px;
  color: var(--text-muted);
}

.category-list a:hover {
  color: var(--gold);
}

.recent-feed li {
  display: flex;
  gap: 15px;
  margin-bottom: 18px;
}

.recent-feed img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  flex-shrink: 0;
}

.recent-feed h6 {
  font-size: 14px;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 4px;
}

.recent-feed h6 a:hover {
  color: var(--gold);
}

.recent-feed span {
  font-size: 12px;
  color: var(--text-muted);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-cloud a {
  padding: 6px 14px;
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
}

.tag-cloud a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.pagination {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.pagination a,
.pagination span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  background: var(--gold);
  color: var(--white);
}

.pagination a:hover,
.pagination .active {
  background: var(--charcoal);
}

/* ========== APARTMENT DETAIL ========== */
.detail-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 15px;
  margin-bottom: 40px;
}

.detail-gallery-main img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.detail-gallery-side {
  display: grid;
  gap: 15px;
}

.detail-gallery-side img {
  width: 100%;
  height: 217px;
  object-fit: cover;
}

.detail-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 30px 0;
  padding: 30px;
  background: var(--off-white);
}

.detail-meta-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 4px;
}

.detail-meta-item span {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.detail-content {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
}

.detail-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.detail-sidebar {
  background: var(--charcoal);
  color: var(--white);
  padding: 35px 30px;
  height: fit-content;
}

.detail-sidebar h4 {
  color: var(--white);
  margin-bottom: 20px;
}

.detail-sidebar .price {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 20px;
}

.detail-sidebar ul li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

/* Legal pages */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 26px;
  margin: 40px 0 16px;
  color: var(--charcoal);
}

.legal-content h3 {
  font-size: 20px;
  margin: 28px 0 12px;
}

.legal-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 0 0 20px 20px;
  list-style: disc;
}

.legal-content ul li {
  color: var(--text-muted);
  margin-bottom: 8px;
  padding-left: 4px;
}

.legal-content .updated {
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 30px;
}

/* Subscribe page */
.subscribe-box {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 50px 40px;
  text-align: center;
}

.subscribe-box h2 {
  margin-bottom: 12px;
}

.subscribe-box > p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.subscribe-box .form-group {
  text-align: left;
}

.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }
.mb-60 { margin-bottom: 60px; }

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header .section-desc {
  margin: 0 auto;
}

.section-header .title-line {
  margin-left: auto;
  margin-right: auto;
}
