/* ============================================
   CONTACT PAGE SPECIFIC STYLES
   ============================================ */

.page-header {
    padding: 60px 0 50px;
    background: linear-gradient(
        135deg,
        rgba(27, 67, 50, 0.92) 0%,
        rgba(45, 106, 79, 0.85) 50%,
        rgba(27, 67, 50, 0.92) 100%
    ),
    url('../images/about/treehouse-photo-007.jpg') center/cover no-repeat;
    border-bottom: none;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #ffffff;
}

/* ============================================
   CONTACT CARDS
   ============================================ */
.contact-section {
    padding: 60px 0;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e9edf2;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.contact-card .contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #D8F3DC;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: #2D6A4F;
}

.contact-card h4 {
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.contact-card p {
    color: #6C757D;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.form-section {
    padding: 60px 0;
    background: #f8fafc;
}

.form-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e9edf2;
    max-width: 700px;
    margin: 0 auto;
}

.form-card h3 {
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.form-card .form-subtitle {
    color: #6C757D;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1A1A1A;
    display: block;
    margin-bottom: 4px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dce0e5;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control:focus {
    border-color: #2D6A4F;
    outline: none;
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    background: #2D6A4F;
    color: #fff;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    width: 100%;
    transition: all 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
}

.contact-section p, a{
    color: #000;
}

.btn-submit:hover {
    background: #1B4332;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .page-title { font-size: 2rem; }
    .form-card { padding: 24px; }

    .contact-section .container > div {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
}

@media (max-width: 576px) {
    .page-title { font-size: 1.5rem; }
    .form-card { padding: 16px; }
}