/* Contact Page - Clean & Light Design */
:root {
    --color-primary: #f3743f;
    --color-primary-hover: #cd5c2d;
    --color-text-dark: #101010;
    --color-text-gray: #666666;
    --color-light-bg: #f8f9fa;
    --color-border: #e5e5e5;
}

/* Hero - Minimal & Light */
.contact-hero {
    padding: 50px 0 40px;
    background: var(--color-light-bg);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 0;
}

.contact-hero h1 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.contact-hero p {
    color: var(--color-text-gray);
    font-size: 0.95rem;
    margin: 0;
}

/* Wrapper */
.contact-wrapper {
    padding: 50px 0;
    background: #fff;
}

/* Main Card */
.contact-card {
    background: #fff;
    border: 1px solid var(--color-border);
    overflow: hidden;
}

/* Left Column: Info Box */
.contact-info-box {
    padding: 35px 30px;
    background: var(--color-light-bg);
    border-right: 1px solid var(--color-border);
    height: 100%;
}

.contact-info-box h3 {
    font-size: 1.1rem;
    color: var(--color-text-dark);
    margin-bottom: 25px;
    font-weight: 600;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-primary);
    display: inline-block;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: #fff;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--color-primary);
}

.info-content h5 {
    color: var(--color-text-dark);
    font-size: 0.85rem;
    margin-bottom: 3px;
    font-weight: 600;
}

.info-content p,
.info-content a {
    color: var(--color-text-gray);
    font-size: 0.9rem;
    margin: 0;
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.5;
}

.info-content a:hover {
    color: var(--color-primary);
}

/* Right Column: Form */
.contact-form-box {
    padding: 35px 30px;
    background: #fff;
}

@media(max-width: 991px) {
    .contact-form-box {
        padding: 30px 25px;
    }

    .contact-info-box {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
    }
}

.contact-form-box h3 {
    font-size: 1.1rem;
    color: var(--color-text-dark);
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-form-box p {
    color: var(--color-text-gray);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

/* Form Elements */
.form-floating>.form-control {
    border: 1px solid var(--color-border);
    border-radius: 0;
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
    font-size: 0.9rem;
    height: calc(3rem + 2px);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-floating textarea.form-control {
    height: 110px !important;
}

.form-floating>label {
    font-size: 0.85rem;
    color: #999;
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(243, 116, 63, 0.1);
}

/* Submit Button */
.btn-contact {
    background: var(--color-primary);
    color: #fff;
    padding: 12px 28px;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    transition: background-color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-contact:hover {
    background: var(--color-primary-hover);
    color: #fff;
}

/* Map Container */
.map-container {
    margin-top: 50px;
    border: 1px solid var(--color-border);
    height: 320px;
    background: #fff;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero {
        padding: 35px 0 25px;
    }

    .contact-hero h1 {
        font-size: 1.5rem;
    }

    .contact-wrapper {
        padding: 35px 0;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 25px 20px;
    }

    .map-container {
        margin-top: 35px;
        height: 280px;
    }

    .btn-contact {
        width: 100%;
        justify-content: center;
    }
}