/* ══════════════════════════════════════
   CONTACT PAGE REDESIGN
   ══════════════════════════════════════ */

/* ── HERO ── */
.cc-hero {
    padding: 100px 0 60px;
}

.cc-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 72px;
}

.cc-hero__eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--bs-quaternary);
    opacity: 0.4;
    margin-bottom: 16px;
}

.cc-hero__headline {
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: var(--bs-quaternary);
    margin-bottom: 0;
}

.cc-hero__headline p {
    margin-bottom: 0;
}

.cc-hero__intro {
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.7;
    color: rgba(20, 55, 65, 0.5);
    max-width: 480px;
}

.cc-hero__intro p {
    margin-bottom: 0;
}


/* ── SUPPORT TILES ── */
.cc-support {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 72px;
}

.cc-support__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.cc-tile {
    background: #fff;
    border-radius: 6px;
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
}

.cc-tile__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
}

.cc-tile__icon--primary    { background: rgba(235, 62, 74, 0.08); color: var(--bs-primary); }
.cc-tile__icon--secondary  { background: rgba(1, 56, 89, 0.08); color: var(--bs-secondary); }
.cc-tile__icon--quaternary { background: rgba(26, 60, 64, 0.08); color: var(--bs-quaternary); }

.cc-tile__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--bs-quaternary);
    margin-bottom: 8px;
}

.cc-tile__desc {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(20, 55, 65, 0.5);
    flex-grow: 1;
    margin-bottom: 20px;
}

.cc-tile__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--bs-primary);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: gap 0.3s ease;
}

.cc-tile__link:hover {
    gap: 10px;
    color: var(--bs-primary);
}

.cc-tile__link svg {
    width: 14px;
    height: 14px;
}


/* ── CONTACT SECTION (Dark) ── */
.cc-contact {
    background: var(--bs-quaternary);
    padding: 80px 0 100px;
}

.cc-contact__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 72px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left: Info */
.cc-info__eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 16px;
}

.cc-info__headline {
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
}

.cc-info__desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 48px;
    max-width: 420px;
}

.cc-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.cc-detail__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cc-detail__icon svg {
    width: 18px;
    height: 18px;
    color: var(--bs-primary);
}

.cc-detail__label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 2px;
}

.cc-detail__value {
    font-size: 15px;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 0;
}

.cc-detail__value a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.cc-detail__value a:hover {
    color: var(--bs-primary);
}

/* ── Öffnungszeiten ── */
.cc-hours {
    margin: 4px 0 0;
    display: grid;
    grid-template-columns: max-content 1fr;
    column-gap: 28px;
    row-gap: 10px;
    align-items: baseline;
}

.cc-hours__days {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.cc-hours__times {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 15px;
    color: #fff;
    line-height: 1.5;
    margin: 0;
}


/* ── FORM STYLING (inside dark section) ── */

/*
 * Das Formular wird per TypoScript CONTENT-Objekt direkt im
 * ContactInfo-Template gerendert. Die .cc-form-card wrappt es
 * als weiße Karte rechts neben den Kontaktdaten.
 */

.cc-form-card {
    background: #fff;
    border-radius: 8px;
    padding: 40px 36px;
}

.cc-form-card .frame {
    padding: 0 !important;
    margin: 0 !important;
}

.cc-form-card .frame-group-container,
.cc-form-card .frame-group-inner,
.cc-form-card .frame-container,
.cc-form-card .frame-inner {
    padding: 0 !important;
    margin: 0 !important;
}

.cc-form-card .frame-header {
    margin-bottom: 20px;
}

.cc-form-card h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--bs-quaternary);
    text-align: left !important;
}

.cc-form-card h3 {
    font-size: 14px;
    font-weight: 400;
    color: rgba(20, 55, 65, 0.5);
    text-align: left !important;
    margin-bottom: 24px;
}

.cc-form-card .form-control,
.cc-form-card .form-select {
    border: 1.5px solid rgba(20, 55, 65, 0.12);
    border-radius: 4px;
    padding: 10px 14px;
    font-size: 15px;
}

.cc-form-card .form-control:focus,
.cc-form-card .form-select:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 3px rgba(235, 62, 74, 0.08);
}

.cc-form-card .form-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(20, 55, 65, 0.5);
}

.cc-form-card .btn-primary {
    width: 100%;
    padding: 13px 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 2px;
    margin-top: 8px;
}


/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */

@media (max-width: 991px) {
    .cc-hero {
        padding: 60px 0 40px;
    }

    .cc-hero__inner,
    .cc-support,
    .cc-contact__inner {
        padding-left: 24px;
        padding-right: 24px;
    }

    .cc-support__grid {
        grid-template-columns: 1fr;
    }

    .cc-contact__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cc-form-card {
        padding: 28px 24px;
    }
}
