/* ══════════════════════════════════
   HERO HEADER BAND
══════════════════════════════════ */
.page-header {
    background: #000000;
    padding: 72px 0 64px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(201, 168, 76, .06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -60px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 76, .08) 0%, transparent 65%);
    pointer-events: none;
}

.ph-inner {
    position: relative;
    z-index: 2;
}

.ph-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--red);
    background: var(--gold-gl);
    border: 1px solid var(--gold-m);
    padding: 4px 14px;
    border-radius: var(--rpill);
    margin-bottom: 20px;
}

.ph-dot {
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    animation: pgold 2s infinite;
}

@keyframes pgold {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(201, 168, 76, .5);
    }

    50% {
        box-shadow: 0 0 0 7px rgba(201, 168, 76, 0);
    }
}

.ph-h1 {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(44px, 6vw, 80px);
    line-height: .96;
    letter-spacing: -.02em;
    color: #fff;
    margin-bottom: 18px;
}

.ph-h1 em {
    color: var(--red);
    font-style: italic;
}

.ph-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, .45);
    line-height: 1.75;
    max-width: 520px;
}

.ph-sub strong {
    color: rgba(255, 255, 255, .8);
}

/* ══════════════════════════════════
   MAIN CONTENT AREA
   Left dark panel + Right form
══════════════════════════════════ */
.contact-section {
    padding: 0 0 96px;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 0;
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: var(--r28);
    overflow: hidden;
    box-shadow: var(--s4);
    margin-top: -32px;
    position: relative;
    z-index: 10;
}

/* ── LEFT DARK PANEL ── */
.contact-left {
    background: #000000;
    padding: 52px 48px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
}

.contact-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(201, 168, 76, .04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.contact-left::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(201, 168, 76, .07) 0%, transparent 70%);
    pointer-events: none;
}

.cl-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cl-tagline {
    font-family: var(--display);
    font-weight: 700;
    font-style: italic;
    font-size: 22px;
    color: rgba(255, 255, 255, .85);
    line-height: 1.35;
    margin-bottom: 32px;
    border-left: 3px solid var(--red);
    padding-left: 18px;
}

/* Response time badge */
.response-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, .1);
    border: 1px solid rgba(201, 168, 76, .2);
    border-radius: var(--rpill);
    padding: 7px 16px;
    margin-bottom: 36px;
    width: fit-content;
}

.rb-dot {
    width: 7px;
    height: 7px;
    background: var(--red);
    border-radius: 50%;
    animation: pgold 1.8s infinite;
}

.rb-txt {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--red);
    letter-spacing: .06em;
}

/* Contact channels */
.cl-channels {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.channel-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: var(--r14);
    padding: 16px 18px;
    transition: all .2s;
    cursor: pointer;
    text-decoration: none;
}

.channel-card:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(201, 168, 76, .25);
    transform: translateX(3px);
}

.ch-ico {
    width: 38px;
    height: 38px;
    border-radius: var(--r10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.ch-label {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.ch-val {
    font-family: var(--body);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, .8);
}

.ch-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, .3);
    margin-top: 1px;
}

.ch-arr {
    margin-left: auto;
    font-size: 14px;
    color: rgba(255, 255, 255, .2);
    align-self: center;
    transition: transform .2s;
}

.channel-card:hover .ch-arr {
    transform: translateX(3px);
    color: var(--red);
}

/* Divider */
.cl-divider {
    height: 1px;
    background: rgba(255, 255, 255, .07);
    margin: 8px 0 24px;
}

/* Office locations */
.cl-offices-title {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .25);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cl-offices-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, .07);
}

.offices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.office-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--r10);
    padding: 14px 15px;
    transition: all .2s;
}

.office-card:hover {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(201, 168, 76, .18);
}

.office-flag {
    font-size: 18px;
    margin-bottom: 8px;
    display: block;
}

.office-city {
    font-family: var(--display);
    font-weight: 700;
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 3px;
}

.office-country {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 6px;
}

.office-addr {
    font-size: 11px;
    color: rgba(255, 255, 255, .28);
    line-height: 1.55;
}

/* Trust badges at bottom */
.cl-trust {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 28px;
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 4px 10px;
    border-radius: var(--rpill);
    background: rgba(255, 255, 255, .03);
}

.tp-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

/* ── RIGHT FORM PANEL ── */
.contact-right {
    background: var(--cream);
    padding: 52px 52px;
    display: flex;
    flex-direction: column;
}

/* Intent tabs */
.intent-tabs {
    display: flex;
    gap: 0;
    background: var(--cream2);
    border: 1.5px solid var(--border);
    border-radius: var(--r10);
    padding: 4px;
    margin-bottom: 36px;
}

