/* contact.css — Contact page styles */

/* Page base */
.contact-page {
  background: #000;
  color: #fff;
}

/* Shared design tokens */
.section-label {
  font-family: var(--font-accent, 'Cormorant Garamond', Georgia, serif);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold, #c8a45d);
  display: block;
  margin-bottom: 14px;
}

.section-heading {
  font-family: var(--font-display, 'Playfair Display', Georgia, serif);
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  font-weight: 700;
  line-height: 1.18;
  color: #fff;
  margin-bottom: 20px;
}

.section-heading em {
  font-style: italic;
  color: var(--gold, #c8a45d);
}

.gold-rule {
  width: 44px;
  height: 1px;
  background: var(--gold, #c8a45d);
  margin-bottom: 28px;
}

/* Utility */
.mt-lg { margin-top: 32px; }

/* Button base */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
  border: 1px solid transparent;
  text-decoration: none;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold, #c8a45d);
  color: #000;
}

.btn-gold:hover { background: #b8943f; }

.btn-outline-white {
  border-color: rgba(255,255,255,0.3);
  color: #fff;
  background: rgba(255,255,255,0.05);
}

.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.1);
}

/* Hero section */
.contact-hero {
  position: relative;
  height: 65vh;
  min-height: 30vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #050505 url('../images/con-dholera3.png') center / cover no-repeat;
}

.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.52) 45%,
    rgba(0,0,0,0.22) 100%
  );
}

.contact-hero__content {
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
}

.contact-hero__kicker {
  display: inline-block;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(212,175,100,0.95);
  border: 1px solid rgba(212,175,100,0.45);
  border-radius: 999px;
  padding: 7px 18px;
  margin-top: 100px;
  margin-bottom: 20px;
}

.contact-hero__title {
  font-family: var(--font-display, 'Playfair Display', Georgia, serif);
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 24px;
}

.contact-hero__title em {
  font-style: italic;
  color: var(--gold, #c8a45d);
}

.contact-hero__sub {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.68);
  max-width: 520px;
  margin-bottom: 30px;
  letter-spacing: 0.02em;
}

.contact-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.contact-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
}

