/* ============================================================
   JS Properties — Landing Page Stylesheet
   Theme: Ultra-Luxury Real Estate
   Colors: Navy #0A0F2C | Gold #C9A84C | White #FFF | Champagne #F5EDD6
   ============================================================ */

/* ── Google Fonts imported in HTML ── */
:root {
  --navy: #0A0F2C;
  --navy-light: #131A3A;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --white: #FFFFFF;
  --champagne: #F5EDD6;
  --gray-light: #F8F9FA;
  --gray: #6B7280;
  --text-dark: #1F2937;
  --shadow: 0 4px 30px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 30px rgba(201,168,76,0.3);
  --transition: all 0.35s cubic-bezier(0.25,0.8,0.25,1);
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }

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

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ══════════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.4rem 0;
  transition: var(--transition);
  background: transparent;
}

.solid-nav .navbar,
.navbar.scrolled {
  background: rgba(10,15,44,0.97);
  backdrop-filter: blur(12px);
  padding: 0.3rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img 
{ height: 120px; 
  width: auto; 
  object-fit: contain;
   margin-top: -15px;
    margin-bottom: -15px; }

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}

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

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-2px); }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block; width: 25px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ══════════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.05);
  transition: transform 8s ease-out;
  z-index: 0;
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,15,44,0.9) 0%,
    rgba(10,15,44,0.7) 50%,
    rgba(201,168,76,0.2) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInDown 1s ease forwards;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease 0.3s forwards;
  opacity: 0;
}

.hero h1 span { color: var(--gold); }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease 0.5s forwards;
  opacity: 0;
}

/* Typewriter cursor */
.typewriter::after {
  content: '|';
  animation: blink 1s step-end infinite;
  color: var(--gold);
}

@keyframes blink { 50% { opacity: 0; } }

.hero-btns {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease 0.7s forwards;
  opacity: 0;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: var(--transition);
  border: 2px solid var(--gold);
  cursor: pointer;
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
  cursor: pointer;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

/* Search bar */
.hero-search {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 1s ease 0.9s forwards;
  opacity: 0;
}

.hero-search input,
.hero-search select {
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 0.9rem;
  flex: 1;
  min-width: 80px;
}

.hero-search input::placeholder { color: rgba(255,255,255,0.6); }
.hero-search select option { background: var(--navy); color: var(--white); }

.hero-search-divider {
  width: 1px; height: 30px;
  background: rgba(255,255,255,0.2);
}

.hero-search-btn {
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.hero-search-btn:hover { background: var(--gold-light); }

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 30px; height: 30px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%,100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(8px); }
}

/* ══════════════════════════════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════════════════════════════ */
section { padding: 5rem 0; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.gold-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ══════════════════════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════════════════════ */
.about-section { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-content .section-header { text-align: left; }
.about-content .gold-line { margin-left: 0; }

.about-text {
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 2rem;
  font-size: 1.02rem;
}

.about-counters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.counter-card {
  background: var(--navy);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.counter-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(201,168,76,0.1));
}

.counter-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.counter-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 3px solid var(--gold);
  border-radius: calc(var(--radius) + 12px);
  z-index: -1;
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 120px; height: 120px;
  background: var(--gold);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.3;
}

/* Why Choose Us */
.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.why-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

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

.why-card:hover::before { transform: scaleX(1); }

.why-card i {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.why-card h4 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.why-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════════════════════════════ */
.services-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.1), transparent 70%);
}

.services-section .section-header h2,
.services-section .section-header p,
.services-section .section-tag {
  color: var(--white);
}

.services-section .section-header p { color: rgba(255,255,255,0.65); }

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

