/* Source: template-contact.php */
/* ── PAGE HERO BASE ── */
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1d1204 0%, #1d1104 100%);
  text-align: center;
}

.page-hero .container {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

/* ── PAGE HERO VIDEO VERSION ── */
.page-hero--video {
  min-height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 !important;
  background: #101010 !important;
}

.page-hero--video .container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 80px !important;
  padding-bottom: 60px !important;
  width: 100%;
}

/* Video */
.page-hero__video {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  z-index: 0 !important;
  pointer-events: none !important;
  display: block !important;
}

/* Overlay */
.page-hero__overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    to bottom,
    rgba(10,5,2,0.50) 0%,
    rgba(10,5,2,0.68) 60%,
    rgba(10,5,2,0.80) 100%
  ) !important;
  z-index: 1 !important;
}

/* Text colors */
.page-hero--video ,
.page-hero--video h1,
.page-hero--video h1 em,
.page-hero--video p {
  color: #fff !important;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  font-weight: 200 !important;
}


/* ── MOBILE ── */
@media (max-width: 768px) {
  .page-hero--video {
    min-height: 70vh !important;
    align-items: center !important;
  }

  .page-hero__video {
    object-position: 55% center !important;
  }

  .page-hero--video .container {
    padding-top: 90px !important;
    padding-bottom: 50px !important;
    text-align: center !important;
  }

  .page-hero--video .container > *:first-child {
    text-align: left !important;
  }
}

@media (max-width: 480px) {
  .page-hero--video {
    min-height: 60vh !important;
  }

  .page-hero--video .container {
    padding-top: 80px !important;
    padding-bottom: 40px !important;
  }

  .page-hero--video h1 {
    font-size: clamp(28px, 7vw, 38px) !important;
  }
}

.page-hero-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 18px;
    padding: 6px 16px;
    border: 1px solid #ffffff;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.4);
}

.page-hero h1 {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 22px;
    font-weight: 300;
}

.page-hero h1 em {
    font-style: italic;
    color: #ffffff;
    font-weight: 300;
}

.page-hero p {
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.65;
    color: #ffffff;
    max-width: 620px;
    margin: 0 auto;
}

/* ----------------------------------------------------------------------------
   2. CONTACT LAYOUT — 2-column grid
   ---------------------------------------------------------------------------- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 48px;
    align-items: start;
}

/* ----------------------------------------------------------------------------
   3. LEFT COLUMN — INFO CARDS
   ---------------------------------------------------------------------------- */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-info-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px 26px;
    box-shadow: 0 2px 12px rgba(42, 24, 16, 0.06);
    border: 3px solid rgba(36, 18, 5, 0.08);
}

.contact-card-title {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 22px;
    font-weight: 700;
    color: #101010;
    margin: 0 0 18px;
    letter-spacing: 0.4px;
}

/* DETAIL ROW (phone, email, whatsapp) */
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(139, 94, 60, 0.08);
}

.contact-detail:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.contact-detail:first-of-type {
    padding-top: 0;
}

.contact-detail-icon {
    font-size: 22px;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(139, 94, 60, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.contact-detail-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #60091A;
    margin-bottom: 4px;
}

.contact-detail-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--espresso, #2a1810);
    text-decoration: none;
    display: block;
    transition: color 0.2s ease;
    word-break: break-word;
}

