/**
 * TurbineWorks Custom Theme
 * A consolidated stylesheet containing custom styling for all pages
 */

/* Canvas for animations */
#animation-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.3;
}

/* Color palette */
:root {
    --primary-color: #ffc800;
    --accent-color: #ffc800;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
}

/* Base styling adjustments */
body {
    padding-top: 76px;
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-color);
}

/* Navbar styling */
#mainNav {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: transparent;
    transition: padding-top 0.3s ease-in-out, padding-bottom 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

#mainNav .navbar-brand {
    transition: all 0.3s ease-in-out;
}

#mainNav .navbar-brand img {
    height: 2.5rem;
    transition: height 0.3s ease-in-out;
}

#mainNav .nav-link {
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.0625em;
    padding: 0.75rem 0;
    margin: 0 1rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

#mainNav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

#mainNav .nav-link:hover {
    color: white;
}

#mainNav .nav-link:hover::after {
    width: 100%;
}

#mainNav.navbar-shrink {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    background-color: var(--dark-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#mainNav.navbar-shrink .navbar-brand img {
    height: 2rem;
}

@media (max-width: 992px) {
    #mainNav {
        background-color: var(--dark-color);
    }
    
    #mainNav .nav-link {
        margin: 0.5rem 0;
    }
    
    #mainNav .nav-link::after {
        display: none;
    }
}

/* Header styling */
header.masthead {
    padding-top: 10.5rem;
    padding-bottom: 7rem;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

header.masthead::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 1;
}

header.masthead .container {
    position: relative;
    z-index: 2;
}

.masthead-heading {
    font-size: 3.8rem !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    color: #fff !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.masthead-subheading-alt {
    font-size: 1.8rem !important;
    font-weight: 400 !important;
    margin-bottom: 2.5rem !important;
    color: rgba(255,255,255,0.9) !important;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2) !important;
}

/* Section styling */
.page-section {
    padding: 7rem 0;
    position: relative;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3.5rem;
    position: relative;
    display: inline-block;
    color: var(--dark-color);
    padding-bottom: 1.5rem;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    margin-bottom: 10px;
}

.section-subheading {
    margin-top: 30px;
    margin-bottom: 4rem;
    font-style: italic;
    font-weight: 400;
    font-size: 1.2rem;
}

/* Services section styling */
.service-item {
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-item .fa-stack {
    transition: transform 0.3s ease;
}

.service-item:hover .fa-stack {
    transform: scale(1.15);
}

/* Buttons styling */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-color);
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(255, 200, 0, 0.25);
}

.btn-primary:hover {
    background-color: #e6b400;
    border-color: #e6b400;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 200, 0, 0.35);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: transparent;
    transition: all 0.3s ease;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 6px;
}

.btn-outline-primary:hover {
    color: var(--dark-color);
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 200, 0, 0.25);
}

/* Button warning - ensure consistency with primary */
.btn-warning {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-color);
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(255, 200, 0, 0.25);
}

.btn-warning:hover {
    background-color: #e6b400;
    border-color: #e6b400;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 200, 0, 0.35);
}

.btn-outline-warning {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: transparent;
    transition: all 0.3s ease;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 6px;
}

.btn-outline-warning:hover {
    color: var(--dark-color);
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 200, 0, 0.25);
}

/* About/Timeline section styling */
.timeline-image {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border: 7px solid var(--light-gray);
    transition: transform 0.3s ease;
}

.timeline-image:hover {
    transform: scale(1.05);
}

.timeline-panel {
    transition: transform 0.3s ease;
}

.timeline-panel:hover {
    transform: translateY(-5px);
}

/* Contact form styling */
#contact {
    background-color: #f8f9fa;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.form-control {
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
    background-color: #f9fafc;
}

.form-control:focus {
    border-color: var(--primary-color);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 200, 0, 0.15);
}

/* Footer styling */
.footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 3rem 0;
}

.footer a {
    color: rgba(255,255,255,0.8);
    transition: color 0.2s ease;
}

.footer a:hover {
    color: #fff;
    text-decoration: none;
}

/* Team section styling */
.team-member {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem;
    border-radius: 8px;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.team-member img {
    width: 14rem;
    height: 14rem;
    border: 0.5rem solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.05);
}

/* Quality section styling */
.quality-item {
    padding: 2rem;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    text-align: center;
}

.quality-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Animations and transitions */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* List styling */
.engine-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.engine-list li {
    margin: 0.5rem 1rem;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 200, 0, 0.1);
    border-radius: 4px;
    font-weight: 600;
    color: var(--dark-color);
    transition: all 0.2s ease;
}

.engine-list li:hover {
    background-color: rgba(255, 200, 0, 0.2);
    transform: translateY(-2px);
}

/* Process timeline styling (from consignments & sell pages) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

/* Terms navigation styling (from terms.html and careers.html) */
.terms-nav {
    position: sticky;
    top: 120px;
    height: fit-content;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.terms-nav ul {
    list-style: none;
    padding: 0;
}

.terms-nav li {
    margin-bottom: 10px;
}

.terms-nav a {
    color: #212529;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.terms-nav a:hover, 
.terms-nav a.active {
    color: #e0a800;
    text-decoration: underline;
}

.terms-section {
    scroll-margin-top: 120px;
    padding: 20px 0;
}

.terms-section h4 {
    margin-top: 2rem;
    color: #212529;
    border-bottom: 3px solid #e0a800;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .masthead-heading {
        font-size: 2.8rem !important;
    }
    
    .masthead-subheading-alt {
        font-size: 1.5rem !important;
    }
    
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

@media (max-width: 768px) {
    .page-section {
        padding: 4rem 0;
    }
    
    .section-heading {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    header.masthead {
        padding-top: 8rem;
        padding-bottom: 5rem;
    }
    
    .masthead-heading {
        font-size: 2.3rem !important;
    }
    
    .masthead-subheading-alt {
        font-size: 1.3rem !important;
    }
    
    .card-body ol {
        columns: 1;
    }
}

/* Print styles */
@media print {
    .terms-nav {
        display: none;
    }
    
    .terms-section {
        display: block !important;
    }
    
    .navbar {
        position: static;
    }
}

/* Common button settings for consistency */
.btn {
    font-family: "Montserrat", sans-serif;
    margin: 0.5rem 0.25rem;
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

/* Fix for button inside anchor issue */
a > button {
    display: inline-block !important;
    width: auto !important;
    margin: 0 !important;
    overflow: visible !important;
}

/* Contact Information Styling with improved readability */
.contact-info-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-color);
}

.contact-info-item h4 {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    font-weight: 600;
    color: #ffffff !important;
}

.contact-info-item h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    margin-bottom: 5px;
}

.contact-info-item p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1rem;
}

