:root {
  --gold: #E8A020;
  --gold-light: #F5C842;
  --gold-dark: #B87818;
  --charcoal: #1A1A18;
  --charcoal-soft: #2C2C28;
  --off-white: #F7F3EC;
  --text-muted: #8A8578;
  --white: #ffffff;
  --red-accent: #C0392B;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--charcoal);
  color: var(--off-white);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(26, 26, 24, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 160, 32, 0.15);
  transition: all 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

.nav-links a {
  text-decoration: none;
  color: var(--off-white);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}

.nav-links a:hover { opacity: 1; color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--charcoal) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  font-weight: 600 !important;
  opacity: 1 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--gold-light) !important; color: var(--charcoal) !important; }

/* ─── HERO ─── */
#home {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem 4rem 6rem 4rem;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232, 160, 32, 0.12);
  border: 1px solid rgba(232, 160, 32, 0.3);
  padding: 0.35rem 1rem;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  width: fit-content;
  animation: fadeUp 0.8s ease both;
}

.hero-image {
  width: 100%;
  height: 900px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.1s ease both;
}

h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 430px;
  margin-bottom: 2.8rem;
  font-weight: 300;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  animation: fadeUp 0.8s 0.3s ease both;
}

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  padding: 0.9rem 2.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  border: 1.5px solid rgba(232, 160, 32, 0.4);
  color: var(--off-white);
  padding: 0.9rem 2.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
  display: inline-block;
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: fadeUp 0.8s 0.4s ease both;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #2C2C28 0%, #1A1A18 50%, #2A2200 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.hero-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(232, 160, 32, 0.15) 0%, transparent 65%);
}

.solar-panel-svg {
  width: 260px;
  opacity: 0.35;
}

