/* HeroContact Section Styles */
.hero-contact-section {
    height: 1126px;
    background-image: url('/images/contact-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-contact-container {
    max-width: 1440px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 50px;
    align-items: center;
}

/* Left Column Styles */
.left-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 588px;
}

/* Contact Button */
.contact-button {
    width: 127px;
    height: 51px;
    padding-top: 6px;
    background: linear-gradient(90deg, #E62D5B 0%, #60C6C8 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cal Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    color: #FFFFFF;
}

/* Contact Title */
.contact-title {
    display: block;
    width: 630px;
    height: 280px;
    font-family: 'Cal Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 60px;
    line-height: 72px;
    flex-direction: column;
    gap: 8px;
}

/* Contact Description */
.contact-description {
    width: 588px;
    height: 120px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #000000;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-item {
    width: 593px;
    height: 80px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.contact-text {
    width: 497px;
    height: 48px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    display: flex;
    align-items: center;
    color: #000000;
}

/* Right Column Styles */
.right-column {
    display: flex;
    margin-top: 60px;
    justify-content: center;
    align-items: center;
}

.contact-form-card {
    background: #FFFFFF;
    border-radius: 24px;
    border: 1px solid #DDDDDD;
    padding: 40px;
    max-width: 624px;
    height: 855px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Form Title */
.form-title {
    font-family: 'Cal Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 150%;
    color: #000000;
}

/* Form Description */
.form-description {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #000000;
    margin-bottom: 20px;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.form-group label {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #000000;
}

.form-group input,
.form-group textarea {
    height: 56px;
    border-radius: 20px;
    background: #F5F5F5;
    border: 1px solid #E0E0E0;
    padding: 16px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #000000;
    transition: border-color 0.3s ease;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E62D5B;
}

.form-submit-btn {
    height: 56px;
    background: #E62D5B;
    border-radius: 20px;
    border: none;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.form-submit-btn:hover {
    background: #d02554;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 45, 91, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-contact-container {
        max-width: 100%;
        padding: 0 24px;
        gap: 40px;
    }

    .contact-title {
        font-size: 48px;
        line-height: 56px;
        width: 100%;
        height: auto;
    }

    .contact-description {
        width: 100%;
        height: auto;
        font-size: 18px;
    }

    .contact-info-item {
        width: 100%;
    }

    .contact-text {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-contact-section {
        height: auto;
        min-height: 100vh;
        padding: 140px 20px 60px;
    }

    .hero-contact-container {
        grid-template-columns: 1fr;
        gap: 0px;
        padding: 0 16px;
    }

    .left-column {
        max-width: 100%;
        order: 1;
    }

    .right-column {
        order: 2;
    }

    .contact-title {
        font-size: 36px;
        line-height: 42px;
    }

    .contact-description {
        font-size: 16px;
    }

    .contact-info-item {
        height: auto;
        padding: 16px;
    }

    .contact-text {
        font-size: 18px;
        height: auto;
    }

    .contact-form-card {
        padding: 24px;
    }

    .form-title {
        font-size: 28px;
    }

    .form-description {
        font-size: 18px;
    }
}

@media (max-width: 440px) {
    .hero-contact-section {
        padding: 160px 10px 40px;
    }

    .contact-button {
        width: 117px;
        height: 48px;
        font-size: 16px;
    }

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

    .contact-description {
        font-size: 18px;
    }

    .contact-text {
        font-size: 16px;
    }

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

    .form-description {
        font-size: 16px;
    }

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