.contact-info-item strong {
    color: #ffffff !important;
    font-weight: 700;
}

.contact-info-item a {
    font-weight: 600;
    transition: all 0.2s ease;
    text-decoration: none;
    color: var(--primary-color) !important;
}

.contact-info-item a:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

/* Quality section specific spacing */
#quality-heading {
    margin-bottom: 4rem;
}

/* Benefits section styling for sell.html */
.benefits-section {
    background-color: var(--light-color);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 25%;
    height: 100%;
    background-color: rgba(255, 200, 0, 0.03);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    z-index: 1;
}

.benefit-box {
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    z-index: 2;
}

.benefit-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.benefit-box:hover .benefit-icon {
    transform: scale(1.15);
}

.benefit-box:nth-child(1) .benefit-icon {
    color: var(--primary-color);
    background-color: rgba(255, 200, 0, 0.1);
}

.benefit-box:nth-child(2) .benefit-icon {
    color: var(--primary-color);
    background-color: rgba(255, 200, 0, 0.1);
}

.benefit-box:nth-child(3) .benefit-icon {
    color: var(--primary-color);
    background-color: rgba(255, 200, 0, 0.1);
}

.benefit-box:nth-child(4) .benefit-icon {
    color: var(--primary-color);
    background-color: rgba(255, 200, 0, 0.1);
}

.benefit-title {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.35rem;
    color: var(--dark-color);
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
/**
 * TurbineWorks Custom Theme
 * A consolidated stylesheet containing custom styling for all pages
 */

/* Canvas for animations */
#animation-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.3;
}

/* Color palette */
:root {
    --primary-color: #ffc800;
    --accent-color: #ffc800;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
}

/* Base styling adjustments */
body {
    padding-top: 76px;
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-color);
}

/* Navbar styling */
#mainNav {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: transparent;
    transition: padding-top 0.3s ease-in-out, padding-bottom 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

#mainNav .navbar-brand {
    transition: all 0.3s ease-in-out;
}

#mainNav .navbar-brand img {
    height: 2.5rem;
    transition: height 0.3s ease-in-out;
}

#mainNav .nav-link {
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.0625em;
    padding: 0.75rem 0;
    margin: 0 1rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

#mainNav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

#mainNav .nav-link:hover {
    color: white;
}

#mainNav .nav-link:hover::after {
    width: 100%;
}

#mainNav.navbar-shrink {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    background-color: var(--dark-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#mainNav.navbar-shrink .navbar-brand img {
    height: 2rem;
}

@media (max-width: 992px) {
    #mainNav {
        background-color: var(--dark-color);
    }
    
    #mainNav .nav-link {
        margin: 0.5rem 0;
    }
    
    #mainNav .nav-link::after {
        display: none;
    }
}

/* Header styling */
header.masthead {
    padding-top: 10.5rem;
    padding-bottom: 7rem;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

header.masthead::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 1;
}

header.masthead .container {
    position: relative;
    z-index: 2;
}

.masthead-heading {
    font-size: 3.8rem !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    color: #fff !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.masthead-subheading-alt {
    font-size: 1.8rem !important;
    font-weight: 400 !important;
    margin-bottom: 2.5rem !important;
    color: rgba(255,255,255,0.9) !important;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2) !important;
}

/* Section styling */
.page-section {
    padding: 7rem 0;
    position: relative;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3.5rem;
    position: relative;
    display: inline-block;
    color: var(--dark-color);
    padding-bottom: 1.5rem;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    margin-bottom: 10px;
}

.section-subheading {
    margin-top: 30px;
    margin-bottom: 4rem;
    font-style: italic;
    font-weight: 400;
    font-size: 1.2rem;
}

/* Services section styling */
.service-item {
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-item .fa-stack {
    transition: transform 0.3s ease;
}

.service-item:hover .fa-stack {
    transform: scale(1.15);
}

/* Buttons styling */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-color);
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(255, 200, 0, 0.25);
}

.btn-primary:hover {
    background-color: #e6b400;
    border-color: #e6b400;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 200, 0, 0.35);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: transparent;
    transition: all 0.3s ease;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 6px;
}

.btn-outline-primary:hover {
    color: var(--dark-color);
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 200, 0, 0.25);
}

/* Button warning - ensure consistency with primary */
.btn-warning {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-color);
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(255, 200, 0, 0.25);
}

.btn-warning:hover {
    background-color: #e6b400;
    border-color: #e6b400;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 200, 0, 0.35);
}

.btn-outline-warning {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: transparent;
    transition: all 0.3s ease;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 6px;
}

.btn-outline-warning:hover {
    color: var(--dark-color);
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 200, 0, 0.25);
}

/* About/Timeline section styling */
.timeline-image {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border: 7px solid var(--light-gray);
    transition: transform 0.3s ease;
}

.timeline-image:hover {
    transform: scale(1.05);
}

.timeline-panel {
    transition: transform 0.3s ease;
}

.timeline-panel:hover {
    transform: translateY(-5px);
}

/* Contact form styling */
#contact {
    background-color: #f8f9fa;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.form-control {
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
    background-color: #f9fafc;
}

.form-control:focus {
    border-color: var(--primary-color);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 200, 0, 0.15);
}

/* Footer styling */
.footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 3rem 0;
}

.footer a {
    color: rgba(255,255,255,0.8);
    transition: color 0.2s ease;
}

