/* ===================================================
   FastTrack Bangkok — Main Stylesheet
   Palette: Deep navy + gold/amber + white
   Font: Inter
   =================================================== */

:root {
    --navy: #0f1b2d;
    --navy-light: #162236;
    --navy-mid: #1c2d44;
    --gold: #d4a028;
    --gold-light: #f0b429;
    --gold-dim: rgba(212, 160, 40, 0.12);
    --white: #ffffff;
    --gray-50: #f8f9fb;
    --gray-100: #f1f3f7;
    --gray-200: #e2e6ed;
    --gray-300: #c9cfda;
    --gray-400: #8d96a7;
    --gray-600: #4a5568;
    --gray-800: #1a202c;
    --green: #22c55e;
    --red: #ef4444;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --transition: 0.25s ease;
    --max-w: 1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Section Defaults --- */
section { padding: 80px 0; }

.section-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    color: var(--navy);
}

.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    max-width: 640px;
    margin: 0 auto 48px;
    font-size: 1.05rem;
}

/* ===================================================
   HEADER
   =================================================== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(15, 27, 45, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 0 0;
    transition: background var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 24px;
}

/* Desktop: keep nav visually centered regardless of logo width */
@media (min-width: 769px) {
    .header-inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        align-items: center;
        gap: 16px;
        width: 100%;
    }
    .site-logo { justify-self: start; min-width: 0; }
    .main-nav { justify-self: center; max-width: 100%; }
    .header-actions { justify-self: end; min-width: 0; }
}

.site-logo {
    display: flex;
    align-items: center;
    min-width: 0;
}

.site-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    white-space: nowrap;
}
.site-logo-link:hover { color: var(--white); }

.site-logo .custom-logo-link,
.site-logo .custom-logo {
    display: block;
    line-height: 0;
}
.site-logo .custom-logo-link img {
    max-height: 48px;
    width: auto;
    height: auto;
}
.logo-icon { font-size: 1.5rem; }
.logo-accent { color: var(--gold); }

.main-nav .nav-list {
    display: flex;
    gap: 28px;
}
.main-nav .nav-list a {
    color: rgba(255,255,255,0.8);
    font-size: 0.92rem;
    font-weight: 500;
    transition: color var(--transition);
}
.main-nav .nav-list a:hover { color: var(--gold); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-switcher {
    display: flex;
    gap: 4px;
}
.lang-link {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all var(--transition);
}
.lang-link.active,
.lang-link:hover { color: var(--white); background: rgba(255,255,255,0.1); }

.btn-header {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.88rem;
    transition: all var(--transition);
}
.btn-header:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.burger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-align: center;
    justify-content: center;
}
.btn-primary {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}
.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(212,160,40,0.3);
    color: var(--navy);
}
.btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 16px; font-size: 0.82rem; border-radius: 6px; }
.btn-block { width: 100%; }

/* ===================================================
   HERO
   =================================================== */
.hero {
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,27,45,0.88) 0%, rgba(22,34,54,0.85) 50%, rgba(28,45,68,0.88) 100%);
    z-index: 1;
}
.hero > .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(212,160,40,0.15);
    color: var(--gold-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(212,160,40,0.25);
}

.hero-title {
    font-size: clamp(2rem, 5.5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: rgba(255,255,255,0.75);
    max-width: 720px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
}
.stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.hero .btn-outline {
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}
.hero .btn-outline:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

/* ===================================================
   KEY TAKEAWAYS
   =================================================== */
.key-takeaways {
    background: var(--gray-50);
    border-top: 3px solid var(--gold);
}

.takeaways-list {
    max-width: 800px;
    margin: 0 auto;
}
.takeaways-list li {
    padding: 12px 0 12px 36px;
    position: relative;
    font-size: 1rem;
    color: var(--gray-800);
    line-height: 1.7;
}
.takeaways-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
    font-size: 1.1rem;
}
.takeaways-list li + li {
    border-top: 1px solid var(--gray-200);
}

/* ===================================================
   ADVANTAGES
   =================================================== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
}
.advantage-card--heritage {
    background: linear-gradient(180deg, var(--gold-dim) 0%, var(--white) 45%);
    border-color: rgba(212, 160, 40, 0.35);
}
.advantage-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}
.advantage-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}
.advantage-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
}
.advantage-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--navy);
}
.advantage-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===================================================
   PACKAGES
   =================================================== */
