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

.contact-page {
    margin-top: var(--nav-h);
}

.contact-hero {
    height: calc(100vh - var(--nav-h));
    background-image: url('Images/Frame 829.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 40px;
}

/* Glassmorphism card for "TALK TO US" */
.contact-hero__glass {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 20px;
    padding: 20px 100px;
    text-align: center;
    max-width: 90%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-top: 23.5%; /* User requested 20%, maybe 15 is better for visibility on desktop */
}

.contact-hero__title {
    font-size: clamp(48px, 10vw, 120px);
    font-weight: 400;
    color: #1a6b2a;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0 100px;
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-form__container {
    background-color: #d1ccab; /* Muted Khaki/Yellowish from design */
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 140px 60px 80px;
    border-radius: 40px 40px 100px 100px; /* Asymmetrical large bottom radius */
    display: flex;
    gap: 80px;
    align-items: flex-start;
    margin-top: -10%;
}

.contact-info {
    flex: 1;
}

.contact-info__heading {
    font-size: 64px;
    font-weight: 900;
    color: #1a6b2a;
    margin-bottom: 60px;
    font-family: 'Poppins', sans-serif;
}

.contact-info__block {
    margin-bottom: 50px;
}

.contact-info__block h3 {
    font-size: 19px;
    font-weight: 700;
    color: #1a6b2a;
    margin-bottom: 12px;
}

.contact-info__block p {
    font-size: 17px;
    line-height: 1.6;
    color: #1a6b2a;
    margin-bottom: 6px;
    font-weight: 500;
}

.contact-form {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 22px 30px;
    border: none;
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.form-input[type="tel"] {
    border: 1.5px solid #fecaca; /* Subtle pink/red border as seen in design for Phone */
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #aaa;
    font-size: 14px;
}

.form-textarea {
    min-height: 220px;
    resize: none;
}

.form-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.form-submit {
    background-color: #e57368; /* Exact coral from design */
    color: #fff;
    border: none;
    padding: 20px 70px;
    border-radius: 20px;
    font-size: 32px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-submit:hover {
    background-color: #d06a5f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 115, 104, 0.3);
}

.contact-admin-replies {
    background: #f8fdf6;
    border: 1px solid #dcecd4;
    border-radius: 24px;
    padding: 24px 26px;
    box-shadow: 0 10px 30px rgba(46, 158, 71, 0.08);
}

.contact-admin-replies h3 {
    font-size: 1.1rem;
    margin-bottom: 18px;
    color: #1f4f2d;
    font-weight: 700;
}

.admin-responses-list {
    display: grid;
    gap: 16px;
}

.admin-reply-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(46, 158, 71, 0.12);
    padding: 18px 20px;
}

.reply-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #4b5563;
}

.reply-name {
    font-weight: 700;
    color: #0f172a;
}

.reply-message {
    color: #334155;
    line-height: 1.7;
}

.no-admin-replies {
    color: #475569;
    font-size: 0.95rem;
}

/* Responsive adjustements */
@media (max-width: 1024px) {
    .contact-form__container {
        flex-direction: column;
        padding: 60px 40px;
        gap: 50px;
    }
    .contact-info__heading {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .contact-hero__glass {
        padding: 40px 60px;
        margin-top: 30%;
    }
    .contact-form__container {
        border-radius: 30px 30px 60px 60px;
        padding: 40px 25px;
    }
    .form-submit {
        width: 100%;
        padding: 15px;
        font-size: 24px;
    }
}

/* Customer Onboarding Section */
.onboarding {
    padding: 20px 20px;
    background-color: #fffaf9; /* Slightly off-white/pinkish tint from screenshot */
    text-align: center;
}

.onboarding__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.onboarding__heading {
    font-size: 48px;
    font-weight: 800;
    color: #1a6b2a;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.onboarding__card {
    background: #fff;
    padding: 60px 80px;
    text-align: left;
    box-shadow: 0 5px 30px rgba(0,0,0,0.03);
    border-radius: 10px;
}

.onboarding__intro {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    font-weight: 600;
    margin-bottom: 40px;
}

.onboarding__list {
    list-style: decimal inside;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.onboarding__list li {
    font-size: 16px;
    line-height: 1.5;
    color: #444;
    font-weight: 500;
    padding-left: 10px;
    text-indent: -25px;
    margin-left: 25px;
}

@media (max-width: 768px) {
    .onboarding__heading {
        font-size: 32px;
    }
    .onboarding__card {
        padding: 40px 25px;
    }
}
