/* ============================================================
   CONTACT US — contact-us.css
   High-end, modern luxury aesthetic
   ============================================================ */

:root {
    --contact-primary: #0891b2;
    --contact-dark: #0c4a6e;
    --contact-text: #334155;
    --contact-bg-light: #f8fafc;
    --contact-border: #e2e8f0;
    --contact-radius: 16px;
    --contact-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

/* 1. HERO SECTION */
.klc-hero {

    color: white !important;
}



.klc-hero-line {
    display: block;
    width: 60px;
    height: 4px;
    background: var(--bv-primary, #0891b2);
    margin: 0 auto;
    border-radius: 2px;
}

/* 2. MAIN LAYOUT */
.klc-contact-main {
    padding: 2rem 0 2.5rem 0;
    background: #f5f8fa;
    margin: 1rem 0px 0rem;
}

.klc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.klc-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 991px) {
    .klc-contact-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }
}

/* 3. LEFT INFO SIDE */
.klc-contact-info h3 {
    font-family: var(--bv-font-display);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--contact-dark);
}

.klc-contact-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 24px;
    background: white;
    border-radius: var(--contact-radius);
    box-shadow: var(--contact-shadow);
    transition: transform 0.3s ease, border-color 0.3s ease;
    border: 1px solid transparent;
}

.klc-contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--contact-primary);
}

.klc-card-icon {
    width: 54px;
    height: 54px;
    background: rgba(8, 145, 178, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.klc-card-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--contact-primary);
}

.klc-contact-card strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--contact-dark);
}

.klc-contact-card p {
    margin: 0;
    color: var(--contact-text);
    font-size: 1rem;
}

/* Quick Booking Box */
.klc-quick-box {
    margin-top: 50px;
    padding: 32px;
    background: var(--contact-dark);
    border-radius: var(--contact-radius);
    color: white;
}

.klc-quick-box h4 {
    font-size: 1.35rem;
    margin-bottom: 24px;
}

.klc-quick-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.klc-quick-row:last-child {
    border-bottom: none;
}

.klc-quick-row .label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.klc-quick-row .label svg {
    width: 18px;
    height: 18px;
    fill: var(--bv-primary);
    stroke: var(--bv-primary);
}

.klc-quick-row .value {
    font-weight: 600;
}

/* Review Badge */
.klc-review-badge {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: #0891b2;
    border-radius: var(--contact-radius);
    box-shadow: var(--contact-shadow);
}

.klc-avatars {
    display: flex;
}

.klc-avatars img {
    /* width: 39px; */
    /* height: 44px; */
    border-radius: 50%;
    /* border: 3px solid white; */
    margin-right: -8px;
    object-fit: cover;
}

.klc-review-text .klc-stars {
    color: #fbba00;
    font-size: 14px;
    margin-bottom: 4px;
}

.klc-review-text p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--bs-body-bg);
}

.klc-review-text strong {
    font-size: 0.95rem;
    color: var(--bs-body-bg);
}

/* 4. FORM SIDE */
.klc-contact-form {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--contact-shadow);
}

@media (max-width: 575px) {
    .klc-contact-form {
        padding: 30px 20px;
    }
}

.klc-contact-form h3 {
    font-family: var(--bv-font-display);
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: var(--contact-dark);
}

.klc-contact-form p {
    color: var(--contact-text);
    margin-bottom: 40px;
}

.klc-field-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--contact-dark);
    margin-top: 24px;
}

.klc-contact-form input,
.klc-contact-form select,
.klc-contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid var(--contact-border);
    background: #fcfcfc;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.klc-contact-form input:focus,
.klc-contact-form select:focus,
.klc-contact-form textarea:focus {
    border-color: var(--contact-primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.08);
}

.klc-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 575px) {
    .klc-row-2 {
        grid-template-columns: 1fr;
    }
}

/* Contact Method Buttons */
.klc-contact-method {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.klc-method-btn {
    flex: 1;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid var(--contact-border);
    background: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.klc-method-btn svg {
    width: 18px;
    height: 18px;
    fill: #64748b;
}

.klc-method-btn.active {
    background: var(--contact-primary);
    color: white;
    border-color: var(--contact-primary);
}

.klc-method-btn.active svg {
    fill: white;
}

/* Submit Button */
.klc-btn {
    width: 100%;
    margin-top: 40px;
    padding: 18px;
    background: var(--contact-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.klc-btn:hover {
    background: var(--contact-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(12, 74, 110, 0.2);
}

.klc-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* Why Direct Grid */
.klc-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 50px;
}

@media (max-width: 575px) {
    .klc-why-grid {
        grid-template-columns: 1fr;
    }
}

.klc-why-card {
    padding: 24px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #a9a9a9;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.klc-why-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.klc-why-icon.red {
    background: rgba(239, 68, 68, 0.1);
    fill: #ef4444;
}

.klc-why-icon.navy {
    background: rgba(12, 74, 110, 0.1);
    fill: #0c4a6e;
}

.klc-why-icon svg {
    width: 22px;
    height: 22px;
}

.klc-why-card h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--contact-dark);
}

.klc-why-card p {
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.klc-why-card a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--contact-primary);
    text-decoration: none;
}

/* 5. LOCATION SECTION */
.klc-location-section {
    padding: 32px 0;
    background: white;
}

.klc-location-header {
    text-align: center;
    margin-bottom: 44px;
}

.klc-location-header h2 {
    font-family: var(--bv-font-display);
    font-size: 38px;
    color: var(--contact-dark);
}

.klc-bottom-line {
    display: block;
    width: 50px;
    height: 3px;
    background: var(--contact-primary);
    margin: 20px auto 0;
}

.klc-map-wrap {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--contact-shadow);
    border: 8px solid white;
}

.klc-directions-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 30px;
    background: white;
    color: var(--contact-dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 9px;
    border: 1px solid #0891b2;
    transition: all 0.3s ease;
}

.klc-directions-btn:hover {
    background: var(--bv-primary);
    color: white;
    transform: translateY(-2px);
}

/* Animations */
.klc-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.klc-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}