.footer a:hover {
    color: #fff;
    text-decoration: none;
}

/* Team section styling */
.team-member {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem;
    border-radius: 8px;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.team-member img {
    width: 14rem;
    height: 14rem;
    border: 0.5rem solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.05);
}

/* Quality section styling */
.quality-item {
    padding: 2rem;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    text-align: center;
}

.quality-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Animations and transitions */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* List styling */
.engine-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.engine-list li {
    margin: 0.5rem 1rem;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 200, 0, 0.1);
    border-radius: 4px;
    font-weight: 600;
    color: var(--dark-color);
    transition: all 0.2s ease;
}

.engine-list li:hover {
    background-color: rgba(255, 200, 0, 0.2);
    transform: translateY(-2px);
}

/* Process timeline styling (from consignments & sell pages) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

/* Terms navigation styling (from terms.html and careers.html) */
.terms-nav {
    position: sticky;
    top: 120px;
    height: fit-content;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.terms-nav ul {
    list-style: none;
    padding: 0;
}

.terms-nav li {
    margin-bottom: 10px;
}

.terms-nav a {
    color: #212529;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.terms-nav a:hover, 
.terms-nav a.active {
    color: #e0a800;
    text-decoration: underline;
}

.terms-section {
    scroll-margin-top: 120px;
    padding: 20px 0;
}

.terms-section h4 {
    margin-top: 2rem;
    color: #212529;
    border-bottom: 3px solid #e0a800;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .masthead-heading {
        font-size: 2.8rem !important;
    }
    
    .masthead-subheading-alt {
        font-size: 1.5rem !important;
    }
    
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

@media (max-width: 768px) {
    .page-section {
        padding: 4rem 0;
    }
    
    .section-heading {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    header.masthead {
        padding-top: 8rem;
        padding-bottom: 5rem;
    }
    
    .masthead-heading {
        font-size: 2.3rem !important;
    }
    
    .masthead-subheading-alt {
        font-size: 1.3rem !important;
    }
    
    .card-body ol {
        columns: 1;
    }
}

/* Print styles */
@media print {
    .terms-nav {
        display: none;
    }
    
    .terms-section {
        display: block !important;
    }
    
    .navbar {
        position: static;
    }
}

/* Common button settings for consistency */
.btn {
    font-family: "Montserrat", sans-serif;
    margin: 0.5rem 0.25rem;
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

/* Fix for button inside anchor issue */
a > button {
    display: inline-block !important;
    width: auto !important;
    margin: 0 !important;
    overflow: visible !important;
}

/* Contact Information Styling with improved readability */
.contact-info-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-color);
}

.contact-info-item h4 {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    font-weight: 600;
    color: #ffffff !important;
}

.contact-info-item h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    margin-bottom: 5px;
}

.contact-info-item p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1rem;
}

.contact-info-item strong {
    color: #ffffff !important;
    font-weight: 700;
}

.contact-info-item a {
    font-weight: 600;
    transition: all 0.2s ease;
    text-decoration: none;
    color: var(--primary-color) !important;
}

.contact-info-item a:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

/* Quality section specific spacing */
#quality-heading {
    margin-bottom: 4rem;
}

/* Benefits section styling for sell.html */
.benefits-section {
    background-color: var(--light-color);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 25%;
    height: 100%;
    background-color: rgba(255, 200, 0, 0.03);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    z-index: 1;
}

.benefit-box {
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    z-index: 2;
}

.benefit-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.benefit-box:hover .benefit-icon {
    transform: scale(1.15);
}

.benefit-box:nth-child(1) .benefit-icon {
    color: var(--primary-color);
    background-color: rgba(255, 200, 0, 0.1);
}

.benefit-box:nth-child(2) .benefit-icon {
    color: var(--primary-color);
    background-color: rgba(255, 200, 0, 0.1);
}

.benefit-box:nth-child(3) .benefit-icon {
    color: var(--primary-color);
    background-color: rgba(255, 200, 0, 0.1);
}

.benefit-box:nth-child(4) .benefit-icon {
    color: var(--primary-color);
    background-color: rgba(255, 200, 0, 0.1);
}

.benefit-title {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.35rem;
    color: var(--dark-color);
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
/**
 * TurbineWorks Custom Theme
 * A consolidated stylesheet containing custom styling for all pages
 */

/* Canvas for animations */
#animation-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.3;
}

/* Color palette */
:root {
    --primary-color: #ffc800;
    --accent-color: #ffc800;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
}

/* Base styling adjustments */
body {
    padding-top: 76px;
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-color);
}

/* Navbar styling */
#mainNav {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: transparent;
    transition: padding-top 0.3s ease-in-out, padding-bottom 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

#mainNav .navbar-brand {
    transition: all 0.3s ease-in-out;
}

#mainNav .navbar-brand img {
    height: 2.5rem;
    transition: height 0.3s ease-in-out;
}

#mainNav .nav-link {
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.0625em;
    padding: 0.75rem 0;
    margin: 0 1rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

#mainNav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

#mainNav .nav-link:hover {
    color: white;
}

#mainNav .nav-link:hover::after {
    width: 100%;
}

#mainNav.navbar-shrink {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    background-color: var(--dark-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#mainNav.navbar-shrink .navbar-brand img {
    height: 2rem;
}

@media (max-width: 992px) {
    #mainNav {
        background-color: var(--dark-color);
    }
    
    #mainNav .nav-link {
        margin: 0.5rem 0;
    }
    
    #mainNav .nav-link::after {
        display: none;
    }
}

/* Header styling */
header.masthead {
    padding-top: 10.5rem;
    padding-bottom: 7rem;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

header.masthead::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 1;
}

header.masthead .container {
    position: relative;
    z-index: 2;
}

.masthead-heading {
    font-size: 3.8rem !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    color: #fff !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.masthead-subheading-alt {
    font-size: 1.8rem !important;
    font-weight: 400 !important;
    margin-bottom: 2.5rem !important;
    color: rgba(255,255,255,0.9) !important;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2) !important;
}