.service-card {
  position: relative;
  height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.service-card-front,
.service-card-back {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backface-visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  border-radius: var(--radius);
}

.service-card-front {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  text-align: center;
}

.service-card-back {
  background: var(--gold);
  transform: rotateY(180deg);
  text-align: center;
}

.service-card:hover .service-card-front { transform: rotateY(-180deg); }
.service-card:hover .service-card-back { transform: rotateY(0); }

.service-card-front i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.service-card-front h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-card-front p {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  line-height: 1.7;
}

.service-card-back h3 {
  color: var(--navy);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.service-card-back p {
  color: var(--navy-light);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.btn-back {
  background: var(--navy);
  color: var(--gold);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
  border: 2px solid var(--navy);
}

.btn-back:hover {
  background: transparent;
  color: var(--navy);
}

/* ══════════════════════════════════════════════════════════════
   PROPERTIES SECTION
══════════════════════════════════════════════════════════════ */
.properties-section { background: var(--champagne); }

.filter-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.property-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.property-img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}

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

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

.property-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,15,44,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.property-card:hover .property-overlay { opacity: 1; }

.property-overlay a {
  background: var(--gold);
  color: var(--navy);
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  transform: translateY(20px);
  transition: var(--transition);
}

.property-card:hover .property-overlay a {
  transform: translateY(0);
}

.property-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--navy);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.property-body { padding: 1.5rem; }

.property-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.property-name {
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.property-location {
  color: var(--gray);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.property-features {
  display: flex;
  gap: 1rem;
  border-top: 1px solid #EEE;
  padding-top: 1rem;
}

.prop-feat {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gray);
  font-size: 0.82rem;
  font-weight: 500;
}

.prop-feat i { color: var(--gold); }

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.page-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-btn:hover,
.page-btn.active {
  background: var(--navy);
  color: var(--gold);
}

/* ══════════════════════════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════════════════════════ */
.contact-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

.contact-item-icon i { color: var(--gold); font-size: 1.1rem; }

.contact-item-content h5 {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Inter', sans-serif;
}

.contact-item-content p { color: var(--navy); font-weight: 500; }

.map-embed {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  height: 200px;
}

.map-embed iframe { width: 100%; height: 100%; border: 0; }

.contact-form-wrap {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.contact-form-wrap h3 {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 2px solid #E5E7EB;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

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

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

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--navy);
  color: var(--gold);
  border: 2px solid var(--navy);
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.05em;
}

.submit-btn:hover {
  background: transparent;
  color: var(--navy);
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo-text {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  display: block;
}

.footer-logo {
  height: 140px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  display: block;
}

.footer-tagline {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  font-size: 0.9rem;
}

.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

.footer-col h5 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--gold);
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 0.75rem; }

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover { color: var(--gold); padding-left: 5px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

/* ══════════════════════════════════════════════════════════════
   ABOUT PAGE — New Design System
══════════════════════════════════════════════════════════════ */

/* Page intro w/ background image */
.page-intro {
  padding: 12rem 0 6rem;
  position: relative;
  overflow: hidden;
  color: var(--champagne);
  background-color: #0E1222;
  background-size: cover;
  background-position: center;
}

.page-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,18,34,.92) 0%, rgba(22,27,47,.78) 50%, rgba(91,104,124,.55) 100%);
}

.page-intro::after {
  content: none;
}

.page-intro .container {
  position: relative;
  z-index: 1;
}

.page-intro .crumbs {
  font-size: .74rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #E0C988;
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}

.page-intro .crumbs a {
  color: var(--champagne);
  transition: color .3s;
}

.page-intro .crumbs a:hover {
  color: #C9A961;
}

.page-intro .crumbs span {
  color: #C9A961;
  opacity: .6;
}

.page-intro h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(2.7rem, 6.2vw, 5.2rem);
  color: var(--champagne);
  line-height: 1.05;
  letter-spacing: -.018em;
  max-width: 860px;
}

.page-intro h1 em {
  font-style: italic;
  color: #E0C988;
}

.page-intro p {
  color: rgba(233,226,220,.78);
  max-width: 620px;
  margin-top: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.78;
}

.intro-about {
  background-image: linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.2)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1800&q=80');
}

.intro-services {
  background-image: linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.2)), url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?w=1800&q=80');
}

.intro-properties {
  background-image: linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.2)), url('https://images.unsplash.com/photo-1582268611958-ebfd161ef9cf?w=1800&q=80');
}

.intro-contact {
  background-image: linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.2)), url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1800&q=80');
}

/* Section utilities */
.section {
  padding: 7.5rem 0;
  position: relative;
}

.section-tinted {
  background: #FBF8F4;
}

.section-dark {
  background: #0E1222;
  color: var(--champagne);
}

.section-dark .title {
  color: var(--champagne);
}

.section-dark .title em {
  color: #E0C988;
}

.section-dark .lede {
  color: rgba(233,226,220,.7);
}

.section-dark .eyebrow {
  color: #C9A961;
}

.section-dark .eyebrow::before {
  background: #C9A961;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-size: .72rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: #C9A961;
  margin-bottom: 1.1rem;
  font-weight: 600;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #C9A961;
}

.title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1.15;
  color: #0A0F2C;
  letter-spacing: -.012em;
}

.title em {
  font-style: italic;
  color: #C9A961;
  font-weight: 500;
}

.lede {
  font-size: 1.02rem;
  color: var(--gray);
  max-width: 620px;
  margin-top: 1.2rem;
  line-height: 1.78;
}

