/* ============================================================
   CONTACT PAGE STYLES — contact.css
   ============================================================ */

/* Contact cards row */
.cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.ccard {
    background: var(--card);
    border-radius: 14px;
    padding: 32px 28px;
    border: 1px solid var(--border);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.ccard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.ccard:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(26, 86, 219, 0.12);
}

.ccard:hover::before {
    transform: scaleX(1);
}

.ccard-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.3s;
}

.ccard-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    overflow: visible;
}

.ccard:hover .ccard-icon {
    background: var(--blue);
}

.ccard:hover .ccard-icon svg {
    stroke: #fff;
}

.ccard-lbl {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 8px;
}

.ccard-val {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
    overflow-wrap: anywhere;
}

.ccard-sub {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 14px;
}

.ccard-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.ccard-link:hover {
    color: var(--navy);
}

/* Contact grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
    margin-bottom: 60px;
}

/* Form */
.form-card {
    background: var(--card);
    border-radius: 16px;
    padding: 0;
    border: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(10, 22, 40, 0.08);
    overflow: hidden;
}

.form-card-header {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%);
    padding: 28px 36px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.form-card-header-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-card-header-icon svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.form-card-header-text {
    flex: 1;
}

.form-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
    line-height: 1.2;
}

.form-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.form-body {
    padding: 36px 36px 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field {
    margin-bottom: 20px;
}

.field label {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 7px;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Barlow', sans-serif;
    color: var(--ink);
    background: var(--surface);
    transition: all 0.25s ease;
    outline: none;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

.field input:not(:placeholder-shown):valid,
.field textarea:not(:placeholder-shown):valid {
    border-color: #16a34a;
}

.field textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.65;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #9aa8c0;
}

/* Pill-style inquiry type toggles */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.checkbox-item {
    position: relative;
    cursor: pointer;
    user-select: none;
}

.checkbox-item input[type=checkbox] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.checkbox-item span {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    background: var(--surface);
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    line-height: 1;
}

.checkbox-item span:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: rgba(26, 86, 219, 0.06);
}

.checkbox-item input[type=checkbox]:checked + span {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
    box-shadow: 0 2px 8px rgba(26, 86, 219, 0.3);
}

.form-note {
    font-size: 12px;
    color: var(--muted);
    margin-top: 6px;
}

.submit-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}

.submit-row .btn {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.submit-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 12px;
    color: var(--muted);
}

.success-msg {
    display: none;
    text-align: center;
    padding: 48px 32px;
}

.success-msg.show {
    display: block;
    animation: fadeUp 0.5s ease;
}

.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(26, 86, 219, 0.3);
}

.success-icon svg {
    width: 28px;
    height: 28px;
}

.success-msg h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
}

.success-msg p {
    font-size: 14px;
    color: var(--muted);
    max-width: 340px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Sidebar */
.info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 90px;
}

.info-box {
    background: var(--card);
    border-radius: 14px;
    padding: 28px 24px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 16px rgba(10, 22, 40, 0.06);
    transition: box-shadow 0.3s;
}

.info-box:hover {
    box-shadow: 0 8px 32px rgba(26, 86, 219, 0.1);
}

.info-box-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box-title svg {
    width: 18px;
    height: 18px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.address-block {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.addr-icon {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.addr-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.addr-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
}

.addr-line {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.75;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cli-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.cli-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--muted);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s;
    overflow: visible;
}

.contact-list-item:hover .cli-icon {
    background: var(--blue);
    border-color: var(--blue);
}

.contact-list-item:hover .cli-icon svg {
    stroke: #fff;
}

.cli-lbl {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 2px;
}

.cli-val {
    font-size: 13.5px;
    color: var(--ink);
    font-weight: 500;
    overflow-wrap: anywhere;
}

.cli-val a {
    color: var(--blue);
    transition: color 0.2s;
    text-decoration: none;
}

.cli-val a:hover {
    color: var(--navy);
}

.resp-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 4px solid var(--blue);
    border-radius: 0 10px 10px 0;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.resp-icon {
    flex-shrink: 0;
}

.resp-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.resp-text {
    font-size: 13px;
    color: var(--ink);
    line-height: 1.6;
}

.resp-text strong {
    color: var(--blue);
}

.quick-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ql-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 9px;
    background: var(--surface);
    border: 1px solid var(--border);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ql-item:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
    transform: translateY(-2px);
}

