/* style.css */
:root {
    --primary-color: #0F4C75; /* Deep Blue - Trust/Security */
    --primary-dark: #1B262C; /* Very Dark Blue */
    --secondary-color: #3282B8; /* Lighter Blue */
    --accent-color: #BBE1FA; /* Very Light Blue */
    --bg-light: #F8F9FA;
    --text-dark: #333333;
    --success-color: #28A745;
    --danger-color: #DC3545;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(27, 38, 44, 0.9) 0%, rgba(15, 76, 117, 0.9) 100%), url('../img/hero-bg.png') center/cover no-repeat;
    min-height: 80vh; /* High impact on mobile */
    padding: 60px 15px;
    position: relative;
}

.hero-quote {
    font-size: 1.1rem;
    max-width: 800px;
    line-height: 1.6;
    color: #E0E0E0;
    border-left: 4px solid var(--secondary-color);
    padding-left: 15px;
    text-align: left;
}

.btn-cta {
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50px;
    padding: 15px 30px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-cta:hover {
    background-color: white;
    color: var(--primary-dark);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Trust Section */
.trust-section {
    background-color: white;
    position: relative;
    z-index: 10;
    margin-top: -50px; /* Overlap effect */
    border-radius: 20px 20px 0 0;
    padding-top: 60px;
}

.trust-card {
    transition: transform 0.3s ease;
    border-bottom: 4px solid transparent;
}

.trust-card:hover {
    transform: translateY(-5px);
    border-bottom: 4px solid var(--secondary-color);
}

.trust-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.text-primary {
    color: var(--primary-color) !important;
}
.bg-primary-dark {
    background-color: var(--primary-dark) !important;
}

/* Form Section */
.form-section {
    background-color: var(--bg-light);
}

.form-card {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.map-container {
    height: 300px; /* Good height for mobile */
    width: 100%;
    z-index: 1; /* Keep leaflet controls below modals */
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
    color: white;
}

.btn-submit:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}

/* Media Queries for Desktop */
@media (min-width: 768px) {
    .hero-quote {
        font-size: 1.4rem;
    }
    .map-container {
        height: 400px;
    }
}
