.contact-hero-modern {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.contact-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    color: #0a0a0a;
    margin-bottom: 28px;
    letter-spacing: -0.03em;
}

.highlight-text {
    color: #66B044;
}

.contact-hero-description {
    font-size: 20px;
    line-height: 1.7;
    color: #525252;
    max-width: 650px;
    margin: 0 auto;
}

/* ============================================
   CONTACT CONTENT SECTION
   ============================================ */
.contact-content-section {
    padding: 100px 0;
    background: white;
}

.contact-grid-modern {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 48px;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form-modern {
    background: white;
    padding: 48px;
    border-radius: 24px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.form-header-modern {
    margin-bottom: 40px;
}

.form-header-modern h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 12px;
}

.form-header-modern p {
    font-size: 16px;
    color: #737373;
}

.form-group-modern {
    margin-bottom: 28px;
}

.form-group-modern label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 10px;
}

.required-star {
    color: #66B044;
}

.form-input-modern {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input-modern:focus {
    outline: none;
    border-color: #66B044;
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1);
}

.form-input-modern::placeholder {
    color: #a3a3a3;
}

.submit-btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: #0a0a0a;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.submit-btn-modern:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.submit-btn-modern:hover .btn-arrow {
    transform: translateX(4px);
}

/* ============================================
   CONTACT INFO SIDEBAR
   ============================================ */
.contact-info-modern {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card-modern,
.quick-links-card-modern {
    background: #fafafa;
    padding: 32px;
    border-radius: 24px;
    border: 1px solid #e5e5e5;
}

.info-card-modern h3,
.quick-links-card-modern h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 8px;
}

.info-subtitle {
    font-size: 14px;
    color: #737373;
    margin-bottom: 32px;
}

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

.contact-method-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon-circle {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #66B044;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-method-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 4px;
}

.contact-method-text p {
    font-size: 15px;
    color: #525252;
}

/* ============================================
   QUICK LINKS
   ============================================ */
.quick-links-modern {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.quick-link-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: white;
    border-radius: 12px;
    color: #0a0a0a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.quick-link-item:hover {
    background: #66B044;
    color: white;
    transform: translateX(4px);
}

.quick-link-item svg {
    transition: transform 0.3s ease;
}

.quick-link-item:hover svg {
    transform: translateX(4px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .contact-grid-modern {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

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

    .contact-hero-description {
        font-size: 17px;
    }

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

    .form-header-modern h2 {
        font-size: 28px;
    }

    .info-card-modern,
    .quick-links-card-modern {
        padding: 24px;
    }
}