.ql-item svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

/* Map */
.map-section {
    background: var(--white);
    padding: 60px 0;
}

.map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.map-frame {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(10, 22, 40, 0.1);
    aspect-ratio: 4/3;
    position: relative;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.map-detail {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 18px;
    margin-bottom: 14px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.md-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.md-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.md-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 4px;
}

.md-val {
    font-size: 14px;
    color: var(--ink);
    font-weight: 500;
    line-height: 1.6;
}

.md-val a {
    color: var(--blue);
    text-decoration: none;
}

/* Export */
.export-section {
    background: var(--navy);
    padding: 72px 0 80px;
    position: relative;
    overflow: hidden;
}

.export-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 86, 219, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.export-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 86, 219, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.export-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 56px;
    position: relative;
    z-index: 1;
}

.export-header-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    margin-top: 12px;
}

.export-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 0;
    align-items: start;
    position: relative;
    z-index: 1;
}

.export-divider {
    background: rgba(255, 255, 255, 0.1);
    align-self: stretch;
    margin: 0 48px;
}

.export-left {
    padding-right: 8px;
}

.export-right {
    padding-left: 8px;
}

.export-steps-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 600;
    margin-bottom: 28px;
}

.export-steps {
    display: flex;
    flex-direction: column;
}

.export-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: gap 0.25s ease;
}

.export-step:first-child {
    padding-top: 0;
}

.export-step:last-child {
    border-bottom: none;
}

.export-step:hover {
    gap: 24px;
}

.es-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: rgba(26, 86, 219, 0.55);
    line-height: 1;
    min-width: 48px;
    transition: color 0.25s ease;
}

.export-step:hover .es-num {
    color: var(--accent);
}

.es-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 6px;
}

.es-val {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.export-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 36px;
    padding: 14px 28px;
    background: rgba(26, 86, 219, 0.2);
    border: 1.5px solid rgba(26, 86, 219, 0.5);
    border-radius: 8px;
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s ease;
}

.export-cta-btn svg {
    width: 17px;
    height: 17px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.export-cta-btn:hover {
    background: var(--blue);
    border-color: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(26, 86, 219, 0.45);
}

/* Globe + countries */
.globe-wrap {
    position: relative;
    margin-bottom: 28px;
}

.globe-img {
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
    margin: 0 auto;
    opacity: 0.85;
    filter: drop-shadow(0 16px 40px rgba(26, 86, 219, 0.35));
}

.globe-stat {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    text-align: center;
    pointer-events: none;
}

.globe-stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: -2px;
    display: block;
}

.globe-stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-top: 4px;
}

.countries-intro {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 14px;
    line-height: 1.6;
}

.countries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ctag {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 16px;
    border-radius: 100px;
    font-family: 'Barlow', sans-serif;
    transition: all 0.2s ease;
    cursor: default;
}

.ctag:hover {
    background: rgba(26, 86, 219, 0.35);
    border-color: rgba(26, 86, 219, 0.55);
    color: #fff;
}

/* Responsive */
@media(max-width:960px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .info-sidebar {
        position: static;
    }
}

@media(max-width:768px) {
    .cards-row {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-card-header {
        padding: 22px 20px;
    }

    .form-body {
        padding: 24px 20px 20px;
    }

    .map-grid {
        grid-template-columns: 1fr;
    }

    .export-grid {
        grid-template-columns: 1fr;
    }

    .export-divider {
        display: none;
    }

    .export-left {
        padding-right: 0;
        padding-bottom: 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .export-right {
        padding-left: 0;
        padding-top: 40px;
    }

    .hero-inner {
        grid-template-columns: 1fr !important;
    }

    .hero-inner>div:last-child {
        display: none;
    }
}

@media(max-width:480px) {
    .quick-links {
        grid-template-columns: 1fr;
    }

    .submit-row .btn,
    .map-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .ccard {
        padding: 26px 18px;
    }
}
