/* ==========================================================================
   BEST PARIS CAB - CONTACT PAGE EXACT MATCH STYLESHEET (contact.css)
   ========================================================================== */

.contact-section {
    padding: 80px 0;
    background-color: #fcfcfd;
}

.contact-subtitle {
    color: #fca311;
    font-weight: 700;
    font-size: 14.5px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.contact-subtitle::before {
    content: "";
    width: 25px;
    height: 2px;
    background: #fca311;
    display: inline-block;
}

.contact-title {
    font-size: 30px;
    font-weight: 700;
    color: #0d2b4f;
    line-height: 1.35;
    margin-bottom: 20px;
}

.contact-desc {
    color: #475569;
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 30px;
}

/* LEFT CONTACT INFO LIST */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: #fca311;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(252, 163, 17, 0.3);
}

.contact-info-text strong {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.contact-info-text p,
.contact-info-text a {
    font-size: 15px;
    color: #475569;
    font-weight: 500;
    text-decoration: none;
    margin: 0;
    transition: color 0.3s ease;
}

.contact-info-text a:hover {
    color: #fca311;
}

/* RIGHT CONTACT FORM STYLING */
.contact-form-wrapper {
    background: transparent;
}

.contact-input {
    width: 100%;
    padding: 14px 18px;
    background: #eef2f6;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 14.5px;
    color: #1e293b;
    transition: all 0.3s ease;
}

.contact-input::placeholder {
    color: #94a3b8;
}

.contact-input:focus {
    outline: none;
    background: #ffffff;
    border-color: #fca311;
    box-shadow: 0 0 0 3px rgba(252, 163, 17, 0.15);
}

textarea.contact-input {
    resize: vertical;
    min-height: 130px;
}

.btn-send-message {
    background: #fca311 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    padding: 14px 38px !important;
    border-radius: 30px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(252, 163, 17, 0.35) !important;
    display: inline-block !important;
}

.btn-send-message:hover {
    background: #e09200 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(252, 163, 17, 0.5) !important;
}

/* MAP CONTAINER (FULL WIDTH) */
.map-section {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

.contact-map-wrap {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.contact-map-wrap iframe {
    width: 100% !important;
    height: 450px !important;
    border: 0 !important;
    display: block !important;
}

/* ALERT MESSAGES */
.contact-alert-success {
    background-color: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-alert-danger {
    background-color: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .contact-section {
        padding: 60px 0;
    }
}