/* Section styling */
.page-section {
    padding: 7rem 0;
    position: relative;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3.5rem;
    position: relative;
    display: inline-block;
    color: var(--dark-color);
    padding-bottom: 1.5rem;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    margin-bottom: 10px;
}

.section-subheading {
    margin-top: 30px;
    margin-bottom: 4rem;
    font-style: italic;
    font-weight: 400;
    font-size: 1.2rem;
}

/* Services section styling */
.service-item {
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-item .fa-stack {
    transition: transform 0.3s ease;
}

.service-item:hover .fa-stack {
    transform: scale(1.15);
}

/* Buttons styling */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-color);
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(255, 200, 0, 0.25);
}

.btn-primary:hover {
    background-color: #e6b400;
    border-color: #e6b400;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 200, 0, 0.35);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: transparent;
    transition: all 0.3s ease;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 6px;
}

.btn-outline-primary:hover {
    color: var(--dark-color);
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 200, 0, 0.25);
}

/* Button warning - ensure consistency with primary */
.btn-warning {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-color);
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(255, 200, 0, 0.25);
}

.btn-warning:hover {
    background-color: #e6b400;
    border-color: #e6b400;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 200, 0, 0.35);
}

.btn-outline-warning {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: transparent;
    transition: all 0.3s ease;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 6px;
}

.btn-outline-warning:hover {
    color: var(--dark-color);
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 200, 0, 0.25);
}

/* About/Timeline section styling */
.timeline-image {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border: 7px solid var(--light-gray);
    transition: transform 0.3s ease;
}

.timeline-image:hover {
    transform: scale(1.05);
}

.timeline-panel {
    transition: transform 0.3s ease;
}

.timeline-panel:hover {
    transform: translateY(-5px);
}

/* Contact form styling */
#contact {
    background-color: #f8f9fa;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.form-control {
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
    background-color: #f9fafc;
}

.form-control:focus {
    border-color: var(--primary-color);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 200, 0, 0.15);
}

/* Footer styling */
.footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 3rem 0;
}

.footer a {
    color: rgba(255,255,255,0.8);
    transition: color 0.2s ease;
}

.footer a:hover {
    color: #fff;
    text-decoration: none;
}

/* Team section styling */
.team-member {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem;
    border-radius: 8px;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.team-member img {
    width: 14rem;
    height: 14rem;
    border: 0.5rem solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.05);
}

/* Quality section styling */
.quality-item {
    padding: 2rem;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    text-align: center;
}

.quality-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Animations and transitions */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* List styling */
.engine-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.engine-list li {
    margin: 0.5rem 1rem;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 200, 0, 0.1);
    border-radius: 4px;
    font-weight: 600;
    color: var(--dark-color);
    transition: all 0.2s ease;
}

.engine-list li:hover {
    background-color: rgba(255, 200, 0, 0.2);
    transform: translateY(-2px);
}

/* Process timeline styling (from consignments & sell pages) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

/* Terms navigation styling (from terms.html and careers.html) */
.terms-nav {
    position: sticky;
    top: 120px;
    height: fit-content;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.terms-nav ul {
    list-style: none;
    padding: 0;
}

.terms-nav li {
    margin-bottom: 10px;
}

.terms-nav a {
    color: #212529;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.terms-nav a:hover, 
.terms-nav a.active {
    color: #e0a800;
    text-decoration: underline;
}

.terms-section {
    scroll-margin-top: 120px;
    padding: 20px 0;
}

.terms-section h4 {
    margin-top: 2rem;
    color: #212529;
    border-bottom: 3px solid #e0a800;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .masthead-heading {
        font-size: 2.8rem !important;
    }
    
    .masthead-subheading-alt {
        font-size: 1.5rem !important;
    }
    
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

@media (max-width: 768px) {
    .page-section {
        padding: 4rem 0;
    }
    
    .section-heading {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    header.masthead {
        padding-top: 8rem;
        padding-bottom: 5rem;
    }
    
    .masthead-heading {
        font-size: 2.3rem !important;
    }
    
    .masthead-subheading-alt {
        font-size: 1.3rem !important;
    }
    
    .card-body ol {
        columns: 1;
    }
}

/* Print styles */
@media print {
    .terms-nav {
        display: none;
    }
    
    .terms-section {
        display: block !important;
    }
    
    .navbar {
        position: static;
    }
}

/* Common button settings for consistency */
.btn {
    font-family: "Montserrat", sans-serif;
    margin: 0.5rem 0.25rem;
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

/* Fix for button inside anchor issue */
a > button {
    display: inline-block !important;
    width: auto !important;
    margin: 0 !important;
    overflow: visible !important;
}

/* Contact Information Styling with improved readability */
.contact-info-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-color);
}

.contact-info-item h4 {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    font-weight: 600;
    color: #ffffff !important;
}

.contact-info-item h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    margin-bottom: 5px;
}

.contact-info-item p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1rem;
}

.contact-info-item strong {
    color: #ffffff !important;
    font-weight: 700;
}

.contact-info-item a {
    font-weight: 600;
    transition: all 0.2s ease;
    text-decoration: none;
    color: var(--primary-color) !important;
}

.contact-info-item a:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

/* Quality section specific spacing */
#quality-heading {
    margin-bottom: 4rem;
}

/* Benefits section styling for sell.html */
.benefits-section {
    background-color: var(--light-color);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 25%;
    height: 100%;
    background-color: rgba(255, 200, 0, 0.03);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    z-index: 1;
}

.benefit-box {
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    z-index: 2;
}

.benefit-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.benefit-box:hover .benefit-icon {
    transform: scale(1.15);
}

.benefit-box:nth-child(1) .benefit-icon {
    color: var(--primary-color);
    background-color: rgba(255, 200, 0, 0.1);
}

.benefit-box:nth-child(2) .benefit-icon {
    color: var(--primary-color);
    background-color: rgba(255, 200, 0, 0.1);
}

.benefit-box:nth-child(3) .benefit-icon {
    color: var(--primary-color);
    background-color: rgba(255, 200, 0, 0.1);
}