.contact-breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.contact-breadcrumb a:hover        { color: var(--gold, #c8a45d); }
.contact-breadcrumb span:last-child { color: var(--gold, #c8a45d); }

/* Scroll hint indicator */
.contact-hero__scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.contact-hero__scroll-hint span {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, var(--gold, #c8a45d));
  margin: auto;
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* Contact info + form section */
.contact-main {
  padding: 100px 0;
  background: #000;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 60px;
  align-items: start;
}

/* Info column */
.contact-info-col__header {
  margin-bottom: 32px;
}

.contact-info-intro {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.55);
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Info cards */
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  background: #0e0e0e;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  transition: border-color 0.3s, transform 0.3s;
}

.info-card:hover {
  border-color: rgba(200,164,93,0.3);
  transform: translateX(4px);
}

.info-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(200,164,93,0.08);
  border: 1px solid rgba(200,164,93,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-card__icon i {
  color: var(--gold, #c8a45d);
  font-size: 15px;
}

.info-card__body h3 {
  font-family: var(--font-display, 'Playfair Display', Georgia, serif);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.info-card__body a,
.info-card__body p {
  display: block;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.58);
  margin-bottom: 3px;
  transition: color 0.3s;
  line-height: 1.6;
}

.info-card__body a:hover { color: var(--gold, #c8a45d); }

.legal-name  { color: rgba(255,255,255,0.85) !important; font-weight: 500 !important; font-size: 14px !important; }
.legal-title { font-style: italic; color: rgba(200,164,93,0.7) !important; font-size: 12.5px !important; margin-bottom: 5px !important; }

/* Enquiry form card — fixed: removed inline audit comment from padding value */
.form-card {
  background: #0c0c0c;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 36px;
}

.form-card__header {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.form-card__header h2 {
  font-family: var(--font-display, 'Playfair Display', Georgia, serif);
  font-size: 1.65rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.form-card__header p {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.form-group label {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 7px;
}

.form-group label span { color: var(--gold, #c8a45d); }

.form-group input,
.form-group select,
.form-group textarea {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 3px;
  padding: 12px 15px;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  transition: border-color 0.3s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

/* Custom select arrow */
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23c8a45d' d='M8 11L2 5h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
}

.form-group select option { background: #141414; color: #fff; }

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.18); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(200,164,93,0.45); }

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 12px;
  border-radius: 3px;
  margin-top: 4px;
}

/* Form status notification */
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 13px 17px;
  background: rgba(76,175,120,0.08);
  border: 1px solid rgba(76,175,120,0.28);
  border-radius: 3px;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 13.5px;
  font-weight: 300;
  color: #4caf78;
}

.form-success i    { font-size: 16px; }
.form-success.show { display: flex; }

/* Office locations section */
.find-us-section {
  padding: 100px 0;
  background: #060606;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.find-us-header { margin-bottom: 52px; }

.find-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* Office card + map */
.office-block {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  transition: border-color 0.3s;
}

.office-block:hover { border-color: rgba(200,164,93,0.25); }

.office-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 26px;
  background: #0e0e0e;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.office-card__num {
  font-family: var(--font-display, 'Playfair Display', Georgia, serif);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(200,164,93,0.2);
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}

.office-card__body h3 {
  font-family: var(--font-display, 'Playfair Display', Georgia, serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.office-card__body p {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.52);
  margin-bottom: 12px;
}

.office-card__body p i {
  color: var(--gold, #c8a45d);
  margin-right: 6px;
  font-size: 12px;
}

.office-card__tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 13px;
  font-weight: 400;
  color: var(--gold, #c8a45d);
  transition: color 0.3s;
}

.office-card__tel i      { font-size: 11px; }
.office-card__tel:hover  { color: #e2c47e; }

/* Embedded map */
.map-wrap {
  height: 260px;
  overflow: hidden;
  flex-shrink: 0;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(25%) brightness(0.82) contrast(1.05);
  transition: filter 0.4s;
}

.office-block:hover .map-wrap iframe {
  filter: grayscale(0%) brightness(0.9);
}

/* Trust promise + FAQ section */
.trust-faq-section {
  padding: 100px 0;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.trust-faq-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Trust column */
.trust-intro {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 14.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  margin-bottom: 28px;
}

.trust-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.trust-checklist li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
}

.why-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(200,164,93,0.4);
  background: rgba(200,164,93,0.08);
  flex-shrink: 0;
}

.why-check i {
  color: var(--gold, #c8a45d);
  font-size: 10px;
}

/* FAQ column */
.faq-col .section-heading { margin-bottom: 0; }

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.faq-item { border-bottom: 1px solid rgba(255,255,255,0.07); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  cursor: pointer;
  text-align: left;
  transition: color 0.3s;
  line-height: 1.5;
}

.faq-question:hover { color: var(--gold, #c8a45d); }

.faq-icon {
  color: var(--gold, #c8a45d);
  font-size: 12px;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-question[aria-expanded="true"]            { color: var(--gold, #c8a45d); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 200px;
  padding-bottom: 16px;
}

.faq-answer p {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.48);
}

/* Responsive — 1200px: large tablet / small laptop */
@media (max-width: 1200px) {
  .contact-main      { padding: 84px 0; }
  .find-us-section   { padding: 84px 0; }
  .trust-faq-section { padding: 84px 0; }
  .contact-split     { gap: 44px; }
  .trust-faq-split   { gap: 56px; }
  .form-card         { padding: 28px; }
  .find-us-header    { margin-bottom: 40px; }
}

/* Responsive — 1024px: tablet landscape */
@media (max-width: 1024px) {
  .contact-split     { grid-template-columns: 1fr; gap: 40px; }
  .trust-faq-split   { grid-template-columns: 1fr; gap: 48px; }
  .contact-main      { padding: 72px 0; }
  .find-us-section   { padding: 72px 0; }
  .trust-faq-section { padding: 72px 0; }
  .form-card         { padding: 26px 24px; }
  .find-us-grid      { gap: 20px; }
  .map-wrap          { height: 240px; }
  .faq-answer.open   { max-height: 280px; }
}

/* Responsive — 900px: narrow tablet / large phone landscape */
@media (max-width: 900px) {
  .form-row            { grid-template-columns: 1fr; }
  .find-us-grid        { grid-template-columns: 1fr; gap: 20px; }
  .contact-hero__sub   { max-width: 100%; }
  .trust-faq-split     { gap: 40px; }
  .faq-answer.open     { max-height: 320px; }
}

/* Responsive — 768px: mobile landscape / tablet portrait */
@media (max-width: 768px) {
  .contact-hero        { height: auto; min-height: 420px; }
  .contact-hero__content { padding-bottom: 56px; }
  .contact-hero__kicker { margin-top: 56px; font-size: 0.76rem; padding: 6px 14px; margin-bottom: 16px; }
  .contact-hero__title  { font-size: clamp(1.5rem, 5.5vw, 2.2rem); margin-bottom: 16px; }
  .contact-hero__sub    { max-width: 100%; font-size: 0.92rem; margin-bottom: 22px; }

  /* Side-by-side buttons — stack only at 400px */
  .contact-hero__actions { flex-direction: row; flex-wrap: nowrap; gap: 10px; margin-bottom: 18px; }
  .contact-hero__actions .btn { flex: 1 1 0; min-width: 0; padding: 12px 14px; font-size: 11px; letter-spacing: 0.09em; justify-content: center; white-space: nowrap; }

  /* Scroll hint hidden on short viewports */
  .contact-hero__scroll-hint { display: none; }

  .contact-breadcrumb { font-size: 12px; flex-wrap: wrap; gap: 7px; }
  .contact-main       { padding: 60px 0; }
  .contact-split      { gap: 32px; }
  .form-card          { padding: 22px 18px; }
  .form-card__header  { margin-bottom: 20px; padding-bottom: 18px; }
  .form-card__header h2 { font-size: 1.45rem; }

  .info-card          { padding: 18px 16px; gap: 14px; }
  .info-card__icon    { width: 38px; height: 38px; }
  .info-card__icon i  { font-size: 13px; }

  .find-us-section    { padding: 60px 0; }
  .find-us-header     { margin-bottom: 32px; }
  .map-wrap           { height: 230px; }
  .office-card        { padding: 20px 18px; gap: 14px; }
  .office-card__num   { font-size: 1.5rem; min-width: 28px; }

  .trust-faq-section  { padding: 60px 0; }
  .trust-faq-split    { gap: 36px; }
  .faq-question       { padding: 15px 0; font-size: 13.5px; }
  .faq-answer.open    { max-height: 360px; }
}

/* Responsive — 576px: portrait phone */
@media (max-width: 576px) {
  .contact-hero         { min-height: 380px; }
  .contact-hero__content { padding-bottom: 46px; }
  .contact-hero__kicker { font-size: 0.70rem; padding: 5px 12px; margin-top: 50px; margin-bottom: 12px; }
  .contact-hero__title  { font-size: clamp(1.45rem, 7.5vw, 2rem); margin-bottom: 12px; }
  .contact-hero__sub    { font-size: 0.88rem; line-height: 1.75; }
  .contact-hero__actions { flex-direction: row; flex-wrap: nowrap; gap: 9px; }
  .contact-hero__actions .btn { flex: 1 1 0; padding: 11px 12px; font-size: 10.5px; letter-spacing: 0.08em; }

  .contact-main         { padding: 50px 0; }
  .contact-split        { gap: 26px; }
  .form-card            { padding: 18px 15px; }
  .form-card__header h2 { font-size: 1.3rem; }
  .form-card__header p  { font-size: 12.5px; }

  .form-group input,
  .form-group select,
  .form-group textarea  { font-size: 13px; padding: 11px 12px; }
  .form-group textarea  { min-height: 90px; }
  .form-group label     { font-size: 10px; }
  .form-group           { margin-bottom: 13px; }

  .contact-info-intro   { font-size: 13.5px; }
  .info-card__body h3   { font-size: 13px; }
  .info-card__body a,
  .info-card__body p    { font-size: 12.5px; }

  .find-us-section      { padding: 50px 0; }
  .map-wrap             { height: 200px; }
  .office-card          { padding: 16px 14px; gap: 12px; }
  .office-card__num     { font-size: 1.3rem; min-width: 26px; }
  .office-card__body h3 { font-size: 0.95rem; margin-bottom: 8px; }
  .office-card__body p  { font-size: 12.5px; }

  .trust-faq-section    { padding: 50px 0; }
  .trust-intro          { font-size: 13.5px; margin-bottom: 22px; }
  .trust-checklist li   { font-size: 13px; gap: 10px; }
  .faq-question         { font-size: 13px; padding: 14px 0; }
  .faq-answer p         { font-size: 13px; }
  .faq-answer.open      { max-height: 400px; }

  .section-heading      { font-size: clamp(1.4rem, 6vw, 2rem); }
}

/* Responsive — 400px: very small / legacy phones */
@media (max-width: 400px) {
  .contact-hero         { min-height: 450px; }
  .contact-hero__kicker { margin-top: 42px; font-size: 0.65rem; padding: 5px 10px; }
  .contact-hero__title  { font-size: clamp(1.35rem, 9vw, 1.75rem); }
  .contact-hero__sub    { font-size: 0.83rem; }
  .contact-hero__content { padding-bottom: 38px; }

  /* Stack buttons — side-by-side too cramped at 400px */
  .contact-hero__actions { flex-direction: column; flex-wrap: wrap; gap: 9px; }
  .contact-hero__actions .btn { flex: none; width: 100%; padding: 13px 18px; font-size: 11px; letter-spacing: 0.1em; }

  .contact-breadcrumb   { font-size: 11px; gap: 5px; }
  .contact-main         { padding: 40px 0; }
  .contact-split        { gap: 22px; }
  .form-card            { padding: 15px 13px; }
  .form-card__header h2 { font-size: 1.2rem; }
  .form-card__header p  { font-size: 12px; }

  .form-group input,
  .form-group select,
  .form-group textarea  { padding: 10px 11px; font-size: 13px; }

  .info-card            { padding: 13px 12px; gap: 10px; }
  .info-card__icon      { width: 34px; height: 34px; flex-shrink: 0; }
  .info-card__icon i    { font-size: 12px; }
  .info-card__body h3   { font-size: 12.5px; margin-bottom: 4px; }
  .info-card__body a,
  .info-card__body p    { font-size: 12px; }

  .find-us-section      { padding: 40px 0; }
  .find-us-header       { margin-bottom: 24px; }
  .map-wrap             { height: 180px; }
  .office-card          { padding: 14px 12px; gap: 10px; }
  .office-card__num     { font-size: 1.1rem; min-width: 22px; }
  .office-card__body h3 { font-size: 0.88rem; margin-bottom: 6px; }
  .office-card__body p  { font-size: 12px; line-height: 1.6; }

  .trust-faq-section    { padding: 40px 0; }
  .trust-faq-split      { gap: 28px; }
  .trust-intro          { font-size: 13px; margin-bottom: 18px; }
  .trust-checklist li   { font-size: 12.5px; gap: 9px; }
  .why-check            { width: 20px; height: 20px; }
  .why-check i          { font-size: 9px; }
  .faq-question         { font-size: 12.5px; padding: 12px 0; gap: 12px; }
  .faq-answer p         { font-size: 12px; }
  .faq-answer.open      { max-height: 480px; }

  .section-heading      { font-size: clamp(1.25rem, 8vw, 1.7rem); }
  .section-label        { font-size: 11px; letter-spacing: 0.2em; }
}