/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE — HVM Light Theme
   assets/css/contact.css
   Navy #1B2D5B · Red #C22032 · White bg · Black text
   ═══════════════════════════════════════════════════════════════ */

/* ═════════════════════════════════════════════════════════════
   1. CONTACT HERO — VIDEO BACKGROUND
   ═════════════════════════════════════════════════════════════ */

.contact-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-navy, #1B2D5B);
}

/* Static fallback BG image (loads before video) */
.contact-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?w=1920&q=80') center/cover no-repeat;
  opacity: 0.15;
  z-index: 0;
}

/* Video element */
.contact-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.20;
}

/* Dark overlay on top of video */
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(27, 45, 91, 0.95) 0%,
    rgba(27, 45, 91, 0.70) 50%,
    rgba(27, 45, 91, 0.50) 100%
  );
}

.contact-hero .container {
  position: relative;
  z-index: 3;
}

.contact-hero-content {
  max-width: 720px;
  padding: 7rem 0 3.5rem;
}

/* Breadcrumb */
.contact-hero .breadcrumb {
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.contact-hero .breadcrumb a {
  color: rgba(255,255,255,0.55);
  transition: color 0.3s ease;
}

.contact-hero .breadcrumb a:hover { color: #fff; }

.contact-hero .breadcrumb span[aria-hidden] {
  color: rgba(255,255,255,0.3);
  margin: 0 0.5rem;
}

.contact-hero .breadcrumb span[aria-current] {
  color: rgba(255,255,255,0.85);
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-block;
  font-family: var(--ff-body, 'DM Sans', sans-serif);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-red-lt, #d93a4c);
  border: 1px solid rgba(194,32,50,0.4);
  padding: 0.4rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--clr-red, #C22032);
  margin-right: 0.6rem;
  vertical-align: middle;
}

/* Title */
.contact-hero-content h1 {
  font-family: var(--ff-display, 'Cormorant Garamond', serif);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.contact-hero-content h1 em {
  color: var(--clr-red-lt, #d93a4c);
  font-style: italic;
}

.contact-hero-content > p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 580px;
}

.contact-hero-content strong {
  color: rgba(255,255,255,0.9);
}

/* Video play/pause button */
.hero-video-toggle {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 4;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(27,45,91,0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.hero-video-toggle:hover {
  background: rgba(27,45,91,0.7);
  border-color: rgba(255,255,255,0.5);
}

.hero-video-toggle svg {
  width: 16px;
  height: 16px;
  fill: #fff;
  stroke: none;
}

/* Responsive hero */
@media (max-width: 768px) {
  .contact-hero { min-height: 45vh; }
  .contact-hero-content { padding: 6rem 0 2.5rem; }
}


/* ═════════════════════════════════════════════════════════════
   2. QUICK STATS BAR
   ═════════════════════════════════════════════════════════════ */

.contact-stats-bar {
  background: var(--clr-white, #ffffff);
  border-top: 3px solid var(--clr-red, #C22032);
  border-bottom: 1px solid var(--clr-border, rgba(27,45,91,0.12));
  padding: 1.5rem 0;
}

.stats-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.stat-bar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 180px;
}

.stat-bar-item svg {
  flex-shrink: 0;
  stroke: var(--clr-navy, #1B2D5B);
}

.stat-bar-item strong {
  display: block;
  font-size: 0.82rem;
  color: var(--clr-heading, #111);
  letter-spacing: 0.02em;
}

.stat-bar-item span {
  display: block;
  font-size: 0.68rem;
  color: var(--clr-muted, #5c6272);
}

@media (max-width: 768px) {
  .stats-bar-inner { justify-content: center; }
  .stat-bar-item { min-width: 45%; }
}


/* ═════════════════════════════════════════════════════════════
   3. MAIN CONTACT SECTION
   ═════════════════════════════════════════════════════════════ */

.contact-main {
  background: var(--clr-offwhite, #f6f7f9);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Left column */
.contact-info-col .col-label {
  font-family: var(--ff-body);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-red, #C22032);
  margin-bottom: 0.5rem;
}

.contact-info-col h2 {
  font-family: var(--ff-display, 'Cormorant Garamond', serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--clr-heading, #111);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.contact-info-col h2 em {
  color: var(--clr-red, #C22032);
  font-style: italic;
}

.contact-info-col > p {
  color: var(--clr-muted, #5c6272);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* Contact cards */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: var(--clr-white, #fff);
  border: 1px solid var(--clr-border, rgba(27,45,91,0.12));
  border-radius: var(--radius-md, 8px);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.contact-card:hover {
  border-color: var(--clr-navy, #1B2D5B);
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.contact-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(27,45,91,0.06);
  flex-shrink: 0;
}

.contact-card-icon svg {
  stroke: var(--clr-navy, #1B2D5B);
}

.contact-card-text strong {
  font-family: var(--ff-heading, 'Cinzel', serif);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-navy, #1B2D5B);
  display: block;
  margin-bottom: 0.3rem;
}

.contact-card-text p,
.contact-card-text a {
  font-size: 0.85rem;
  color: var(--clr-body, #1a1a1a);
  line-height: 1.5;
}

.contact-card-text a:hover {
  color: var(--clr-red, #C22032);
}

/* Response guarantee */
.response-guarantee {
  background: rgba(27,45,91,0.04);
  border: 1px solid var(--clr-border, rgba(27,45,91,0.12));
  border-radius: var(--radius-md, 8px);
  padding: 1.2rem 1.4rem;
  margin-bottom: 2rem;
}

.response-guarantee h4 {
  font-family: var(--ff-heading, 'Cinzel', serif);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--clr-navy, #1B2D5B);
  margin-bottom: 0.4rem;
}

.response-guarantee p {
  font-size: 0.82rem;
  color: var(--clr-muted, #5c6272);
  line-height: 1.65;
}

.response-guarantee strong {
  color: var(--clr-red, #C22032) !important;
}

/* Social row */
.social-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-muted, #5c6272);
  margin-right: 0.5rem;
}

.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--clr-border, rgba(27,45,91,0.12));
  color: var(--clr-navy, #1B2D5B);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--clr-navy, #1B2D5B);
  border-color: var(--clr-navy, #1B2D5B);
  color: #fff;
}

.social-link svg {
  width: 15px;
  height: 15px;
}


/* ═════════════════════════════════════════════════════════════
   4. CONTACT FORM PANEL
   ═════════════════════════════════════════════════════════════ */

.contact-form-panel {
  background: var(--clr-white, #fff);
  border: 1px solid var(--clr-border, rgba(27,45,91,0.12));
  border-radius: var(--radius-lg, 16px);
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.form-panel-header {
  margin-bottom: 2rem;
}

.panel-tag {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-red, #C22032);
  margin-bottom: 0.5rem;
}

.form-panel-header h3 {
  font-family: var(--ff-display, 'Cormorant Garamond', serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--clr-heading, #111);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.form-panel-header > p {
  font-size: 0.85rem;
  color: var(--clr-muted, #5c6272);
  line-height: 1.6;
}

/* Select wrapper (custom arrow) */
.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: '▾';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--clr-muted, #5c6272);
  pointer-events: none;
  font-size: 0.8rem;
}

.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5rem;
}

/* Full-width submit button */
.btn-primary-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--clr-red, #C22032);
  padding: 0.95rem 2rem;
  border: none;
  border-radius: var(--radius-sm, 4px);
  cursor: pointer;
  transition: background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.btn-primary-full:hover {
  background: var(--clr-red-dk, #9a1926);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(194,32,50,0.25);
}

@media (max-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
}


/* ═════════════════════════════════════════════════════════════
   5. MAP SECTION
   ═════════════════════════════════════════════════════════════ */

.map-section {
  background: var(--clr-white, #fff);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.map-wrapper {
  border: 1px solid var(--clr-border, rgba(27,45,91,0.12));
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: var(--clr-offwhite, #f6f7f9);
  border-bottom: 1px solid var(--clr-border, rgba(27,45,91,0.12));
  flex-wrap: wrap;
  gap: 0.75rem;
}

.map-header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--clr-body, #1a1a1a);
}

.map-header-left strong {
  color: var(--clr-navy, #1B2D5B);
}

.map-header-left span {
  color: var(--clr-muted, #5c6272);
}

.map-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--clr-red, #C22032);
  flex-shrink: 0;
  animation: mapPulse 2s ease-in-out infinite;
}

@keyframes mapPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(194,32,50,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(194,32,50,0); }
}

.map-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-navy, #1B2D5B);
  border: 1px solid var(--clr-border, rgba(27,45,91,0.12));
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm, 4px);
  transition: all 0.3s ease;
}

.map-directions-btn:hover {
  background: var(--clr-navy, #1B2D5B);
  color: #fff;
  border-color: var(--clr-navy, #1B2D5B);
}

.map-frame {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .map-frame { height: 280px; }
}


/* ═════════════════════════════════════════════════════════════
   6. WHY CHOOSE US
   ═════════════════════════════════════════════════════════════ */

.why-section {
  background: var(--clr-offwhite, #f6f7f9);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.why-card {
  background: var(--clr-white, #fff);
  border: 1px solid var(--clr-border, rgba(27,45,91,0.12));
  border-radius: var(--radius-md, 8px);
  padding: 2rem 1.5rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  border-color: var(--clr-navy, #1B2D5B);
}

.why-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(27,45,91,0.06);
  border: 1px solid var(--clr-border, rgba(27,45,91,0.12));
  margin-bottom: 1.2rem;
}

.why-icon svg {
  stroke: var(--clr-navy, #1B2D5B);
}

.why-card h4 {
  font-family: var(--ff-heading, 'Cinzel', serif);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-navy, #1B2D5B);
  margin-bottom: 0.6rem;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--clr-muted, #5c6272);
  line-height: 1.7;
}

@media (max-width: 1024px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .why-grid { grid-template-columns: 1fr; } }


/* ═════════════════════════════════════════════════════════════
   7. CONTACT CTA BANNER
   ═════════════════════════════════════════════════════════════ */

.contact-cta {
  background: var(--clr-navy, #1B2D5B);
  padding: 4rem var(--gutter, 2rem);
}

.contact-cta-inner {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-cta h2 {
  font-family: var(--ff-display, 'Cormorant Garamond', serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.3;
}

.contact-cta p {
  color: rgba(255,255,255,0.55);
  margin-top: 0.4rem;
  font-size: 0.9rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-cta .btn-dark {
  color: var(--clr-navy, #1B2D5B);
  background: #fff;
}

.contact-cta .btn-dark:hover {
  background: var(--clr-light-grey, #eef0f4);
}


/* ═════════════════════════════════════════════════════════════
   8. FADE-UP ANIMATIONS
   ═════════════════════════════════════════════════════════════ */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }