/*
Theme Name: Falcon Jet Shine Theme
Theme URI: https://falconjetshine.com
Author: Falcon Jet Shine
Author URI: https://falconjetshine.com
Description: A custom one-page theme for Falcon Jet Shine.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: falconjetshine
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0B1C2C;
    --gold: #FFC107;
    --royal: #0E4EA6;
    --light: #F8F9FA;
    --white: #FFFFFF;
    --gray: #6C757D;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--navy);
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    background: #0060ab;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-placeholder {
    width: 60px;
    height: 60px;
}

.logo {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
}

.logo span {
    color: var(--gold);
}

.tagline {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

/* Nav CTA Button */
.nav-cta-btn {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-cta-btn:hover {
    background: #FFD54F;
    color: var(--navy) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    overflow-y: auto;
    padding: 20px;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    max-width: 800px;
    width: 100%;
    border-radius: 10px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: var(--navy);
    color: var(--white);
    padding: 30px;
    border-radius: 10px 10px 0 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.modal-header h2 {
    font-size: 32px;
    margin: 0;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--gold);
}

.modal-body {
    padding: 40px;
    line-height: 1.8;
}

.modal-body h3 {
    color: var(--navy);
    font-size: 24px;
    margin: 30px 0 15px;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    margin-bottom: 15px;
    color: var(--gray);
}

.modal-body ul {
    margin: 15px 0 15px 25px;
    color: var(--gray);
}

.modal-body ul li {
    margin-bottom: 10px;
}

.modal-body strong {
    color: var(--navy);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--royal) 100%);
    color: var(--white);
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/wp-content/uploads/2025/10/hero.jpg') center/cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    background: rgba(11, 28, 44, 0.75);
    padding: 60px 40px;
    border-radius: 20px;
    backdrop-filter: blur(.5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero h1 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

.trust-line {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    font-size: 14px;
    opacity: 0.9;
}

.trust-line span::before {
    content: '✓';
    color: var(--gold);
    margin-right: 8px;
    font-weight: bold;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
}

.btn-primary:hover {
    background: #FFD54F;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--navy);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 60px;
}

/* Problem Section */
.problem {
    background: var(--light);
}

.problem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pain-points {
    list-style: none;
}

.pain-points li {
    padding: 20px;
    background: var(--white);
    margin-bottom: 15px;
    border-left: 4px solid var(--royal);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.pain-points li::before {
    content: '⚠️';
    margin-right: 12px;
}

.solution-box {
    background: var(--royal);
    color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(14, 78, 166, 0.3);
}

.solution-box h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--gold);
}

/* Guide Section */
.guide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.guide-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.proof-points {
    list-style: none;
    margin: 30px 0;
}

.proof-points li {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.proof-points li::before {
    content: '✓';
    color: var(--gold);
    font-weight: bold;
    margin-right: 15px;
    font-size: 20px;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    background: var(--light);
    padding: 30px 30px 30px 45px;
    border-radius: 10px;
    font-style: italic;
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 60px;
    color: var(--gold);
    position: absolute;
    top: 15px;
    left: 15px;
    opacity: 0.3;
    line-height: 1;
}

/* Plan Section */
.plan {
    background: var(--navy);
    color: var(--white);
}

.plan .section-title {
    color: var(--white);
}

.plan .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.step {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    transition: transform 0.3s;
}

.step:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.08);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--gold);
}

/* Packages Section */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package {
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}

.package:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.package.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, #FFF8E1 0%, var(--white) 100%);
    transform: scale(1.05);
}

.package h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--navy);
}

.package ul {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.package ul li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.package ul li::before {
    content: '✓';
    color: var(--gold);
    margin-right: 10px;
    font-weight: bold;
}

.note {
    background: var(--light);
    padding: 20px;
    border-radius: 6px;
    margin-top: 40px;
    text-align: center;
    font-style: italic;
}

/* Trust Section */
.trust {
    background: var(--light);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.trust-item {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.trust-icon {
    width: 80px;
    height: 80px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
}

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    background: var(--navy);
    color: var(--white);
    padding: 25px 30px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 25px 30px;
    color: var(--gray);
    line-height: 1.8;
}

/* CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--royal) 0%, var(--navy) 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.final-cta h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-form {
    max-width: 600px;
    margin: 50px auto 0;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.contact-form h3 {
    color: var(--navy);
    padding-bottom: 20px;
    font-size: 22px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--navy);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

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

.form-note {
    margin-top: 20px;
    font-size: 14px;
    color: var(--gray);
    font-style: italic;
}

/* Footer */
footer {
    background: var(--navy);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

footer a {
    color: var(--gold);
    text-decoration: none;
    margin: 0 15px;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 90px);
        background: var(--navy);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 18px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-cta-btn {
        border-bottom: none !important;
        text-align: center;
        margin-top: 10px;
        padding: 12px 24px !important;
        display: block;
    }

    .hero {
        padding: 140px 0 80px;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .trust-line {
        flex-direction: column;
        gap: 10px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .problem-content,
    .guide-content {
        grid-template-columns: 1fr;
    }

    .steps,
    .packages-grid,
    .trust-items,
    .testimonials {
        grid-template-columns: 1fr;
    }

    .package.featured {
        transform: scale(1);
    }

    .modal-content {
        margin: 20px;
    }

    .modal-header,
    .modal-body {
        padding: 20px;
    }

    .modal-header h2 {
        font-size: 24px;
        padding-right: 40px;
    }

    .section-title {
        font-size: 32px;
		line-height: 36px;
    }

    .final-cta h2 {
        font-size: 32px;
    }
}