/* --- GLOBAL STYLES --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a; /* Deep luxury black */
    color: #e0e0e0; /* Off-white for readability */
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

/* --- NAVIGATION --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: rgba(10, 10, 10, 0.9);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #333;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #fff; /* Brighten on hover */
}
/* --- CONTACT PAGE STYLES --- */
.contact-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.page-title {
    text-align: center;
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Form Styling */
.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #888;
}

.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 15px;
    background-color: #111;
    border: 1px solid #333;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s;
}

.input-group input:focus, 
.input-group textarea:focus {
    outline: none;
    border-color: #fff; /* Highlights border on typing */
}

.submit-btn {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 15px 30px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background-color: #333;
    color: #fff;
}

/* Info Styling */
.contact-info h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}

.contact-info p {
    color: #a0a0a0;
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 40px;
    border-top: 1px solid #333;
    padding-top: 20px;
}
/* --- BUTTONS --- */
.btn-primary {
    display: inline-block;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    padding: 15px 40px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.btn-primary:hover {
    background-color: #333;
    color: #fff;
}

.btn-secondary {
    display: block;
    text-align: center;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    text-decoration: none;
    padding: 12px 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    margin-top: 20px;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #000;
}

/* --- HOME PAGE HERO --- */
.hero-section {
    position: relative;
    height: calc(100vh - 80px); /* Accounts for header height */
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Darkens video for text readability */
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* --- SHARED PAGE STRUCTURE --- */
.page-container {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.page-subtitle {
    text-align: center;
    color: #a0a0a0;
    margin-bottom: 60px;
    margin-top: -30px;
    font-size: 16px;
    letter-spacing: 1px;
}

.form-status {
    max-width: 760px;
    margin: 0 auto 24px;
    padding: 14px 18px;
    border-radius: 6px;
    text-align: center;
}

.form-status.success {
    background-color: rgba(76, 175, 80, 0.16);
    color: #b8f2bb;
    border: 1px solid rgba(76, 175, 80, 0.35);
}

.form-status.error {
    background-color: rgba(220, 53, 69, 0.16);
    color: #ffb8bf;
    border: 1px solid rgba(220, 53, 69, 0.35);
}

/* --- SHOWROOM GRID --- */
.location-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.location-card {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: block;
    text-decoration: none;
    border: 1px solid #333;
    background-color: #111;
}

.location-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: grayscale(25%) contrast(110%);
}

.location-card:hover img {
    transform: scale(1.04);
    filter: grayscale(0%) contrast(100%);
}

.location-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.85) 100%);
}

.location-overlay h3 {
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

@media (max-width: 900px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 20px;
    }

    nav ul {
        flex-wrap: wrap;
        gap: 10px 16px;
    }

    .location-grid,
    .contact-grid,
    .about-section,
    .inventory-hero,
    .inventory-overview,
    .inventory-content,
    .tier-grid,
    .upload-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 34px;
        letter-spacing: 3px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .page-title {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .page-container,
    .contact-container,
    .inventory-detail-page {
        padding: 0 20px;
    }

    .inventory-hero__image img {
        height: 320px;
    }
}

@media (max-width: 600px) {
    header {
        padding: 16px;
    }

    nav ul {
        gap: 8px 12px;
    }

    nav ul li a {
        font-size: 12px;
    }

    .hero-section {
        min-height: 100vh;
        height: auto;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .btn-primary,
    .submit-btn {
        width: 100%;
        text-align: center;
    }

    .jet-info,
    .tier-card,
    .upload-form {
        padding: 20px;
    }
}

/* --- INVENTORY GRID --- */
.inventory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.upload-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: #111;
    border: 1px solid #333;
}

.upload-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.upload-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.upload-field span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

.upload-field input,
.upload-field textarea {
    width: 100%;
    padding: 14px;
    background: #0a0a0a;
    border: 1px solid #333;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.form-status {
    max-width: 800px;
    margin: 0 auto 20px;
    padding: 14px 18px;
    border: 1px solid #333;
}

.form-status.success {
    color: #b8f5b8;
    background: rgba(76, 175, 80, 0.12);
}

.jet-card {
    background-color: #111;
    border: 1px solid #222;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.8);
    border-color: #444;
}

.jet-image {
    height: 250px;
    overflow: hidden;
}

.jet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.jet-card:hover .jet-image img {
    filter: brightness(1);
}

.jet-info {
    padding: 30px;
}

.jet-info h2 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.jet-specs {
    list-style: none;
    margin-bottom: 20px;
}

.jet-specs li {
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #222;
    padding-bottom: 8px;
}

.jet-specs li strong {
    color: #fff;
    font-weight: 600;
}
/* --- INVENTORY DETAIL PAGE --- */
.inventory-detail-page {
    max-width: 1400px;
    margin: 40px auto 80px;
    padding: 0 40px;
}

.inventory-hero {
    display: grid;
    grid-template-columns: 1.25fr 0.9fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}

.inventory-hero__image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border: 1px solid #333;
    background: #111;
}