.benefit-box:nth-child(4) .benefit-icon {
    color: var(--primary-color);
    background-color: rgba(255, 200, 0, 0.1);
}

.benefit-title {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.35rem;
    color: var(--dark-color);
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
/**
 * TurbineWorks Custom Theme
 * A consolidated stylesheet containing custom styling for all pages
 */

/* Canvas for animations */
#animation-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.3;
}

/* Color palette */
:root {
    --primary-color: #ffc800;
    --accent-color: #ffc800;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
}

/* Base styling adjustments */
body {
    padding-top: 76px;
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-color);
}

/* Navbar styling */
#mainNav {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: transparent;
    transition: padding-top 0.3s ease-in-out, padding-bottom 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

#mainNav .navbar-brand {
    transition: all 0.3s ease-in-out;
}

#mainNav .navbar-brand img {
    height: 2.5rem;
    transition: height 0.3s ease-in-out;
}

#mainNav .nav-link {
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.0625em;
    padding: 0.75rem 0;
    margin: 0 1rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

#mainNav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

#mainNav .nav-link:hover {
    color: white;
}

#mainNav .nav-link:hover::after {
    width: 100%;
}

#mainNav.navbar-shrink {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    background-color: var(--dark-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#mainNav.navbar-shrink .navbar-brand img {
    height: 2rem;
}

@media (max-width: 992px) {
    #mainNav {
        background-color: var(--dark-color);
    }
    
    #mainNav .nav-link {
        margin: 0.5rem 0;
    }
    
    #mainNav .nav-link::after {
        display: none;
    }
}

/* Header styling */
header.masthead {
    padding-top: 10.5rem;
    padding-bottom: 7rem;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

header.masthead::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 1;
}

header.masthead .container {
    position: relative;
    z-index: 2;
}

.masthead-heading {
    font-size: 3.8rem !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    color: #fff !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.masthead-subheading-alt {
    font-size: 1.8rem !important;
    font-weight: 400 !important;
    margin-bottom: 2.5rem !important;
    color: rgba(255,255,255,0.9) !important;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2) !important;
}

/* Section styling */
.page-section {
    padding: 7rem 0;
    position: relative;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3.5rem;
    position: relative;
    display: inline-block;
    color: var(--dark-color);
    padding-bottom: 1.5rem;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    margin-bottom: 10px;
}

.section-subheading {
    margin-top: 30px;
    margin-bottom: 4rem;
    font-style: italic;
    font-weight: 400;
    font-size: 1.2rem;
}

/* Services section styling */
.service-item {
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-item .fa-stack {
    transition: transform 0.3s ease;
}

.service-item:hover .fa-stack {
    transform: scale(1.15);
}

/* Buttons styling */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-color);
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(255, 200, 0, 0.25);
}

.btn-primary:hover {
    background-color: #e6b400;
    border-color: #e6b400;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 200, 0, 0.35);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: transparent;
    transition: all 0.3s ease;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 6px;
}

.btn-outline-primary:hover {
    color: var(--dark-color);
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 200, 0, 0.25);
}

/* Button warning - ensure consistency with primary */
.btn-warning {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-color);
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(255, 200, 0, 0.25);
}

.btn-warning:hover {
    background-color: #e6b400;
    border-color: #e6b400;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 200, 0, 0.35);
}

.btn-outline-warning {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: transparent;
    transition: all 0.3s ease;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 6px;
}

.btn-outline-warning:hover {
    color: var(--dark-color);
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 200, 0, 0.25);
}

/* About/Timeline section styling */
.timeline-image {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border: 7px solid var(--light-gray);
    transition: transform 0.3s ease;
}

.timeline-image:hover {
    transform: scale(1.05);
}

.timeline-panel {
    transition: transform 0.3s ease;
}

.timeline-panel:hover {
    transform: translateY(-5px);
}

/* Contact form styling */
#contact {
    background-color: #f8f9fa;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.form-control {
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
    background-color: #f9fafc;
}

.form-control:focus {
    border-color: var(--primary-color);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 200, 0, 0.15);
}

/* Footer styling */
.footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 3rem 0;
}

.footer a {
    color: rgba(255,255,255,0.8);
    transition: color 0.2s ease;
}

.footer a:hover {
    color: #fff;
    text-decoration: none;
}

/* Team section styling */
.team-member {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem;
    border-radius: 8px;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.team-member img {
    width: 14rem;
    height: 14rem;
    border: 0.5rem solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.05);
}

/* Quality section styling */
.quality-item {
    padding: 2rem;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    text-align: center;
}

.quality-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Animations and transitions */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* List styling */
.engine-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.engine-list li {
    margin: 0.5rem 1rem;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 200, 0, 0.1);
    border-radius: 4px;
    font-weight: 600;
    color: var(--dark-color);
    transition: all 0.2s ease;
}

.engine-list li:hover {
    background-color: rgba(255, 200, 0, 0.2);
    transform: translateY(-2px);
}

/* Process timeline styling (from consignments & sell pages) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

/* Terms navigation styling (from terms.html and careers.html) */
.terms-nav {
    position: sticky;
    top: 120px;
    height: fit-content;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.terms-nav ul {
    list-style: none;
    padding: 0;
}

.terms-nav li {
    margin-bottom: 10px;
}

.terms-nav a {
    color: #212529;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.terms-nav a:hover, 
.terms-nav a.active {
    color: #e0a800;
    text-decoration: underline;
}

.terms-section {
    scroll-margin-top: 120px;
    padding: 20px 0;
}

.terms-section h4 {
    margin-top: 2rem;
    color: #212529;
    border-bottom: 3px solid #e0a800;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .masthead-heading {
        font-size: 2.8rem !important;
    }
    
    .masthead-subheading-alt {
        font-size: 1.5rem !important;
    }
    
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

@media (max-width: 768px) {
    .page-section {
        padding: 4rem 0;
    }
    
    .section-heading {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    header.masthead {
        padding-top: 8rem;
        padding-bottom: 5rem;
    }
    
    .masthead-heading {
        font-size: 2.3rem !important;
    }
    
    .masthead-subheading-alt {
        font-size: 1.3rem !important;
    }
    
    .card-body ol {
        columns: 1;
    }
}

/* Print styles */
@media print {
    .terms-nav {
        display: none;
    }
    
    .terms-section {
        display: block !important;
    }
    
    .navbar {
        position: static;
    }
}

/* Common button settings for consistency */
.btn {
    font-family: "Montserrat", sans-serif;
    margin: 0.5rem 0.25rem;
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

/* Fix for button inside anchor issue */
a > button {
    display: inline-block !important;
    width: auto !important;
    margin: 0 !important;
    overflow: visible !important;
}

/* Contact Information Styling with improved readability */
.contact-info-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-color);
}

.contact-info-item h4 {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    font-weight: 600;
    color: #ffffff !important;
}

.contact-info-item h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    margin-bottom: 5px;
}

.contact-info-item p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1rem;
}

