.contact-page {
    padding: 60px 0;
}

.contact-page h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 28px;
}

.contact-form-wrap {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 32px;
    transition: all 0.2s ease;
}

.contact-form-wrap:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.contact-form-wrap .form-control {
    border-radius: 8px;
    border-color: #ddd;
    font-size: 14px;
    height: 42px;
}

.contact-form-wrap textarea.form-control {
    height: 140px;
    resize: vertical;
}

.contact-form-wrap label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.btn-send {
    background: #111;
    color: #fff;
    width: 100%;
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    margin-top: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-send:hover {
    background: #333;
    color: #fff;
}

.map-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    transition: all 0.2s ease;
}

.map-wrap:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.map-wrap iframe {
    width: 100%;
    height: 340px;
    border: none;
    display: block;
}

.get-in-touch {
    padding: 50px 0;
    background: #f9f9f9;
    text-align: center;
    margin-top: 60px;
}

.get-in-touch h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 32px;
}

.touch-item {
    margin-bottom: 16px;
    transition: all 0.2s ease;
}

.touch-item:hover {
    transform: translateY(-3px);
}

.touch-item .touch-icon {
    font-size: 22px;
    color: #111;
    margin-bottom: 8px;
}

.touch-item p {
    font-size: 14px;
    color: #444;
    margin: 0;
}

.touch-item a {
    color: #444;
}

.touch-item a:hover {
    color: #111;
    text-decoration: none;
}