/* Contact page styles (moved from inline <style> in resources/views/contact.blade.php) */

/* shared hero kicker */
.tcg-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: rgba(255, 255, 255, .95);
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: .85rem;
}

/* left panel */
.tcg-contact-panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .05);
    padding: 24px;
}

.tcg-panel-title {
    margin: 0 0 6px 0;
    color: var(--dark);
    font-weight: 950;
    font-size: 1.35rem;
}

.tcg-panel-sub {
    color: #5A6C7D;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* info list */
.tcg-info-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tcg-info-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, .06);
    background: linear-gradient(135deg, rgba(140, 198, 63, .10), rgba(11, 95, 42, .05));
}

.tcg-info-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--secondary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.tcg-info-title {
    font-weight: 950;
    color: var(--dark);
    margin-bottom: 2px;
}

.tcg-info-link {
    color: var(--secondary);
    font-weight: 900;
    text-decoration: none;
}

.tcg-info-link:hover {
    color: var(--primary-hover);
}

.tcg-info-muted {
    color: #4f5f6e;
    line-height: 1.6;
}

/* mini map */
.tcg-mini-map {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .08);
    height: 220px;
    background: #e9eef0;
}

.tcg-mini-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* quick actions */
.tcg-quick-actions {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
}

.tcg-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .55rem .9rem;
    border-radius: 999px;
    background: rgba(11, 95, 42, .08);
    color: var(--secondary);
    font-weight: 950;
    text-decoration: none;
    border: 1px solid rgba(11, 95, 42, .18);
    transition: transform .2s ease, background .2s ease;
}

.tcg-pill-btn:hover {
    background: rgba(11, 95, 42, .12);
    transform: translateY(-1px);
}

/* form card */
.tcg-form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .05);
    padding: 26px;
}

.tcg-form-title {
    margin: 0 0 6px 0;
    color: var(--dark);
    font-weight: 950;
    font-size: 1.7rem;
}

.tcg-form-sub {
    margin: 0 0 16px 0;
    color: #5A6C7D;
    line-height: 1.7;
}

.tcg-label {
    display: block;
    font-weight: 900;
    color: #2f3b46;
    margin-bottom: 6px;
    font-size: .95rem;
}

.tcg-input,
.tcg-textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: #fff;
    padding: 12px 14px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.tcg-textarea {
    resize: vertical;
}

.tcg-input:focus,
.tcg-textarea:focus {
    border-color: rgba(140, 198, 63, .75);
    box-shadow: 0 0 0 4px rgba(140, 198, 63, .18);
}

/* submit */
.tcg-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 12px 18px;
    border: 0;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    font-weight: 950;
    transition: transform .2s ease, filter .2s ease;
}

.tcg-submit-btn:hover {
    filter: brightness(.95);
    transform: translateY(-1px);
}

.tcg-privacy-note {
    color: #5A6C7D;
    font-size: .9rem;
}

/* responsive */
@media (max-width: 768px) {
    .ul-breadcrumb-title {
        font-size: 2.1rem !important;
    }

    .tcg-form-card,
    .tcg-contact-panel {
        padding: 18px;
    }

    .tcg-mini-map {
        height: 200px;
    }
}
