/* ================================================================
   Contact Page — Premium Design
   ================================================================ */

/* ── Hero ── */
.tdc-hero {
    position: relative;
    background: linear-gradient(135deg, #1c0a00 0%, #92400e 45%, #d97706 100%);
    padding: 80px 0 110px;
    overflow: hidden;
    text-align: center;
}

/* Animated blobs */
.tdc-hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.tdc-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .25;
    animation: tdc-float 8s ease-in-out infinite;
}
.tdc-hero-blob--1 {
    width: 400px; height: 400px;
    background: #fbbf24;
    top: -120px; left: -80px;
    animation-delay: 0s;
}
.tdc-hero-blob--2 {
    width: 300px; height: 300px;
    background: #f59e0b;
    bottom: -60px; right: 10%;
    animation-delay: -3s;
}
.tdc-hero-blob--3 {
    width: 200px; height: 200px;
    background: #fcd34d;
    top: 20%; right: 25%;
    animation-delay: -5s;
}
@keyframes tdc-float {
    0%,100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-20px) scale(1.05); }
}

.tdc-hero-inner {
    position: relative;
    z-index: 1;
}

.tdc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    color: rgba(255,255,255,.9);
    font-size: .78rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
    backdrop-filter: blur(8px);
    letter-spacing: .3px;
}

.tdc-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
    line-height: 1.2;
    letter-spacing: -.5px;
    text-shadow: 0 2px 8px rgba(0,0,0,.2);
}

.tdc-hero-sub {
    color: rgba(255,255,255,.75);
    font-size: 1.05rem;
    margin: 0;
    max-width: 480px;
    margin-inline: auto;
    line-height: 1.6;
}
.tdc-hero-sub strong { color: #fff; }

/* Wave separator */
.tdc-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}
.tdc-hero-wave svg { width: 100%; height: 80px; display: block; }


/* ── Info cards (floating over hero bottom) ── */
.tdc-info-strip {
    background: #f8fafc;
    padding: 0 0 32px;
    margin-top: -2px;
}
.tdc-info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}
.tdc-info-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 22px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,.07);
    transition: transform .2s, box-shadow .2s;
}
.tdc-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,.12);
}
.tdc-info-card-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    background: var(--ic);
    color: var(--ic-c);
}
.tdc-info-card-label {
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: #9ca3af;
    margin: 0 0 3px;
}
.tdc-info-card-value {
    font-size: .88rem;
    font-weight: 700;
    color: #111827;
    text-decoration: none;
    display: block;
    word-break: break-word;
}
a.tdc-info-card-value:hover { color: #d97706; }
.tdc-info-card-value--empty { color: #d1d5db; font-weight: 400; font-style: italic; }


/* ── Main layout ── */
.tdc-main {
    background: #f8fafc;
    padding: 16px 0 72px;
}
.tdc-main-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
    align-items: start;
}


/* ── Form card ── */
.tdc-form-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,.07);
    overflow: hidden;
}
.tdc-form-card-top {
    background: linear-gradient(135deg, #92400e 0%, #d97706 100%);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.tdc-form-card-icon {
    width: 48px; height: 48px;
    background: rgba(255,255,255,.2);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    flex-shrink: 0;
}
.tdc-form-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
}
.tdc-form-sub {
    font-size: .82rem;
    color: rgba(255,255,255,.75);
    margin: 0;
}
.tdc-form-body {
    padding: 32px;
}

/* Native contact form */
.tdc-hp { display: none !important; }
.tdc-req { color: #d97706; }

.tdc-form { display: flex; flex-direction: column; gap: 18px; }
.tdc-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.tdc-field { display: flex; flex-direction: column; gap: 6px; }
.tdc-field label {
    font-size: .82rem;
    font-weight: 600;
    color: #374151;
}
.tdc-field input,
.tdc-field textarea {
    width: 100%;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 11px 15px;
    font-size: .92rem;
    color: #374151;
    background: #f9fafb;
    transition: border-color .15s, box-shadow .15s, background .15s;
    outline: none;
    box-sizing: border-box;
    font-family: inherit;
}
.tdc-field input:focus,
.tdc-field textarea:focus {
    border-color: #d97706;
    box-shadow: 0 0 0 3px rgba(217,119,6,.12);
    background: #fff;
}
.tdc-field textarea { min-height: 130px; resize: vertical; }

.tdc-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 13px 32px;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: .2px;
    transition: opacity .15s, transform .15s, box-shadow .15s;
    box-shadow: 0 4px 12px rgba(217,119,6,.4);
    align-self: flex-start;
}
.tdc-submit-btn:hover {
    opacity: .93;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(217,119,6,.5);
}

