:root {
  --ink: #0a0a0f; --cream: #f5f0e8; --gold: #c9a84c;
  --gold-light: #e8c97a; --teal: #1a6b6b; --teal-light: #2a9090;
  --border: rgba(201,168,76,0.25);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--ink); color: var(--cream); }
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 4rem; background: rgba(10,10,15,0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-logo { font-family:  sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--gold); text-decoration: none; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--cream); opacity: 0.75; font-size: 0.9rem; text-decoration: none; font-weight: 400; transition: opacity 0.2s, color 0.2s; }
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--gold); }
.nav-cta { background: var(--gold); color: var(--ink) !important; padding: 0.55rem 1.4rem; border-radius: 2px; font-weight: 500; opacity: 1 !important; }

.page-hero {
  padding: 10rem 4rem 5rem; text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.1) 0%, transparent 70%);
  border-bottom: 1px solid var(--border);
}
.page-tag { display: inline-block; font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--border); padding: 0.4rem 1rem; border-radius: 20px; margin-bottom: 1.5rem; }
.page-title { font-family:  sans-serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; color: var(--cream); margin-bottom: 1rem; line-height: 1.1; }
.page-title span { color: var(--gold); }
.page-desc { font-size: 1.1rem; color: rgba(245,240,232,0.65); line-height: 1.8; max-width: 580px; margin: 0 auto; }

.main-section { padding: 5rem 4rem; }
.main-inner { max-width: 1100px; margin: auto; }

/* CONTACT GRID */
.contact-layout { display: grid; grid-template-columns: 5fr 7fr; gap: 4rem; }

.contact-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-intro { font-size: 1rem; color: rgba(245,240,232,0.7); line-height: 1.8; margin-bottom: 0.5rem; }
.contact-card {
  background: rgba(245,240,232,0.03); border: 1px solid var(--border);
  border-radius: 6px; padding: 1.5rem 1.75rem;
  display: flex; align-items: center; gap: 1.25rem;
  transition: all 0.25s;
}
.contact-card:hover { background: rgba(201,168,76,0.07); border-color: rgba(201,168,76,0.4); }
.cc-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.05));
  border: 1px solid var(--border); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.cc-label { font-size: 0.75rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-bottom: 0.25rem; }
.cc-val { font-size: 0.95rem; color: rgba(245,240,232,0.9); word-break: break-all; }

.availability-box {
  background: linear-gradient(135deg, rgba(26,107,107,0.15), rgba(26,107,107,0.05));
  border: 1px solid rgba(42,144,144,0.3); border-radius: 8px;
  padding: 2rem; margin-top: 0.5rem;
}
.avail-title { font-family:  sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--teal-light); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.avail-dot { display: inline-block; width: 8px; height: 8px; background: #4ade80; border-radius: 50%; margin-right: 0.5rem; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.avail-list { display: flex; flex-direction: column; gap: 0.6rem; }
.avail-item { font-size: 0.88rem; color: rgba(245,240,232,0.7); display: flex; gap: 0.5rem; }
.avail-item::before { content: '✓'; color: var(--teal-light); font-weight: 700; }

/* FORM */
.form-card {
  background: rgba(245,240,232,0.03); border: 1px solid var(--border);
  border-radius: 8px; padding: 3rem;
}
.form-title { font-family:  sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--cream); margin-bottom: 0.5rem; }
.form-sub { font-size: 0.9rem; color: rgba(245,240,232,0.55); margin-bottom: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label { font-size: 0.78rem; color: var(--gold); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.form-control {
  background: rgba(245,240,232,0.05); border: 1px solid rgba(201,168,76,0.2);
  padding: 0.9rem 1.25rem; border-radius: 4px; color: red;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s; outline: none;
}
.form-control:focus { border-color: rgba(201,168,76,0.6); background: rgba(245,240,232,0.07); }
.form-control::placeholder { color: rgba(245,240,232,0.3); }
textarea.form-control { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-services { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.service-check { display: flex; align-items: center; gap: 0.6rem; cursor: pointer; }
.service-check input { accent-color: var(--gold); width: 16px; height: 16px; }
.service-check span { font-size: 0.88rem; color: rgba(245,240,232,0.75); }

.submit-btn {
  background: var(--gold); color: var(--ink);
  border: none; cursor: pointer;
  padding: 1rem 2rem; border-radius: 4px;
  font-family:  sans-serif; font-weight: 700; font-size: 1rem;
  letter-spacing: 0.04em; width: 100%;
  transition: background 0.2s, transform 0.2s;
}
.submit-btn:hover { background: var(--gold-light); transform: translateY(-2px); }

/* SUCCESS */
.success-msg {
  display: none; text-align: center; padding: 3rem;
}
.success-icon { font-size: 3rem; margin-bottom: 1rem; }
.success-title { font-family:  sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--cream); margin-bottom: 0.5rem; }
.success-sub { color: rgba(245,240,232,0.6); }

/* FAQ */
#faq { padding: 5rem 4rem; background: rgba(245,240,232,0.02); border-top: 1px solid var(--border); }
.faq-inner { max-width: 800px; margin: auto; }
.faq-title { font-family:  sans-serif; font-size: 2rem; font-weight: 800; color: var(--cream); margin-bottom: 2.5rem; text-align: center; }
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: rgba(245,240,232,0.03); border: 1px solid var(--border);
  border-radius: 6px; overflow: hidden;
}
.faq-q {
  padding: 1.25rem 1.5rem; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family:  sans-serif; font-size: 1rem; font-weight: 600; color: var(--cream);
  transition: background 0.2s;
}
.faq-q:hover { background: rgba(201,168,76,0.05); }
.faq-arrow { color: var(--gold); transition: transform 0.3s; font-size: 1.2rem; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 1.5rem 1.25rem; font-size: 0.92rem; color: rgba(245,240,232,0.65); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

footer { background: rgba(245,240,232,0.03); border-top: 1px solid var(--border); padding: 3rem 4rem; }
.footer-inner { max-width: 1100px; margin: auto; display: flex; justify-content: space-between; align-items: center; }
.footer-logo { font-family:  sans-serif; font-weight: 800; color: var(--gold); font-size: 1rem; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: rgba(245,240,232,0.5); font-size: 0.9rem; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { color: rgba(245,240,232,0.35); font-size: 0.85rem; }

@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; } .nav-links { display: none; }
  .page-hero { padding: 8rem 1.5rem 3rem; }
  .main-section, #faq { padding: 3rem 1.5rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-card { padding: 2rem 1.5rem; }
  .form-row, .form-services { grid-template-columns: 1fr; }
  footer { padding: 2rem 1.5rem; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
}