.hero-overlay-card {
  position: absolute;
  bottom: 3rem;
  left: -2.5rem;
  background: var(--charcoal-soft);
  border: 1px solid rgba(232, 160, 32, 0.2);
  padding: 1.2rem 1.6rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  animation: slideRight 0.8s 0.5s ease both;
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

.card-icon {
  width: 44px;
  height: 44px;
  background: rgba(232, 160, 32, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.card-text-top {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card-text-main {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 0.15rem;
}

/* ─── TICKER ─── */
.ticker {
  background: var(--gold);
  padding: 0.75rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-flex;
  gap: 3rem;
  animation: ticker 20s linear infinite;
}

.ticker-item {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ticker-dot { width: 5px; height: 5px; background: var(--charcoal); border-radius: 50%; opacity: 0.5; }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── SECTIONS ─── */
section { padding: 7rem 4rem; }

.section-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.section-tag::before {
  content: '';
  width: 24px; height: 1.5px;
  background: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.section-title em { color: var(--gold); font-style: italic; }

/* ─── SERVICES ─── */
#services { background: var(--charcoal-soft); }

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}

.services-desc {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1rem;
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,0.06);
}

.service-card {
  background: var(--charcoal);
  padding: 2.5rem;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { background: #222220; }

.service-icon { font-size: 2rem; margin-bottom: 1.5rem; }

.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}

/* ─── ABOUT ─── */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-img { position: relative; }

.about-img-placeholder {
  width: 100%;
  height: 520px;
  background: linear-gradient(135deg, #2C2C28, #1E1E1C);
  border: 1px solid rgba(232, 160, 32, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-badge {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--charcoal);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-align: center;
}

.badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.badge-label { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.75; }

.about-content { padding: 1rem 0; }

.about-content p {
  color: var(--text-muted);
  line-height: 1.85;
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 1.2rem;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2.5rem 0;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.value-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.value-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--off-white);
}

/* ─── WHY US ─── */
#why {
  background: linear-gradient(160deg, #1A1A18 0%, #201A00 100%);
  text-align: center;
}

.why-header {
  max-width: 560px;
  margin: 0 auto 4rem;
}

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

.why-card {
  text-align: left;
  padding: 2rem;
  border: 1px solid rgba(232, 160, 32, 0.12);
  border-radius: 2px;
  transition: border-color 0.3s, transform 0.3s;
}

.why-card:hover { border-color: rgba(232, 160, 32, 0.4); transform: translateY(-4px); }

.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(232, 160, 32, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
}

.why-title { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }

.why-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* ─── GALLERY ─── */
#gallery { background: var(--charcoal-soft); }

.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.gallery-item {
  background: linear-gradient(135deg, #2C2C28, #1E1E1C);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(232, 160, 32, 0.0);
  transition: background 0.3s;
}

.gallery-item:hover::after { background: rgba(232, 160, 32, 0.08); }

.g1 { grid-column: span 5; height: 280px; }
.g2 { grid-column: span 4; height: 280px; }
.g3 { grid-column: span 3; height: 280px; }
.g4 { grid-column: span 3; height: 200px; }
.g5 { grid-column: span 5; height: 200px; }
.g6 { grid-column: span 4; height: 200px; }

/* ─── CTA BANNER ─── */
#cta {
  background: var(--gold);
  padding: 6rem 4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
}

#cta .section-title { color: var(--charcoal); margin-bottom: 0.5rem; }
#cta .section-title em { color: rgba(26,26,24,0.6); }

.cta-sub { color: rgba(26, 26, 24, 0.65); font-size: 1rem; }

.btn-dark {
  background: var(--charcoal);
  color: var(--gold);
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
  display: inline-block;
}

.btn-dark:hover { background: #111; transform: translateY(-2px); }

/* ─── CONTACT ─── */
#contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-info p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-row { display: flex; align-items: flex-start; gap: 1rem; }

.contact-ico {
  width: 40px;
  height: 40px;
  background: rgba(232, 160, 32, 0.1);
  border: 1px solid rgba(232, 160, 32, 0.2);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-label { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }

.contact-val { font-size: 0.95rem; color: var(--off-white); font-weight: 500; margin-top: 0.2rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }

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

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

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

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.85rem 1rem;
  color: var(--off-white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }

.form-group select option { background: var(--charcoal); }
.form-group textarea { min-height: 130px; resize: vertical; }

/* ─── FOOTER ─── */
footer {
  background: #111110;
  padding: 4rem 4rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-brand-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 1rem;
  font-weight: 300;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }

.footer-col ul li a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--off-white); }

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

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

.social-links { display: flex; gap: 0.8rem; }

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}

.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── QUOTE MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 10, 9, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--charcoal-soft);
  border: 1px solid rgba(232, 160, 32, 0.2);
  border-radius: 4px;
  width: 100%;
  max-width: 780px;
  max-height: 92vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.35s ease;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-sidebar {
  background: var(--gold);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 4px 0 0 4px;
}

.modal-sidebar-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.modal-sidebar-sub {
  font-size: 0.85rem;
  color: rgba(26,26,24,0.65);
  line-height: 1.7;
}

.modal-perks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.modal-perk {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
}

.modal-perk-dot {
  width: 7px; height: 7px;
  background: var(--charcoal);
  border-radius: 50%;
  opacity: 0.5;
  flex-shrink: 0;
}

.modal-sidebar-footer {
  font-size: 0.72rem;
  color: rgba(26,26,24,0.5);
  margin-top: 3rem;
  line-height: 1.6;
}

.modal-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.modal-step-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.modal-close {
  background: none;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-muted);
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}

.modal-close:hover { border-color: var(--gold); color: var(--gold); }

.modal-step { display: none; flex-direction: column; gap: 1.1rem; }
.modal-step.active { display: flex; }

.modal-step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.modal-step-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

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

.mform-group { display: flex; flex-direction: column; gap: 0.35rem; }

.mform-group label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.mform-group input,
.mform-group select,
.mform-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.78rem 1rem;
  color: var(--off-white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.mform-group input:focus,
.mform-group select:focus,
.mform-group textarea:focus { border-color: var(--gold); }

.mform-group select option { background: var(--charcoal); }
.mform-group textarea { min-height: 100px; resize: vertical; }

.option-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.opt-card {
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  padding: 1rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.opt-card:hover { border-color: rgba(232,160,32,0.4); }
.opt-card.selected { border-color: var(--gold); background: rgba(232,160,32,0.07); }

.opt-card-icon { font-size: 1.4rem; }

.opt-card-name { font-size: 0.85rem; font-weight: 600; color: var(--off-white); }

.opt-card-sub { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.1rem; }

.modal-progress {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1.8rem;
}

.progress-dot {
  height: 3px;
  flex: 1;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  transition: background 0.3s;
}

.progress-dot.done { background: var(--gold); }

.modal-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.btn-modal-back {
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  padding: 0.7rem 1.4rem;
  font-size: 0.82rem;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-modal-back:hover { border-color: rgba(255,255,255,0.3); color: var(--off-white); }

.btn-modal-next {
  background: var(--gold);
  border: none;
  color: var(--charcoal);
  padding: 0.7rem 1.8rem;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  border-radius: 2px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}

.btn-modal-next:hover { background: var(--gold-light); transform: translateY(-1px); }

.modal-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  gap: 1rem;
}

.modal-success.show { display: flex; }

.success-circle {
  width: 72px; height: 72px;
  background: rgba(232,160,32,0.12);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

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

.success-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 300px;
}

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  .modal { grid-template-columns: 1fr; }
  .modal-sidebar { display: none; }
  .mform-row { grid-template-columns: 1fr; }
  .option-cards { grid-template-columns: 1fr; }

  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }

  #home { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 8rem 1.5rem 4rem; }

  section { padding: 5rem 1.5rem; }

  .services-header { grid-template-columns: 1fr; gap: 1rem; }
  .services-grid { grid-template-columns: 1fr; gap: 1px; }

  #about { grid-template-columns: 1fr; gap: 3rem; }
  #contact { grid-template-columns: 1fr; gap: 3rem; }

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

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .g1,.g2,.g3,.g4,.g5,.g6 { grid-column: span 1; height: 180px; }

  #cta { grid-template-columns: 1fr; gap: 2rem; text-align: center; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }

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