/* Quote Page Styles - Premium UI */
.quote-page-section {
    padding-top: 240px;
    /* Increased to clear the floating header */
    padding-bottom: 100px;
    background-color: #F8FAFC;
    background-image: radial-gradient(#E5E7EB 1px, transparent 1px);
    background-size: 32px 32px;
}

.quote-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
}

/* LEFT: FORM CONTAINER */
.quote-form-container {
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.quote-header {
    margin-bottom: 60px;
    position: relative;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.quote-header h1 {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin-bottom: 16px;
    line-height: 1.1;
}

.quote-header p {
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* FORM ELEMENTS */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.form-group label span {
    color: #EF4444;
    margin-left: 4px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    color: var(--color-text);
    background: #FAFAFA;
    transition: all 0.2s ease;
    appearance: none;
}

/* Custom Select Arrow */
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236B7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(150, 114, 89, 0.1);
}

/* SUBMIT BUTTON */
.btn-submit {
    width: 100%;
    background: var(--color-primary);
    color: white;
    font-weight: 700;
    font-size: 16px;
    padding: 18px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px -5px rgba(150, 114, 89, 0.4);
    margin-top: 10px;
    letter-spacing: 0.02em;
}

.btn-submit:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(150, 114, 89, 0.5);
}

.btn-submit:active {
    transform: translateY(0);
}

/* RIGHT: CONTACT CARDS */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: sticky;
    top: 120px;
    /* Adjusted sticky top */
}

.contact-card-dark {
    background: linear-gradient(145deg, #1F2937, #111827);
    color: white;
    padding: 48px 32px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px -4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-card-dark:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -4px rgba(0, 0, 0, 0.25);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(150, 114, 89, 0.1);
    border: 1px solid rgba(150, 114, 89, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.contact-card-dark:hover .contact-card-icon {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.contact-card-icon svg {
    width: 32px;
    height: 32px;
}

.contact-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.contact-card-text {
    color: #9CA3AF;
    margin-bottom: 8px;
    font-size: 15px;
}

.contact-card-value {
    font-size: 22px;
    font-weight: 800;
    color: white;
    margin-top: 4px;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .quote-page-section {
        padding-top: 200px;
        /* Still needs space on mobile */
    }

    .quote-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .quote-header h1 {
        font-size: 32px;
    }

    .contact-cards {
        position: static;
    }
}