@font-face {
    font-family: 'FS Industrie Wide';
    src: url("../fonts/FS-Industrie-Wd-Bold.ttf");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'FS Industrie Wide', sans-serif;
    overflow-x: hidden;
}

/* Animation states */
.contact-form-section,
.contact-info-card {
    opacity: 0;
    transform: translateY(50px);
}

/* Contact Content */
.contact-content {
    padding: 6vh 10vw;
}

.contact-container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6vw;
    align-items: start;
}

.contact-form-section {
    background: white;
    padding: 3vh;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-form-section:hover {
    border-color: #e53e3e;
    transform: translateY(-5px);
}

.contact-form-section h2 {
    font-size: 4vh;
    font-weight: bold;
    color: #1a365d;
    margin-bottom: 1.5vh;
}

.contact-form-section p {
    color: #666;
    margin-bottom: 3vh;
    font-size: 2vh;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 2.5vh;
}

.form-group label {
    display: block;
    margin-bottom: 0.5vh;
    font-weight: 450;
    color: #333;
    font-size: 2vh;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1vh;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 2vh;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e53e3e;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1.2vh;
    background: #e53e3e;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 2vh;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 10vh;
    height: 100%;
}

.contact-info-card {
    background: white;
    padding: 2.5vh;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
}

.contact-info-card:hover {
    border-color: #e53e3e;
    transform: translateY(-5px);
}

.contact-info-card h3 {
    font-size: 3vh;
    font-weight: bold;
    color: #e53e3e;
    margin-bottom: 1vh;
    display: flex;
    align-items: center;
    gap: 1vh;
}

.contact-info-card .icon {
    width: 4vh;
    height: 4vh;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5vh;
}

.contact-info-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5vh;
    font-size: 2vh;
}

.contact-info-card strong {
    color: #333;
}

/* Map Section */
.map-section {
    padding: 6vh 10vw;
    background: white;
}

.map-container {
    margin: 0 auto;
    text-align: center;
}

.map-section h2 {
    font-size: 3vh;
    font-weight: bold;
    color: #1a365d;
    margin-bottom: 2vh;
}

.map-placeholder {
    width: 100%;
    background: #f7fafc;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #e2e8f0;
    color: #666;
    font-size: 1.5vh;
    margin-bottom: 2vh;
}

.map-address {
    background: #e53e3e;
    color: white;
    padding: 2vh;
    border-radius: 15px;
    margin: 0 auto;
}

.map-address h3 {
    font-size: 1.5vh;
    margin-bottom: 1vh;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .contact-hero h1 {
        font-size: 2.5vh;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3vh;
    }

    .contact-form-section,
    .contact-info-card {
        padding: 2vh;
        width: 80vw;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2vh;
    }
}

/* Section Title Style */
.section-title {
    font-size: 4vh;
    font-weight: bold;
    color: #e53e3e;
    margin-bottom: 4vh;
    text-align: center;
}