.inventory-hero__content {
    background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    border: 1px solid #333;
    padding: 36px;
}

.inventory-eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    color: #aaa;
    margin-bottom: 12px;
}

.inventory-hero__content h1 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.inventory-subtitle {
    color: #b6b6b6;
    font-size: 16px;
    margin-bottom: 24px;
}

.inventory-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.inventory-overview {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 24px;
    margin-bottom: 30px;
}

.overview-card {
    background: #111;
    border: 1px solid #2b2b2b;
    padding: 28px;
}

.overview-card--accent {
    border-color: #555;
}

.overview-card h2 {
    font-size: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.overview-grid div {
    padding-top: 8px;
    border-top: 1px solid #222;
}

.overview-grid span {
    display: block;
    color: #888;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.overview-grid strong {
    color: #fff;
    font-size: 16px;
}

.overview-card ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.overview-card li {
    color: #c7c7c7;
    padding-left: 16px;
    position: relative;
}

.overview-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #fff;
}

.inventory-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.inventory-section {
    background: #111;
    border: 1px solid #2b2b2b;
    padding: 28px;
}

.inventory-section h3 {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.inventory-section p {
    color: #a0a0a0;
    line-height: 1.8;
}

@media (max-width: 900px) {
    .inventory-hero,
    .inventory-overview,
    .inventory-content {
        grid-template-columns: 1fr;
    }

    .inventory-hero__image img {
        height: 360px;
    }
}

/* --- ABOUT PAGE --- */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: justify;
    hyphens: auto;
}

.about-content p {
    color: #a0a0a0;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    border: 1px solid #333;
}

/* --- SERVICES PAGE --- */
.services-intro {
    max-width: 900px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.services-intro p {
    color: #a0a0a0;
    margin-bottom: 25px;
    font-size: 16px;
}

.luxury-divider {
    border: 0;
    height: 1px;
    background: #333;
    margin: 60px 0;
}

.section-subtitle {
    text-align: center;
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

/* Services Tier Grid */
.tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tier-card {
    background-color: #111;
    border: 1px solid #333;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.tier-card.featured {
    border-color: #fff; /* Highlights the 'Favorite' tier */
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.tier-card h3 {
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.tier-card p {
    color: #888;
    font-size: 14px;
    margin-bottom: 30px;
    flex-grow: 1;
}

.tier-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.tier-card ul li {
    font-size: 14px;
    color: #ccc;
    padding: 10px 0;
    border-bottom: 1px solid #222;
}

/* --- PUBLICITY PAGE --- */
.publicity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.press-badge {
    background-color: #111;
    border: 1px solid #333;
    padding: 30px 20px;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #a0a0a0;
    transition: all 0.3s ease;
    cursor: default;
}

.press-badge:hover {
    background-color: #222;
    color: #fff;
    border-color: #fff;
}
/* --- ABOUT PAGE --- */
.about-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
}

.about-content {
    min-width: 0;
}

.about-content p {
    color: #a0a0a0;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.about-media {
    width: 100%;
}

.about-video {
    width: 100%;
}

.about-video video {
    display: block;
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    border: 1px solid #333;
    background: #111;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    border: 1px solid #333;
}

@media (max-width: 900px) {
    .about-section {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-content {
        text-align: left;
    }

    .about-content p {
        font-size: 15px;
    }

    .about-video video {
        max-height: 360px;
    }
}

@media (max-width: 600px) {
    .about-section {
        gap: 24px;
    }

    .about-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .about-video video {
        max-height: 260px;
    }
}

/* --- SERVICES PAGE --- */
.services-intro {
    max-width: 900px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.services-intro p {
    color: #a0a0a0;
    margin-bottom: 25px;
    font-size: 16px;
}

.luxury-divider {
    border: 0;
    height: 1px;
    background: #333;
    margin: 60px 0;
}

.section-subtitle {
    text-align: center;
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

/* Services Tier Grid */
.tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tier-card {
    background-color: #111;
    border: 1px solid #333;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.tier-card.featured {
    border-color: #fff; /* Highlights the 'Favorite' tier */
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.tier-card h3 {
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.tier-card p {
    color: #888;
    font-size: 14px;
    margin-bottom: 30px;
    flex-grow: 1;
}

.tier-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.tier-card ul li {
    font-size: 14px;
    color: #ccc;
    padding: 10px 0;
    border-bottom: 1px solid #222;
}

/* --- PUBLICITY PAGE --- */
.publicity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.press-badge {
    background-color: #111;
    border: 1px solid #333;
    padding: 30px 20px;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #a0a0a0;
    transition: all 0.3s ease;
    cursor: default;
}

.press-badge:hover {
    background-color: #222;
    color: #fff;
    border-color: #fff;
}