.packages {
    background: var(--gray-50);
}
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
    justify-items: center;
}
.packages-grid .package-card {
    width: 100%;
}
.packages-grid .package-card:nth-child(4),
.packages-grid .package-card:nth-child(5) {
    max-width: 380px;
}
.package-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.package-card .package-features {
    flex: 1;
}
.package-card .btn {
    margin-top: auto;
}
.package-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.package-card--featured {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold), var(--shadow);
}
.package-card--premium {
    border-color: var(--navy);
    background: var(--navy);
    color: var(--white);
}
.package-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.package-icon { font-size: 2.4rem; margin-bottom: 12px; }
.package-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.package-tagline {
    color: var(--gray-400);
    font-size: 0.88rem;
    margin-bottom: 20px;
}
.package-price {
    margin-bottom: 24px;
}
.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
}
.price-per {
    font-size: 0.9rem;
    color: var(--gray-400);
}
.package-features {
    text-align: left;
    margin-bottom: 28px;
}
.package-features li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 0.9rem;
    color: var(--gray-600);
}
.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}
.package-card--premium h3 { color: var(--white); }
.package-card--premium .package-tagline { color: rgba(255,255,255,0.6); }
.package-card--premium .price-amount { color: var(--gold); }
.package-card--premium .price-per { color: rgba(255,255,255,0.5); }
.package-card--premium .package-features li { color: rgba(255,255,255,0.75); }
.package-card--premium .package-features li::before { color: var(--gold); }
.package-card--premium .package-badge {
    background: var(--white);
    color: var(--navy);
}
.package-card--premium .btn-primary {
    background: var(--gold);
    color: var(--navy);
}
.package-card--premium .btn-primary:hover {
    background: var(--gold-light);
}

/* ===================================================
   HOW IT WORKS
   =================================================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: step;
}
.step-card {
    text-align: center;
    padding: 24px;
    position: relative;
}
.step-number {
    width: 56px;
    height: 56px;
    background: var(--gold-dim);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
    border: 2px solid var(--gold);
}
.step-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.step-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===================================================
   PRICING TABLE
   =================================================== */
.pricing {
    background: var(--gray-50);
}
.pricing-table-wrapper {
    overflow-x: auto;
    margin-bottom: 48px;
}
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.pricing-table thead {
    background: var(--navy);
    color: var(--white);
}
.pricing-table th {
    padding: 16px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    text-align: left;
    white-space: nowrap;
}
.pricing-table td {
    padding: 16px 20px;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--gray-100);
}
.pricing-table tbody tr:hover {
    background: var(--gray-50);
}
.pricing-highlight {
    background: var(--gold-dim) !important;
}
.pricing-highlight td {
    font-weight: 600;
}
.pricing-note {
    text-align: center;
    color: var(--gray-400);
    font-size: 0.85rem;
    margin-top: 16px;
}

/* Calculator */
.calculator {
    max-width: 520px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}
.calculator-title {
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    color: var(--navy);
    margin-bottom: 6px;
}
.calculator-subtitle {
    text-align: center;
    color: var(--gray-400);
    font-size: 0.88rem;
    margin-bottom: 28px;
}
.calculator-form { display: flex; flex-direction: column; gap: 20px; }
.calc-field label {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--navy);
    margin-bottom: 8px;
}
.calc-field select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--gray-50);
    color: var(--gray-800);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238d96a7' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}
.calc-counter {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--gray-50);
}
.calc-counter input {
    width: 60px;
    text-align: center;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: inherit;
    background: transparent;
    color: var(--navy);
    padding: 10px 0;
}
.calc-btn-minus,
.calc-btn-plus {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--navy);
    font-weight: 600;
    transition: background var(--transition);
}
.calc-btn-minus:hover,
.calc-btn-plus:hover {
    background: var(--gray-200);
}
.calc-result {
    text-align: center;
    padding: 20px;
    background: var(--navy);
    border-radius: var(--radius-sm);
    color: var(--white);
}
.calc-result-label {
    display: block;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 4px;
}
.calc-result-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
}
.calc-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--gray-50);
    color: var(--gray-800);
    transition: border-color var(--transition);
}
.calc-input:focus {
    outline: none;
    border-color: var(--gold);
}
.calc-input::placeholder {
    color: var(--gray-400);
}
.calculator-book {
    margin-top: 20px;
}

/* ===================================================
   COMPARISON TABLE
   =================================================== */
