/* Contact Page Styling */
.kf-contact-page {
    background-color: #fafafa;
}

/* Contact Page Layout */

/* Unified Wrapper Layout */
.kf-contact-section {
    padding: 80px 0;
    background-color: #fafafa;
}
.kf-contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Column: Info & Map (Dark Theme) */
.kf-contact-info-col {
    flex: 0 0 40%;
    background: #111;
    padding: 60px 50px;
    color: #fff;
    display: flex;
    flex-direction: column;
}
.kf-contact-info-col .kf-contact-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
}
.kf-contact-info-col .kf-contact-section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--kf-gold);
}

.kf-contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex-grow: 1;
}
.kf-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.kf-contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.kf-contact-item:hover .kf-contact-icon {
    background: var(--kf-gold);
    border-color: var(--kf-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}
.kf-contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--kf-gold);
    transition: all 0.3s ease;
}
.kf-contact-item:hover .kf-contact-icon svg {
    stroke: #fff;
}
.kf-contact-text h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: var(--kf-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.kf-contact-text p, .kf-contact-text a {
    margin: 0;
    font-size: 16px;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.kf-contact-text a:hover {
    color: #fff;
}
.kf-contact-map {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}
.kf-contact-map iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    display: block;
}

/* Right Column: Form (Light Theme) */
.kf-contact-form-col {
    flex: 0 0 60%;
    padding: 60px 50px;
    background: #fff;
}
.kf-contact-form-col .kf-contact-section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--kf-black);
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
}
.kf-contact-form-col .kf-contact-section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--kf-gold);
}
.kf-contact-form-desc {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}
.kf-form-group {
    margin-bottom: 25px;
}
.kf-form-group label {
    display: block;
    color: var(--kf-black);
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
}
.kf-form-group input,
.kf-form-group textarea {
    width: 100%;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px 20px;
    color: var(--kf-black);
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}
.kf-form-group input:focus,
.kf-form-group textarea:focus {
    outline: none;
    border-color: var(--kf-gold);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
    background: #fff;
}
.kf-submit-btn {
    width: 100%;
    padding: 18px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    background: var(--kf-gold);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.kf-submit-btn:hover {
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}
.kf-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.kf-spinner {
    width: 20px;
    height: 20px;
    animation: kf-spin 1s linear infinite;
}
@keyframes kf-spin {
    100% { transform: rotate(360deg); }
}

/* Form Messages */
.kf-form-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 15px;
}
.kf-form-message.success {
    background: rgba(46, 204, 113, 0.1);
    color: #27ae60;
    border: 1px solid rgba(46, 204, 113, 0.2);
}
.kf-form-message.error {
    background: rgba(231, 76, 60, 0.1);
    color: #c0392b;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

/* Responsive */
@media (max-width: 992px) {
    .kf-contact-info-col,
    .kf-contact-form-col {
        flex: 0 0 100%;
    }
}
@media (max-width: 768px) {
    .kf-contact-hero-title {
        font-size: 32px;
    }
    .kf-contact-info-col, 
    .kf-contact-form-col {
        padding: 40px 20px;
    }
}
