/* === CONTACT PAGE SPECIFIC STYLES === */

/* Contact Hero Section */
.contact-hero-section {
    background: #fff;
    padding: 0;
}

.contact-hero-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 120px 160px 80px 160px;
}

.contact-hero-content {
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.contact-hero-left {
    flex: 1;
    max-width: 560px;
}

.contact-hero-title {
    font-size: 72px;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.contact-hero-title .title-green {
    color: #617F5B;
}

.contact-hero-title .title-light {
    color: #D8D8D8;
}

.contact-hero-right {
    flex: 1;
    max-width: 520px;
}

.contact-hero-right img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
}

/* Contact Form Section */
.contact-form-section {
    background: #fff;
    padding: 96px 0;
}

.contact-form-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 160px;
}

.form-section-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 120%;
    color: #617F5B;
    margin: 0 0 48px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-section-title .bullet {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #617F5B;
    border-radius: 50%;
    flex-shrink: 0;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

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

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    background: #fff;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #617F5B;
    box-shadow: 0 0 0 3px rgba(97, 127, 91, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

.form-actions {
    display: flex;
    justify-content: flex-start;
    margin-top: 8px;
}

.btn-submit-consultation {
    padding: 14px 32px;
    background: #617F5B;
    color: #fff;
    text-decoration: none;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid #617F5B;
    cursor: pointer;
}

.btn-submit-consultation:hover {
    background: #4F6A4A;
    border-color: #4F6A4A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(97, 127, 91, 0.2);
}

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

/* Contact Info Section */
.contact-info-section {
    background: #6B7F65;
    padding: 64px 160px;
    opacity: 1;
}

.contact-info-container {
    max-width: 1445px;
    margin: 0 auto;
    padding: 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 80px;
    align-items: center;
}

.contact-map {
    width: 280px;
    max-width: 280px;
    height: auto;
    border-radius: 0;
    overflow: visible;
}

.contact-map img {
    width: 100%;
    max-width: 280px;
    height: auto;
    max-height: 300px;
    object-fit: contain;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.contact-detail-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-detail-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #FFFFFF;
    margin: 0;
}

.contact-detail-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #FFFFFF;
    margin: 0;
}

.contact-detail-text a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-text a:hover {
    color: #E5E5E5;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .contact-hero-container {
        padding: 120px 40px 60px;
    }

    .contact-hero-content {
        flex-direction: column;
        gap: 48px;
    }

    .contact-hero-left,
    .contact-hero-right {
        max-width: 100%;
    }

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

    .contact-form-container {
        padding: 0 40px;
    }

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

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

    .form-group.full-width {
        grid-column: span 1;
    }

    .contact-info-section {
        padding: 48px 40px;
    }

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

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-map {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        height: auto;
    }

    .contact-map img {
        width: 100%;
        max-width: 280px;
        height: auto;
        max-height: 300px;
        object-fit: contain;
    }

    .contact-details {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .contact-hero-container {
        padding: 80px 20px 40px;
    }

    .contact-hero-content {
        gap: 32px;
    }

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

    .contact-form-container {
        padding: 0 20px;
    }

    .contact-form-section {
        padding: 40px 0;
    }

    .form-section-title {
        font-size: 20px;
        margin-bottom: 32px;
    }

    .consultation-form {
        gap: 20px;
    }

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

    .form-group.full-width {
        grid-column: span 1;
    }

    .form-actions {
        margin-top: 12px;
    }

    .btn-submit-consultation {
        width: 100%;
        padding: 16px 32px;
    }

    .contact-info-section {
        padding: 40px 20px;
    }

    .contact-info-container {
        padding: 0;
        max-width: 100%;
    }

    .contact-info-grid {
        display: flex;
        gap: 24px;
        align-items: flex-start;
    }

    .contact-map {
        width: 120px;
        min-width: 120px;
        max-width: 120px;
        height: auto;
        flex-shrink: 0;
    }

    .contact-map img {
        width: 100%;
        max-width: 120px;
        height: auto;
        max-height: 120px;
        object-fit: contain;
    }

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

    .contact-detail-title {
        font-size: 16px;
    }

    .contact-detail-text {
        font-size: 14px;
        word-wrap: break-word;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .contact-hero-container {
        padding: 60px 16px 30px;
    }

    .contact-hero-content {
        gap: 24px;
    }

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

    .contact-form-container {
        padding: 0 16px;
    }

    .contact-form-section {
        padding: 32px 0;
    }

    .form-section-title {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .consultation-form {
        gap: 16px;
    }

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

    .form-group {
        gap: 8px;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 13px;
        border-radius: 8px;
    }

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

    .form-actions {
        margin-top: 8px;
    }

    .btn-submit-consultation {
        width: 100%;
        padding: 14px 24px;
        font-size: 13px;
    }

    .contact-info-section {
        padding: 32px 16px;
    }

    .contact-info-container {
        padding: 0;
        max-width: 100%;
    }

    .contact-info-grid {
        display: flex;
        gap: 16px;
        align-items: flex-start;
    }

    .contact-map {
        width: 100px;
        min-width: 100px;
        max-width: 100px;
        height: auto;
        flex-shrink: 0;
    }

    .contact-map img {
        width: 100%;
        max-width: 100px;
        height: auto;
        max-height: 100px;
        object-fit: contain;
    }

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

    .contact-detail-item {
        gap: 8px;
    }

    .contact-detail-title {
        font-size: 15px;
    }

    .contact-detail-text {
        font-size: 13px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}
