/* Hero Contact */
.hero-contact {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #03a0e1 100%);
    padding: 100px 0 60px;
    color: white;
    text-align: center;
}

.hero-contact h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-contact p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f5f5f5;
}

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

/* Contact Info */
.contact-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
}

.contact-info h2 {
    color: #000;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.info-block {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-block:last-of-type {
    border-bottom: none;
}

.info-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.info-content h3 {
    color: #000;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-content p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.info-content a {
    color: #03a0e1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-content a:hover {
    color: #0286c2;
}

.info-link {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
}

.social-contact {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.social-contact h3 {
    color: #000;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.social-contact .social-links {
    display: flex;
    gap: 15px;
}

.social-contact .social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.3s ease;
}

.social-contact .social-icon:hover {
    background: #03a0e1;
    color: white;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h2 {
    color: #000;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #03a0e1;
    background: white;
    box-shadow: 0 0 0 3px rgba(3, 160, 225, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    font-size: 1.1rem;
}

.btn-submit:hover svg {
    transform: translateX(5px);
}

.btn-submit svg {
    transition: transform 0.3s ease;
}

/* Messages */
.success-message {
    text-align: center;
    padding: 60px 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #2ecc71;
    color: white;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-message h3 {
    color: #2ecc71;
    font-size: 2rem;
    margin-bottom: 15px;
}

.success-message p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.error-message {
    background: #fee;
    border-left: 4px solid #e74c3c;
    padding: 15px 20px;
    border-radius: 8px;
    color: #c0392b;
    margin-bottom: 25px;
}

/* Map Section */
.map-section {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.3);
    transition: filter 0.3s ease;
}

.map-section iframe:hover {
    filter: grayscale(0);
}

/* Responsive */
@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info {
        position: static;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-contact h1 {
        font-size: 2.5rem;
    }

    .contact-form-wrapper {
        padding: 30px 25px;
    }

    .contact-info {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .hero-contact h1 {
        font-size: 2rem;
    }

    .contact-form-wrapper h2 {
        font-size: 1.6rem;
    }
}