/* ═══════════════════════════════════════════════════════════════
   contact.css  –  Dial For Astro  |  Contact Page Styles
   ═══════════════════════════════════════════════════════════════ */

/* ── Keyframes ── */
@keyframes ctc-grad-shift {
    0%,100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}
@keyframes ctc-banner-fadein {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes ctc-float-star {
    0%,100% { transform: translateY(0) rotate(0deg);   opacity: 0.6; }
    50%      { transform: translateY(-12px) rotate(180deg); opacity: 1; }
}
@keyframes ctc-pulse-ring {
    0%   { transform: scale(1);    opacity: 0.6; }
    70%  { transform: scale(1.35); opacity: 0; }
    100% { transform: scale(1.35); opacity: 0; }
}
/* Slow 360° spin for decorative background images */
@keyframes ctc-spin-360 {
    from { transform: translateX(-50%) rotate(0deg); }
    to   { transform: translateX(-50%) rotate(360deg); }
}
@keyframes ctc-spin-360-tl {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes ctc-spin-360-br {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.ctc-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,#0e0200 0%,#2a0a00 25%,#1a0400 50%,#350e00 75%,#0e0200 100%);
    min-height: 380px;
    display: flex;
    align-items: center;
}
.ctc-hero__top-line {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    z-index: 3;
    background: var(--dfa-top-border);
}
.ctc-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    z-index: 1;
}
.ctc-hero__orb--a {
    width: 500px; height: 500px;
    background: radial-gradient(circle,rgba(240,120,32,.18),transparent 70%);
    top: -150px; left: -100px;
}
.ctc-hero__orb--b {
    width: 400px; height: 400px;
    background: radial-gradient(circle,rgba(176,24,32,.14),transparent 70%);
    bottom: -120px; right: -80px;
}
.ctc-hero__orb--c {
    width: 280px; height: 280px;
    background: radial-gradient(circle,rgba(250,160,64,.1),transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
}
.ctc-hero__grid-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(240,120,32,.04) 1px,transparent 1px),
        linear-gradient(90deg,rgba(240,120,32,.04) 1px,transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center,black 30%,transparent 80%);
}
.ctc-hero__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.ctc-hero__particle {
    position: absolute;
    color: var(--dfa-primary-light);
    opacity: .5;
    animation: ctc-float-star linear infinite;
}
.ctc-hero__inner {
    position: relative;
    z-index: 2;
    padding: 80px 0 90px;
    text-align: center;
    width: 100%;
}
.ctc-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    animation: ctc-banner-fadein .7s ease both;
}
.ctc-hero__eyebrow-line   { width:36px;height:1px;background:linear-gradient(90deg,transparent,rgba(250,160,64,.7)); }
.ctc-hero__eyebrow-line--r{ background:linear-gradient(90deg,rgba(250,160,64,.7),transparent); }
.ctc-hero__eyebrow-text {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: rgba(250,160,64,.8);
}
.ctc-hero__badge-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 7px 22px;
    border-radius: var(--dfa-radius-btn);
    background: rgba(240,120,32,.12);
    border: 1px solid rgba(240,120,32,.35);
    backdrop-filter: blur(10px);
    margin: 0 auto 24px;
    width: fit-content;
    animation: ctc-banner-fadein .8s .1s ease both;
}
.ctc-hero__badge-text {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #fcebd8;
    white-space: nowrap;
}
.ctc-hero__badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--dfa-primary-light);
    box-shadow: 0 0 8px var(--dfa-primary-light);
    flex-shrink: 0;
    position: relative;
}
.ctc-hero__badge-dot::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1px solid rgba(240,120,32,.5);
    animation: ctc-pulse-ring 2s ease-out infinite;
}
.ctc-hero__title {
    font-family: var(--dfa-font);
    font-size: clamp(2.4rem,6vw,4.2rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.5px;
    line-height: 1.1;
    margin-bottom: 16px;
    animation: ctc-banner-fadein .9s .2s ease both;
}
.ctc-hero__title-accent {
    background: linear-gradient(90deg,#f07820,#faa040,#e86010);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: ctc-grad-shift 4s ease infinite;
}
.ctc-hero__sub {
    font-size: clamp(.8rem,1.5vw,.92rem);
    font-weight: 500;
    color: rgba(252,235,216,.65);
    letter-spacing: .22em;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: ctc-banner-fadein 1s .3s ease both;
}
.ctc-hero__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 28px;
    animation: ctc-banner-fadein 1s .35s ease both;
}
.ctc-hero__divider-line   { width:60px;height:1px;background:linear-gradient(90deg,transparent,rgba(240,120,32,.6));border-radius:2px; }
.ctc-hero__divider-line--r{ background:linear-gradient(90deg,rgba(240,120,32,.6),transparent); }
.ctc-hero__divider-symbol { font-size:14px;color:var(--dfa-primary-light); }
.ctc-hero__breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--dfa-radius-btn);
    backdrop-filter: blur(8px);
    animation: ctc-banner-fadein 1s .45s ease both;
}
.ctc-hero__breadcrumb a {
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(252,235,216,.55);
    text-decoration: none;
    transition: color .2s;
}
.ctc-hero__breadcrumb a:hover { color:#faa040; }
.ctc-hero__breadcrumb-sep { font-size:7px;color:rgba(240,120,32,.6); }
.ctc-hero__breadcrumb span:last-child {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #faa040;
}
.ctc-hero__bottom-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg,transparent,rgba(240,120,32,.3),rgba(176,24,32,.3),transparent);
}

