/* Hero Section */

header {
    background-color: #0f0f0f;
}

.contact-hero {
    height: 400px;
    background-color: #0f0f0f;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 250px;
    background-color: #B6E925;
    right: 150px;
    top: 0;
    transform: skewX(-30deg);
}

.contact-hero::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 70%;
    background-color: #B6E925;
    right: 0;
    top: 0;
    transform: rotate(-60deg);
    transform-origin: top right;
}

.contact-hero h1 {
    color: #ffffff;
    font-size: 4rem;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.contact-hero p {
    color: #d8d8d8;
    font-family: "Outfit", sans-serif;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

/* Contact Section */
.contact-section {
    background-color: #212121;
    padding: 100px 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    padding: 0 20px;
}

/* Contact Info */
.contact-info {
    flex: 1;
    padding-right: 40px;
}

.contact-info h2 {
    color: #ffffff;
    font-family: "Oswald", sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #B6E925;
}

.contact-info > p {
    color: #d8d8d8;
    font-family: "Outfit", sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-item .icon {
    font-size: 1.5rem;
    color: #B6E925;
}

.info-item .text h3 {
    color: #ffffff;
    font-family: "Oswald", sans-serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.info-item .text p {
    color: #d8d8d8;
    font-family: "Outfit", sans-serif;
}

.contact-info .social-links {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.contact-info .social-link {
    color: #ffffff;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.contact-info .social-link:hover {
    color: #B6E925;
}

/* Contact Form */
.contact-form {
    flex: 1;
    background-color: #0f0f0f;
    padding: 40px;
    border-radius: 8px;
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #B6E925;
    transform: skewX(-30deg);
    opacity: 0.1;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 0;
    font-size: 1rem;
    color: #ffffff;
    background: transparent;
    border: none;
    border-bottom: 2px solid #444;
    outline: none;
    font-family: "Outfit", sans-serif;
}

.form-group label {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 1rem;
    color: #666;
    pointer-events: none;
    transition: 0.3s ease all;
    font-family: "Outfit", sans-serif;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
    top: -20px;
    font-size: 0.9rem;
    color: #B6E925;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background-color: #0f0f0f;
    color: #ffffff;
}

.focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #B6E925;
    transition: 0.4s;
}

.form-group input:focus ~ .focus-border,
.form-group textarea:focus ~ .focus-border {
    width: 100%;
}

.form-group textarea {
    height: 100px;
    resize: none;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: transparent;
    border: 2px solid #B6E925;
    color: #ffffff;
    font-family: "Oswald", sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #B6E925;
    color: #0f0f0f;
}

/* Map Section */
.map-section {
    background-color: #0f0f0f;
    padding: 80px 0;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info {
        padding-right: 0;
    }
}

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

    .contact-hero p {
        font-size: 1rem;
    }

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

    .map-container iframe {
        height: 350px;
    }
}

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

    .social-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .contact-form {
        padding: 30px 20px;
    }
}