.contact-info-item strong {
    color: #ffffff !important;
    font-weight: 700;
}

.contact-info-item a {
    font-weight: 600;
    transition: all 0.2s ease;
    text-decoration: none;
    color: var(--primary-color) !important;
}

.contact-info-item a:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

/* Quality section specific spacing */
#quality-heading {
    margin-bottom: 4rem;
}

/* Benefits section styling for sell.html */
.benefits-section {
    background-color: var(--light-color);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 25%;
    height: 100%;
    background-color: rgba(255, 200, 0, 0.03);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    z-index: 1;
}

.benefit-box {
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    z-index: 2;
}

.benefit-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.benefit-box:hover .benefit-icon {
    transform: scale(1.15);
}

.benefit-box:nth-child(1) .benefit-icon {
    color: var(--primary-color);
    background-color: rgba(255, 200, 0, 0.1);
}

.benefit-box:nth-child(2) .benefit-icon {
    color: var(--primary-color);
    background-color: rgba(255, 200, 0, 0.1);
}

.benefit-box:nth-child(3) .benefit-icon {
    color: var(--primary-color);
    background-color: rgba(255, 200, 0, 0.1);
}

.benefit-box:nth-child(4) .benefit-icon {
    color: var(--primary-color);
    background-color: rgba(255, 200, 0, 0.1);
}

.benefit-title {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.35rem;
    color: var(--dark-color);
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
/**
 * TurbineWorks Custom Theme
 * A consolidated stylesheet containing custom styling for all pages
 */

/* Canvas for animations */
#animation-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.3;
}

/* Color palette */
:root {
    --primary-color: #ffc800;
    --accent-color: #ffc800;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
}

/* Base styling adjustments */
body {
    padding-top: 76px;
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-color);
}

/* Navbar styling */
#mainNav {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: transparent;
    transition: padding-top 0.3s ease-in-out, padding-bottom 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

#mainNav .navbar-brand {
    transition: all 0.3s ease-in-out;
}

#mainNav .navbar-brand img {
    height: 2.5rem;
    transition: height 0.3s ease-in-out;
}

#mainNav .nav-link {
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.0625em;
    padding: 0.75rem 0;
    margin: 0 1rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

#mainNav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

#mainNav .nav-link:hover {
    color: white;
}

#mainNav .nav-link:hover::after {
    width: 100%;
}

#mainNav.navbar-shrink {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    background-color: var(--dark-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#mainNav.navbar-shrink .navbar-brand img {
    height: 2rem;
}

@media (max-width: 992px) {
    #mainNav {
        background-color: var(--dark-color);
    }
    
    #mainNav .nav-link {
        margin: 0.5rem 0;
    }
    
    #mainNav .nav-link::after {
        display: none;
    }
}

/* Header styling */
header.masthead {
    padding-top: 10.5rem;
    padding-bottom: 7rem;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

header.masthead::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 1;
}

header.masthead .container {
    position: relative;
    z-index: 2;
}

.masthead-heading {
    font-size: 3.8rem !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    color: #fff !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.masthead-subheading-alt {
    font-size: 1.8rem !important;
    font-weight: 400 !important;
    margin-bottom: 2.5rem !important;
    color: rgba(255,255,255,0.9) !important;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2) !important;
}

/* Section styling */
.page-section {
    padding: 7rem 0;
    position: relative;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3.5rem;
    position: relative;
    display: inline-block;
    color: var(--dark-color);
    padding-bottom: 1.5rem;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    margin-bottom: 10px;
}

.section-subheading {
    margin-top: 30px;
    margin-bottom: 4rem;
    font-style: italic;
    font-weight: 400;
    font-size: 1.2rem;
}

/* Services section styling */
.service-item {
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-item .fa-stack {
    transition: transform 0.3s ease;
}

.service-item:hover .fa-stack {
    transform: scale(1.15);
}

/* Buttons styling */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-color);
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(255, 200, 0, 0.25);
}

.btn-primary:hover {
    background-color: #e6b400;
    border-color: #e6b400;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 200, 0, 0.35);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: transparent;
    transition: all 0.3s ease;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 6px;
}

.btn-outline-primary:hover {
    color: var(--dark-color);
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 200, 0, 0.25);
}

/* Button warning - ensure consistency with primary */
.btn-warning {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-color);
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(255, 200, 0, 0.25);
}

.btn-warning:hover {
    background-color: #e6b400;
    border-color: #e6b400;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 200, 0, 0.35);
}

.btn-outline-warning {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: transparent;
    transition: all 0.3s ease;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 6px;
}

.btn-outline-warning:hover {
    color: var(--dark-color);
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 200, 0, 0.25);
}

/* About/Timeline section styling */
.timeline-image {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border: 7px solid var(--light-gray);
    transition: transform 0.3s ease;
}

.timeline-image:hover {
    transform: scale(1.05);
}

.timeline-panel {
    transition: transform 0.3s ease;
}

.timeline-panel:hover {
    transform: translateY(-5px);
}

/* Contact form styling */
#contact {
    background-color: #f8f9fa;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.form-control {
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
    background-color: #f9fafc;
}

