/* --- PAGE HERO --- */
.contact-hero {
  background: var(--navy);
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute; top: -40%; right: -6%;
  width: 450px; height: 450px;
  background: rgba(192,57,43,0.05);
  border-radius: 50%;
}
.contact-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--navy-light));
}
.contact-hero .container { position: relative; z-index: 2; }
.hero-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 16px;
}
.hero-breadcrumb a { color: rgba(255,255,255,0.5); }
.hero-breadcrumb a:hover { color: white; }
.hero-breadcrumb .sep { font-size: 10px; }
.contact-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 40px; font-weight: 800;
  color: white; margin-bottom: 10px; letter-spacing: -0.8px;
}
.contact-hero p {
  font-size: 16px; color: rgba(255,255,255,0.5);
  max-width: 520px; line-height: 1.7;
}


/* --- QUICK ACTION CARDS --- */
.quick-actions {
  margin-top: -44px;
  position: relative;
  z-index: 10;
  padding-bottom: 50px;
}
.actions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.action-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.action-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--red);
  opacity: 0;
  transition: opacity 0.3s;
}
.action-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.action-card:hover::before { opacity: 1; }
.action-card .a-icon {
  width: 50px; height: 50px;
  background: var(--red-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  transition: all 0.3s;
}
.action-card:hover .a-icon { background: var(--red); }
.action-card:hover .a-icon svg { color: white; }
.action-card .a-icon svg { width: 24px; height: 24px; color: var(--red); transition: color 0.3s; }
.action-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 17px; font-weight: 700; color: var(--navy);
  margin-bottom: 6px;
}
.action-card p { font-size: 13.5px; color: var(--gray-500); line-height: 1.6; margin-bottom: 14px; }
.action-card .a-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 600; color: var(--red);
}
.action-card .a-link svg { width: 14px; height: 14px; }
.action-card:hover .a-link { text-decoration: underline; }


/* --- CONTACT MAIN SECTION --- */
.contact-main {
  padding: 0 0 80px;
  background: var(--white);
}
.contact-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: flex-start;
}

/* Left: Contact Info */
.contact-sidebar {}
.sidebar-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px; font-weight: 700; color: var(--navy);
  margin-bottom: 8px;
}
.sidebar-desc {
  font-size: 14px; color: var(--gray-500);
  line-height: 1.7; margin-bottom: 32px;
}
.contact-info-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.ci-item {
  display: flex; gap: 14px;
}
.ci-icon {
  width: 48px; height: 48px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s;
}
.ci-item:hover .ci-icon { background: var(--red-light); border-color: rgba(192,57,43,0.15); }
.ci-icon svg { width: 22px; height: 22px; color: var(--navy); }
.ci-text h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.ci-text p { font-size: 13.5px; color: var(--gray-500); line-height: 1.5; margin: 0; }
.ci-text a { color: var(--red); font-weight: 500; }
.ci-text a:hover { text-decoration: underline; }

/* Business hours */
.hours-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 26px;
  color: white;
  position: relative;
  overflow: hidden;
}
.hours-card::before {
  content: '';
  position: absolute; top: -30%; right: -15%;
  width: 150px; height: 150px;
  background: rgba(192,57,43,0.08);
  border-radius: 50%;
}
.hours-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 15px; font-weight: 700;
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
.hours-row {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 13.5px;
  position: relative; z-index: 1;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: rgba(255,255,255,0.6); }
.hours-row .time { color: rgba(255,255,255,0.85); font-weight: 600; }
.hours-row .time.closed { color: var(--red); }

/* Social links */
.social-row {
  display: flex; gap: 10px; margin-top: 24px;
}
.social-link {
  width: 40px; height: 40px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.social-link:hover { background: var(--navy); border-color: var(--navy); }
.social-link:hover svg { color: white; }
.social-link svg { width: 18px; height: 18px; color: var(--gray-400); }


/* Right: Contact Form */
.contact-form-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-header {
  margin-bottom: 28px;
}
.form-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 24px; font-weight: 700; color: var(--navy);
  margin-bottom: 6px;
}
.form-header p { font-size: 14px; color: var(--gray-500); }

/* Inquiry type selector */
.inquiry-type {
  display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap;
}
.inq-chip {
  padding: 9px 18px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.inq-chip:hover { border-color: var(--navy); color: var(--navy); }
.inq-chip.active { background: var(--navy); border-color: var(--navy); color: white; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--navy); }
.form-group label .req { color: var(--red); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--gray-700);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.06);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit { grid-column: 1 / -1; margin-top: 8px; }
.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--red);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-submit:hover { background: var(--red-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(192,57,43,0.2); }
.btn-submit svg { width: 18px; height: 18px; }

.form-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-100);
  flex-wrap: wrap;
}
.form-footer-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--gray-400); font-weight: 500;
}
.form-footer-item svg { width: 14px; height: 14px; color: var(--teal); }


/* --- FAQ SECTION --- */
.faq-section {
  padding: 70px 0;
  background: var(--off-white);
  border-top: 1px solid var(--gray-100);
}
.faq-header {
  text-align: center;
  margin-bottom: 40px;
}
.faq-header .label {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--red); margin-bottom: 8px;
}
.faq-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px; font-weight: 700; color: var(--navy);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.open { border-color: rgba(192,57,43,0.15); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  gap: 16px;
}
.faq-question h4 {
  font-size: 15px; font-weight: 600; color: var(--navy);
  line-height: 1.4; flex: 1;
}
.faq-toggle {
  width: 30px; height: 30px;
  background: var(--gray-50);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s;
}
.faq-item.open .faq-toggle { background: var(--red); }
.faq-toggle svg { width: 16px; height: 16px; color: var(--gray-400); transition: all 0.25s; }
.faq-item.open .faq-toggle svg { color: white; transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
}
.faq-answer-inner {
  padding: 0 22px 20px;
  font-size: 14px; color: var(--gray-500); line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 300px; }


/* --- TRUST STRIP --- */
.trust-section {
  padding: 48px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-block {
  text-align: center;
  padding: 24px 16px;
}
.trust-block .tb-icon {
  width: 48px; height: 48px;
  background: var(--gray-50);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.trust-block .tb-icon svg { width: 22px; height: 22px; color: var(--red); }
.trust-block h4 {
  font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px;
}
.trust-block p { font-size: 12.5px; color: var(--gray-400); line-height: 1.5; }


/* --- BOTTOM CTA --- */
.contact-bottom-cta {
  padding: 56px 0;
  background: var(--navy);
  text-align: center;
}
.contact-bottom-cta h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px; font-weight: 700; color: white; margin-bottom: 10px;
}
.contact-bottom-cta p { font-size: 15px; color: rgba(255,255,255,0.5); margin-bottom: 24px; }
.btn-red-lg {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: white;
  padding: 15px 32px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600; border: none;
  cursor: pointer; transition: all 0.25s;
}
.btn-red-lg:hover { background: var(--red-hover); transform: translateY(-2px); }
.btn-red-lg svg { width: 16px; height: 16px; }
