:root {
  --gold: #c89a3f;
  --gold-d: #7b5414;
  --brown: #2a1d0f;
  --green: #2f5f3a;
  --white: #ffffff;
  --bg: #fdf9f3;
  --bg-2: #f7f0e3;
  --text: #23180c;
  --muted: #6d6254;
  --border: rgba(123,84,20,0.12);
  --shadow: 0 14px 40px rgba(32,18,6,0.09);
  --shadow-md: 0 22px 56px rgba(32,18,6,0.12);
  --r: 20px;
  --r-lg: 28px;
  --ease: all 0.30s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { text-decoration: none; transition: var(--ease); }
ul { list-style: none; }

/* ===== SHARED ===== */
.sec-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 700;
  color: var(--gold-d);
  background: rgba(200,154,63,0.10);
  border: 1px solid rgba(200,154,63,0.20);
}
.sec-eyebrow-light {
  display: inline-flex; padding: 9px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 700;
  color: #f1cf83;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  margin-bottom: 14px;
}
.sec-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--brown);
  line-height: 1.2;
  margin: 14px 0 12px;
}
.sec-desc { color: var(--muted); font-size: 15px; max-width: 680px; }

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
  background: linear-gradient(90deg,#1c1208,#5a3b12);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 13px 0;
}
.bc-inner {
  width: min(calc(100% - 24px),1320px);
  margin-inline: auto;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.bc-inner a { font-size: 13px; color: rgba(255,255,255,0.78); font-weight: 500; }
.bc-inner a:hover { color: #f1cf83; }
.bc-inner i { font-size: 10px; color: rgba(255,255,255,0.40); }
.bc-inner span { font-size: 13px; color: #f1cf83; font-weight: 600; }

/* ===== HERO ===== */
.contact-hero {
  padding: 80px 0 90px;
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(200,154,63,0.10), transparent 30%),
    linear-gradient(180deg,#fffdf8,var(--bg),#f4ece0);
}
.ch-container { width: min(calc(100% - 24px),820px); margin-inline: auto; }
.ch-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 999px; font-size: 13px; font-weight: 700;
  color: var(--gold-d);
  background: rgba(200,154,63,0.10);
  border: 1px solid rgba(200,154,63,0.20);
  margin-bottom: 18px;
}
.ch-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.2rem,4vw,3.8rem);
  color: var(--brown); line-height: 1.12; margin-bottom: 16px;
}
.ch-title em {
  font-style: normal;
  background: linear-gradient(135deg,#c89a3f,#7b5414);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ch-desc { color: var(--muted); font-size: 16px; line-height: 1.7; }

/* ===== QUICK CONTACT CARDS ===== */
.quick-contact-section { padding: 0 0 0; margin-top: -32px; position: relative; z-index: 5; }
.qc-container { width: min(calc(100% - 24px),1320px); margin-inline: auto; }
.qc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.qc-card {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  transition: var(--ease);
  cursor: pointer;
  color: var(--text);
}
.qc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); color: var(--text); }
.qc-icon {
  width: 52px; height: 52px; min-width: 52px;
  border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.qc-call .qc-icon  { color: var(--gold-d); background: rgba(200,154,63,0.12); }
.qc-wa .qc-icon    { color: #15944a; background: rgba(37,211,102,0.12); }
.qc-email .qc-icon { color: #1a5ecc; background: rgba(79,142,240,0.12); }
.qc-address .qc-icon { color: #9b3030; background: rgba(200,60,60,0.10); }
.qc-body { flex: 1; min-width: 0; }
.qc-label { display: block; font-size: 12px; font-weight: 700; color: var(--muted); margin-bottom: 4px; }
.qc-card strong { display: block; font-size: 14px; color: var(--brown); font-weight: 700; margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.qc-time { display: block; font-size: 12px; color: var(--muted); }
.qc-arrow { color: var(--muted); font-size: 14px; flex-shrink: 0; transition: var(--ease); }
.qc-card:hover .qc-arrow { color: var(--gold-d); transform: translateX(3px); }

/* ===== MAIN CONTACT SECTION ===== */
.main-contact-section { padding: 64px 0 80px; }
.mc-container { width: min(calc(100% - 24px),1320px); margin-inline: auto; }

/* Contact Form Card */
.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 38px 36px;
  box-shadow: var(--shadow);
}
.cfc-header { margin-bottom: 28px; }
.cfc-eyebrow {
  display: inline-flex; padding: 7px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
  color: var(--gold-d); background: rgba(200,154,63,0.10);
  border: 1px solid rgba(200,154,63,0.18);
  margin-bottom: 12px;
}
.cfc-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem,2.2vw,2.2rem);
  color: var(--brown); margin-bottom: 8px;
}
.cfc-desc { color: var(--muted); font-size: 14px; }
.cf-label { display: block; font-weight: 700; color: var(--brown); margin-bottom: 8px; font-size: 14px; }
.req { color: #e05252; }
.cf-input-wrap {
  display: flex; align-items: center; gap: 10px;
  padding: 0 16px;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: inset 0 2px 6px rgba(32,18,6,0.04);
  transition: var(--ease);
}
.cf-input-wrap:focus-within { border-color: rgba(200,154,63,0.42); box-shadow: 0 0 0 4px rgba(200,154,63,0.10); }
.cf-input-wrap i { color: var(--muted); font-size: 15px; flex-shrink: 0; }
.cf-input, .cf-select {
  flex: 1; min-height: 52px; border: none; outline: none;
  background: transparent; font-size: 14px;
  color: var(--text); font-family: 'Inter', sans-serif;
  width: 100%;
}
.cf-select { cursor: pointer; }
.cf-input::placeholder { color: var(--muted); }
.cf-textarea {
  width: 100%; padding: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  font-size: 14px; color: var(--text);
  font-family: 'Inter', sans-serif;
  resize: vertical; outline: none;
  transition: var(--ease);
}
.cf-textarea:focus { border-color: rgba(200,154,63,0.42); box-shadow: 0 0 0 4px rgba(200,154,63,0.10); }
.cf-textarea::placeholder { color: var(--muted); }

/* Form Actions */
.cf-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 22px; }
.cf-btn-wa, .cf-btn-submit {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px; border-radius: 16px;
  font-weight: 700; border: none; cursor: pointer;
  transition: var(--ease); width: 100%;
}
.cf-btn-wa { background: linear-gradient(135deg,#28c760,#15944a); color: #fff; box-shadow: 0 14px 30px rgba(37,211,102,0.20); }
.cf-btn-wa:hover { transform: translateY(-2px); color: #fff; }
.cf-btn-submit { background: linear-gradient(135deg,#d4a843,#8c6118); color: #fff; box-shadow: 0 14px 30px rgba(140,97,24,0.22); }
.cf-btn-submit:hover { transform: translateY(-2px); color: #fff; }
.cf-btn-wa i, .cf-btn-submit i { font-size: 22px; flex-shrink: 0; }
.cf-btn-wa span, .cf-btn-submit span { display: flex; flex-direction: column; line-height: 1.25; text-align: left; }
.cf-btn-wa small, .cf-btn-submit small { font-size: 11px; font-weight: 500; opacity: 0.85; }

/* Success Box */
.cf-success {
  margin-top: 18px;
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px;
  border-radius: 16px;
  background: #eafaf2;
  border: 1px solid rgba(21,148,74,0.22);
}
.cf-success i { color: #15944a; font-size: 24px; flex-shrink: 0; }
.cf-success strong { display: block; color: #0d6b3a; margin-bottom: 4px; }
.cf-success span { color: #1a7a44; font-size: 14px; }

/* Contact Info Card */
.contact-info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.cic-title {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem; color: var(--brown); margin-bottom: 22px;
}
.cic-list { display: flex; flex-direction: column; }
.cic-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(123,84,20,0.08);
}
.cic-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.cic-icon {
  width: 46px; height: 46px; min-width: 46px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.cic-call  { color: var(--gold-d); background: rgba(200,154,63,0.12); }
.cic-wa    { color: #15944a; background: rgba(37,211,102,0.12); }
.cic-email { color: #1a5ecc; background: rgba(79,142,240,0.12); }
.cic-addr  { color: #9b3030; background: rgba(200,60,60,0.10); }
.cic-body strong { display: block; color: var(--brown); font-size: 14px; margin-bottom: 4px; }
.cic-body a { color: var(--muted); font-size: 14px; display: block; }
.cic-body a:hover { color: var(--gold-d); }
.cic-body span { display: block; color: var(--muted); font-size: 13px; line-height: 1.5; }
.cic-socials { margin-top: 20px; }
.cic-social-label { display: block; font-size: 13px; font-weight: 700; color: var(--brown); margin-bottom: 12px; }
.cic-social-links { display: flex; gap: 10px; }
.cic-soc {
  width: 42px; height: 42px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 17px; color: #fff;
  transition: var(--ease);
}
.cic-soc:hover { transform: translateY(-3px); color: #fff; }
.cic-fb { background: #1877f2; }
.cic-ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.cic-yt { background: #ff0000; }
.cic-wa { background: linear-gradient(135deg,#28c760,#15944a); }

/* Map Card */
.map-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-header {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px;
  background: linear-gradient(135deg,rgba(200,154,63,0.08),rgba(200,154,63,0.03));
  border-bottom: 1px solid var(--border);
  font-weight: 700; font-size: 14px; color: var(--brown);
}
.map-header i { color: var(--gold-d); font-size: 18px; }
.map-embed iframe { display: block; width: 100%; }
.map-dir-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px;
  background: linear-gradient(135deg,#d4a843,#8c6118);
  color: #fff; font-weight: 700; font-size: 14px;
  transition: var(--ease);
}
.map-dir-btn:hover { color: #fff; opacity: 0.92; }

/* ===== BUSINESS HOURS ===== */
.hours-section {
  padding: 86px 0;
  background: linear-gradient(180deg,#f5ece0,var(--bg));
}
.hours-container { width: min(calc(100% - 24px),1320px); margin-inline: auto; }
.hours-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem,2.6vw,2.6rem);
  color: var(--brown); line-height: 1.2; margin: 14px 0 12px;
}
.hours-desc { color: var(--muted); font-size: 15px; margin-bottom: 22px; }
.hours-wa-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px;
  background: linear-gradient(135deg,#28c760,#15944a);
  color: #fff; font-weight: 700; font-size: 15px;
  box-shadow: 0 14px 30px rgba(37,211,102,0.20);
}
.hours-wa-btn:hover { color: #fff; transform: translateY(-2px); }
.hours-table {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow);
}
.ht-row {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(123,84,20,0.07);
}
.ht-row:last-child { border-bottom: 0; }
.ht-day { flex: 1; font-weight: 700; color: var(--brown); font-size: 15px; }
.ht-time { font-size: 15px; color: var(--muted); min-width: 150px; text-align: center; }
.ht-time.open { color: var(--green); font-weight: 600; }
.ht-status { padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 700; white-space: nowrap; }
.open-badge { background: rgba(47,95,58,0.10); color: var(--green); border: 1px solid rgba(47,95,58,0.18); }
.wa-badge   { background: rgba(37,211,102,0.10); color: #15944a; border: 1px solid rgba(37,211,102,0.18); }
.ht-note-row {
  gap: 12px; padding: 16px 24px;
  background: rgba(200,154,63,0.05);
  border-top: 1px solid rgba(200,154,63,0.12) !important;
}
.ht-note-row i { color: var(--gold-d); flex-shrink: 0; }
.ht-note-row span { font-size: 13px; color: var(--muted); }

/* ===== FAQ ===== */
.cfaq-section { padding: 86px 0; background: #fff; }
.cfaq-container { width: min(calc(100% - 24px),1320px); margin-inline: auto; }
.cfaq-head { text-align: center; margin-bottom: 12px; }
.cfaq-list { display: flex; flex-direction: column; gap: 10px; }
.cfaq-item {
  background: linear-gradient(180deg,rgba(255,255,255,0.98),rgba(248,243,234,0.97));
  border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
}
.cfaq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 18px 20px; background: transparent; border: none;
  font-weight: 700; font-size: 15px; color: var(--brown);
  cursor: pointer; text-align: left; transition: var(--ease);
}
.cfaq-q i { flex-shrink: 0; color: var(--muted); transition: var(--ease); }
.cfaq-item.open .cfaq-q { color: var(--gold-d); }
.cfaq-item.open .cfaq-q i { transform: rotate(180deg); color: var(--gold-d); }
.cfaq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 20px; }
.cfaq-item.open .cfaq-a { max-height: 200px; padding: 0 20px 18px; }
.cfaq-a p { color: var(--muted); font-size: 14.5px; line-height: 1.65; }

/* ===== BOTTOM CTA ===== */
.contact-cta-section { padding: 0 0 86px; }
.ccta-container { width: min(calc(100% - 24px),1320px); margin-inline: auto; }
.ccta-box {
  position: relative; overflow: hidden;
  border-radius: 32px; padding: 58px 50px;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.12), transparent 28%),
    linear-gradient(135deg,#1b1208 0%,#5c3b12 50%,#9b6f28 100%);
  box-shadow: 0 28px 70px rgba(30,18,6,0.20);
}
.ccta-deco {
  position: absolute; right: 48px; top: 20px;
  font-size: 110px; color: rgba(255,255,255,0.05);
  line-height: 1; pointer-events: none;
}
.ccta-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem,3vw,2.8rem);
  color: #fff; line-height: 1.2; margin: 12px 0 12px;
}
.ccta-desc { color: rgba(255,255,255,0.82); font-size: 15px; }
.ccta-btns { display: flex; flex-direction: column; gap: 14px; }
.ccta-wa-btn, .ccta-call-btn {
  display: flex; align-items: center; gap: 14px;
  padding: 17px 20px; border-radius: 20px;
  font-weight: 700; border: none; cursor: pointer;
  transition: var(--ease); width: 100%;
}
.ccta-wa-btn { background: linear-gradient(135deg,#28c760,#15944a); color: #fff; box-shadow: 0 14px 30px rgba(37,211,102,0.22); }
.ccta-wa-btn:hover { color: #fff; transform: translateY(-2px); }
.ccta-call-btn { background: rgba(255,255,255,0.10); color: #fff; border: 1px solid rgba(255,255,255,0.18); }
.ccta-call-btn:hover { color: #fff; background: rgba(255,255,255,0.17); }
.ccta-wa-btn i, .ccta-call-btn i { font-size: 22px; flex-shrink: 0; }
.ccta-wa-btn span, .ccta-call-btn span { display: flex; flex-direction: column; line-height: 1.25; text-align: left; }
.ccta-wa-btn small, .ccta-call-btn small { font-size: 11px; font-weight: 500; opacity: 0.85; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1199.98px) {
  .qc-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 991.98px) {
  .contact-hero { padding: 60px 0 72px; }
  .quick-contact-section { margin-top: 0; padding-top: 32px; }
  .main-contact-section { padding: 48px 0 64px; }
  .contact-form-card { padding: 28px 22px; }
  .ccta-box, .hours-container { padding: 40px 28px; }
  .ht-row { flex-wrap: wrap; gap: 8px; }
  .ht-time { min-width: auto; }
}
@media (max-width: 767.98px) {
  .contact-hero { padding: 48px 0 60px; }
  .ch-title { font-size: 2rem; }
  .qc-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .qc-card strong { font-size: 12.5px; }
  .cf-actions { grid-template-columns: 1fr; }
  .hours-section, .cfaq-section { padding: 64px 0; }
  .cfaq-list { gap: 8px; }
  .ccta-box { padding: 34px 22px; }
  .contact-cta-section { padding-bottom: 64px; }
}
@media (max-width: 575.98px) {
  .qc-grid { grid-template-columns: 1fr; }
  .qc-card { padding: 18px 15px; }
  .contact-form-card { padding: 22px 16px; }
  .cic-list li { gap: 10px; }
  .ht-row { padding: 14px 16px; }
  .ccta-title { font-size: 1.7rem; }
}
