/*
 * Contact Details — Premium Scoped Styles
 */

/* ── Hero ── */
.cd-hero { position: relative; overflow: hidden; padding-top: 140px !important; padding-bottom: 70px !important; min-height: auto !important; }
.cd-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,13,26,0.82) 0%, rgba(26,26,46,0.75) 50%, rgba(0,128,127,0.35) 100%); z-index: 2; }
.cd-hero-badge { background: linear-gradient(135deg, #00807f, #11b7b7) !important; font-size: 0.9rem; letter-spacing: 0.03em; box-shadow: 0 4px 20px rgba(0,128,127,0.4); }
.cd-accent { color: #11b7b7; }
.cd-accent-dark { color: #00807f; }

.cd-btn-primary {
    background: linear-gradient(135deg, #00807f, #11b7b7) !important;
    color: #fff !important; border: none;
    box-shadow: 0 4px 15px rgba(0,128,127,0.4);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}
.cd-btn-primary:hover { box-shadow: 0 6px 25px rgba(0,128,127,0.55); transform: translateY(-2px); color: #fff !important; }

/* ── Glowing Separator ── */
.cd-glow-separator {
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, rgba(0,128,127,0.15) 15%, #11b7b7 50%, rgba(0,128,127,0.15) 85%, transparent 100%);
    box-shadow: 0 0 12px rgba(17,183,183,0.5), 0 0 30px rgba(17,183,183,0.2);
}

/* ── Section Badge ── */
.cd-section-badge { background: rgba(0,128,127,0.1) !important; color: #00807f !important; font-size: 0.85rem; }

/* ── Contact Section ── */
.cd-contact-section { background: #ffffff; }

/* ── Form Card ── */
.cd-form-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0,128,127,0.12);
    box-shadow: 0 4px 24px rgba(0,128,127,0.06);
    overflow: hidden;
    height: 100%;
}
.cd-form-header {
    background: linear-gradient(135deg, rgba(0,128,127,0.04), rgba(17,183,183,0.04));
    padding: 24px 28px;
    border-bottom: 1px solid rgba(0,128,127,0.08);
}
.cd-form-body { padding: 28px; }
.cd-form-card .form-control,
.cd-form-card .form-select {
    border-radius: 10px; border: 1px solid #e2e8f0; padding: 12px 16px;
    font-size: 1rem; transition: border-color 0.2s, box-shadow 0.2s;
}
.cd-form-card .form-control:focus,
.cd-form-card .form-select:focus {
    border-color: #00807f; box-shadow: 0 0 0 3px rgba(0,128,127,0.12);
}
.cd-form-card .form-label { font-size: 0.9rem; color: #475569; }

/* ── Info Cards ── */
.cd-info-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 20px 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.cd-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,128,127,0.1);
    border-color: rgba(17,183,183,0.2);
}
.cd-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.cd-info-item h5 { color: #1a1a2e; font-size: 1.05rem; }
.cd-info-item p { color: #64748b; font-size: 0.95rem; line-height: 1.6; }
.cd-info-item a { color: #00807f; text-decoration: none; transition: color 0.2s; }
.cd-info-item a:hover { color: #11b7b7; }

/* ── Icon Bubbles ── */
.cd-icon-bubble {
    width: 48px; height: 48px; min-width: 48px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0,128,127,0.1), rgba(17,183,183,0.1));
    color: #00807f; font-size: 1.2rem;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.cd-info-card:hover .cd-icon-bubble {
    background: linear-gradient(135deg, #00807f, #11b7b7);
    color: #fff; transform: scale(1.05);
}

.cd-icon-bubble-sm {
    width: 40px; height: 40px; min-width: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0,128,127,0.1), rgba(17,183,183,0.1));
    color: #00807f; font-size: 1rem;
}

/* ── Map Cards ── */
.cd-map-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cd-map-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,128,127,0.1);
}
.cd-map-header {
    display: flex; align-items: center; gap: 14px;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.cd-map-frame { overflow: hidden; }
.cd-map-frame iframe { display: block; border-radius: 0 0 20px 20px; }

/* ── Responsive ── */
@media (max-width: 767.98px) {
    .cd-form-body { padding: 20px; }
    .cd-info-card { padding: 16px 18px; }
}