/* ══════════════════════════════════════
   CHANNELS
══════════════════════════════════════ */
.ctc-channels {
    padding: 72px 0;

    position: relative;
    overflow: hidden;
}
.ctc-channels::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--dfa-top-border);
    opacity: .45;
}
.ctc-channels__track {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    position: relative;
}
.ctc-channels__track::before {
    content: "";
    position: absolute;
    top: 44px;
    left: calc(12.5%);
    right: calc(12.5%);
    height: 1.5px;
    background: linear-gradient(90deg,transparent,var(--dfa-primary),var(--dfa-primary-dark),var(--dfa-primary),transparent);
    z-index: 0;
}
.ctc-channel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 12px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}
.ctc-channel-item.ctc-visible { opacity:1;transform:translateY(0); }
.ctc-channel-node {
    width: 88px; height: 88px;
    border-radius: 50%;
    background: var(--dfa-bg-surface);
    border: 2px solid var(--dfa-border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform .35s, border-color .35s, box-shadow .35s;
    cursor: pointer;
    flex-shrink: 0;
}
.ctc-channel-node::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1.5px dashed rgba(240,120,32,.25);
    transition: border-color .35s, transform .6s;
}
.ctc-channel-node::after {
    content: "";
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    border: 1px dashed rgba(176,24,32,.12);
    transition: border-color .35s, transform .6s;
}
.ctc-channel-item:hover .ctc-channel-node {
    transform: scale(1.1);
    border-color: var(--dfa-primary);
    box-shadow: 0 0 0 6px rgba(240,120,32,.08), 0 14px 36px rgba(240,120,32,.22);
}
.ctc-channel-item:hover .ctc-channel-node::before { border-color:rgba(240,120,32,.55);transform:rotate(90deg); }
.ctc-channel-item:hover .ctc-channel-node::after  { border-color:rgba(240,120,32,.25);transform:rotate(-60deg); }
.ctc-channel-num {
    position: absolute;
    top: -8px; right: -4px;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--dfa-grad-main);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(200,74,8,.45);
    z-index: 2;
}
.ctc-channel-icon {
    font-size: 28px;
    background: linear-gradient(135deg,#f07820,#b01820);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: filter .4s;
}
.ctc-channel-item:hover .ctc-channel-icon { filter:drop-shadow(0 0 6px rgba(240,120,32,.5)); }
.ctc-channel-connector {
    width: 1.5px;
    height: 28px;
    background: linear-gradient(to bottom,rgba(240,120,32,.4),rgba(240,120,32,.08));
    flex-shrink: 0;
}
.ctc-channel-body { padding:18px 4px 0;text-align:center; }
.ctc-channel-label {
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--dfa-text-muted);
    margin-bottom: 7px;
}
.ctc-channel-value {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--dfa-dark);
    margin-bottom: 6px;
    line-height: 1.3;
}
.ctc-channel-value a { color:inherit;text-decoration:none;transition:color .2s; }
.ctc-channel-value a:hover { color:var(--dfa-primary); }
.ctc-channel-note { font-size:10.5px;color:var(--dfa-text-muted);letter-spacing:.04em; }

