/* Request Page - Dark Theme */
/* Inherits variables from home.css */

.request-page {
    background-color: var(--primary-bg);
}

/* Compact Overrides for Standard Sections */
section.service-hero {
    padding: 3rem 1rem 1.5rem;
    /* Reduced from 6rem 2rem 4rem */
    min-height: auto;
}

section.service-list-section {
    padding: 0 1rem 3rem;
    /* Reduced from 2rem 2rem 6rem */
    background: transparent;
}

.form-container {
    width: 100%;
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
}

.form-top-title {
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.form-main-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.request-card {
    background: #242866;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.input-group input,
.input-group select {
    width: 100%;
    background: rgba(17, 24, 39, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s;
}

.input-group input:focus,
.input-group select:focus {
    border-color: var(--accent-color);
    background: rgba(17, 24, 39, 0.8);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

/* Custom Select Arrow */
.input-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' 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 1rem center;
    background-size: 1em;
}

/* Date Input Styling */
.input-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.6;
    cursor: pointer;
}

.date-time-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.submit-request-btn {
    width: 100%;
    background: var(--accent-color);
    color: #1a202c;
    border: none;
    padding: 1rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
    margin-top: 1rem;
}

.submit-request-btn:hover {
    background: #fbbf24;
    transform: translateY(-2px);
}

.form-divider {
    border: 0;
    height: 1px;
    background: var(--border-color);
    margin: 2rem 0;
}

/* Trust Icons */
.trust-icons {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.trust-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.trust-item span {
    font-size: 1.5rem;
    display: block;
}

.trust-item p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin: 0;
}

/* Container for the entire section */
.contact-section {
    background-color: var(--primary-bg);
    /* Ensure this is a dark navy #0a192f or similar */
    padding: 4rem 2rem;
    text-align: center;
}

.form-main-title {
    color: white;
    margin-bottom: 3rem;
    font-size: 1.5rem;
}

/* Flex container to align the 3 cards in a row */
.contact-cards-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    /* Allows stacking on mobile */
    max-width: 1200px;
    margin: 0 auto 3rem auto;
}

/* Individual Card Styling */
.contact-card {
    border: 2px solid var(--accent-color);
    /* Orange border */
    border-radius: 20px;
    padding: 3rem 2rem;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.card-info h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.card-info p {
    color: #cbd5e1;
    /* Light grey text */
    line-height: 1.6;
    margin: 0;
}

.highlight {
    color: #fbbf24;
    /* Orange/Gold text for phone/email */
    font-weight: 600;
}

/* Map Styling */
.map-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.map-container {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: #242866;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {

    .request-page,
    .contact-section {
        padding: 1.5rem 1rem;
        /* Tighter page padding */
    }

    .contact-cards-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .contact-card {
        width: 100%;
        min-width: 0;
        /* Allow shrinking */
        padding: 1.5rem;
    }

    .form-main-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .request-card {
        padding: 1rem;
    }

    .input-group {
        margin-bottom: 0.75rem;
    }

    .input-group label {
        margin-bottom: 0.25rem;
        font-size: 0.85rem;
    }

    .input-group input,
    .input-group select {
        /* Keep standard size for touch targets */
        font-size: 1rem;
    }

    .date-time-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-main-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        /* Reduced margin */
    }

    .form-top-title {
        margin-bottom: 0.5rem;
    }
}