/*
Theme Name: Andaman Realty
Theme URI: https://realestate.crmdemo.in
Author: Dharma
Author URI: https://crmdemo.in
Description: Custom real estate theme for Andaman Realty — showcasing properties and plots in the Andaman & Nicobar Islands.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: andaman-realty
Tags: real-estate, custom, responsive
*/

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --teal:        #0B8C87;
  --teal-dark:   #076460;
  --teal-light:  #e6f7f7;
  --gold:        #C9A84C;
  --gold-dark:   #A0722A;
  --gold-light:  #fdf6e3;
  --dark:        #12202D;
  --dark-mid:    #1e3448;
  --grey:        #f4f6f8;
  --grey-mid:    #e0e6ed;
  --text:        #2c3e50;
  --text-light:  #6b7c93;
  --white:       #ffffff;
  --radius:      10px;
  --shadow:      0 4px 24px rgba(0,0,0,0.10);
  --shadow-hover:0 8px 40px rgba(0,0,0,0.16);
  --font-main:   'Poppins', sans-serif;
  --transition:  all 0.25s ease;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--teal-dark); }
ul { list-style: none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; color: var(--text-light); }

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 72px 0; }
.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title h2 { margin-bottom: 12px; }
.section-title p  { font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.section-title .title-bar {
  width: 56px; height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin: 14px auto 0;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  font-family: var(--font-main);
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11,140,135,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  padding: 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.site-logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  text-decoration: none;
}
.logo-andaman {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 1px;
}
.logo-realty {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-left: 2px;
  align-self: flex-end;
  margin-bottom: 3px;
}
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-nav a {
  font-weight: 500;
  color: var(--text);
  font-size: 0.95rem;
  padding: 4px 0;
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--teal);
  transition: var(--transition);
}
.site-nav a:hover::after,
.site-nav a.active::after { width: 100%; }
.site-nav a:hover { color: var(--teal); }
.nav-cta { margin-left: 16px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.18);
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero h1 span { color: var(--gold); }
.hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =============================================
   SEARCH BAR
   ============================================= */
.search-bar-wrap {
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}
.search-bar-wrap h3 {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 16px;
}
.search-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}
.search-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.search-field select,
.search-field input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--grey-mid);
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  appearance: none;
}
.search-field select:focus,
.search-field input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(11,140,135,0.1);
}

/* =============================================
   PROPERTY CARDS
   ============================================= */
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.property-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--grey-mid);
}
.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.property-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--grey);
}
.property-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.property-card:hover .property-card-image img {
  transform: scale(1.05);
}
.property-badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.badge-sale     { background: var(--teal);  color: white; }
.badge-plot     { background: var(--gold);  color: white; }
.badge-featured { background: var(--dark);  color: white; }
.property-card-body { padding: 20px; }
.property-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 6px;
}
.property-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-light);
}
.property-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.4;
}
.property-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 14px;
}
.property-location svg { color: var(--gold); flex-shrink: 0; }
.property-meta {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--grey-mid);
  border-bottom: 1px solid var(--grey-mid);
  margin-bottom: 16px;
}
.property-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-light);
}
.property-meta-item svg { color: var(--teal); }
.property-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.property-type-tag {
  background: var(--teal-light);
  color: var(--teal);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* =============================================
   FILTER TABS
   ============================================= */
.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-tab {
  padding: 9px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--grey-mid);
  background: var(--white);
  color: var(--text-light);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-main);
}
.filter-tab:hover,
.filter-tab.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

/* =============================================
   SINGLE PROPERTY PAGE
   ============================================= */
.property-single { padding: 48px 0 72px; }
.property-single-gallery {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
}
.gallery-main {
  height: 460px;
  overflow: hidden;
}
.gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.gallery-thumb {
  height: 90px;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition);
}
.gallery-thumb:hover { opacity: 1; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.property-single-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}
.property-single-main h1 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.property-single-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 6px;
}
.property-highlights {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--grey);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}
.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.highlight-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
}
.highlight-label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.detail-section { margin-bottom: 36px; }
.detail-section h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--grey-mid);
  color: var(--dark);
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--grey-mid);
  font-size: 0.9rem;
}
.detail-item .label { color: var(--text-light); }
.detail-item .value { font-weight: 600; color: var(--dark); }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--grey);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
}
.amenity-item svg { color: var(--teal); flex-shrink: 0; }

/* Enquiry sidebar */
.enquiry-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  position: sticky;
  top: 88px;
  border: 1px solid var(--grey-mid);
}
.enquiry-card h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--teal-light);
}
.enquiry-form .form-group { margin-bottom: 14px; }
.enquiry-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--grey-mid);
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 0.92rem;
  color: var(--text);
  transition: var(--transition);
  background: var(--white);
}
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(11,140,135,0.1);
}
.enquiry-form textarea { min-height: 90px; resize: vertical; }

