/* =========================================
   1. HERO SECTION (Standardized)
   ========================================= */
.hero-section {
    height: 400px;
    background-size: cover;
    background-position: 50% 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    padding-top: 100px;
    min-height: auto;
}
.overlay { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background: rgba(0,0,0,0.33); /* Opacity 0.33 from source */
}
.hero-section-content{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 1600px;
}
.hero-section h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 500;
    position: relative;
    z-index: 1;
    margin: 0;
    white-space: nowrap;
}
.divider-line {
    width: 100%;
    height: 1px;
    background: rgb(255 255 255 /50%);
}
.relative-z { position: relative; z-index: 2; }
@media (max-width: 1024px) {
    .hero-section {
     height: 345px;
    }
}
/* =========================================
   2. PAGE LAYOUT
   ========================================= */
.appraisal-page {
    font-family: "Lato", sans-serif;
    color: #000;
    background-color: #fff;
}

.appraisal-content-section {
    padding: 20px 0;
}

.appraisal-content-section .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 15px;
}

.appraisal-grid {
    display: grid;
    grid-template-columns: 50% 45%; /* Left column wider */
    gap: 5%;
    padding: 0;
}
.appraisal-form-column{
    padding: 45px;
}
/* =========================================
   3. LEFT COLUMN (Intro & Form)
   ========================================= */
.intro-block h2 {
    font-family: "Lato", sans-serif;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.gold-border-left {
    border-left: 8px solid #E3A507;
    padding-left: 10px;
    margin-bottom: 20px;
}

.gold-border-left p {
    font-size: 16px;
    font-weight: 400; /* Source says 400 */
    margin: 0;
    color: #000;
}

.intro-body p {
    font-size: 16px;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Form Wrapper Styling (Basic spacing) */
.appraisal-form-wrapper {
    margin-top: 30px;
}

/* Optional: Button Gradient Override for Forminator if needed */
.forminator-button-submit {
    background-image: linear-gradient(90deg, #FFDE00 0%, #DF9C06 43%) !important;
    color: #000 !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    border: none !important;
    border-radius: 0 !important;
}

/* =========================================
   4. RIGHT COLUMN (Sidebar)
   ========================================= */
.appraisal-sidebar-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: #f5f5f5;
    padding: 45px;
}

/* Contact Info Box */
.contact-info-box {
    background-color: #F5F5F5; /* Light gray from source */
}

.contact-info-box h3 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
}

.info-list li a {
    text-decoration: none;
    color: #000;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-list li a:hover {
    color: #E3A507;
}

.info-list i {
    width: 20px;
    color: #000; /* Icons black in source */
}

/* Map */
.map-wrapper {
    width: 100%;
    height: 550px; /* Matched source height */
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.vish-custom-form input[type="text"],
.vish-custom-form input[type="email"],
.vish-custom-form input[type="tel"],
.vish-custom-form input[type="date"],
.vish-custom-form input[type="time"],
.vish-custom-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s;
    font-family: 'Lato', sans-serif; /* Per your JSON font settings */
}
/* =========================================
   5. RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .appraisal-grid {
       padding: 0 25px;
    }
    .appraisal-sidebar-column{
        padding: 0 10px;
    }
    .contact-info-box {
        padding: 30px;
    }
}

@media (max-width: 767px) {
     .appraisal-grid {
        grid-template-columns: 1fr; /* Stack columns */
        gap: 40px;
        padding: 0;
    }
    .appraisal-form-column{
        padding: 0;
    }
    .appraisal-sidebar-column{
        padding: 0 5px;
    }
    .contact-info-box {
        padding: 30px;
    }
    .hero-section{height: 175px; padding-top: 40px;}
    .hero-section h1{        font-size: 18px;}
    
    .intro-block h2 { font-size: 24px; }
    .map-wrapper { height: 350px; }
}