/* Reuse Header Styles */
.page-header {
    height: 300px;
    background-image: url('../assets/images/hero-ship.png');
    /* Ship or Plane */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    margin-top: calc(var(--utility-bar-height) + var(--header-height));
}

.page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    justify-content: center;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Quote Section */
.quote-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.quote-container {
    max-width: 800px;
    margin: -100px auto 0;
    /* Overlap header */
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 10;
    border-top: 5px solid var(--secondary-color);
    overflow: hidden;
}

/* Tabs */
.quote-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
}

.quote-tab {
    flex: 1;
    padding: 20px;
    border: none;
    background: none;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.quote-tab:hover {
    background: #e9ecef;
    color: var(--primary-color);
}

.quote-tab.active {
    background: var(--white);
    color: var(--primary-color);
    border-bottom: 3px solid var(--secondary-color);
    /* Just visually connects */
    position: relative;
}

.quote-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    /* Cover border-bottom of container */
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--white);
}

/* Form Content */
.quote-content {
    display: none;
    padding: 40px;
}

.quote-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.three-col {
    grid-template-columns: 1fr 1fr 1fr;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    /* Sharper */
    border-radius: 4px;
    font-size: 1rem;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
}

.btn-block {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Result Box */
.quote-result {
    margin-top: 30px;
    background: #f0f4f8;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.result-header .price {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.disclaimer {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Trust Signals */
.trust-signals {
    margin-top: 30px;
    /* Outside container */
    display: flex;
    justify-content: center;
    gap: 40px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-item i {
    color: #27ae60;
    /* Green fits for 'check' */
}

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

    .form-row,
    .three-col {
        grid-template-columns: 1fr;
    }

    .trust-signals {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .quote-container {
        margin-top: -60px;
    }
}