.section-head {
  margin-bottom: 4rem;
  max-width: 780px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head.center .lede {
  margin-left: auto;
  margin-right: auto;
}

.section-head.center .eyebrow {
  justify-content: center;
}

/* Split / About layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media(max-width: 1080px) {
  .split {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }
}

.split-img {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(22,27,47,.18);
  aspect-ratio: 4/5;
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s cubic-bezier(.2,.8,.2,1);
}

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

.split-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(14,18,34,.6));
  pointer-events: none;
}

.split-img .stamp {
  position: absolute;
  left: 1.8rem;
  bottom: 1.8rem;
  color: var(--champagne);
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  letter-spacing: .06em;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: .7rem;
}

.split-img .stamp::before {
  content: "";
  width: 24px;
  height: 1px;
  background: #C9A961;
}

.split-img .badge-floating {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, #C9A961, #E0C988);
  color: #0A0F2C;
  padding: .7rem 1.1rem;
  border-radius: 50px;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 18px 48px rgba(201,169,97,.32);
}

.feature-list {
  margin-top: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.fitem {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.3rem 1.4rem;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(22,27,47,.10);
  transition: all .4s cubic-bezier(.2,.8,.2,1);
  position: relative;
  overflow: hidden;
}

.fitem::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #C9A961;
  transform: scaleY(0);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
  transform-origin: bottom;
}

.fitem:hover {
  transform: translateX(8px);
  border-color: transparent;
  box-shadow: 0 14px 40px rgba(22,27,47,.10);
}

.fitem:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.fitem .ic {
  flex: 0 0 48px;
  height: 48px;
  border-radius: 12px;
  background: #0A0F2C;
  color: #C9A961;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  transition: all .4s cubic-bezier(.2,.8,.2,1);
}

.fitem:hover .ic {
  background: linear-gradient(135deg, #C9A961, #E0C988);
  color: #0A0F2C;
  transform: rotate(-6deg);
}

.fitem h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #0A0F2C;
  margin-bottom: .25rem;
  font-weight: 600;
}

.fitem p {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.65;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(22,27,47,.10);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(22,27,47,.10);
  border: 1px solid rgba(22,27,47,.10);
}

.stat {
  background: #ffffff;
  padding: 1.6rem 1.2rem;
  text-align: center;
  transition: all .4s cubic-bezier(.2,.8,.2,1);
  position: relative;
  overflow: hidden;
}

.stat::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #C9A961;
  transition: all .5s cubic-bezier(.2,.8,.2,1);
  transform: translateX(-50%);
}

.stat:hover {
  background: #FBF8F4;
}

.stat:hover::after {
  width: 60%;
}

.stat .num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  color: #0A0F2C;
  font-weight: 500;
  line-height: 1;
}

.stat .lbl {
  font-size: .72rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--mist);
  margin-top: .6rem;
  font-weight: 600;
}

/* Values / Principles */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

@media(max-width: 1080px) {
  .values {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.vcard {
  padding: 2.6rem 2.2rem;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(22,27,47,.10);
  transition: all .45s cubic-bezier(.2,.8,.2,1);
  position: relative;
  overflow: hidden;
}

.vcard::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(135deg, #C9A961, #E0C988);
  transition: width .55s cubic-bezier(.2,.8,.2,1);
}

.vcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 40px rgba(22,27,47,.10);
}

.vcard:hover::after {
  width: 100%;
}

.vcard .ic {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: #F4F1EE;
  color: #0A0F2C;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  margin-bottom: 1.3rem;
  transition: all .45s cubic-bezier(.2,.8,.2,1);
}

.vcard:hover .ic {
  background: #0A0F2C;
  color: #C9A961;
  transform: rotate(-10deg) scale(1.06);
}

.vcard h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #0A0F2C;
  font-weight: 600;
  margin-bottom: .7rem;
}

.vcard p {
  font-size: .93rem;
  color: var(--gray);
  line-height: 1.72;
}

/* Service cards */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.svc {
  position: relative;
  padding: 2.6rem 2.2rem;
  background: #ffffff;
  border: 1px solid rgba(22,27,47,.10);
  border-radius: 22px;
  overflow: hidden;
  transition: all .55s cubic-bezier(.2,.8,.2,1);
  cursor: pointer;
}

.svc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #5B687C 0%, #161B2F 100%);
  opacity: 0;
  transition: opacity .55s cubic-bezier(.2,.8,.2,1);
  z-index: 0;
}

.svc::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #C9A961;
  transform: scaleX(0);
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
  transform-origin: left;
  z-index: 2;
}

.svc:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 100px rgba(22,27,47,.25);
  border-color: transparent;
}

.svc:hover::before { opacity: 1; }
.svc:hover::after  { transform: scaleX(1); }

.svc > * {
  position: relative;
  z-index: 1;
  transition: color .4s;
}

.svc .num {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 1rem;
  color: #C9A961;
  letter-spacing: .22em;
  font-weight: 600;
}

.svc .ic {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: var(--c-bg, #F4F1EE);
  color: #0A0F2C;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin: 1.6rem 0 1.3rem;
  transition: all .45s cubic-bezier(.2,.8,.2,1);
}

.svc:hover .ic {
  background: linear-gradient(135deg, #C9A961, #E0C988);
  color: #0A0F2C;
  transform: rotate(-8deg) scale(1.06);
}

.svc h3 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 1.55rem;
  color: #0A0F2C;
  margin-bottom: .65rem;
  font-weight: 600;
}

.svc p {
  font-size: .93rem;
  color: var(--gray, #6B7280);
  line-height: 1.72;
}

.svc .arrow {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(22,27,47,.10);
  display: grid;
  place-items: center;
  color: #0A0F2C;
  transition: all .45s cubic-bezier(.2,.8,.2,1);
}

.svc:hover .arrow {
  background: #C9A961;
  color: #0A0F2C;
  border-color: #C9A961;
  transform: rotate(-45deg);
}

.svc:hover h3 { color: #F4F1EE; }
.svc:hover .num { color: #E0C988; }
.svc:hover p { color: rgba(233,226,220,.88); }

@media(max-width: 1080px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* Steps / Process */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C9A961, transparent);
}

.step {
  position: relative;
  text-align: center;
  padding: 0 1rem;
}

.step .circ {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(22,27,47,.10);
  margin: 0 auto 1.6rem;
  display: grid;
  place-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: #0A0F2C;
  position: relative;
  z-index: 1;
  transition: all .55s cubic-bezier(.2,.8,.2,1);
  font-weight: 600;
}

.step:hover .circ {
  background: #0A0F2C;
  color: #C9A961;
  transform: rotate(360deg) scale(1.08);
  box-shadow: 0 20px 60px rgba(91,104,124,.35);
  border-color: #0A0F2C;
}

.step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #161B2F;
  margin-bottom: .5rem;
  font-weight: 600;
}

.step p {
  font-size: .88rem;
  color: #6B7280;
  line-height: 1.7;
}

@media(max-width: 1080px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 3rem;
  }
  
  .steps::before {
    display: none;
  }
}

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

/* Awards */
.awards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(22,27,47,.10);
  border-bottom: 1px solid rgba(22,27,47,.10);
}

