/* TravelConnect Pro — public styles */
.tcp-section { max-width: 1140px; margin: 48px auto; padding: 0 20px; }
.tcp-section-title { text-align: center; font-size: 28px; margin: 0 0 28px; color: #0a558c; }

.tcp-grid { display: grid; gap: 18px; }
.tcp-grid-services, .tcp-grid-why { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.tcp-card {
    background: #fff;
    border: 1px solid #e6eaf0;
    border-radius: 10px;
    padding: 22px 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(10,85,140,0.04);
    transition: transform .2s, box-shadow .2s;
}
.tcp-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(10,85,140,0.10); }
.tcp-card-icon { font-size: 36px; margin-bottom: 8px; }
.tcp-card-title { margin: 6px 0 8px; color: #0a558c; font-size: 18px; }
.tcp-card-desc { color: #4a5a6a; font-size: 14px; line-height: 1.55; margin: 0; }

/* Booking form */
.tcp-booking-wrapper {
    max-width: 760px;
    margin: 32px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 28px 32px 32px;
    border: 1px solid #e6eaf0;
}
.tcp-booking-header { text-align: center; margin-bottom: 18px; }
.tcp-booking-header .tcp-logo { max-height: 70px; }
.tcp-booking-header .tcp-logo-text { font-size: 26px; font-weight: 700; color: #0a558c; }
.tcp-tagline { color: #4a5a6a; font-size: 14px; margin: 6px 0 0; }

.tcp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .tcp-row { grid-template-columns: 1fr; } }

.tcp-field { display: flex; flex-direction: column; margin-bottom: 14px; }
.tcp-field label { font-size: 13px; font-weight: 600; margin-bottom: 4px; color: #1d2327; }
.tcp-field input, .tcp-field select, .tcp-field textarea {
    border: 1px solid #cbd5e1; border-radius: 6px; padding: 10px 12px; font-size: 14px; background: #fff;
    font-family: inherit;
    transition: border-color .15s, box-shadow .15s;
}
.tcp-field input:focus, .tcp-field select:focus, .tcp-field textarea:focus {
    outline: none; border-color: #0a558c; box-shadow: 0 0 0 3px rgba(10,85,140,0.12);
}
.tcp-field textarea { resize: vertical; min-height: 90px; }

.tcp-submit-btn {
    display: block; width: 100%;
    background: #0a558c; color: #fff; border: none; border-radius: 6px;
    padding: 14px 20px; font-size: 15px; font-weight: 700; cursor: pointer;
    transition: background .15s;
}
.tcp-submit-btn:hover { background: #083e69; }

.tcp-alert { padding: 12px 16px; border-radius: 6px; margin-bottom: 16px; font-size: 14px; }
.tcp-alert-success { background: #e6f6ec; color: #085224; border: 1px solid #a6e2bf; }
.tcp-alert-error   { background: #fdecea; color: #6b1d1a; border: 1px solid #f5c2c0; }

.tcp-wa-or { text-align: center; margin: 18px 0 10px; color: #4a5a6a; font-size: 14px; }
.tcp-whatsapp-buttons { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.tcp-wa-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: #25d366; color: #fff !important; text-decoration: none;
    padding: 10px 18px; border-radius: 24px; font-weight: 600; font-size: 14px;
    transition: background .15s, transform .15s;
}
.tcp-wa-btn:hover { background: #1ebe5b; transform: translateY(-1px); }
.tcp-wa-secondary { background: #128c7e; }
.tcp-wa-secondary:hover { background: #0e7468; }
.tcp-wa-num { font-weight: 400; opacity: .95; margin-left: 4px; }
.tcp-wa-icon { font-size: 16px; }