.contact-detail-value:hover {
    color: var(--cognac, #8b5e3c);
}

/* ADDRESS */
.contact-address {
    font-size: 15px;
    line-height: 1.7;
    color: #60091A;
    margin: 0;
}

/* MAP */
.contact-map {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(42, 24, 16, 0.08);
    line-height: 0;
}

.contact-map iframe {
    display: block;
    width: 100%;
}

/* WORKING HOURS */
.contact-hours-row {
    display: flex;
    justify-content: space-between;
    padding: 11px 0;
    border-bottom: 1px solid rgba(139, 94, 60, 0.08);
    font-size: 15px;
    gap: 12px;
}

.contact-hours-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.contact-hours-row:first-of-type {
    padding-top: 0;
}

.contact-hours-row span:first-child {
    color: #60091A;
    font-weight: 500;
}

.contact-hours-row span:last-child {
    color: var(--espresso, #2a1810);
    font-weight: 600;
    text-align: right;
}

/* ----------------------------------------------------------------------------
   4. RIGHT COLUMN — FORM
   ---------------------------------------------------------------------------- */
.contact-form-wrap {
    background: #fff;
    border-radius: 18px;
    padding: 40px 36px;
    box-shadow: 0 4px 24px rgba(42, 24, 16, 0.08);
    border: 1px solid rgba(139, 94, 60, 0.1);
    position: sticky;
    top: 100px;
}

.contact-form-title {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--espresso, #2a1810);
    margin: 0 0 12px;
}

.contact-form-sub {
    font-size: 15px;
    line-height: 1.6;
    color: var(--warm-gray, #7a6655);
    margin: 0 0 28px;
}

.contact-form-sub a {
    text-decoration: none;
    font-weight: 600;
}

.contact-form-sub a:hover {
    text-decoration: underline;
}

/* FORM GROUPS */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--espresso, #2a1810);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-group .req {
    color: #c0392b;
    margin-left: 3px;
    font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e5dfd6;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: var(--espresso, #2a1810);
    background: #fafaf7;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.5;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b3a899;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--cognac, #8b5e3c);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(139, 94, 60, 0.12);
}

/* CUSTOM SELECT ARROW */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%238b5e3c' d='M6 8L0 0h12z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

/* TERMS CHECKBOX */
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 22px;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--cognac, #8b5e3c);
    flex-shrink: 0;
    cursor: pointer;
}

.form-check label {
    font-size: 13px;
    line-height: 1.5;
    color: var(--warm-gray, #7a6655);
    margin: 0;
    font-weight: 400;
    cursor: pointer;
    letter-spacing: 0;
}

.form-check a {
    word-break: break-word;
    text-decoration: none;
    font-weight: 500;
}

.form-check a:hover {
    text-decoration: underline;
}

/* ----------------------------------------------------------------------------
   5. CAPTCHA
   ---------------------------------------------------------------------------- */
.captcha-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.captcha-box {
    background: var(--espresso, #2a1810);
    color: var(--gold, #d4a574);
    padding: 13px 22px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-display, 'Playfair Display', serif);
    letter-spacing: 2px;
    flex-shrink: 0;
    user-select: none;
}

.captcha-input {
    width: 130px !important;
    text-align: center;
    font-size: 18px !important;
    font-weight: 600 !important;
}

/* ----------------------------------------------------------------------------
   6. SUBMIT BUTTON
   ---------------------------------------------------------------------------- */
.btn-submit {
    width: 100%;
    padding: 16px 28px;
    background: var(--espresso, #2a1810);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
    font-family: inherit;
}

.btn-submit:hover:not(:disabled) {
    background: var(--cognac, #8b5e3c);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(139, 94, 60, 0.3);
}

.btn-submit:active:not(:disabled) {
    transform: translateY(0);
}

.btn-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

#tll-form-msg:empty {
    display: none;
}

/* ----------------------------------------------------------------------------
   7. FADE IN ANIMATION
   ---------------------------------------------------------------------------- */
.fade-in {
    animation: tllFadeIn 0.6s ease-out;
}

@keyframes tllFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.page-hero .tll-breadcrumb,
.page-hero nav.breadcrumb,
.page-hero .breadcrumbs {
  text-align:left;
  position: absolute;
  top: -35px;
  left: -180px;
  z-index: 3;
}
/* ============================================================================
   RESPONSIVE BREAKPOINTS
   ============================================================================ */

/* Tablet — stack columns */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .contact-form-wrap {
        position: static;
        padding: 36px 32px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .page-hero {
        padding: 56px 0 44px;
    }
    .contact-info-card {
        padding: 24px 20px;
        border-radius: 12px;
    }
    .contact-form-wrap {
        padding: 30px 22px;
        border-radius: 14px;
    }
    .contact-card-title {
        font-size: 20px;
        margin-bottom: 16px;
    }
    .contact-form-title {
        font-size: 24px;
    }
    .contact-detail {
        gap: 12px;
        padding: 10px 0;
    }
    .contact-detail-icon {
        width: 38px;
        height: 38px;
        font-size: 19px;
    }
    .contact-detail-value {
        font-size: 15px;
    }
    .contact-address {
        font-size: 14px;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 14px;
        font-size: 16px; /* prevents iOS zoom-in on focus */
    }
    .btn-submit {
        padding: 15px 24px;
        font-size: 13px;
        letter-spacing: 1.5px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .page-hero {
        padding: 44px 0 36px;
    }
    .page-hero h1 {
        font-size: 32px;
    }
    .page-hero-label {
        font-size: 11px;
        letter-spacing: 2px;
        padding: 5px 12px;
        margin-bottom: 14px;
    }
    .contact-info {
        gap: 16px;
    }
    .contact-info-card {
        padding: 22px 18px;
    }
    .contact-form-wrap {
        padding: 26px 18px;
    }
    .contact-form-sub {
        font-size: 14px;
        margin-bottom: 22px;
    }
    .contact-hours-row {
        font-size: 14px;
        padding: 9px 0;
    }
    .form-group {
        margin-bottom: 16px;
    }
    .form-group label {
        font-size: 12px;
    }
    .captcha-wrap {
        gap: 10px;
    }
    .captcha-box {
        font-size: 16px;
        padding: 11px 16px;
        letter-spacing: 1.5px;
    }
    .captcha-input {
        width: 110px !important;
        font-size: 16px !important;
    }
    .form-check {
        gap: 8px;
        margin-bottom: 20px;
    }
    .form-check label {
        font-size: 12px;
        line-height: 1.55;
    }
    .btn-submit {
        padding: 14px 20px;
        font-size: 12.5px;
    }
}

/* Tiny phones (iPhone SE etc.) */
@media (max-width: 360px) {
    .page-hero h1 {
        font-size: 28px;
    }
    .contact-info-card,
    .contact-form-wrap {
        padding: 20px 16px;
    }
    .captcha-input {
        width: 90px !important;
    }
}

/* Text center */
.page-hero--video .container {
  text-align: center;
}

@media (max-width: 768px) {
  .page-hero--video {
    min-height: 70vh;
  }
  .page-hero__video {
    object-position: 55% center;
  }
}

@media (max-width: 480px) {
  .page-hero--video {
    min-height: 60vh;
  }
}
/*important css for video overlay*/
.page-hero--video::before {
  display: none !important;
}
