/* Contact Hero */
.contact-hero-section {
    background-color: var(--bg-dark-green);
    background-image: linear-gradient(135deg, var(--bg-dark-green) 0%, #061811 100%);
    color: var(--text-light);
    position: relative;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 6.25rem; /* 100px */
    padding-top: 5rem;
    overflow: hidden;
}

.contact-hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding-top: 5rem; /* 80px */
    padding-bottom: 3.75rem; /* 60px */
}

.contact-hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 0.9375rem; /* 15px */
    text-transform: uppercase;
}

.contact-hero-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 37.5rem; /* 600px */
    line-height: 1.6;
}

/* Contact Info Card */
.contact-info-card {
    background-color: var(--bg-dark-green);
    color: #fff;
    padding: 3.125rem; /* 50px */
    border-radius: 1.25rem; /* 20px */
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -3.125rem; /* -50px */
    right: -3.125rem; /* -50px */
    width: 9.375rem; /* 150px */
    height: 9.375rem; /* 150px */
    background: var(--accent-green);
    opacity: 0.1;
    border-radius: 50%;
}

.contact-info-title {
    font-weight: 700;
    margin-bottom: 1.875rem; /* 30px */
    font-size: 1.8rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.875rem; /* 30px */
}

.info-icon {
    background-color: rgba(255,255,255,0.1);
    width: 3.125rem; /* 50px */
    height: 3.125rem; /* 50px */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-green);
    margin-right: 1.25rem; /* 20px */
    flex-shrink: 0;
    transition: all 0.3s;
}

.info-item:hover .info-icon {
    background-color: var(--accent-green);
    color: var(--bg-dark-green);
}

.info-content h5 {
    font-size: 1.1rem;
    margin-bottom: 0.3125rem; /* 5px */
    font-weight: 600;
}

.info-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Social Connect */
.social-connect {
    margin-top: 3.125rem; /* 50px */
}

.social-connect h6 {
    margin-bottom: 1.25rem; /* 20px */
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--accent-green);
}

/* Contact Form */
.contact-form-wrapper {
    background-color: #fff;
    padding: 3.125rem; /* 50px */
    border-radius: 1.25rem; /* 20px */
    box-shadow: 0 0.625rem 2.5rem rgba(0,0,0,0.05); /* 10px 40px */
    border: 1px solid rgba(0,0,0,0.02);
}

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem; /* 8px */
}

.form-control {
    border: 0.125rem solid #f0f0f0; /* 2px */
    border-radius: 0.5rem; /* 8px */
    padding: 0.75rem 0.9375rem; /* 12px 15px */
    font-size: 0.95rem;
    transition: all 0.3s;
    background-color: #fcfcfc;
}

.form-control:focus {
    border-color: var(--accent-green);
    box-shadow: none;
    background-color: #fff;
}

.btn-submit {
    background-color: var(--bg-dark-green);
    color: #fff;
    padding: 0.9375rem 2.5rem; /* 15px 40px */
    font-weight: 700;
    border-radius: 0.5rem; /* 8px */
    text-transform: uppercase;
    border: none;
    transition: all 0.3s;
    width: 100%;
    margin-top: 0.625rem; /* 10px */
}

.btn-submit:hover {
    background-color: var(--accent-green);
    color: var(--bg-dark-green);
    transform: translateY(-0.1875rem); /* -3px */
}

/* Responsive */
@media (max-width: 991px) {
    .contact-hero-title { font-size: 2.5rem; }
    .contact-info-card { padding: 1.875rem; /* 30px */ margin-bottom: 1.875rem; /* 30px */ }
    .contact-form-wrapper { padding: 1.875rem; /* 30px */ }
}

@media (max-width: 576px) {
    .contact-hero-title { font-size: 2rem; }
}
