/* =============================================
   CONTACT PAGE — STYLES
   ============================================= */

/* ── Info Cards Row ── */
.contact-info-section {
    padding: 60px 0;
    background: var(--clr-bg2);
    border-bottom: 1px solid var(--clr-border);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.contact-info-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 166, 35, 0.35);
    box-shadow: var(--shadow-glow);
}

.cic-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
    display: block;
    filter: drop-shadow(0 0 12px rgba(245, 166, 35, 0.4));
}

.contact-info-card h3 {
    font-family: var(--ff-heading);
    font-size: 1.3rem;
    color: var(--clr-white);
    margin-bottom: 10px;
}

.contact-info-card p {
    color: var(--clr-muted);
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.cic-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--clr-primary);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.cic-link:hover {
    color: var(--clr-primary2);
}

/* ── Main Grid ── */
.contact-main-section {
    background: var(--clr-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* ── Form ── */
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.required {
    color: var(--clr-primary);
}

.field-error {
    font-size: 0.75rem;
    color: var(--clr-red);
    margin-top: 5px;
    min-height: 16px;
}

.contact-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.88rem;
    color: var(--clr-muted);
}

.contact-checkbox input {
    display: none;
}

.checkbox-box {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid var(--clr-border);
    background: var(--clr-bg3);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.contact-checkbox input:checked~.checkbox-box {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
}

.contact-checkbox input:checked~.checkbox-box::after {
    content: '✓';
    font-size: 0.75rem;
    color: #000;
    font-weight: 900;
}

.form-success {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(45, 198, 83, 0.08);
    border: 1px solid rgba(45, 198, 83, 0.25);
    border-radius: var(--radius-md);
    padding: 18px;
    margin-top: 16px;
    animation: fadeInUp 0.4s ease;
}

.form-success span {
    font-size: 1.5rem;
}

.form-success strong {
    display: block;
    color: #2dc653;
    margin-bottom: 4px;
}

.form-success p {
    color: var(--clr-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* ── Map col ── */
.map-placeholder {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 280px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.map-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.map-pin {
    font-size: 3rem;
    display: block;
    margin-bottom: 8px;
    animation: float 3s ease-in-out infinite;
}

.map-inner h3 {
    font-family: var(--ff-heading);
    font-size: 1.3rem;
    color: var(--clr-white);
    margin-bottom: 6px;
}

.map-inner p {
    color: var(--clr-muted);
    font-size: 0.85rem;
}

.map-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(245, 166, 35, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 166, 35, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* Locations list */
.location-tabs {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 24px;
}

.location-tab-header {
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--clr-border);
}

.location-tab-header h4 {
    font-family: var(--ff-heading);
    font-size: 1.1rem;
    color: var(--clr-white);
}

.location-list {
    padding: 8px 0;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
    cursor: pointer;
}

.location-item:last-child {
    border-bottom: none;
}

.location-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.location-item.active {
    background: rgba(245, 166, 35, 0.05);
}

.location-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--clr-muted);
    flex-shrink: 0;
    margin-top: 5px;
    transition: var(--transition);
}

.location-item.active .location-dot {
    background: var(--clr-primary);
    box-shadow: 0 0 8px rgba(245, 166, 35, 0.5);
}

.location-item>div:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.location-item strong {
    font-size: 0.9rem;
    color: var(--clr-white);
}

.location-item span {
    font-size: 0.78rem;
    color: var(--clr-muted);
}

.loc-hours {
    font-size: 0.72rem !important;
    margin-top: 2px;
}

.loc-hours.open {
    color: #2dc653 !important;
}

.loc-hours.closed {
    color: var(--clr-red) !important;
}

.contact-social h4 {
    font-family: var(--ff-heading);
    font-size: 1.1rem;
    color: var(--clr-white);
}

/* ── FAQ ── */
.faq-section {
    background: var(--clr-bg2);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.faq-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.open {
    border-color: rgba(245, 166, 35, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: none;
    border: none;
    color: var(--clr-white);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    gap: 12px;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--clr-primary);
}

.faq-icon {
    font-size: 1.3rem;
    color: var(--clr-primary);
    flex-shrink: 0;
    line-height: 1;
    transition: transform 0.3s;
    font-weight: 300;
}

.faq-item.open .faq-icon {
    transform: rotate(0deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
    padding: 0 20px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 20px 18px;
}

.faq-answer p {
    color: var(--clr-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-map-col {
        order: -1;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }
}