/* =============================================
   WHY US SECTION
   ============================================= */
.why-us { background: var(--grey); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.why-icon {
  width: 64px; height: 64px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.why-icon svg { color: var(--teal); }
.why-card h4 { margin-bottom: 8px; }
.why-card p  { font-size: 0.9rem; margin: 0; }

/* =============================================
   LOCATIONS SECTION
   ============================================= */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}
.location-card {
  position: relative;
  height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  width: 100%;
}
.location-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
@media (max-width: 1024px) {
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .locations-grid { grid-template-columns: 1fr 1fr; }
  .location-card  { height: 180px; }
}
.location-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.location-card:hover img { transform: scale(1.08); }
.location-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,32,45,0.85) 0%, rgba(18,32,45,0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: white;
}
.location-name { font-weight: 700; font-size: 1rem; }
.location-count { font-size: 0.8rem; color: var(--gold); margin-top: 2px; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  color: white;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 60% 50%, rgba(11,140,135,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section h2 { color: white; margin-bottom: 14px; }
.cta-section p  { color: rgba(255,255,255,0.7); max-width: 480px; margin: 0 auto 32px; }
.cta-actions    { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-andaman { color: var(--teal); font-size: 1.5rem; }
.footer-brand .logo-realty  { color: var(--gold); }
.footer-brand p {
  margin-top: 14px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}
.footer-col h4 {
  color: white;
  font-size: 0.95rem;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
}
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}

/* =============================================
   ARCHIVE / LISTINGS PAGE
   ============================================= */
.archive-header {
  background: linear-gradient(135deg, var(--dark), var(--dark-mid));
  padding: 56px 0;
  color: white;
}
.archive-header h1 { color: white; margin-bottom: 8px; }
.archive-header p  { color: rgba(255,255,255,0.65); margin: 0; }
.archive-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  padding: 48px 0 72px;
}
.sidebar-filters {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 88px;
  height: fit-content;
  border: 1px solid var(--grey-mid);
}
.sidebar-filters h3 {
  font-size: 1rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--teal-light);
}
.filter-group { margin-bottom: 22px; }
.filter-group h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 10px;
}
.filter-group select,
.filter-group input[type="number"] {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid var(--grey-mid);
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
}
.filter-group select:focus,
.filter-group input:focus {
  outline: none;
  border-color: var(--teal);
}
.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  margin-bottom: 8px;
  cursor: pointer;
}
.filter-checkbox input[type="checkbox"] { accent-color: var(--teal); }
.price-range { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

/* =============================================
   PAGINATION
   ============================================= */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.pagination a,
.pagination span {
  padding: 10px 16px;
  border-radius: 8px;
  border: 1.5px solid var(--grey-mid);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}
.pagination a:hover,
.pagination .current {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
}

/* =============================================
   NOTICES / ALERTS
   ============================================= */
.notice {
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 0.92rem;
}
.notice-success { background: #e6f7f7; color: var(--teal-dark); border-left: 4px solid var(--teal); }
.notice-error   { background: #fdecea; color: #b71c1c; border-left: 4px solid #e53935; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .property-single-layout { grid-template-columns: 1fr; }
  .enquiry-card { position: static; }
  .archive-layout { grid-template-columns: 1fr; }
  .sidebar-filters { position: static; }
}
@media (max-width: 768px) {
  .site-nav { display: none; }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: white;
    padding: 20px 24px;
    box-shadow: var(--shadow);
  }
  .site-nav.open ul { flex-direction: column; gap: 16px; }
  .hamburger { display: flex; }
  .search-bar { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .detail-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
  .property-grid { grid-template-columns: 1fr; }
  .search-bar { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .amenities-grid { grid-template-columns: 1fr; }
}

/* =============================================
   HERO SLIDER
   ============================================= */
.hero { position: relative; min-height: 88vh; overflow: hidden; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  display: flex;
  align-items: center;
}
.hero-slide.active { opacity: 1; z-index: 1; }

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(18,32,45,0.82) 0%,
    rgba(18,32,45,0.45) 60%,
    rgba(18,32,45,0.15) 100%
  );
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
}
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}
.slider-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}
.slider-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}
.slider-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* hero content same as before but now inside slide */
.hero-slide-content .hero-badge { margin-bottom: 18px; }
.hero-slide-content h1 { color: white; margin-bottom: 16px; }
.hero-slide-content h1 span { color: var(--gold); }
.hero-slide-content p { color: rgba(255,255,255,0.78); margin-bottom: 30px; font-size:1.05rem; }
.hero-slide-content .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
  background: rgba(18,32,45,0.85);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  margin-bottom: 0;
}
.hero-stats-inner {
  display: flex;
  gap: 0;
  justify-content: center;
}
.hero-stat {
  padding: 0 48px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-number { font-size: 1.8rem; font-weight: 700; color: var(--gold); display: block; }
.hero-stat-label  { font-size: 0.75rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1.5px; }