/* NAUTICAL LUXURY — СТИЛЬ ДЛЯ ПРЕМИАЛЬНОГО СЕГМЕНТА (ЯХТЫ И ЭЛИТНЫЙ ТУРИЗМ) */

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

body {
    font-family: 'Lato', sans-serif;
    background-color: #050a14; /* Глубокий океанический темно-синий цвет */
    color: #f8f9fa; /* Мягкий жемчужно-белый для текста */
    line-height: 1.6;
}

.nx-container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
}

.text-center { text-align: center; }

/* БЛОК 1: НАВИГАЦИЯ */
.nx-header {
    background-color: rgba(5, 10, 20, 0.95);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2); /* Золотая тонкая линия разделения */
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.nx-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 2px;
}

.nx-logo span {
    color: #c5a059; /* Тонкий акцент выцветшего золота */
}

.nx-nav a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 30px;
    transition: color 0.2s;
}

.nx-nav a:hover {
    color: #c5a059;
}

.btn-nx-nav {
    border: 1px solid #c5a059;
    color: #c5a059;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 22px;
    transition: all 0.2s;
}

.btn-nx-nav:hover {
    background-color: #c5a059;
    color: #050a14;
}

/* БЛОК 2: HERO */
.nx-hero {
    padding: 120px 0;
    background: radial-gradient(circle at center, rgba(197, 160, 89, 0.08) 0%, transparent 70%);
    text-align: center;
}

.nx-tag-gold {
    display: inline-block;
    border-bottom: 2px solid #c5a059;
    color: #c5a059;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding-bottom: 6px;
    margin-bottom: 30px;
}

.nx-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto 25px auto;
}

.hero-desc {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 750px;
    margin: 0 auto 45px auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-nx {
    padding: 16px 32px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-nx-gold {
    background-color: #c5a059;
    color: #050a14;
}

.btn-nx-gold:hover {
    background-color: #b38f4b;
}

.btn-nx-outline {
    border: 1px solid #94a3b8;
    color: #ffffff;
}

.btn-nx-outline:hover {
    border-color: #c5a059;
    color: #c5a059;
}

/* БЛОК 3: STATS BAR */
.nx-stats-bar {
    padding: 50px 0;
    background-color: #02060d;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-box {
    text-align: center;
}

.stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #c5a059;
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
}

/* БЛОК 4: FLEET SECTION */
.nx-fleet {
    padding: 100px 0;
}

.nx-section-title h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.nx-section-title p {
    color: #94a3b8;
    margin-bottom: 60px;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.fleet-card {
    background-color: #02060d;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s;
}

.fleet-card:hover {
    border-color: #c5a059;
}

.fleet-img-placeholder {
    height: 240px;
    background-color: #091122;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.fleet-info {
    padding: 30px;
}

.fleet-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #c5a059;
    margin-bottom: 12px;
}

.fleet-info p {
    font-size: 0.95rem;
    color: #94a3b8;
}

/* БЛОК 5: SERVICES */
.nx-services {
    padding: 100px 0;
    background-color: #02060d;
}

.services-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.services-left h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.services-left p {
    color: #94a3b8;
    margin-bottom: 30px;
}

.luxury-list {
    list-style: none;
}

.luxury-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.luxury-list li::before {
    content: "—";
    color: #c5a059;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.experience-card {
    background-color: #050a14;
    border: 1px solid rgba(197, 160, 89, 0.2);
    padding: 40px;
}

.experience-card h4 {
    font-family: 'Poppins', sans-serif;
    color: #c5a059;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

/* БЛОК 6: DESTINATIONS */
.nx-destinations {
    padding: 100px 0;
}

.destinations-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.dest-card {
    background-color: #02060d;
    padding: 40px;
    border-left: 3px solid #c5a059;
}

.dest-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.dest-card p {
    color: #94a3b8;
    font-size: 0.95rem;
}

/* БЛОК 7: PRICING TABLE */
.nx-pricing {
    padding: 100px 0;
    background-color: #02060d;
}

.table-responsive {
    overflow-x: auto;
    margin-top: 50px;
}

.nx-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.nx-table th {
    background-color: #091122;
    color: #c5a059;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 20px;
    border-bottom: 2px solid rgba(197, 160, 89, 0.2);
}

.nx-table td {
    padding: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.nx-table tr:hover {
    background-color: rgba(255, 255, 255, 0.01);
}

/* БЛОК 8: QUOTE */
.nx-quote-section {
    padding: 120px 0;
    background: radial-gradient(circle at top, rgba(197, 160, 89, 0.05) 0%, transparent 60%);
}

.nx-blockquote {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.5;
    max-width: 850px;
    margin: 0 auto 30px auto;
    color: #cbd5e1;
}

.nx-quote-author {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c5a059;
}

/* БЛОК 9: STANDARDS */
.nx-standards {
    padding: 30px 0;
    background-color: #02060d;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    font-size: 0.85rem;
    color: #64748b;
}

/* БЛОК 10: FAQ */
.nx-faq {
    padding: 100px 0;
}

.faq-container {
    max-width: 800px;
}

.faq-list {
    margin-top: 50px;
}

.faq-item {
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 25px;
}

.faq-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    color: #c5a059;
    margin-bottom: 12px;
}

.faq-item p {
    color: #94a3b8;
    font-size: 0.95rem;
}

/* БЛОК 11: CONTACT ZONE */
.nx-contact {
    padding: 100px 0;
    background-color: #02060d;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
}

.contact-info-side h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.contact-info-side p {
    color: #94a3b8;
    margin-bottom: 40px;
}

.office-data p {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #cbd5e1;
}

.office-data strong {
    color: #c5a059;
}

.luxury-form {
    background-color: #050a14;
    padding: 40px;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.form-field {
    margin-bottom: 20px;
    width: 100%;
}

.form-row-2 {
    display: flex;
    gap: 20px;
}

.luxury-form label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 6px;
}

.luxury-form input {
    width: 100%;
    background-color: #02060d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px;
    color: #ffffff;
    font-size: 0.95rem;
}

.luxury-form input:focus {
    outline: none;
    border-color: #c5a059;
}

.form-checkbox {
    display: flex;
    gap: 12px;
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 25px;
}

.btn-submit-gold {
    background-color: #c5a059;
    color: #050a14;
    border: none;
    width: 100%;
    padding: 16px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit-gold:hover {
    background-color: #b38f4b;
}

/* БЛОК 12: FOOTER */
.nx-footer {
    background-color: #010409;
    color: #4b5563;
    padding: 60px 0 30px 0;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-links {
    margin-bottom: 25px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    margin-right: 20px;
}

.footer-links a:hover {
    color: #c5a059;
}

.copyright {
    color: #64748b;
    margin-bottom: 20px;
}

.legal-text {
    line-height: 1.7;
    text-align: justify;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

/* RESPONSIVE MATRIX */
@media (max-width: 992px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .btn-nx {
        width: 100%;
        max-width: 340px;
    }
    .services-split, .destinations-layout, .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .form-row-2 {
        flex-direction: column;
        gap: 0;
    }
    .nx-nav {
        display: none;
    }
    .header-flex {
        flex-direction: column;
        gap: 15px;
    }
    .nx-hero h1 {
        font-size: 2.4rem;
    }
}