.award {
  text-align: center;
  color: var(--mist);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  letter-spacing: .05em;
  transition: color .3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
}

.award:hover {
  color: #C9A961;
}

.award i {
  font-size: 1.5rem;
  color: #C9A961;
}

.award span {
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  color: var(--mist);
  font-weight: 600;
}

@media(max-width: 1080px) {
  .awards {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* CTA strip */
.cta {
  background: linear-gradient(135deg, #0A0F2C 0%, #0E1222 100%);
  color: var(--champagne);
  border-radius: 42px;
  padding: 4.5rem 3.5rem;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(201,169,97,.22), transparent 55%), radial-gradient(circle at 10% 100%, rgba(91,104,124,.5), transparent 50%);
}

.cta::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(201,169,97,.15);
  border-radius: 50%;
}

.cta > * {
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 500;
  line-height: 1.15;
}

.cta h2 em {
  color: #E0C988;
  font-style: italic;
}

.cta p {
  color: rgba(233,226,220,.78);
  margin-top: .9rem;
  max-width: 540px;
  font-size: 1rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 1.85rem;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .05em;
  transition: all .35s cubic-bezier(.2,.8,.2,1);
  overflow: hidden;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
}

.btn i {
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}

.btn:hover i {
  transform: translateX(5px);
}

.btn-gold {
  background: linear-gradient(135deg, #C9A961, #E0C988);
  color: #0A0F2C;
  border: 1px solid transparent;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(201,169,97,.32);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.18) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
}

.btn:hover::before {
  transform: translateX(100%);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1s cubic-bezier(.2,.8,.2,1), transform 1s cubic-bezier(.2,.8,.2,1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal-l {
  transform: translateX(-44px);
}

.reveal-r {
  transform: translateX(44px);
}

.reveal-l.in,
.reveal-r.in {
  transform: none;
}

.reveal-zoom {
  transform: scale(.92);
}

.reveal-zoom.in {
  transform: scale(1);
}

.delay-1 {
  transition-delay: .1s;
}

.delay-2 {
  transition-delay: .2s;
}

.delay-3 {
  transition-delay: .3s;
}

.delay-4 {
  transition-delay: .4s;
}

.delay-5 {
  transition-delay: .5s;
}

@media(max-width: 1080px) {
  .cta {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }
}

@media(max-width: 680px) {
  .section {
    padding: 5rem 0;
  }
  
  .page-intro {
    padding: 9rem 0 4rem;
  }
  
  .cta {
    padding: 3rem 1.8rem;
  }
}

.footer-contact-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.7rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.875rem;
  outline: none;
}

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

.newsletter-btn {
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 50px;
  padding: 0.7rem 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.85rem;
}

.newsletter-btn:hover { background: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

/* Center footer blocks and social icons on smaller viewports */
@media (max-width: 768px) {
  .footer-brand,
  .footer-col {
    text-align: center;
  }
  .footer-social { justify-content: center; margin: 0 auto; }
  .footer-links a { justify-content: center; }
  .footer-contact-item { justify-content: center; }
  .footer-copyright { width: 100%; text-align: center; }
}

/* Ensure copyright is centered on larger screens too */
@media (min-width: 769px) {
  .footer-copyright { text-align: center; width: 100%; }
}

/* ══════════════════════════════════════════════════════════════
   TOAST NOTIFICATIONS
══════════════════════════════════════════════════════════════ */
.toast-container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: var(--white);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 280px;
  max-width: 380px;
  animation: toastIn 0.4s ease forwards;
  border-left: 4px solid var(--gold);
}

.toast.error { border-left-color: #EF4444; }
.toast.success { border-left-color: #10B981; }

.toast i { font-size: 1.2rem; color: var(--gold); flex-shrink: 0; }
.toast.error i { color: #EF4444; }
.toast.success i { color: #10B981; }

.toast-msg { font-size: 0.9rem; color: var(--text-dark); line-height: 1.4; }

@keyframes toastIn {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes toastOut {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(40px); }
}

/* ══════════════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════════════ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* ══════════════════════════════════════════════════════════════
   MAINTENANCE PAGE
══════════════════════════════════════════════════════════════ */
.maintenance-page {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.maintenance-content { max-width: 600px; }
.maintenance-content i { font-size: 4rem; color: var(--gold); margin-bottom: 1.5rem; }
.maintenance-content h1 { color: var(--white); margin-bottom: 1rem; }
.maintenance-content p { color: rgba(255,255,255,0.7); font-size: 1.1rem; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrapper { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .properties-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-container { justify-content: center; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(10,15,44,0.97);
    backdrop-filter: blur(12px);
    padding: 2rem;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .hero h1 { font-size: 2.2rem; }
  .hero-search { flex-direction: column; border-radius: var(--radius); }
  .hero-search-divider { display: none; }
  .hero-search input, .hero-search select { width: 100%; }

  .services-grid { grid-template-columns: 1fr; }
  .properties-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .why-cards { grid-template-columns: 1fr; }
  .about-counters { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-badge { font-size: 0.7rem; }
  section { padding: 3.5rem 0; }
}

/* ── Properties Page ─────────────────────────────────────── */
.filter-strip { background: #fff; border-bottom: 1px solid #f0ece0; padding: 1.25rem 0; position: sticky; top: 103px; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.filter-inner { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.filter-btn { padding: .5rem 1.25rem; border-radius: 50px; border: 1.5px solid #e5e7eb; background: #fff; color: #6b7280; font-size: .875rem; font-weight: 500; cursor: pointer; transition: .2s; font-family: 'Inter', sans-serif; }
.filter-btn.active, .filter-btn:hover { border-color: #C9A84C; color: #C9A84C; background: rgba(201,168,76,.08); }
.filter-btn-gold { background: #C9A84C !important; color: #0A0F2C !important; border-color: #C9A84C !important; }
.search-input { padding: .5rem 1.25rem; border-radius: 50px; border: 1.5px solid #e5e7eb; font-family: 'Inter', sans-serif; font-size: .875rem; outline: none; min-width: 220px; }
.search-input:focus { border-color: #C9A84C; }

.props-section { background: #fafaf8; }
.props-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 2rem; padding: 3rem 0; }
.prop-img { height: 240px; overflow: hidden; position: relative; }
.prop-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.property-card:hover .prop-img img { transform: scale(1.06); }
.prop-badge { position: absolute; top: 1rem; left: 1rem; background: rgba(201,168,76,.9); color: #0A0F2C; padding: .35rem 1rem; border-radius: 20px; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.prop-status-tag { position: absolute; top: 1rem; right: 1rem; background: rgba(10,15,44,.8); color: #fff; padding: .3rem .8rem; border-radius: 20px; font-size: .75rem; }
.prop-body { padding: 1.5rem; }
.prop-price { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #C9A84C; font-weight: 700; }
.prop-name { font-size: 1.05rem; font-weight: 600; color: #0A0F2C; margin: .4rem 0 .3rem; }
.prop-desc { font-size: .85rem; color: #6b7280; line-height: 1.6; margin: .4rem 0 .85rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.prop-loc { font-size: .83rem; color: #9ca3af; display: flex; align-items: center; gap: .4rem; }
.prop-feats { display: flex; gap: 1rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid #f3f4f6; flex-wrap: wrap; }
.prop-feat { font-size: .8rem; color: #6b7280; display: flex; align-items: center; gap: .35rem; }
.prop-feat i { color: #C9A84C; }
.results-count { color: #9ca3af; font-size: .875rem; margin-left: auto; }

.pagination-row { display: flex; justify-content: center; gap: .5rem; padding: 1.5rem 0 3rem; }
.page-link { padding: .5rem 1rem; border-radius: 8px; border: 1.5px solid #e5e7eb; color: #6b7280; text-decoration: none; font-size: .875rem; transition: .2s; }
.page-link.current, .page-link:hover { background: #C9A84C; color: #0A0F2C; border-color: #C9A84C; font-weight: 600; }

.no-props-msg { text-align: center; padding: 6rem 0; }
.no-props-icon { font-size: 3.5rem; color: #C9A84C; display: block; margin-bottom: 1.25rem; }
.no-props-title { font-family: 'Playfair Display', serif; color: #0A0F2C; }
.no-props-sub { color: #9ca3af; margin-top: .5rem; }
.no-props-sub .link-gold { color: #C9A84C; }
.no-props-clear { display: inline-block; margin-top: 1.25rem; color: #C9A84C; font-weight: 600; text-decoration: none; }

/* ── Home Page Sections ─────────────────────────────────────── */

/* Stats */
.stats-strip { background: #fff; padding: 2.5rem 0; border-bottom: 1px solid #f0ece0; box-shadow: 0 2px 16px rgba(0,0,0,.04); }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: #C9A84C; }
.stat-lbl { font-size: .8rem; color: #9ca3af; margin-top: .25rem; text-transform: uppercase; letter-spacing: .1em; }
@media (max-width: 580px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }

/* About (home) */
.about-section { background: #fafaf8 !important; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; gap: 2rem; } }
.about-img-wrap { border-radius: 20px; overflow: hidden; box-shadow: 0 16px 60px rgba(0,0,0,.13); }
.about-img-wrap img { width: 100%; object-fit: cover; display: block; }
.section-tag { display: inline-block; color: #C9A84C; font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-bottom: .6rem; }
.section-heading { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 2.8vw, 2.2rem); color: #0A0F2C; margin: .3rem 0 .8rem; line-height: 1.25; }
.gold-bar { width: 56px; height: 3px; background: linear-gradient(90deg, #C9A84C, #f0d080); border-radius: 2px; margin-bottom: 1.5rem; }
.about-p { color: #4b5563; line-height: 1.8; font-size: .95rem; margin: .5rem 0; }
.about-p.blockquote { border-left: 3px solid #C9A84C; padding-left: 1rem; font-style: italic; color: #374151; }
.counters-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 1.75rem 0; }
.counter-box { background: #fff; border: 1px solid #f0ece0; border-radius: 14px; padding: 1.2rem; text-align: center; box-shadow: 0 2px 10px rgba(0,0,0,.04); }
.c-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: #C9A84C; }
.c-lbl { font-size: .75rem; color: #9ca3af; text-transform: uppercase; letter-spacing: .08em; margin-top: .2rem; }

/* Section headers */
.section-header-dark { text-align: center; margin-bottom: 3rem; }
.section-header-dark .section-tag { color: #C9A84C; }
.section-header-dark h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 2.8vw, 2.2rem); color: #fff; margin: .3rem 0 .8rem; }
.section-header-dark p { color: rgba(255,255,255,.6); font-size: .95rem; }
.section-header-light { text-align: center; margin-bottom: 2.75rem; }
.section-header-light .section-tag { color: #C9A84C; }
.section-header-light h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 2.8vw, 2.2rem); color: #0A0F2C; margin: .3rem 0 .6rem; }
.section-header-light p { color: #6b7280; font-size: .95rem; }
.gold-bar-center { width: 56px; height: 3px; background: linear-gradient(90deg, #C9A84C, #f0d080); border-radius: 2px; margin: .5rem auto 0; }

/* Services (home svc-cards) */
.home-services-section { background: linear-gradient(135deg, #0A0F2C 0%, #1a2347 100%); }
.svc-grid-home { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 900px) { .svc-grid-home { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .svc-grid-home { grid-template-columns: 1fr; } }
.svc-card { background: linear-gradient(160deg, #1e1b2e 0%, #141224 100%); border: 1px solid rgba(201,168,76,.18); border-radius: 16px; color: #fff; transition: .35s; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.svc-card-img { height: 148px; background-size: cover; background-position: center; transition: transform .5s; position: relative; flex-shrink: 0; }
.svc-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,15,44,.05) 0%, rgba(10,15,44,.7) 100%); }
.svc-card:hover .svc-card-img { transform: scale(1.07); }
.svc-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #C9A84C, #f0d080); transform: scaleX(0); transition: transform .35s; }
.svc-card:hover { border-color: rgba(201,168,76,.55); transform: translateY(-6px); box-shadow: 0 18px 50px rgba(0,0,0,.5); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-img-1 .svc-card-img { background-image: url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?w=500&q=80'); }
.svc-img-2 .svc-card-img { background-image: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?w=500&q=80'); }
.svc-img-3 .svc-card-img { background-image: url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?w=500&q=80'); }
.svc-img-4 .svc-card-img { background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=500&q=80'); }
.svc-img-5 .svc-card-img { background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=500&q=80'); }
.svc-img-6 .svc-card-img { background-image: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?w=500&q=80'); }
.svc-card-body { padding: 1rem 1.2rem 1.25rem; display: flex; flex-direction: column; flex: 1; }
.svc-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(0,0,0,.35); border: 1px solid rgba(201,168,76,.2); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: #C9A84C; margin-bottom: .9rem; }
.svc-card h3 { font-family: 'Playfair Display', serif; font-size: .98rem; margin-bottom: .4rem; color: #C9A84C; }
.svc-card p { font-size: .8rem; color: rgba(255,255,255,.72); line-height: 1.6; flex: 1; }
.svc-detail { margin-top: .55rem; padding-top: .55rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .76rem; color: rgba(255,255,255,.5); line-height: 1.6; }
.svc-learn { display: inline-block; margin-top: .9rem; color: #C9A84C; font-size: .8rem; font-weight: 700; text-decoration: none; letter-spacing: .02em; transition: .2s; }
.svc-learn:hover { color: #f0d060; }

/* Gallery */
.gallery-section { background: #fafaf8; }
.gallery-eyebrow { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: .75rem; }
.gallery-eyebrow::before, .gallery-eyebrow::after { content: ''; height: 1px; width: 50px; background: #C9A84C; display: block; }
.gallery-eyebrow span { font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #C9A84C; }
.gallery-title { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 2.8vw, 2.2rem); color: #0A0F2C; text-align: center; margin-bottom: 2rem; }
.gallery-title em { color: #C9A84C; font-style: italic; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery-item { border-radius: 16px; overflow: hidden; height: 260px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; display: block; }
.gallery-item:hover img { transform: scale(1.06); }
@media (max-width: 700px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* Home featured properties */
.home-properties-section { background: #f9f8f5; }
.home-filter-bar { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.5rem; }
.prop-feat-badge { position: absolute; top: 1rem; right: 1rem; background: rgba(10,15,44,.8); color: #C9A84C; padding: .3rem .8rem; border-radius: 20px; font-size: .72rem; font-weight: 600; }
.no-props-center { text-align: center; padding: 4rem 0; }
.no-props-center i { font-size: 3.5rem; color: #C9A84C; display: block; margin-bottom: 1rem; }
.no-props-center p { color: #9ca3af; }

/* Home CTA */
.home-cta { background: #fafaf8; }
.home-cta-card { background: linear-gradient(135deg, #0A0F2C 0%, #1a2347 100%); border-radius: 24px; padding: 4rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
@media (max-width: 800px) { .home-cta-card { flex-direction: column; text-align: center; padding: 2.5rem; } }
.home-cta-title { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 2.8vw, 2.2rem); color: #fff; font-weight: 500; line-height: 1.25; margin-bottom: .75rem; }
.home-cta-title em { color: #C9A84C; font-style: italic; }
.home-cta-sub { color: rgba(255,255,255,.65); font-size: .95rem; max-width: 480px; line-height: 1.7; }
.btn-cta-gold { display: inline-flex; align-items: center; gap: .6rem; background: transparent; border: 2px solid #C9A84C; color: #C9A84C; padding: 1rem 2rem; border-radius: 50px; font-size: .9rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; white-space: nowrap; transition: .25s; text-decoration: none; }
.btn-cta-gold:hover { background: #C9A84C; color: #0A0F2C; }

/* Contact */
.contact-section { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-box { background: #0A0F2C; border-radius: 20px; padding: 2.5rem; color: #fff; }
.contact-info-box h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: .5rem; }
.contact-info-box > p { color: rgba(255,255,255,.6); font-size: .875rem; margin-bottom: 2rem; line-height: 1.7; }
.ci-item { display: flex; gap: 1rem; margin-bottom: 1.4rem; align-items: flex-start; }
.ci-ico { width: 42px; height: 42px; border-radius: 12px; background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.3); display: flex; align-items: center; justify-content: center; color: #C9A84C; flex-shrink: 0; font-size: .9rem; }
.ci-txt h5 { font-size: .85rem; font-weight: 600; color: #C9A84C; margin: 0 0 .2rem; font-family: 'Inter', sans-serif; }
.ci-txt p { font-size: .85rem; color: rgba(255,255,255,.7); margin: 0; }
.soc-row { display: flex; gap: .65rem; margin-top: 2rem; }
.soc-btn { width: 38px; height: 38px; border-radius: 10px; background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.25); display: flex; align-items: center; justify-content: center; color: #C9A84C; text-decoration: none; font-size: .85rem; transition: .2s; }
.soc-btn:hover { background: #C9A84C; color: #0A0F2C; }
.form-box { background: #fafaf8; border-radius: 20px; padding: 2.5rem; border: 1px solid #f0ece0; }
.form-box h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #0A0F2C; margin-bottom: 1.5rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 500px) { .form-row-2 { grid-template-columns: 1fr; } }
.form-grp { margin-bottom: 1.1rem; }
.form-grp label { display: block; font-size: .82rem; font-weight: 600; color: #374151; margin-bottom: .4rem; }
.form-grp input, .form-grp textarea { width: 100%; padding: .75rem 1rem; border: 1.5px solid #e5e7eb; border-radius: 10px; font-family: 'Inter', sans-serif; font-size: .9rem; color: #0A0F2C; outline: none; transition: .2s; box-sizing: border-box; background: #fff; }
.form-grp input:focus, .form-grp textarea:focus { border-color: #C9A84C; box-shadow: 0 0 0 3px rgba(201,168,76,.1); }
.form-grp textarea { resize: vertical; min-height: 125px; }
.submit-btn-full { width: 100%; padding: .95rem; background: linear-gradient(135deg, #C9A84C, #b8953d); color: #0A0F2C; border: none; border-radius: 12px; font-size: .95rem; font-weight: 700; cursor: pointer; font-family: 'Inter', sans-serif; transition: .2s; display: flex; align-items: center; justify-content: center; gap: .6rem; }
.submit-btn-full:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.35); }
.success-banner { background: #D1FAE5; color: #065F46; padding: .9rem 1.25rem; border-radius: 10px; margin-bottom: 1.25rem; font-weight: 500; font-size: .9rem; }

.section-cta-row { text-align: center; margin-top: 2.5rem; }
.map-embed-wrap { margin-top: 1.5rem; border-radius: 12px; overflow: hidden; }
.map-embed-wrap iframe { border: none; display: block; }


/* --------------------------------------------------------------
   PAGE BANNER  (moved from base.html)
-------------------------------------------------------------- */
.page-banner { background: linear-gradient(135deg,#0A0F2C 0%,#1a2347 100%); padding: 5rem 0 3.5rem; text-align: center; position: relative; overflow: hidden; }
.page-banner::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1920&q=40') center/cover no-repeat; opacity: .08; }
.page-banner h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,5vw,3.5rem); color: #fff; margin: 0; position: relative; }
.page-banner .breadcrumb { color: rgba(255,255,255,.55); font-size: .9rem; margin-top: .75rem; position: relative; }
.page-banner .breadcrumb a { color: #C9A84C; text-decoration: none; }
.page-banner .gold-line { width: 60px; height: 3px; background: linear-gradient(90deg,#C9A84C,#f0d080); margin: .85rem auto 0; border-radius: 2px; }

/* Footer misc (moved from base.html inline styles) */
.footer-newsletter-desc { color: rgba(255,255,255,0.6); font-size: .9rem; margin-bottom: 1rem; }
.footer-craft { color: rgba(255,255,255,0.4); font-size: .8rem; }

/* --------------------------------------------------------------
   CONTACT PAGE  (moved from contact.html)
-------------------------------------------------------------- */
.contact-wrap { padding: 7.5rem 0 5rem; background: #fafaf8; }
.contact-2col { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: stretch; }
@media(max-width:768px) { .contact-2col { grid-template-columns: 1fr; } }
.contact-info-card { background: #0A0F2C; border-radius: 20px; padding: 2.5rem; color: #fff; display: flex; flex-direction: column; }
.contact-info-card h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: .5rem; color: #fff; }
.contact-info-card p { color: rgba(255,255,255,.6); font-size: .9rem; margin-bottom: 2rem; line-height: 1.7; }
.ci-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.ci-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.3); display: flex; align-items: center; justify-content: center; color: #C9A84C; flex-shrink: 0; }
.ci-content h5 { font-size: .9rem; font-weight: 600; color: #C9A84C; margin: 0 0 .25rem; }
.ci-content p { font-size: .875rem; color: rgba(255,255,255,.7); margin: 0; line-height: 1.5; }
.social-row { display: flex; gap: .75rem; margin-top: 2rem; }
.soc-btn { width: 40px; height: 40px; border-radius: 10px; background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.3); display: flex; align-items: center; justify-content: center; color: #C9A84C; text-decoration: none; transition: .2s; }
.soc-btn:hover { background: #C9A84C; color: #0A0F2C; }
.form-card { background: #fff; border-radius: 24px; padding: 2.75rem; box-shadow: 0 8px 40px rgba(10,15,44,.1),0 2px 8px rgba(201,168,76,.08); border: 1px solid rgba(201,168,76,.12); position: relative; overflow: hidden; }
.form-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg,#C9A84C,#e8c97a,#C9A84C); }
.form-card h3 { font-family: 'Playfair Display', serif; font-size: 1.75rem; color: #0A0F2C; margin-bottom: .4rem; }
.form-card .form-subtitle { font-size: .875rem; color: #6B7280; margin-bottom: 2rem; line-height: 1.6; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media(max-width:500px) { .form-row-2 { grid-template-columns: 1fr; } }
.form-grp { margin-bottom: 1.35rem; position: relative; }
.form-grp label { display: flex; align-items: center; gap: .4rem; font-size: .8rem; font-weight: 700; color: #374151; margin-bottom: .5rem; letter-spacing: .03em; text-transform: uppercase; }
.form-grp label i { color: #C9A84C; font-size: .85rem; }
.form-grp input,.form-grp textarea,.form-grp select { width: 100%; padding: .85rem 1.1rem; border: 1.5px solid #e5e7eb; border-radius: 12px; font-family: 'Inter', sans-serif; font-size: .9rem; color: #0A0F2C; outline: none; transition: all .25s ease; box-sizing: border-box; background: #fafafa; }
.form-grp input:focus,.form-grp textarea:focus { border-color: #C9A84C; box-shadow: 0 0 0 4px rgba(201,168,76,.1); background: #fff; transform: translateY(-1px); }
.form-grp input::placeholder,.form-grp textarea::placeholder { color: #b0b8c1; font-size: .875rem; }
.form-grp textarea { resize: vertical; min-height: 130px; }
.submit-btn { width: 100%; padding: 1.1rem; background: linear-gradient(135deg,#C9A84C 0%,#e8c97a 50%,#b8953d 100%); color: #0A0F2C; border: none; border-radius: 14px; font-size: 1rem; font-weight: 700; cursor: pointer; font-family: 'Inter', sans-serif; transition: all .25s ease; display: flex; align-items: center; justify-content: center; gap: .6rem; letter-spacing: .02em; box-shadow: 0 4px 16px rgba(201,168,76,.3); }
.submit-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(201,168,76,.45); }
.submit-btn:active { transform: translateY(-1px); }
.success-msg { background: linear-gradient(135deg,#D1FAE5,#A7F3D0); color: #065F46; padding: 1rem 1.25rem; border-radius: 12px; margin-bottom: 1.5rem; font-weight: 500; border-left: 4px solid #10B981; display: flex; align-items: center; gap: .6rem; }
.map-box { margin-top: 2rem; border-radius: 14px; overflow: hidden; }
.map-box iframe { width: 100%; height: 220px; border: none; display: block; }

/* --------------------------------------------------------------
   SERVICES PAGE  (moved from services.html)
-------------------------------------------------------------- */
.about-top { padding-top: 7.5rem; }
.services-top { padding-top: 7.5rem; }
