.contact-hero {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
}

.contact-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #212121 0%, #424242 100%);
}

.contact-hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 245px;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

.contact-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.219em;
    background: linear-gradient(90deg,
            rgba(255, 87, 34, 1) 13%,
            rgba(255, 121, 78, 1) 53%,
            rgba(255, 87, 34, 1) 88%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 100px;
}


.contact-content-section {
    padding: var(--space-section-v) var(--space-section-h);
    background-color: #ffffff;
    width: 100%;
    margin: 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}


.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.219em;
    background: linear-gradient(90deg,
            rgba(255, 87, 34, 1) 13%,
            rgba(255, 121, 78, 1) 53%,
            rgba(255, 87, 34, 1) 88%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.contact-info-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: #424242;
    margin-bottom: 24px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 80%;
}

.contact-detail-item:hover {
    background-color: #eeeeee;
    transform: translateX(4px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 87, 34, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-detail-text {
    flex: 1;
}

.contact-detail-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.219em;
    color: #757575;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-detail-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    color: #212121;
}


.contact-social {
    margin-top: 16px;
}

.contact-social-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.219em;
    color: #212121;
    margin-bottom: 16px;
}

.contact-social-icons {
    display: flex;
    gap: 12px;
}

.contact-social-icon {
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-social-icon:hover {
    transform: translateY(-4px);
}

.contact-social-icon svg {
    width: 40px;
    height: 40px;
}


.contact-form-container {
    background-color: #f5f5f5;
    border-radius: 15px;
    padding: var(--space-card-v) var(--space-card-h);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.219em;
    color: #ff5722;
    margin-bottom: 32px;
}

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

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

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

.form-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.219em;
    color: #424242;
}

.form-input,
.form-textarea {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5em;
    color: #212121;
    padding: 12px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #9e9e9e;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #ff5722;
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
}

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

.form-submit-btn {
    width: 100%;
    padding: 14px 24px;
    background-color: #ff5722;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.219em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    box-shadow: 0px 4px 12px rgba(255, 87, 34, 0.3);
}

.form-submit-btn:hover {
    background-color: #ff794e;
    transform: translateY(-2px);
    box-shadow: 0px 6px 16px rgba(255, 87, 34, 0.4);
}

.form-submit-btn:active {
    transform: translateY(0);
}


@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 32px;
    }

    .contact-hero-content {
        padding: 0 100px;
    }

    .contact-hero-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 300px;
    }

    .contact-hero-content {
        padding: 0 40px;
    }

    .contact-hero-title {
        font-size: 32px;
        margin-top: 80px;
    }

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

    .contact-container {
        padding: 0 24px;
        gap: 48px;
    }

    .contact-info-title {
        font-size: 28px;
    }

    .contact-form-container {
        padding: 32px 24px;
    }

    .contact-form-title {
        font-size: 24px;
    }

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

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 28px;
    }

    .contact-info-title {
        font-size: 24px;
    }

    .contact-form-title {
        font-size: 20px;
    }

    .contact-detail-item {
        padding: 16px;
        width: 80%;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-social-icons {
        flex-wrap: wrap;
    }
}

a {
    color: inherit;
    text-decoration: none;
}