/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Colours */
:root {
    --primary: #7A8FA6;   /* Similar to RAL 5014 */
    --secondary: #4F5D6A; /* Similar to RAL 5008 */
    --white: #ffffff;
    --light-grey: #f5f5f5;
    --text: #222222;
}

html {
    scroll-behavior: smooth;
}
.product-card,
.quality-card {

    transition: 0.3s ease;

}


.product-card:hover,
.quality-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 15px 30px rgba(0,0,0,.15);

}
.product-card img,
.gallery-container img {

    transition: transform .4s ease;

}


.product-card:hover img,
.gallery-container img:hover {

    transform: scale(1.05);

}

/* Body */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--white);
    color: var(--text);
}/* Navigation */

.navbar {
    background: white;
    height: 120px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 60px;

    position: sticky;
    top: 0;

    box-shadow: 0 2px 10px rgba(0,0,0,.08);

    z-index: 1000;
}

.logo img {
    height: 105px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {

    text-decoration: none;

    color: var(--text);

    font-weight: 600;

    transition: .3s;
}

.nav-links a:hover {

    color: var(--primary);

}

.nav-icons {

    font-size: 24px;

    cursor: pointer;

}

.hero {
    width: 100%;
    height: 75vh;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* Shop Button */

.hero-button {
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

.shop-button {

    background: var(--primary);

    color: white;

    text-decoration: none;

    padding: 15px 45px;

    border-radius: 8px;

    font-size: 18px;

    font-weight: bold;

    transition: 0.3s;

}

.shop-button:hover {

    background: var(--secondary);

    transform: translateY(-3px);

}/* Welcome Section */

.welcome {

    max-width: 900px;

    margin: 80px auto;

    padding: 0 30px;

    text-align: center;

}


.welcome h2 {

    font-size: 42px;

    color: var(--secondary);

    margin-bottom: 25px;

}


.welcome p {

    font-size: 18px;

    line-height: 1.8;

    color: var(--text);

    margin-bottom: 20px;

}/* Featured Products */

.featured-products {

    padding: 80px 30px;

    background: var(--light-grey);

    text-align: center;

}


.featured-products h2 {

    font-size: 42px;

    color: var(--secondary);

    margin-bottom: 50px;

}


.product-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    max-width: 1200px;

    margin: auto;

}


.product-card {

    background: white;

    padding: 35px;

    border-radius: 12px;

    box-shadow: 0 5px 20px rgba(0,0,0,.08);

}


.product-card img {

    width: 100%;

    height: 250px;

    object-fit: contain;

    border-radius: 8px;

    background: #ffffff;

}

.product-card h3 {

    margin: 20px 0;

    color: var(--secondary);

}


.product-button {

    display: inline-block;

    background: var(--primary);

    color: white;

    padding: 12px 30px;

    border-radius: 8px;

    text-decoration: none;

    font-weight: bold;

}/* Why Choose Section */

.why-choose {

    padding: 80px 30px;

    text-align: center;

    background: white;

}


.why-choose h2 {

    font-size: 42px;

    color: var(--secondary);

    margin-bottom: 50px;

}


.features-grid {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

}


.feature-card {

    padding: 30px;

    background: var(--light-grey);

    border-radius: 12px;

    transition: 0.3s;

}


.feature-card:hover {

    transform: translateY(-5px);

}


.feature-card h3 {

    color: var(--secondary);

    margin-bottom: 15px;

}


.feature-card p {

    line-height: 1.7;

}
/* Gallery */

.gallery {

    padding: 80px 30px;

    background: var(--light-grey);

    text-align: center;

}


.gallery h2 {

    font-size: 42px;

    color: var(--secondary);

    margin-bottom: 40px;

}


.gallery-container {

    display: flex;

    gap: 25px;

    overflow-x: auto;

    scroll-snap-type: x mandatory;

    max-width: 1200px;

    margin: auto;

    padding-bottom: 20px;

}


.gallery-container img {

    width: 350px;

    height: 250px;

    object-fit: cover;

    border-radius: 12px;

    scroll-snap-align: start;

    flex-shrink: 0;

}/* Gallery */
/* Reviews */

.reviews {

    padding: 80px 30px;

    background: white;

    text-align: center;

}


.reviews h2 {

    font-size: 42px;

    color: var(--secondary);

    margin-bottom: 50px;

}


.reviews-grid {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}


.review-card {

    background: var(--light-grey);

    padding: 35px;

    border-radius: 12px;

}


.stars {

    color: #D4AF37;

    font-size: 28px;

    margin-bottom: 20px;

}


.review-card p {

    line-height: 1.7;

    margin-bottom: 20px;

}


.review-card h3 {

    color: var(--secondary);

    }

/* Facebook Section */

.facebook {

    padding: 80px 30px;

    background: var(--light-grey);

    text-align: center;

}


.facebook h2 {

    font-size: 42px;

    color: var(--secondary);

    margin-bottom: 40px;

}


.facebook-post {

    max-width: 500px;

    margin: auto;

    background: white;

    border-radius: 12px;

    overflow: hidden;

    box-shadow: 0 5px 20px rgba(0,0,0,.08);

}


.facebook-post img {

    width: 100%;

    display: block;

}


.facebook-post p {

    padding: 25px;

    line-height: 1.7;

}


.facebook-button {

    display: inline-block;

    margin-top: 40px;

    background: var(--primary);

    color: white;

    padding: 15px 40px;

    border-radius: 8px;

    text-decoration: none;

    font-weight: bold;

}
/* Worldwide Section */

.worldwide {

    padding: 80px 30px;

    background: var(--secondary);

    color: white;

    display: flex;

    align-items: center;

    gap: 50px;

}


.world-content {

    flex: 1;

}


.world-content h2 {

    font-size: 42px;

    margin-bottom: 25px;

}


.world-content p {

    line-height: 1.8;

    margin-bottom: 20px;

}


.world-image {

    flex: 1;

}


.world-image img {

    width: 75%;

    display: block;

}
/* FAQ Section */

.faq {

    padding: 80px 30px;

    background: white;

    text-align: center;

}


.faq h2 {

    font-size: 42px;

    color: var(--secondary);

    margin-bottom: 50px;

}


.faq-container {

    max-width: 900px;

    margin: auto;

}


.faq-item {

    background: var(--light-grey);

    padding: 25px;

    margin-bottom: 20px;

    border-radius: 12px;

    text-align: left;

}


.faq-item h3 {

    color: var(--secondary);

    margin-bottom: 12px;

}


.faq-item p {

    line-height: 1.7;

}
/* Footer */

.footer {

    background: var(--secondary);

    color: white;

    padding: 60px 30px 20px;

}


.footer-container {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 40px;

}


.footer-logo img {

    height: 90px;

    width: auto;

    margin-bottom: 20px;

}


.footer h3 {

    margin-bottom: 20px;

}


.footer a {

    display: block;

    color: white;

    text-decoration: none;

    margin-bottom: 12px;

    opacity: .9;

}


.footer a:hover {

    opacity: 1;

    color: var(--primary);

}


.footer-bottom {

    text-align: center;

    border-top: 1px solid rgba(255,255,255,.2);

    margin-top: 40px;

    padding-top: 20px;

}
/* Mobile Styling */

@media (max-width: 768px) {

    .quality-grid {

    grid-template-columns: 1fr;

}

    .workshop {

    flex-direction: column;

}

    .timeline-grid {

    grid-template-columns: 1fr;

}

.category-grid {

    grid-template-columns: 1fr;

}


/* Navigation */

.navbar {

    height: auto;

    padding: 20px;

    flex-direction: column;

}


.logo img {

    height: 75px;

}


.nav-links {

    flex-direction: column;

    gap: 15px;

    margin-top: 20px;

    text-align: center;

}


.nav-icons {

    margin-top: 20px;

}


/* Hero */

.hero {

    height: auto;

}


.hero img {

    height: auto;

}


/* Headings */

.welcome h2,
.featured-products h2,
.why-choose h2,
.gallery h2,
.reviews h2,
.facebook h2,
.world-content h2,
.faq h2 {

    font-size: 32px;

}


/* Products */

.product-grid {

    grid-template-columns: 1fr;

}


/* Why Choose */

.features-grid {

    grid-template-columns: 1fr;

}


/* Gallery */

.gallery-container img {

    width: 280px;

    height: 200px;

}


/* Worldwide Section */

.worldwide {

    flex-direction: column;

}


/* Reviews */

.reviews-grid {

    grid-template-columns: 1fr;

}


/* Facebook */

.facebook-post {

    width: 100%;

}


/* Footer */

.footer-container {

    grid-template-columns: 1fr;

    text-align: center;

}


.footer-logo img {

    height: 75px;

}


}
/* About Page */


.about-hero {

    background: var(--secondary);

    color: white;

    padding: 100px 30px;

    text-align: center;

}


.about-hero h1 {

    font-size: 48px;

    margin-bottom: 20px;

}


.about-hero p {

    font-size: 22px;

}



.about-story {

    max-width: 900px;

    margin: 80px auto;

    padding: 0 30px;

    text-align: center;

}


.about-story h2 {

    font-size: 42px;

    color: var(--secondary);

    margin-bottom: 30px;

}


.about-story p {

    font-size: 18px;

    line-height: 1.8;

    margin-bottom: 25px;

}
/* Timeline */


.timeline {

    padding: 80px 30px;

    background: var(--light-grey);

    text-align: center;

}


.timeline h2 {

    font-size: 42px;

    color: var(--secondary);

    margin-bottom: 50px;

}


.timeline-grid {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

}


.timeline-card {

    background: white;

    padding: 30px;

    border-radius: 12px;

    box-shadow: 0 5px 20px rgba(0,0,0,.08);

}


.timeline-card h3 {

    color: var(--secondary);

    margin-bottom: 15px;

}


.timeline-card p {

    line-height: 1.7;

}
/* Workshop Section */


.workshop {

    max-width: 1200px;

    margin: 80px auto;

    padding: 0 30px;

    display: flex;

    align-items: center;

    gap: 60px;

}


.workshop-image {

    flex: 1;

    display: grid;

    grid-template-columns: 1fr;

    gap: 25px;

}


.workshop-image img {

    width: 100%;

    height: 320px;

    object-fit: cover;

    object-position: center;

    border-radius: 12px;

    box-shadow: 0 5px 20px rgba(0,0,0,.12);

    transition: 0.3s ease;

}

.workshop-image img:hover {

    transform: scale(1.02);

}



.workshop-content {

    flex: 1;

}


.workshop-content h2 {

    font-size: 42px;

    color: var(--secondary);

    margin-bottom: 25px;

}


.workshop-content p {

    font-size: 18px;

    line-height: 1.8;

    margin-bottom: 20px;

}
/* Quality Section */


.quality {

    padding: 80px 30px;

    background: var(--light-grey);

    text-align: center;

}


.quality h2 {

    font-size: 42px;

    color: var(--secondary);

    margin-bottom: 50px;

}


.quality-grid {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

}


.quality-card {

    background: white;

    padding: 30px;

    border-radius: 12px;

    box-shadow: 0 5px 20px rgba(0,0,0,.08);

}


.quality-card h3 {

    color: var(--secondary);

    margin-bottom: 15px;

}


.quality-card p {

    line-height: 1.7;

}
/* Shop Page */


.shop-hero {

    background: var(--secondary);

    color:white;

    padding:100px 30px;

    text-align:center;

}


.shop-hero h1 {

    font-size:48px;

    margin-bottom:20px;

}


.shop-hero p {

    font-size:22px;

}



.shop-categories {

    padding:80px 30px;

    text-align:center;

}


.shop-categories h2 {

    font-size:42px;

    color:var(--secondary);

    margin-bottom:50px;

}


.category-grid {

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}


.category-card {

    background:var(--light-grey);

    padding:40px 25px;

    border-radius:12px;

}


.category-card h3 {

    color:var(--secondary);

    margin-bottom:15px;

}



.woocommerce-link {

    padding:80px 30px;

    background:var(--light-grey);

    text-align:center;

}


.woocommerce-link h2 {

    color:var(--secondary);

    font-size:40px;

    margin-bottom:20px;

}
.product-button,
.shop-button,
.facebook-button {

    background: var(--primary);

    transition: 0.3s;

}


.product-button:hover,
.shop-button:hover,
.facebook-button:hover {

    background: var(--secondary);

    transform: translateY(-3px);

}
/* Marketplace Logos */

.quality-card img {

    width: 120px;

    height: 80px;

    object-fit: contain;

    margin-bottom: 20px;

}
/* Contact Form */

.contact-form {

    max-width: 700px;
    margin: 80px auto;
    padding: 40px 30px;
    background: var(--light-grey);
    border-radius: 12px;

}


.contact-form h2 {

    text-align: center;
    color: var(--secondary);
    font-size: 42px;
    margin-bottom: 40px;

}


.contact-form label {

    display: block;
    margin-bottom: 8px;
    font-weight: bold;

}


.contact-form input,
.contact-form textarea {

    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;

}


.contact-form button {

    background: var(--primary);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;

}


.contact-form button:hover {

    background: var(--secondary);

}
/* Social and Marketplace Cards */

.quality-grid {

    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

}


.quality-card {

    background: white;

    padding: 30px;

    border-radius: 12px;

    box-shadow: 0 5px 20px rgba(0,0,0,.08);

    min-height: 320px;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

}


.quality-card h3 {

    color: var(--secondary);

    margin-bottom: 15px;

}


.quality-card p {

    line-height: 1.7;

    max-width: 280px;

    margin-bottom: 25px;

}


.quality-card .shop-button {

    margin-top: auto;

}


.quality-card img {

    width: 120px;

    height: 80px;

    object-fit: contain;

    margin-bottom: 20px;

}
.hidden {

    opacity: 0;

    transform: translateY(40px);

    transition: all 0.8s ease;

}


.show {

    opacity: 1;

    transform: translateY(0);

}
.shop-button,
.product-button,
.facebook-button {

    position: relative;

    overflow: hidden;

}


.shop-button:hover,
.product-button:hover,
.facebook-button:hover {

    letter-spacing: 1px;

}
.top-button {

    position: fixed;

    bottom: 30px;

    right: 30px;

    background: var(--primary);

    color:white;

    padding:15px;

    border-radius:50%;

    display:none;

}
/* Production Tracker */

.production {

    padding: 80px 30px;

    background: var(--light-grey);

    text-align: center;

}


.production h2 {

    font-size: 42px;

    color: var(--secondary);

    margin-bottom: 20px;

}


.production > p {

    max-width: 700px;

    margin: 0 auto 50px;

    line-height: 1.8;

}


.production-grid {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}


.production-step {

    background: white;

    padding: 30px;

    border-radius: 12px;

    box-shadow: 0 5px 20px rgba(0,0,0,.08);

    transition: .3s;

}


.production-step:hover {

    transform: translateY(-8px);

    box-shadow: 0 12px 30px rgba(0,0,0,.15);

}


.step-icon {

    font-size: 48px;

    margin-bottom: 20px;

}


.production-step h3 {

    color: var(--secondary);

    margin-bottom: 15px;

}


.production-step p {

    line-height: 1.7;

}


.completed {

    border-top: 5px solid #2ecc71;

}


.active {

    border-top: 5px solid #f39c12;

}
@media (max-width: 768px) {

    .production-grid {

        grid-template-columns: 1fr;

    }

}
/* Aircraft Production Timeline */

.step-number {

    width: 70px;

    height: 70px;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: var(--secondary);

    color: white;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 26px;

    font-weight: bold;

    letter-spacing: 2px;

}

.completed .step-number {

    background: #2ecc71;

}

.active .step-number {

    background: #f39c12;

    animation: pulse 2s infinite;

}

@keyframes pulse {

    0% {

        transform: scale(1);

    }

    50% {

        transform: scale(1.08);

    }

    100% {

        transform: scale(1);

    }

}
/* Aircraft Loading Screen */

#loader {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: #18232d;

    display: flex;

    justify-content: center;

    align-items: center;

    z-index: 99999;

    transition: opacity .6s ease;

}


.loader-content {

    text-align: center;

    color: white;

    max-width: 500px;

    padding: 20px;

}


.loader-content img {

    width: 120px;

    margin-bottom: 25px;

}


.loader-content h1 {

    letter-spacing: 4px;

    margin-bottom: 20px;

    font-size: 42px;

}


.loader-status {

    color: #8db7d9;

    margin-bottom: 30px;

    font-size: 18px;

    letter-spacing: 2px;

}


.loader-progress {

    width: 100%;

    height: 12px;

    background: rgba(255,255,255,.15);

    border-radius: 20px;

    overflow: hidden;

    margin-bottom: 30px;

}


.loader-bar {

    width: 0;

    height: 100%;

    background: #7A8FA6;

    animation: loading 2.5s linear forwards;

}


.loader-checks p {

    margin: 10px 0;

    opacity: .9;

}


@keyframes loading {

    from {

        width: 0%;

    }

    to {

        width: 100%;

    }

}