/* ============================================================
   BEOND JOURNEYS — Contact Us Page Styles
   File: css/hub-contact.css   v1.0.0
   Geologica font  |  Brand colours preserved
   Prefix: bct-
============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Geologica:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --bct-primary: #f97251;
  --bct-primary-dk: #e05c3c;
  --bct-primary-pale: #fef3ef;
  --bct-cream: #fdf8f6;
  --bct-border: #ede4e0;
  --bct-dark: #2d1206;
  --bct-dark2: #5a2d10;
  --bct-text: #666;
  --bct-white: #fff;
  --bct-green: #25d366;
  --bct-green-dk: #1cb857;
  --bct-shadow: 0 6px 32px rgba(0, 0, 0, 0.09);
  --bct-shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
  --bct-radius: 12px;
  --bct-radius-sm: 6px;
  --bct-transition: 0.27s ease;
  --bct-font: "Geologica", sans-serif;
  --bct-container: 1180px;
}

/* Hide theme's auto page title banner on this page */
.traveltour-page-title-wrap {
  display: none !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[class^="bct-"],
[class*=" bct-"],
[class^="bct-"] *,
[class*=" bct-"] * {
  font-family: var(--bct-font) !important;
}

.bct-container {
  max-width: var(--bct-container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Shared ----------------------------------------------------- */
.bct-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--bct-primary);
  margin-bottom: 14px;
}

.bct-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.bct-section-head h2,
.bct-form-wrap h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--bct-dark);
  line-height: 1.25;
  margin: 0 0 14px;
}

.bct-section-head h2 em,
.bct-form-wrap h2 em,
.bct-hero h1 em {
  font-style: normal;
  color: var(--bct-primary);
}

/* HERO ------------------------------------------------------- */
.bct-hero {
  background: linear-gradient(135deg, #fff7f4 0%, #fdeee8 55%, #fbe3d8 100%);
  padding: 90px 0 130px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bct-hero::after {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 114, 81, 0.13), transparent 70%);
}

.bct-hero .bct-container {
  position: relative;
  z-index: 1;
}

.bct-hero h1 {
  font-size: 50px;
  font-weight: 800;
  color: var(--bct-dark);
  line-height: 1.15;
  margin: 0 0 20px;
}

.bct-hero-sub {
  font-size: 18px;
  color: var(--bct-dark2);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

/* CONTACT CARDS ---------------------------------------------- */
.bct-cards-section {
  background: var(--bct-white);
  padding: 0 0 30px;
}

.bct-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: -62px;
  position: relative;
  z-index: 2;
}

.bct-card {
  display: block;
  background: var(--bct-white);
  border: 1px solid var(--bct-border);
  border-radius: var(--bct-radius);
  box-shadow: var(--bct-shadow);
  padding: 32px 28px;
  text-align: center;
  text-decoration: none !important;
  transition: transform var(--bct-transition), box-shadow var(--bct-transition);
}

.bct-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--bct-shadow-lg);
}

.bct-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--bct-primary-pale);
  color: var(--bct-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.bct-card-wa .bct-card-icon {
  background: rgba(37, 211, 102, 0.12);
  color: var(--bct-green);
}

.bct-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--bct-dark);
  margin: 0 0 8px;
}

.bct-card p {
  font-size: 15.5px;
  color: var(--bct-text);
  margin: 0;
}

/* MAIN: FORM + SIDE ------------------------------------------ */
.bct-main {
  background: var(--bct-cream);
  padding: 72px 0;
}

.bct-main-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 44px;
  align-items: start;
}

.bct-form-wrap {
  background: var(--bct-white);
  border: 1px solid var(--bct-border);
  border-radius: var(--bct-radius);
  box-shadow: var(--bct-shadow);
  padding: 44px 42px;
}

.bct-form-sub {
  font-size: 15.5px;
  color: var(--bct-text);
  line-height: 1.7;
  margin: 0 0 26px;
}

.bct-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.bct-form input,
.bct-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--bct-border);
  border-radius: var(--bct-radius-sm);
  font-size: 15px;
  color: var(--bct-dark);
  background: var(--bct-white);
  outline: none;
  transition: border-color var(--bct-transition);
}

.bct-form input:focus,
.bct-form textarea:focus {
  border-color: var(--bct-primary);
}

.bct-form textarea {
  resize: vertical;
  margin-bottom: 20px;
}

.bct-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 36px;
  border: 0;
  border-radius: 50px;
  font-size: 15.5px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none !important;
  transition: all var(--bct-transition);
  line-height: 1.2;
}

.bct-btn-primary {
  background: var(--bct-primary);
  color: var(--bct-white) !important;
  box-shadow: 0 8px 24px rgba(249, 114, 81, 0.35);
}

.bct-btn-primary:hover {
  background: var(--bct-primary-dk);
  transform: translateY(-2px);
}

/* SIDE cards ------------------------------------------------- */
.bct-office-card,
.bct-social-card {
  background: var(--bct-white);
  border: 1px solid var(--bct-border);
  border-radius: var(--bct-radius);
  box-shadow: var(--bct-shadow);
  padding: 34px 32px;
  margin-bottom: 24px;
}

.bct-office-card h3,
.bct-social-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--bct-dark);
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--bct-primary-pale);
}

.bct-office {
  margin-bottom: 20px;
}

.bct-office:last-child {
  margin-bottom: 0;
}

.bct-office h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--bct-primary);
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bct-office p {
  font-size: 15px;
  color: var(--bct-text);
  line-height: 1.7;
  margin: 0;
}

.bct-social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.bct-social-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--bct-dark2) !important;
  text-decoration: none !important;
  transition: color var(--bct-transition);
}

.bct-social-links a:hover {
  color: var(--bct-primary) !important;
}

.bct-tagline {
  font-size: 14px;
  font-style: italic;
  color: var(--bct-text);
  margin: 0;
}

/* MAP -------------------------------------------------------- */
.bct-map-section {
  background: var(--bct-white);
  padding: 72px 0 84px;
}

.bct-map-wrap {
  border-radius: var(--bct-radius);
  overflow: hidden;
  box-shadow: var(--bct-shadow);
  line-height: 0;
}

/* RESPONSIVE ------------------------------------------------- */
@media (max-width: 980px) {
  .bct-hero h1 {
    font-size: 38px;
  }

  .bct-main-grid {
    grid-template-columns: 1fr;
  }

  .bct-cards-grid {
    grid-template-columns: 1fr;
    margin-top: -50px;
  }
}

@media (max-width: 600px) {
  .bct-hero {
    padding: 60px 0 110px;
  }

  .bct-hero h1 {
    font-size: 30px;
  }

  .bct-section-head h2,
  .bct-form-wrap h2 {
    font-size: 26px;
  }

  .bct-form-wrap {
    padding: 30px 22px;
  }

  .bct-form-row {
    grid-template-columns: 1fr;
  }

  .bct-main,
  .bct-map-section {
    padding: 52px 0;
  }

  .bct-btn {
    width: 100%;
  }
}