.tdc-msg {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: .88rem;
    font-weight: 500;
}
.tdc-msg--success { background: #d1fae5; color: #065f46; }
.tdc-msg--error   { background: #fee2e2; color: #991b1b; }


/* ── Sidebar cards ── */
.tdc-side { display: flex; flex-direction: column; gap: 18px; }

.tdc-side-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.tdc-side-card-head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: #6b7280;
    padding: 14px 18px;
    border-bottom: 1px solid #f3f4f6;
    background: #fafafa;
}
.tdc-side-card-head svg { color: #d97706; }

/* Map */
.tdc-map-frame iframe {
    display: block;
    width: 100%;
    height: 260px;
    border: none;
}
.tdc-map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 160px;
    gap: 10px;
    color: #9ca3af;
    font-size: .83rem;
    text-align: center;
    padding: 20px;
    background: #fffbeb;
}

/* Social links */
.tdc-socials { padding: 12px 14px; display: flex; flex-direction: column; gap: 8px; }
.tdc-social {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform .15s, box-shadow .15s;
    border: 1px solid transparent;
}
.tdc-social:hover { transform: translateX(3px); box-shadow: 0 3px 10px rgba(0,0,0,.1); }

.tdc-social-icon {
    width: 38px; height: 38px;
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: #fff;
}
.tdc-social--fb .tdc-social-icon  { background: #1877f2; }
.tdc-social--yt .tdc-social-icon  { background: #ff0000; }
.tdc-social--zl .tdc-social-icon  { background: #0068ff; }

.tdc-social--fb { background: #eff6ff; border-color: #dbeafe; }
.tdc-social--yt { background: #fff5f5; border-color: #fecaca; }
.tdc-social--zl { background: #eff6ff; border-color: #bfdbfe; }

.tdc-social-label {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.tdc-social-label strong { font-size: .88rem; color: #111827; }
.tdc-social-label small  { font-size: .74rem; color: #9ca3af; }

.tdc-social-arrow { color: #9ca3af; flex-shrink: 0; transition: transform .15s; }
.tdc-social:hover .tdc-social-arrow { transform: translateX(3px); color: #6b7280; }

/* Highlight card */
.tdc-side-card--highlight {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-color: #fde68a;
}
.tdc-quick-info {
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.tdc-quick-info svg { flex-shrink: 0; margin-top: 2px; }
.tdc-quick-info p {
    font-size: .88rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}
.tdc-quick-info p strong { color: #b45309; }


/* ================================================================
   Responsive
   ================================================================ */
@media (max-width: 1100px) {
    .tdc-main-grid { grid-template-columns: 1fr 300px; }
    .tdc-info-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
    .tdc-hero { padding: 60px 0 90px; }
    .tdc-hero-title { font-size: 2rem; }
    .tdc-main-grid { grid-template-columns: 1fr; }
    .tdc-side { order: -1; }
    .tdc-map-frame iframe { height: 220px; }
    .tdc-form-body { padding: 24px 20px; }
    .tdc-form-card-top { padding: 22px 20px; }
}

@media (max-width: 560px) {
    .tdc-hero { padding: 48px 0 80px; }
    .tdc-hero-title { font-size: 1.7rem; }
    .tdc-info-cards { grid-template-columns: 1fr; margin-top: -24px; }
    .tdc-form-body { padding: 20px 16px; }
    .tdc-row2 { grid-template-columns: 1fr; }
    .tdc-submit-btn { width: 100%; justify-content: center; }
}
