/* Simulator Form Specific Styles */
:root {
    --navbar-height: 70px;
    --contact-banner-height: 50px;
    --total-offset: calc(var(--navbar-height) + var(--contact-banner-height));
}

.form-section {
    padding: 2rem !important;
    min-height: auto !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
}

/* Professional Form Grid Layout */
.form-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1.5rem 2rem !important; /* Vertical gap 1.5rem, Horizontal gap 2rem */
    margin-bottom: 2rem !important;
    width: 100% !important;
    padding: 0 1rem !important;
}

/* Input Group Styling */
.input-group {
    width: 100% !important;
    margin-bottom: 0 !important;
    position: relative !important;
}

/* Label Styling */
.input-group label {
    display: block !important;
    margin-bottom: 0.5rem !important;
}

/* Input Field Styling */
.input-field {
    width: 100% !important;
    height: 42px !important;
    padding: 0.75rem 1rem !important;
    border: 1px solid #E5E7EB !important;
    border-radius: 0.375rem !important;
    background-color: #FFFFFF !important;
    font-size: 0.95rem !important;
    transition: border-color 0.15s ease-in-out !important;
}

.input-field:focus {
    border-color: #3B82F6 !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 0 0.5rem !important;
    }
    
    .form-section {
        padding: 1.5rem !important;
    }
}

/* Reduce map height */
.interactive-map {
    height: 200px !important; /* Reduced from 300px */
}

/* Adjust spacing between form elements */
.input-group {
    margin-bottom: 0.25rem !important;
}

/* Adjust section title margins */
.section-title {
    margin-bottom: 1rem !important;
    padding-bottom: 1rem !important;
}

.section-subtitle {
    margin: -0.5rem 0 1.5rem 0 !important;
}

/* Adjust map container spacing */
.map-container {
    margin-top: 1rem !important;
}

.map-search-box {
    padding: 0.5rem !important;
}

.map-search-input,
.map-search-btn {
    padding: 0.5rem 0.75rem !important;
    height: 36px !important;
}

.map-controls {
    padding: 0.5rem !important;
}

.map-control-btn {
    padding: 0.4rem 0.75rem !important;
    height: 32px !important;
}

/* Adjust form actions spacing */
.form-actions {
    margin-top: 1.5rem !important;
    padding-top: 1rem !important;
}

/* Adjust button heights */
.btn {
    padding: 0.6rem 1.5rem !important;
    height: 40px !important;
}

/* Adjust progress steps */
.progress-steps {
    padding: 2rem 2rem 2.5rem !important;
}

.step-circle {
    width: 50px !important;
    height: 50px !important;
    font-size: 1.1rem !important;
}

.step-label {
    top: 65px !important;
    font-size: 0.85rem !important;
}

.step-connector {
    top: 25px !important;
    height: 4px !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    :root {
        --navbar-height: 60px;
        --contact-banner-height: 40px;
    }

    .form-section {
        padding: 1.5rem !important;
    }
    
    .progress-steps {
        padding: 1.5rem 1rem 2rem !important;
    }
    
    .step-circle {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }
    
    .step-label {
        top: 55px !important;
        font-size: 0.8rem !important;
    }
    
    .step-connector {
        top: 20px !important;
    }
    
    .interactive-map {
        height: 180px !important;
    }
}

@media (max-width: 480px) {
    :root {
        --navbar-height: 50px;
        --contact-banner-height: 35px;
    }

    .form-section {
        padding: 1rem !important;
    }
    
    .progress-steps {
        padding: 1rem 0.5rem 1.5rem !important;
    }
    
    .step-circle {
        width: 35px !important;
        height: 35px !important;
        font-size: 0.9rem !important;
    }
    
    .step-label {
        top: 50px !important;
        font-size: 0.75rem !important;
    }
    
    .step-connector {
        top: 17px !important;
    }
    
    .interactive-map {
        height: 160px !important;
    }
} 