.comparison-table-wrapper {
    overflow-x: auto;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.comparison-table thead {
    background: var(--navy);
    color: var(--white);
}
.comparison-table th {
    padding: 16px 24px;
    font-size: 0.92rem;
    font-weight: 600;
    text-align: left;
}
.comparison-table td {
    padding: 14px 24px;
    font-size: 0.92rem;
    border-bottom: 1px solid var(--gray-100);
}
.col-regular { color: var(--gray-400); }
.col-vip { color: var(--green); font-weight: 600; }
.comparison-table tbody tr:hover { background: var(--gray-50); }

/* ===================================================
   TRANSFER
   =================================================== */
.transfer {
    background: var(--navy);
    color: var(--white);
}
.transfer-inner { max-width: 800px; margin: 0 auto; }
.transfer .section-title { color: var(--white); }
.transfer-desc {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    margin-bottom: 36px;
    line-height: 1.8;
}
.transfer-features {
    display: grid;
    gap: 24px;
    margin-bottom: 36px;
}
.transfer-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.transfer-feature-icon { font-size: 2rem; flex-shrink: 0; }
.transfer-feature h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.transfer-feature p {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
}
.transfer-cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.transfer .btn-outline {
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}
.transfer .btn-outline:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}
.transfer .btn-primary {
    background: var(--gold);
    color: var(--navy);
}
.transfer .btn-primary:hover {
    background: var(--gold-light);
}

/* ===================================================
   REVIEWS
   =================================================== */
.reviews {
    background: var(--gray-50);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.review-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px;
    transition: all var(--transition);
}
.review-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.review-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}
.review-text {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-avatar {
    width: 40px;
    height: 40px;
    background: var(--gold-dim);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}
.review-name {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
}
.review-country {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* ===================================================
   TEAM
   =================================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.team-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}
.team-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--gold);
}
.team-photo-placeholder {
    width: 80px;
    height: 80px;
    background: var(--gold-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 16px;
}
img.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    margin: 0 auto 20px;
    border: 3px solid var(--gold-dim);
    display: block;
}
.team-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.team-role {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.team-bio {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===================================================
   FAQ
   =================================================== */
.faq { background: var(--gray-50); }
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--gold); }
.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: inherit;
    line-height: 1.5;
}
.faq-toggle {
    font-size: 1.4rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform var(--transition);
    font-weight: 300;
}
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.active .faq-answer {
    max-height: 600px;
}
.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.93rem;
    color: var(--gray-600);
    line-height: 1.8;
}

/* ===================================================
   PAYMENT METHODS
   =================================================== */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.payment-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    transition: all var(--transition);
}
.payment-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
}
.payment-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}
.payment-card h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}
.payment-card p {
    font-size: 0.78rem;
    color: var(--gray-400);
    line-height: 1.5;
}

/* ===================================================
   BLOG PREVIEW
   =================================================== */
.blog-preview { background: var(--gray-50); }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}
.blog-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    color: inherit;
}
.blog-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
    color: inherit;
}
.blog-card-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.blog-card-content {
    padding: 20px;
}
.blog-card-content h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.4;
}
.blog-card-content p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 8px;
}
.blog-card-date {
    font-size: 0.78rem;
    color: var(--gray-400);
}
.blog-more { text-align: center; }

/* ===================================================
   PARTNER SERVICES
   =================================================== */
.partner-services {
    background: var(--white);
}
.partner-services-label {
    text-align: center;
    font-size: 0.88rem;
    color: var(--gray-400);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}
.partner-services-label strong {
    color: var(--gold);
}
.partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.partner-card {
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-height: 280px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
.partner-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,27,45,0.35) 0%, rgba(15,27,45,0.82) 100%);
    border-radius: var(--radius);
    transition: background var(--transition);
    z-index: 1;
}
.partner-card:hover::before {
    background: linear-gradient(180deg, rgba(15,27,45,0.25) 0%, rgba(15,27,45,0.7) 100%);
}
.partner-card > * {
    position: relative;
    z-index: 2;
}
.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    color: var(--white);
}
.partner-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.partner-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}
.partner-card-link {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gold);
    transition: color var(--transition);
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.partner-card:hover .partner-card-link {
    color: var(--gold-light);
}

/* ===================================================
   CTA FINAL
   =================================================== */
.cta-final {
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 80px 0;
    position: relative;
}
.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,27,45,0.88) 0%, rgba(28,45,68,0.88) 100%);
    z-index: 1;
}
.cta-final > .container {
    position: relative;
    z-index: 2;
}
.cta-final h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 12px;
}
.cta-final > .container > p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.cta-final .btn-outline {
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}
.cta-final .btn-outline:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}
.cta-note {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand .logo-text { display: block; margin-top: 8px; color: var(--white); font-size: 1.1rem; }
.footer-brand-logo {
    display: block;
    margin-bottom: 4px;
}
.footer-brand-logo .custom-logo-link {
    display: inline-block;
    line-height: 0;
    transition: opacity var(--transition);
}
.footer-brand-logo .custom-logo-link:hover {
    opacity: 0.88;
}
.footer-brand-logo .custom-logo-link img {
    max-height: 44px;
    width: auto;
    height: auto;
}
.footer-tagline { font-size: 0.88rem; margin-top: 12px; line-height: 1.6; }
.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.footer-links ul li + li { margin-top: 8px; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact ul li { margin-bottom: 12px; }
.footer-contact a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition);
}
.footer-contact a:hover { color: var(--gold); }
.footer-contact svg { flex-shrink: 0; }
.footer-hours p { font-size: 0.9rem; }
.footer-airports { margin-top: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-partner {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-partner-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 12px;
    font-weight: 600;
}
.footer-partner-link {
    display: inline-block;
    margin-bottom: 10px;
    transition: opacity var(--transition);
}
.footer-partner-link:hover {
    opacity: 0.8;
}
.footer-partner-logo {
    max-height: 52px;
    width: auto;
    height: auto;
    display: block;
}
.footer-partner-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.5;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}
.footer-update { color: rgba(255,255,255,0.3); }

