/* ===== Get a Quote Page ===== */

/* Breadcrumb text colors, fixed for the dark navy background used on this
   page - fssai-breadcrumb-bar's default link color is an orange meant for
   a light background, which clashed badly against navy. Scoped to
   .quote-breadcrumb so no other page using fssai-breadcrumb-bar is affected. */
/* Root cause: this page never loads fssai-page.css, which is where the
   .fssai-breadcrumb-bar .title-manu horizontal layout normally comes
   from. Without it, the <li> elements fall back to the browser's default
   block-level behavior and stack vertically. This makes the breadcrumb
   fully self-contained instead of depending on a file this page doesn't
   load. */
.quote-breadcrumb .title-manu{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.quote-breadcrumb .title-manu li{
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
}

.quote-breadcrumb .title-manu a {
    color: #ffffff !important;
    text-shadow: none !important;
    filter: none !important;
    -webkit-text-stroke: 0 !important;
}

.quote-breadcrumb .title-manu a:hover {
    color: #17a4e9 !important;
}

.quote-breadcrumb .title-manu li {
    color: rgba(255, 255, 255, 0.55) !important;
    text-shadow: none !important;
    filter: none !important;
    -webkit-text-stroke: 0 !important;
}

.quote-breadcrumb h1 {
    text-shadow: none !important;
    filter: none !important;
    -webkit-text-stroke: 0 !important;
    color: #ffffff !important;
}

.quote-page-section {
    padding: 70px 0;
    background: #f9fbfd;
}

.quote-page-wrap {
    display: flex;
    gap: 30px;
    max-width: 950px;
    margin: 0 auto;
    align-items: stretch;
}

.quote-page-panel {
    flex: 1 1 62%;
    background: #fff;
    border-radius: 14px;
    padding: 45px 40px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
    border-top: 4px solid #17a4e9;
}

.quote-page-panel h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
}

.quote-page-panel > p {
    font-size: 14.5px;
    color: #666;
    line-height: 1.7;
    margin: 0 0 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eef2f6;
}

.quote-page-panel input[type="text"],
.quote-page-panel input[type="email"] {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 13px 16px;
    font-size: 14px;
    font-family: inherit;
    color: #333;
    background: #fbfcfe;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.quote-breadcrumb .title-manu {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-direction: row !important;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
}

.quote-page-panel textarea {
    width: 100%;
    min-height: 150px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 13px 16px;
    font-size: 14px;
    font-family: inherit;
    color: #333;
    line-height: 1.6;
    resize: vertical;
    background: #fbfcfe;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.quote-page-panel input::placeholder,
.quote-page-panel textarea::placeholder {
    color: #999;
}

.quote-page-panel input:focus,
.quote-page-panel textarea:focus {
    outline: none;
    border-color: #17a4e9;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(23, 164, 233, 0.12);
}

.quote-page-btn {
    background: linear-gradient(135deg, #17a4e9, #0f7fbf);
    border: none;
    border-radius: 8px;
    padding: 14px 34px;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 20px rgba(23, 164, 233, 0.3);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.quote-page-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(23, 164, 233, 0.4);
}

/* Side call-out panel */
.quote-page-info {
    flex: 1 1 38%;
    background: #0d1b2a;
    border-radius: 14px;
    padding: 45px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.quote-page-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(23, 164, 233, 0.15);
    color: #17a4e9;
    font-size: 26px;
    margin-bottom: 20px;
}

.quote-page-info h6 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}

.quote-page-info p {
    font-size: 13.5px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin: 0 0 22px;
}

.quote-page-phone {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #17a4e9;
    text-decoration: none;
    border: 1px solid rgba(23, 164, 233, 0.4);
    border-radius: 8px;
    padding: 12px 24px;
    transition: background 0.2s ease, color 0.2s ease;
}

.quote-page-phone:hover {
    background: #17a4e9;
    color: #fff;
}

@media (max-width: 767px) {
    .quote-page-wrap {
        flex-direction: column;
    }
    .quote-page-panel {
        padding: 34px 26px;
    }
    .quote-page-info {
        padding: 34px 26px;
    }
}