.it {
    flex: 1;
    text-align: center;
    padding: 9px 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    border-radius: 8px;
    cursor: pointer;
    transition: all .2s;
    user-select: none;
}

.it.active {
    background: #000000;
    color: #fff;
    box-shadow: var(--s1);
}

.it:hover:not(.active) {
    color: var(--ink2);
}

/* Form header */
.form-eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
}

.form-title {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #000000;
    margin-bottom: 6px;
}

.form-title em {
    color: var(--red);
    font-style: italic;
}

.form-sub {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 32px;
}

/* Form fields */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.form-label {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--muted);
}

.form-label .req {
    color: var(--red);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    font-family: var(--body);
    font-size: 14px !important;
    color: #000000;
    background: var(--cream2);
    border: 1.5px solid var(--border) !important;
    border-radius: var(--r10) !important;
    padding: 13px 16px;
    outline: none;
    transition: all .2s !important;
    appearance: none !important;
    -webkit-appearance: none !important;
}

.form-select {
    padding: 13px 16px !important;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--muted);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--red);
    background: var(--cream);
    box-shadow: var(--sgold);
}

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A8C7E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-select option {
    background: var(--cream);
    color: #000000;
}

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

/* Checkbox group */
.form-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 12px;
    background: var(--cream2);
    border: 1.5px solid var(--border);
    border-radius: var(--r10);
    cursor: pointer;
    transition: all .2s;
}

.check-item:hover {
    border-color: var(--red);
    background: var(--gold-gl);
}

.check-item input {
    width: 14px;
    height: 14px;
    accent-color: var(--red);
    cursor: pointer;
}

.check-item span {
    font-size: 13px;
    font-weight: 500;
    color: var(--ink2);
}

/* Submit button */
.form-submit {
    width: 100%;
    padding: 16px;
    font-family: var(--body);
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    background: #000000;
    border: none;
    border-radius: var(--r10);
    cursor: pointer;
    transition: all .25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 6px;
    position: relative;
    overflow: hidden;
}

.form-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(201, 168, 76, .15) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform .6s ease;
}

.form-submit:hover::before {
    transform: translateX(100%);
}

/* .form-submit:hover {
    background: var(--ink2);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(26, 22, 18, .2);
} */

.form-submit.sending {
    opacity: .7;
    pointer-events: none;
}

.submit-ico {
    font-size: 17px;
}

.form-fine {
    text-align: center;
    margin-top: 14px;
    font-size: 11px;
    color: var(--muted);
    line-height: 1.6;
}

.form-fine a {
    color: var(--red);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Success state */
.form-success {
    display: none;
    text-align: center;
    padding: 48px 24px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.form-success.visible {
    display: flex;
}

.success-ico {
    font-size: 56px;
    animation: popin .4s cubic-bezier(.34, 1.56, .64, 1);
}

@keyframes popin {
    from {
        transform: scale(.3);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-h {
    font-family: var(--display);
    font-weight: 800;
    font-size: 28px;
    color: #000000;
}

.success-sub {
    font-size: 15px;
    color: var(--muted);
    max-width: 340px;
    line-height: 1.7;
}

/* ══════════════════════════════════
   WHY CONTACT SECTION
══════════════════════════════════ */
.why-sec {
    padding: 80px 0;
    background: var(--cream);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.why-card {
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: var(--r20);
    padding: 32px;
    transition: all .25s;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--s3);
    border-color: var(--cream3);
}

.wc-ico {
    font-size: 30px;
    margin-bottom: 18px;
    display: block;
}

.wc-title {
    font-family: var(--display);
    font-weight: 800;
    font-size: 19px;
    color: #000000;
    letter-spacing: -.02em;
    margin-bottom: 9px;
}

.wc-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
}

.wc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    transition: gap .2s;
}

.wc-link:hover {
    gap: 10px;
}

/* Section header utility */
.sec-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--gold-gl);
    border: 1px solid var(--gold-m);
    border-radius: var(--rpill);
    padding: 4px 14px;
    margin-bottom: 14px;
}

.sec-eyebrow span {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--red);
}

.sec-h2 {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(26px, 3.2vw, 40px);
    line-height: 1.1;
    letter-spacing: -.025em;
    color: #000000;
}

.sec-h2 em {
    color: var(--red);
    font-style: italic;
}

/* ══════════════════════════════════
   FAQ SECTION
══════════════════════════════════ */
.faq-sec {
    padding: 80px 0;
    background: var(--parch);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.faq-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 72px;
    align-items: start;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: var(--r14);
    padding: 20px 22px;
    cursor: pointer;
    transition: all .2s;
}