/* ===================================================
   BLOG TEMPLATES (archive, single)
   =================================================== */
.blog-archive {
    padding: 120px 0 80px;
    min-height: 60vh;
}
.blog-archive .section-title { text-align: left; margin-bottom: 40px; }
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.single-post {
    padding: 120px 0 80px;
}
.single-post-inner {
    max-width: 780px;
    margin: 0 auto;
}
.single-post h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.3;
}
.single-post-meta {
    color: var(--gray-400);
    font-size: 0.88rem;
    margin-bottom: 32px;
}
.single-post-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--gray-800);
}
.single-post-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin: 40px 0 16px;
}
.single-post-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    margin: 32px 0 12px;
}
.single-post-content p { margin-bottom: 18px; }
.single-post-content ul,
.single-post-content ol {
    margin: 18px 0;
    padding-left: 24px;
}
.single-post-content li {
    list-style: disc;
    margin-bottom: 8px;
}
.single-post-content img {
    border-radius: var(--radius);
    margin: 24px 0;
}
.single-post-content blockquote {
    border-left: 4px solid var(--gold);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--gray-50);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--gray-600);
}

/* ===================================================
   404 PAGE
   =================================================== */
.page-404 {
    padding: 160px 0 120px;
    text-align: center;
    min-height: 70vh;
}
.page-404 h1 {
    font-size: 6rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 16px;
}
.page-404 p {
    font-size: 1.15rem;
    color: var(--gray-600);
    margin-bottom: 32px;
}

/* ===================================================
   RESPONSIVE — Tablet
   =================================================== */
@media (max-width: 1024px) {
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
    .packages-grid { grid-template-columns: repeat(2, 1fr); }
    .packages-grid .package-card:nth-child(4),
    .packages-grid .package-card:nth-child(5) { max-width: none; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(3, 1fr); }
    .payment-grid { grid-template-columns: repeat(3, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .partner-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .posts-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===================================================
   RESPONSIVE — Mobile
   =================================================== */
@media (max-width: 768px) {
    section { padding: 60px 0; }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--navy);
        padding: 20px;
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.35s ease;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
    }
    .main-nav .nav-list {
        flex-direction: column;
        gap: 0;
    }
    .main-nav .nav-list a {
        display: block;
        padding: 14px 0;
        font-size: 1.05rem;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .burger { display: flex; }
    .btn-header { display: none; }

    .hero { padding: 120px 0 80px; }
    .hero-title { font-size: 1.8rem; }
    .hero-stats { gap: 20px; }
    .stat-number { font-size: 1.5rem; }

    .advantages-grid { grid-template-columns: 1fr; }
    .packages-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
    .steps-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .payment-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: 1fr; }
    .partner-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .posts-grid { grid-template-columns: 1fr; }

    /* Responsive pricing table */
    .pricing-table thead { display: none; }
    .pricing-table tbody tr {
        display: flex;
        flex-direction: column;
        margin-bottom: 16px;
        border: 1px solid var(--gray-200);
        border-radius: var(--radius);
        overflow: hidden;
    }
    .pricing-table td {
        display: flex;
        justify-content: space-between;
        padding: 12px 16px;
    }
    .pricing-table td::before {
        content: attr(data-label);
        font-weight: 600;
        font-size: 0.85rem;
        color: var(--gray-400);
    }

    .comparison-table { font-size: 0.82rem; }
    .comparison-table th,
    .comparison-table td { padding: 10px 12px; }

    .calculator { padding: 24px; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-final .btn-lg { width: 100%; max-width: 320px; }
}

@media (max-width: 480px) {
    .hero-cta { flex-direction: column; align-items: center; }
    .hero .btn-lg { width: 100%; max-width: 300px; }
    .payment-grid { grid-template-columns: 1fr; }
}
