/* ------------------------------------- */
/* HERO / BACKGROUND STYLES              */
/* ------------------------------------- */
.page-header {
    position: relative;
    padding-top: 180px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: 
        linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0.7) 20%, rgba(255,255,255,0) 45%, rgba(255,255,255,0.9) 80%, rgba(255,255,255,1) 100%),
        url('https://res.cloudinary.com/djxcfeqsb/image/upload/v1784916799/Valley_with_dirt_path_2K_202607242106_wd1l5a.jpg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    text-align: center;
}

.hero-title { font-size: clamp(48px, 6vw, 72px); font-weight: 700; color: #000; margin-bottom: 16px; letter-spacing: -2px; line-height: 1.1; }
.title-italic { font-style: italic; font-weight: 400; color: #555; }
.hero-subtitle { font-size: 16px; color: #666; max-width: 540px; line-height: 1.6; margin: 0 auto; }

/* ------------------------------------- */
/* SPLIT CONTACT SECTION                 */
/* ------------------------------------- */
.contact-section {
    padding: 80px 40px 160px 40px;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.contact-info {
    flex: 0.8;
    position: sticky;
    top: 140px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.contact-info h2 {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -1.5px;
    line-height: 1.1;
    color: #111;
}

.info-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: #888;
}

.info-text {
    font-size: 18px;
    font-weight: 500;
    color: #111;
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.3s ease;
    width: fit-content;
}

a.info-text:hover {
    color: #666;
    text-decoration: underline;
}

.social-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form-wrapper {
    flex: 1.2;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 32px;
    padding: 64px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.03);
}

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

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

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

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: #111;
    letter-spacing: -0.2px;
}

.form-input {
    width: 100%;
    background: #f9f9f9;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 18px 20px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: #111;
    outline: none;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: #aaa;
}

.form-input:focus {
    background: #ffffff;
    border-color: #111;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

textarea.form-input {
    resize: vertical;
    min-height: 160px;
}

select.form-input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    cursor: pointer;
    color: #555;
}

select.form-input:focus {
    color: #111;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #111;
    color: #ffffff;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.submit-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.submit-btn svg {
    transition: transform 0.3s ease;
}

.submit-btn:hover svg {
    transform: translateX(4px) translateY(-4px);
}

/* Status message */
.form-status {
    grid-column: span 2;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    display: none;
}
.form-status.success {
    display: block;
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}
.form-status.error {
    display: block;
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

@media (max-width: 1024px) {
    .contact-section { flex-direction: column; gap: 64px; }
    .contact-info { position: relative; top: 0; flex-direction: row; flex-wrap: wrap; justify-content: space-between; width: 100%; }
    .contact-info h2 { width: 100%; margin-bottom: 0; }
    .info-block { flex: 0 0 45%; }
}

@media (max-width: 768px) {
    .page-header { padding-top: 200px; padding-bottom: 40px; }
    .contact-section { padding: 40px 24px 100px 24px; gap: 48px; }
    .contact-info h2 { font-size: 40px; }
    .info-block { flex: 0 0 100%; }
    .contact-form-wrapper { padding: 32px 24px; border-radius: 24px; }
    .contact-form { grid-template-columns: 1fr; gap: 24px; }
    .full-width { grid-column: 1; }
    .form-status { grid-column: 1; }
}
