.contact-page .site-header {
    background-color: #F5F5F0;
}

.contact-hero {
    background-color: #F5F5F0;
    padding: 100px 0 60px;
    text-align: center;
}
.pricing-hero {
    background-color: #F5F5F0;
    padding: 100px 0 60px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 64px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #000;
    letter-spacing: -1px;
}

.contact-hero .breadcrumbs {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #6B6B6B;
}

.contact-hero .breadcrumbs a {
    color: #6B6B6B;
    text-decoration: none;
}

.contact-hero .breadcrumbs span {
    margin: 0 8px;
}

.contact-hero .breadcrumbs .current {
    color: #000;
}

.contact-content {
    padding: 100px 0;
    background-color: #FAF9F6;
}

.contact-info h2 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 24px;
    color: #000;
}

.contact-info p {
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 32px;
}

.contact-info .info-item {
    margin-bottom: 32px;
}

.contact-info .info-item .label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 8px;
    color: #000;
}

.contact-info .info-item .value {
    font-size: 18px;
    color: #000;
    margin-left: 36px;
}

.contact-info .info-item i {
    font-size: 24px;
    color: #6B6B6B;
}

.contact-form-card {
    background: #fff;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.04);
}

.contact-form-card h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 40px;
    text-align: center;
}

.form-group {
    margin-bottom: 24px;
}

.form-control {
    width: 100%;
    padding: 16px 24px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #000;
    outline: none;
}

.form-control::placeholder {
    color: #9CA3AF;
}

.form-control:focus {
    border-color: #f97316;
}

textarea.form-control {
    height: 160px;
    resize: none;
}

.btn-submit {
    width: 100%;
    background-color: #f97316;
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 16px;
}

.btn-submit:hover {
    background-color: #ea580c;
}

.map-section {
    width: 100%;
    height: 600px;
    background-color: #eee;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.alert {
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid transparent;
}

.alert-success {
    background-color: #ecfdf5;
    color: #065f46;
    border-color: #a7f3d0;
}

.alert-danger {
    background-color: #fef2f2;
    color: #991b1b;
    border-color: #fecaca;
}

.text-danger {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #dc2626;
    font-weight: 500;
}

@media (max-width: 991px) {
    .contact-form-card {
        padding: 40px;
        margin-top: 60px;
    }
}