/* ══════════════════════════════════════
   CONTACT FORM SECTION
══════════════════════════════════════ */
.ctc-main {
    padding: 72px 0;
        background: radial-gradient(ellipse at 10% 50%, rgba(240, 120, 32, .07) 0%, transparent 55%), radial-gradient(ellipse at 90% 50%, rgba(176, 24, 32, .06) 0%, transparent 55%), var(--dfa-bg-page);
    position: relative;
    overflow: hidden;
}
.ctc-main::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--dfa-top-border);
    opacity: .45;
}
.ctc-main::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 5% 40%,rgba(240,120,32,.06) 0%,transparent 52%),
        radial-gradient(ellipse at 95% 60%,rgba(176,24,32,.05) 0%,transparent 52%);
    pointer-events: none;
    z-index: 0;
}
.ctc-main .container { position:relative;z-index:1; }
.ctc-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
    align-items: start;
}

/* form card */
.ctc-form-card {
    background: var(--dfa-bg-card);
    border: 1.5px solid var(--dfa-border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 36px rgba(200,74,8,.07);
}
.ctc-form-card__bar { height:5px;background:var(--dfa-grad-main); }
.ctc-form-card__head { padding:26px 28px 4px; }
.ctc-form-card__head-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dfa-dark);
    margin-bottom: 6px;
}
.ctc-form-card__head-desc { font-size:12.5px;color:var(--dfa-text-muted);line-height:1.65; }
.ctc-form-card__body { padding:22px 28px 28px; }
.ctc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.ctc-field { display:flex;flex-direction:column;gap:6px; }
.ctc-field--full { grid-column:1/-1; }
.ctc-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dfa-primary-dark);
}
.ctc-label span { color:var(--dfa-logo-red); }
.ctc-input-wrap { position:relative;display:flex;align-items:center; }
.ctc-input-wrap--ta { align-items:flex-start; }
.ctc-field-icon {
    position: absolute;
    left: 11px; top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--dfa-text-muted);
    pointer-events: none;
    z-index: 1;
}
.ctc-field-icon--top { top:12px;transform:none; }
.ctc-input {
    width: 100%;
    padding: 11px 12px 11px 36px;
    border: 1.5px solid var(--dfa-border);
    border-radius: 8px;
    background: var(--dfa-bg-surface);
    font-family: var(--dfa-font);
    font-size: 12.5px;
    color: var(--dfa-text-primary);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    -webkit-appearance: none;
}
.ctc-input:focus {
    border-color: var(--dfa-primary);
    background: var(--dfa-bg-card);
    box-shadow: 0 0 0 3px rgba(240,120,32,.1);
}
.ctc-input::placeholder { color:var(--dfa-text-muted); }
.ctc-select {
    cursor: pointer;
    padding-right: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%238a3010' stroke-width='1.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 11px;
}
.ctc-textarea { resize:vertical;min-height:110px;padding-top:11px; }
.ctc-privacy { margin-bottom:18px; }
.ctc-check {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    cursor: pointer;
    font-size: 11.5px;
    color: var(--dfa-text-muted);
    line-height: 1.6;
    user-select: none;
}
.ctc-check input[type="checkbox"] { position:absolute;opacity:0;width:0;height:0; }
.ctc-check-box {
    width: 17px; height: 17px;
    border-radius: 5px;
    border: 1.5px solid var(--dfa-border);
    background: var(--dfa-bg-surface);
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s, background .2s;
}
.ctc-check input:checked + .ctc-check-box { background:var(--dfa-primary);border-color:var(--dfa-primary); }
.ctc-check input:checked + .ctc-check-box::after {
    content: "";
    display: block;
    width: 9px; height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateY(-1px) rotate(-45deg);
}
.ctc-check a { color:var(--dfa-primary);text-decoration:none; }
.ctc-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    border-radius: var(--dfa-radius-btn);
    background: var(--dfa-grad-main);
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: var(--dfa-font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: transform .3s, box-shadow .3s;
}
.ctc-submit:hover { transform:translateY(-2px);box-shadow:0 12px 36px rgba(200,74,8,.38); }
.ctc-submit:disabled { opacity:.8;cursor:not-allowed;transform:none; }
.ctc-submit--success { background:linear-gradient(90deg,#2ecc71,#27ae60) !important; }

/* sidebar */
.ctc-sidebar { display:flex;flex-direction:column;gap:18px; }
.ctc-info-card {
    background: var(--dfa-bg-card);
    border: 1.5px solid var(--dfa-border);
    border-radius: var(--dfa-radius-card);
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(200,74,8,.07);
}
.ctc-info-card__bar { height:5px;background:var(--dfa-grad-main); }
.ctc-info-card__body { padding:20px 20px 18px; }
.ctc-info-card__title { font-size:15px;font-weight:700;color:var(--dfa-dark);margin-bottom:12px; }
.ctc-info-divider { display:flex;align-items:center;gap:10px;margin-bottom:16px; }
.ctc-info-divider__line { flex:1;height:1.5px;background:linear-gradient(90deg,transparent,#e86010,transparent);border-radius:2px; }
.ctc-info-divider__dot { width:6px;height:6px;border-radius:50%;background:var(--dfa-primary);box-shadow:0 0 8px rgba(240,120,32,.6);flex-shrink:0; }
.ctc-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 11px 0;
    border-bottom: 1px solid var(--dfa-border);
}
.ctc-contact-item:last-child { border-bottom:none; }
.ctc-contact-item__icon {
    width: 34px; height: 34px;
    border-radius: 9px;
    background: rgba(240,120,32,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dfa-primary);
    font-size: 15px;
    flex-shrink: 0;
}
.ctc-contact-item__label { font-size:9px;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:var(--dfa-text-muted);margin-bottom:2px; }
.ctc-contact-item__value { font-size:12.5px;font-weight:700;color:var(--dfa-dark);margin-bottom:1px; }
.ctc-contact-item__value a { color:inherit;text-decoration:none;transition:color .2s; }
.ctc-contact-item__value a:hover { color:var(--dfa-primary); }
.ctc-contact-item__note { font-size:10.5px;color:var(--dfa-text-muted); }
.ctc-social-card {
    background: var(--dfa-bg-card);
    border: 1.5px solid var(--dfa-border);
    border-radius: var(--dfa-radius-card);
    padding: 18px;
}
.ctc-social-card__title { font-size:9px;font-weight:700;letter-spacing:.22em;text-transform:uppercase;color:var(--dfa-primary-dark);margin-bottom:12px; }
.ctc-social-grid { display:grid;grid-template-columns:repeat(2,1fr);gap:8px; }
.ctc-social-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 10px;
    border-radius: 9px;
    border: 1px solid var(--dfa-border);
    background: var(--dfa-bg-surface);
    color: var(--dfa-text-muted);
    text-decoration: none;
    font-size: 11.5px;
    font-weight: 600;
    transition: border-color .2s, color .2s, background .2s, transform .2s;
}
.ctc-social-item:hover {
    border-color: var(--dfa-primary);
    color: var(--dfa-primary-dark);
    background: rgba(240,120,32,.07);
    transform: translateY(-1px);
}

/* trust row */
.ctc-trust-row { display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin:36px 0 0; }
.ctc-trust-item {
    background: var(--dfa-bg-card);
    border: 1.5px solid var(--dfa-border);
    border-radius: 13px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: border-color .2s, transform .2s;
}
.ctc-trust-item:hover { border-color:var(--dfa-primary);transform:translateX(3px); }
.ctc-trust-item__icon {
    width: 34px; height: 34px;
    border-radius: 9px;
    background: rgba(240,120,32,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dfa-primary);
    font-size: 16px;
    flex-shrink: 0;
}
.ctc-trust-item__name { font-size:12px;font-weight:700;color:var(--dfa-dark);margin-bottom:1px; }
.ctc-trust-item__desc { font-size:10.5px;color:var(--dfa-text-muted); }

/* ══════════════════════════════════════
   MAP + FAQ
══════════════════════════════════════ */
.ctc-map-faq {
    padding: 72px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}
.ctc-map-faq::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--dfa-top-border);
    opacity: .45;
}
.ctc-map-faq-layout { display:grid;grid-template-columns:1fr 1fr;gap:36px;align-items:start; }
.ctc-office-cards { display:flex;flex-direction:column;gap:10px;margin-top:16px; }
.ctc-office-card {
    background: var(--dfa-bg-surface);
    border: 1.5px solid var(--dfa-border);
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: border-color .2s, transform .2s;
}
.ctc-office-card:hover { border-color:var(--dfa-primary);transform:translateX(3px); }
.ctc-office-card__icon {
    width: 36px; height: 36px;
    border-radius: 9px;
    background: rgba(240,120,32,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dfa-primary);
    font-size: 16px;
    flex-shrink: 0;
}
.ctc-office-card__label { font-size:9px;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:var(--dfa-text-muted);margin-bottom:2px; }
.ctc-office-card__value { font-size:12.5px;font-weight:700;color:var(--dfa-dark); }
.ctc-office-card__note  { font-size:10.5px;color:var(--dfa-text-muted); }
.ctc-direction-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 10px 22px;
    border-radius: var(--dfa-radius-btn);
    background: var(--dfa-grad-main);
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: var(--dfa-font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform .25s, box-shadow .25s;
}
.ctc-direction-btn:hover { transform:translateY(-2px);box-shadow:0 10px 30px rgba(200,74,8,.35);color:#fff; }
.ctc-map-frame {
    border-radius: 18px;
    overflow: hidden;
    border: 1.5px solid var(--dfa-border);
    box-shadow: 0 10px 36px rgba(200,74,8,.1);
    position: relative;
    margin-top: 18px;
}
.ctc-map-overlay {
    position: absolute;
    top: 16px; left: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,248,242,.96);
    backdrop-filter: blur(12px);
    border: 1.5px solid var(--dfa-border);
    border-radius: 12px;
    padding: 9px 14px;
    box-shadow: 0 6px 24px rgba(200,74,8,.14);
}
.ctc-map-overlay__title { font-size:12.5px;font-weight:700;color:var(--dfa-dark); }
.ctc-map-overlay__addr  { font-size:10.5px;color:var(--dfa-text-muted); }