.faq-item:hover,
.faq-item.open {
    border-color: var(--red);
}

.faq-item.open {
    background: var(--cream2);
}

.faq-q {
    font-family: poppins;
    font-weight: 600;
    font-size: 15px;
    color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.faq-icon {
    color: var(--red);
    font-size: 20px;
    flex-shrink: 0;
    line-height: 1;
}

.faq-a {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.75;
    margin-top: 12px;
    display: none;
}

.faq-item.open .faq-a {
    display: block;
}

/* FOOTER */
footer {
    background: #ffeee8;
    padding: 60px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.foot-g {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 20px;
    margin-bottom: 48px;
}

.foot-brand p {
    font-size: 14px;
    color: #000000;
    line-height: 1.7;
    margin-top: 14px;
    max-width: 260px;
}

.foot-h {
    font-family: poppins;
    font-size: 11px;
    text-transform: uppercase;
    color: #ff3d00;
    margin-bottom: 16px;
    font-weight: 600;
}

.foot-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
 padding-left: 0px;
}

.foot-links a {
    font-size: 14px;
    color: #000000;
    transition: color .2s;
}

.foot-links a:hover {
    color: #ff3d00;
}

.foot-offices {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.off-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: #000000;
    line-height: 1.5;
}

.foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}

.foot-copy {
    font-family: poppins;
    font-size: 12px;
    color: #000000;
}

.foot-certs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cert-c {
    font-family: poppins;
    font-size: 11px;
    color: #000000;
    border: 1px solid #ccc;
    padding: 4px 10px;
    border-radius: 4px;
}

.foot-soc {
    display: flex;
    gap: 8px;
}

.soc-b {
    padding: 6px 15px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid #ccc;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #000000;
    transition: all .2s;
}

.soc-b:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--paper2);
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 2px;
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

.reveal-d1 {
    transition-delay: .1s;
}

.reveal-d2 {
    transition-delay: .2s;
}

.reveal-d3 {
    transition-delay: .3s;
}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {

    .wrap,
    .wrap-md {
        padding: 0 24px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        margin-top: -20px;
    }

    .contact-left {
        padding: 40px 32px;
    }

    .contact-right {
        padding: 40px 32px;
    }

    .offices-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .cl-trust {
        margin-top: 24px;
        padding-top: 24px;
    }

    .faq-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    nav .nav-crumb {
        display: none;
    }

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

@media(max-width:640px) {
    .offices-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .ph-h1 {
        font-size: 42px;
    }

    .intent-tabs {
        flex-wrap: wrap;
    }

    .foot-grid {
        grid-template-columns: 1fr;
    }
}


/*css for captcha*/

.contact-submit-btn {
  margin-left: auto;
}

.captcha-inline {
  /* display: flex; */
  align-items: center;
  gap: 10px;
}

.captcha-inline input[type="text"],
.captcha-inline input[type="number"] {
  border: 1px solid #d4d4d4;
  border-radius: 4px;
  background: #f5f5f5;
  padding: 10px 12px;
  font-family: "Inter Display", sans-serif;
  font-size: 15px;
  color: #111;
  outline: none;
  text-align: center;
}

.captcha-inline input[type="text"] {
  width: 52px;
  color: #555;
  pointer-events: none;
}

.captcha-inline input[type="number"] {
  width: 70px;
  background: #fff;
  pointer-events: all;
}

.captcha-inline input[type="number"]:focus {
  border-color: #111;
}

.math-op {
  font-size: 16px;
  font-family: "Inter Display", sans-serif;
  color: #333;
  font-weight: 500;
}


/* Captcha Row - Mobile Responsive */

@media (max-width: 768px) {

  .captcha-inline {
    justify-content: center;
    flex-wrap: wrap;
  }

  .contact-submit-btn {
    width: 100%;
    margin-left: 0;
  }

  .loader_div {
    justify-content: center;
    display: flex;
  }
}

@media (max-width: 480px) {

  .captcha-inline input[type="text"],
  .captcha-inline input[type="number"] {
    width: 48px;
    padding: 8px 6px;
    font-size: 14px;
  }

  .captcha-inline input[type="number"] {
    width: 60px;
  }

  .math-op {
    font-size: 14px;
  }
}

.contact-form label.error {
    color: red;
    font-size: 13px;
    margin-bottom: 0;
}

.loader_div {
    display: none;
}

.iti--separate-dial-code .iti__selected-flag {
    height: 50px;
}

.alert-success {
    font-size: 14px;
}