/* ========== Aviator CSS Reset ========== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    background-color: #ffffff;
    color: #1a1a1a;
    overflow-x: hidden;
}

img,
svg,
video {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

button,
input,
textarea,
select {
    font: inherit;
    border: none;
    background: none;
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

strong {
    font-weight: 600;
}

/* === Header === */
.header-aero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 2rem;
    background: #ffffff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-unit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 42px;
    height: 42px;
}

.logo-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a1a1a;
}

.aviator-site-footer .logo-title {
    color: #fff;
}

@media (max-width: 768px) {
    .logo-title {
        font-size: 1.1rem;
    }
}

.logo-accent {
    color: #d4a017;
    font-weight: 700;
}

.nav-flight {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #d4a017;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
}

/* === Hero Section === */
.hero-panorama {
    position: relative;
    height: 100vh;
    background: url('../../aviator-assets/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.hero-core {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
}

.hero-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-golden {
    background: #d4a017;
    color: #fff;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-golden:hover {
    background: #c29610;
}

.section-cta .btn-golden {
    background: #671DF8;
}

.section-cta .btn-golden:hover {
    background: #5309E4;
}

/* === About Section === */
.section-about {
    background: #f9f9f9;
    padding: 4rem 2rem;
}

.about-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
}

.about-text p {
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #333;
}

.about-img {
    flex: 1;
}

.about-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* === Stats Section === */
.section-numbers {
    background: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.numbers-title {
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 3rem;
}

.numbers-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.num-card {
    background: #fefefe;
    border: 1px solid #ececec;
    border-radius: 12px;
    width: 200px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.num-icon {
    font-size: 2rem;
    color: #d4a017;
    margin-bottom: 1rem;
}

.num-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e1e1e;
}

.num-label {
    font-family: 'Open Sans', sans-serif;
    color: #555;
}

/* === Responsive === */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        background: #fff;
        right: 2rem;
        top: 80px;
        padding: 1rem;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .about-grid {
        flex-direction: column;
    }

    .numbers-wrap {
        flex-direction: column;
        align-items: center;
    }
}

/* === Services Section === */
.section-services {
    background: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 3rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.service-card {
    background: #fdfdfd;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 2rem;
    width: 280px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.service-card p {
    font-family: 'Open Sans', sans-serif;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}


/* === Why Choose Us === */
.section-why {
    background: #f6f6f6;
    padding: 4rem 2rem;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.why-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.why-box i {
    font-size: 2rem;
    color: #d4a017;
    margin-bottom: 1rem;
}

.why-box h3 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.5rem;
}

.why-box p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* === Portfolio Section === */
.section-portfolio {
    padding: 4rem 2rem;
    background: #fff;
    text-align: center;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(256px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.portfolio-card {
    background: #fefefe;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-6px);
}

.portfolio-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.portfolio-info {
    padding: 1.5rem;
    text-align: left;
}

.portfolio-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.portfolio-info p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* === Testimonials === */
.section-testimonials {
    background: #f6f6f6;
    padding: 4rem 2rem;
    text-align: center;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-box {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    max-width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-family: 'Open Sans', sans-serif;
    font-style: italic;
    color: #333;
}

.testimonial-author {
    margin-top: 1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

/* === CTA Section === */
.section-cta {
    background: linear-gradient(135deg, #d4a017, #f1c63d);
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
}

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.section-cta h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section-cta p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* === FAQ Section Improved === */
.section-faq {
    background: #f9f9f9;
    padding: 5rem 2rem;
}

.section-faq .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-align: left;
    background: #fff;
    border: none;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #777;
    transition: transform 0.2s ease;
}

.faq-question.active::after {
    content: '−';
    transform: translateY(-50%);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}

/* === Contact Section === */
.section-contact {
    background: #fff;
    padding: 4rem 2rem;
}

.section-contact .section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.05rem;
    color: #333;
    line-height: 2;
    padding: 2rem;
    background-color: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.contact-info p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
}

.contact-form button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #d4a017, #f1c63d);
    border: none;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
}

.form-response {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #2b662b;
    display: none;
}

@media (min-width: 768px) {
    .contact-wrapper {
        flex-direction: row;
        align-items: center;
    }

    .contact-info {
        flex: 1;
        height: 100%;
    }

    .contact-form {
        flex: 1;
    }
}

/* === Footer === */
.aviator-site-footer {
    background: #1f1f1f;
    color: #eee;
    padding: 4rem 2rem 2rem;
    font-family: 'Open Sans', sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

.footer-brand .footer-logo {
    width: 120px;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bbb;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 0.5rem 0;
}

.footer-links a {
    color: #eee;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #f1c63d;
}

.footer-socials a {
    margin: 0 0.5rem;
    color: #eee;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.footer-socials a:hover {
    color: #f1c63d;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    font-size: 0.85rem;
    color: #777;
}

.footer-bottom p:first-of-type {
    margin-bottom: 20px;
    font-size: 18px;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        text-align: left;
        align-items: center;
    }
}

/* === Cookie Banner === */
.aviator-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f1f1f;
    color: #eee;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
    z-index: 1000;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
}

.aviator-cookie-banner p {
    margin: 0;
    font-size: 0.95rem;
    text-align: center;
}

.aviator-cookie-banner a {
    color: #f1c63d;
    text-decoration: underline;
}

.btn-accept-cookie {
    background: #f1c63d;
    color: #1f1f1f;
    border: none;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
}

@media (min-width: 600px) {
    .aviator-cookie-banner {
        flex-direction: row;
        justify-content: space-between;
    }

    .aviator-cookie-banner p {
        text-align: left;
        max-width: 700px;
    }
}

.legal-content {
    font-family: 'Open Sans', sans-serif;
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    color: #333;
}

.legal-section h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1e1e1e;
}

.legal-section h2 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    color: #d4a017;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}