/* FAQ */
.ctc-faq-list { display:flex;flex-direction:column;gap:8px; }
.ctc-faq-item {
    background: var(--dfa-bg-surface);
    border: 1.5px solid var(--dfa-border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .25s, box-shadow .25s;
}
.ctc-faq-item.open {
    border-color: var(--dfa-primary);
    box-shadow: 0 6px 24px rgba(200,74,8,.09);
    background: var(--dfa-bg-card);
}
.ctc-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 15px 18px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--dfa-font);
    font-size: 13px;
    font-weight: 600;
    color: var(--dfa-dark);
    letter-spacing: .01em;
    transition: color .2s;
}
.ctc-faq-q:hover { color:var(--dfa-primary-dark); }
.ctc-faq-icon {
    width: 28px; height: 28px;
    border-radius: 7px;
    background: rgba(240,120,32,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .25s, transform .35s;
}
.ctc-faq-icon i { font-size:14px;color:var(--dfa-primary);transition:transform .35s,color .25s; }
.ctc-faq-item.open .ctc-faq-icon { background:var(--dfa-primary); }
.ctc-faq-item.open .ctc-faq-icon i { transform:rotate(180deg);color:#fff; }
.ctc-faq-answer { max-height:0;overflow:hidden;transition:max-height .4s cubic-bezier(.4,0,.2,1); }
.ctc-faq-item.open .ctc-faq-answer { max-height:300px; }
.ctc-faq-answer p {
    font-size: 12.5px;
    color: var(--dfa-text-muted);
    line-height: 1.75;
    padding: 0 18px 16px;
    margin: 0;
    border-top: 1px solid var(--dfa-border);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width:991.98px) {
    .ctc-layout { grid-template-columns:1fr; }
    .ctc-trust-row { grid-template-columns:1fr; }
    .ctc-map-faq-layout { grid-template-columns:1fr; }
    .ctc-channels__track { grid-template-columns:1fr 1fr;gap:36px 16px; }
    .ctc-channels__track::before { display:none; }
}
@media (max-width:767.98px) {
    .ctc-hero__inner { padding:60px 0 80px; }
}
@media (max-width:575.98px) {
    .ctc-form-row { grid-template-columns:1fr; }
    .ctc-field--full { grid-column:1; }
    .ctc-channels__track { grid-template-columns:1fr 1fr;gap:28px 8px; }
    .ctc-trust-row { grid-template-columns:1fr;gap:10px; }
}

/* ══════════════════════════════════════
   ROTATING DECORATIVE BACKGROUND IMAGES
══════════════════════════════════════ */

/* ── Spin animation (standalone, no translate) ── */
@keyframes ctc-bg-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
/* ── Spin + center-X (for bottom-center placement) ── */
@keyframes ctc-bg-spin-cx {
    from { transform: translateX(-50%) rotate(0deg); }
    to   { transform: translateX(-50%) rotate(360deg); }
}

/* ──────────────────────────────────────
   1. HERO — rotating mandala bottom-center
──────────────────────────────────────── */
.ctc-hero__bg-mandala {
    position: absolute;
    bottom: -258px;
    left: 50%;
    width: 480px;
    height: 480px;
    transform-origin: center center;
    animation: ctc-bg-spin-cx 30s linear infinite;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
    object-fit: contain;
    filter: drop-shadow(0 0 22px rgba(240,120,32,0.28));
    /* translateX(-50%) baked into the animation above */
}

/* ──────────────────────────────────────
   2. ctc-main — top-left + bottom-right corner images
──────────────────────────────────────── */
.ctc-main__bg-tl {
    position: absolute;
    top: -110px;
    left: -110px;
    width: 320px;
    height: 320px;
    transform-origin: center center;
    animation: ctc-bg-spin 34s linear infinite;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
    object-fit: contain;
    filter: drop-shadow(0 0 18px rgba(240,120,32,0.22));
}
.ctc-main__bg-br {
    position: absolute;
    bottom: -110px;
    right: -110px;
    width: 320px;
    height: 320px;
    transform-origin: center center;
    animation: ctc-bg-spin 34s linear infinite reverse;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
    object-fit: contain;
    filter: drop-shadow(0 0 18px rgba(176,24,32,0.22));
}

/* ──────────────────────────────────────
   3. ctc-map-faq — rotating mandala bottom-center
──────────────────────────────────────── */
.ctc-map-faq__bg-mandala {
  position: absolute;
    bottom: -235px;
    left: 50%;
    width: 450px;
    height: 450px;
    transform-origin: center center;
    animation: ctc-bg-spin-cx 32s linear infinite;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(240,120,32,0.2));
}