.form-control:focus {
    border-color: var(--primary-color);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 200, 0, 0.15);
}

/* Footer styling */
.footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 3rem 0;
}

.footer a {
    color: rgba(255,255,255,0.8);
    transition: color 0.2s ease;
}

.footer a:hover {
    color: #fff;
    text-decoration: none;
}

/* Team section styling */
.team-member {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem;
    border-radius: 8px;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.team-member img {
    width: 14rem;
    height: 14rem;
    border: 0.5rem solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.05);
}

/* Quality section styling */
.quality-item {
    padding: 2rem;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    text-align: center;
}

.quality-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Animations and transitions */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* List styling */
.engine-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.engine-list li {
    margin: 0.5rem 1rem;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 200, 0, 0.1);
    border-radius: 4px;
    font-weight: 600;
    color: var(--dark-color);
    transition: all 0.2s ease;
}

.engine-list li:hover {
    background-color: rgba(255, 200, 0, 0.2);
    transform: translateY(-2px);
}

/* Process timeline styling (from consignments & sell pages) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

/* Terms navigation styling (from terms.html and careers.html) */
.terms-nav {
    position: sticky;
    top: 120px;
    height: fit-content;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.terms-nav ul {
    list-style: none;
    padding: 0;
}

.terms-nav li {
    margin-bottom: 10px;
}

.terms-nav a {
    color: #212529;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.terms-nav a:hover, 
.terms-nav a.active {
    color: #e0a800;
    text-decoration: underline;
}

.terms-section {
    scroll-margin-top: 120px;
    padding: 20px 0;
}

.terms-section h4 {
    margin-top: 2rem;
    color: #212529;
    border-bottom: 3px solid #e0a800;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .masthead-heading {
        font-size: 2.8rem !important;
    }
    
    .masthead-subheading-alt {
        font-size: 1.5rem !important;
    }
    
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

@media (max-width: 768px) {
    .page-section {
        padding: 4rem 0;
    }
    
    .section-heading {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    header.masthead {
        padding-top: 8rem;
        padding-bottom: 5rem;
    }
    
    .masthead-heading {
        font-size: 2.3rem !important;
    }
    
    .masthead-subheading-alt {
        font-size: 1.3rem !important;
    }
    
    .card-body ol {
        columns: 1;
    }
}

/* Print styles */
@media print {
    .terms-nav {
        display: none;
    }
    
    .terms-section {
        display: block !important;
    }
    
    .navbar {
        position: static;
    }
}

/* Common button settings for consistency */
.btn {
    font-family: "Montserrat", sans-serif;
    margin: 0.5rem 0.25rem;
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

/* Fix for button inside anchor issue */
a > button {
    display: inline-block !important;
    width: auto !important;
    margin: 0 !important;
    overflow: visible !important;
}

/* Contact Information Styling with improved readability */
.contact-info-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-color);
}

.contact-info-item h4 {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    font-weight: 600;
    color: #ffffff !important;
}

.contact-info-item h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    margin-bottom: 5px;
}

.contact-info-item p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1rem;
}

.contact-info-item strong {
    color: #ffffff !important;
    font-weight: 700;
}

.contact-info-item a {
    font-weight: 600;
    transition: all 0.2s ease;
    text-decoration: none;
    color: var(--primary-color) !important;
}

.contact-info-item a:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

/* Quality section specific spacing */
#quality-heading {
    margin-bottom: 4rem;
}

/* Benefits section styling for sell.html */
.benefits-section {
    background-color: var(--light-color);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 25%;
    height: 100%;
    background-color: rgba(255, 200, 0, 0.03);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    z-index: 1;
}

.benefit-box {
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    z-index: 2;
}

.benefit-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.benefit-box:hover .benefit-icon {
    transform: scale(1.15);
}

.benefit-box:nth-child(1) .benefit-icon {
    color: var(--primary-color);
    background-color: rgba(255, 200, 0, 0.1);
}

.benefit-box:nth-child(2) .benefit-icon {
    color: var(--primary-color);
    background-color: rgba(255, 200, 0, 0.1);
}

.benefit-box:nth-child(3) .benefit-icon {
    color: var(--primary-color);
    background-color: rgba(255, 200, 0, 0.1);
}

.benefit-box:nth-child(4) .benefit-icon {
    color: var(--primary-color);
    background-color: rgba(255, 200, 0, 0.1);
}

.benefit-title {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.35rem;
    color: var(--dark-color);
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
    animation: spin 60s linear infinite;
    opacity: 0.5;
    filter: contrast(120%) brightness(130%) drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

header.masthead .header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.85;
    z-index: 0;
}

header.masthead .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 20, 0.85) 0%, rgba(0, 0, 20, 0.5) 100%);
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Sell page specific masthead */
.sell-masthead {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Product types section background */
.product-types-gradient {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types-container {
    position: relative;
    z-index: 2;
}

/* Contact section text color */
.contact-section .lead,
.contact-section-lead {
    color: #ffffff;
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* Product types section styling */
.product-types {
    background: linear-gradient(to top, #e8e9ed, #ffffff);
    padding: 6rem 0;
}

.product-types .section-heading {
    color: #333333;
    text-shadow: none;
}

.product-types .lead {
    color: #555555;
    text-shadow: none;
}

.product-card {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.product-img i {
    color: white;
}

.product-img.engine-bg {
    background-color: rgba(0,20,50,0.7);
}

.product-img.apu-bg {
    background-color: rgba(112,66,20,0.7);
}

.product-img.airframe-bg {
    background-color: rgba(61,90,128,0.7);
}

.product-img.surplus-bg {
    background-color: rgba(46,91,54,0.7);
}

.product-content {
    padding: 1.8rem;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

/* ===== END SELL PAGE SPECIFIC STYLES ===== */

/* ===== COMMON ELEMENTS ACROSS PAGES ===== */

/* Custom divider styling */
.divider-primary {
    max-width: 100px;
    border-width: 3px;
    border-color: #ffc800;
    margin: 1rem 0;
}

.divider-centered {
    margin-left: auto;
    margin-right: auto;
}

/* Process pages common styling (repair/consignment) */
.process-timeline {
    position: relative;
    margin: 4rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffc800;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffc800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-title {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Process detail cards */
.process-details {
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #ffc800;
}

.process-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc800;
    display: inline-block;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
}

.process-card .step-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    float: left;
    margin-right: 1.5rem;
}

/* CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for process pages */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
}

/* ===== END COMMON ELEMENTS ACROSS PAGES ===== */

/* ===== MESSAGE SENT PAGE STYLES ===== */
.message-sent-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-sent-container h1 {
    color: #555;
    font-size: 2em;
    font-weight: 400;
    padding-top: 25px;
}

.message-sent-container p {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.message-sent-container .logo {
    padding-bottom: 20px;
}

.message-sent-container .description {
    padding-top: 20px;
}

.message-sent-container .email {
    padding-top: 35px;
}

.message-sent-container .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.message-sent-container .disclaimer a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 280px) {
    .message-sent-container p {
        width: 95%;
    }
    .message-sent-container h1 {
        font-size: 1.5em;
        margin: 0 0 0.3em;
    }
}
/* ===== END MESSAGE SENT PAGE STYLES ===== */

/* ===== SELL PAGE SPECIFIC STYLES ===== */
/* Engine fan animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header components */
header.masthead .engine-fan-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header.masthead .engine-fan {
    width: 1800px;
    height: 1800px;
    background: url('../assets/img/leap_engine_fan.png') no-repeat center center;
    background-size: contain;
   
/* Quote Section Styles */
.quote-section {
    background: #222222;
    padding: 6rem 0;
    color: #fff;
    position: relative;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/patterns/dot-pattern.png');
    opacity: 0.08;
    z-index: 1;
}

.quote-section .container {
    position: relative;
    z-index: 2;
}

.quote-section .section-heading {
    color: #fff;
    margin-bottom: 3rem;
}

.quote-content {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0 2rem;
}

.quote-content::before,
.quote-content::after {
    content: '" \;
 font-family: Georgia, serif;
 font-size: 4rem;
 color: rgba(255, 200, 0, 0.3);
 position: absolute;
 line-height: 1;
}

.quote-content::before {
 left: 0;
 top: -1rem;
}

.quote-content::after {
 right: 0;
 bottom: -2rem;
}

.quote-author {
 font-weight: 700;
 font-size: 1.1rem;
 color: var(--primary-color);
}

.testimonial-position {
 font-size: 0.9rem;
 color: rgba(255, 255, 255, 0.8);
}

.testimonial-avatar img {
 width: 60px;
 height: 60px;
 border: 3px solid var(--primary-color);
}

.carousel-indicators {
 margin-bottom: -3rem;
}

.carousel-indicators [data-bs-target] {
 background-color: var(--primary-color);
}

@media (max-width: 768px) {
 .quote-content {
 font-size: 1.2rem;
 padding: 0 1rem;
 }
 
 .quote-content::before,
 .quote-content::after {
 font-size: 3rem;
 }
}
/* Quote Section Styles */
.quote-section {
    background: #222222;
    padding: 6rem 0;
    color: #fff;
    position: relative;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/patterns/dot-pattern.png');
    opacity: 0.08;
    z-index: 1;
}

.quote-section .container {
    position: relative;
    z-index: 2;
}

.quote-section .section-heading {
    color: #fff;
    margin-bottom: 3rem;
}

.quote-content {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0 2rem;
}

.quote-content::before,
.quote-content::after {
    content: '"';
    font-family: Georgia, serif;
    font-size: 4rem;
    color: rgba(255, 200, 0, 0.3);
    position: absolute;
    line-height: 1;
}

.quote-content::before {
    left: 0;
    top: -1rem;
}

.quote-content::after {
    right: 0;
    bottom: -2rem;
}

.quote-author {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.testimonial-position {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-avatar img {
    width: 60px;
    height: 60px;
    border: 3px solid var(--primary-color);
}

.carousel-indicators {
    margin-bottom: -3rem;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--primary-color);
}

@media (max-width: 768px) {
    .quote-content {
        font-size: 1.2rem;
        padding: 0 1rem;
    }
    
    .quote-content::before,
    .quote-content::after {
        font-size: 3rem;
    }
} 
/* Adding custom styles for the sell page engine fan positioning */
.sell-masthead .engine-fan-container {
    justify-content: flex-end !important;
    padding-right: 10% !important;
}

/* Quote Section Styles */
.quote-section {
    background: #222222;
    padding: 6rem 0;
    color: #fff;
    position: relative;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none /*url('../assets/img/patterns/dot-pattern.png');
    opacity: 0.08;
    z-index: 1;
}

.quote-section .container {
    position: relative;
    z-index: 2;
}

.quote-section .section-heading {
    color: #fff;
    margin-bottom: 3rem;
}

.quote-content {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0 2rem;
}

.quote-content::before,
.quote-content::after {
    content: '"';
    font-family: Georgia, serif;
    font-size: 4rem;
    color: rgba(255, 200, 0, 0.3);
    position: absolute;
    line-height: 1;
}

.quote-content::before {
    left: 0;
    top: -1rem;
}

.quote-content::after {
    right: 0;
    bottom: -2rem;
}

.quote-author {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.testimonial-position {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-avatar img {
    width: 60px;
    height: 60px;
    border: 3px solid var(--primary-color);
}

.carousel-indicators {
    margin-bottom: -3rem;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--primary-color);
}

@media (max-width: 768px) {
    .quote-content {
        font-size: 1.2rem;
        padding: 0 1rem;
    }
    
    .quote-content::before,
    .quote-content::after {
        font-size: 3rem;
    }
} 
/* Specific positioning for the engine fan in the sell page */
.sell-masthead .engine-fan-container {
    display: flex;
    justify-content: flex-end !important;
    padding-right: 10% !important;
    align-items: center;
}
/* Specific rule for the engine fan only */
.sell-masthead .engine-fan-container {
    justify-content: flex-end !important;
    padding-right: 10% !important;
} 
