/* Panda Journeys - Premium Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Premium Color Palette */
    --navy-dark: #0f172a;
    --navy: #1e293b;
    --navy-light: #334155;
    --gold: #c9a962;
    --gold-light: #d4af37;
    --gold-dark: #a0823d;
    --cream: #faf9f7;
    --white: #ffffff;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --border-light: #e2e8f0;
    --border-gold: rgba(201, 169, 98, 0.3);
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-max: 1280px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

/* Navigation */
.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-svg {
    width: 50px;
    height: 40px;
    color: var(--navy);
}

.nav-brand .logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-right: 12px;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s;
}

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

.btn-whatsapp {
    background: var(--navy);
    color: var(--white) !important;
    padding: 14px 28px;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s;
    min-height: 48px;
    min-width: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-whatsapp:hover {
    background: var(--gold);
    color: var(--navy) !important;
}

/* Hero Video Background */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.section-video-overlay,
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.55);
    z-index: 1;
}

/* Make sections position relative for video positioning */
.hero,
.visa-section,
.process-section,
.cta-section {
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.routes-section {
    position: relative;
    background: var(--white);
}

/* Ensure video covers entire section */
.visa-section .section-video,
.process-section .section-video,
.cta-section .section-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

/* Ensure content is above video */
.visa-section .container,
.process-section .container,
.cta-section .container,
.hero-content {
    position: relative;
    z-index: 2;
}

/* Adjust overlay opacity for different sections - lower opacity to show video */
.visa-section .section-video-overlay {
    background: rgba(250, 249, 247, 0.65);
}

.process-section .section-video-overlay {
    background: rgba(15, 23, 42, 0.70);
}

.cta-section .section-video-overlay {
    background: rgba(15, 23, 42, 0.60);
}

/* Route Images */
.route-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    margin-bottom: 25px;
}

.route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.route-card:hover .route-image img {
    transform: scale(1.05);
}

.route-card {
    padding: 0 0 50px 0;
    overflow: hidden;
}

.route-content {
    padding: 0 50px;
}

.route-number {
    top: 190px;
    right: 30px;
    background: rgba(255,255,255,0.9);
    padding: 10px 20px;
    font-size: 36px;
}

/* About Image */
.about-image {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 4/5;
    object-fit: cover;
    border: 1px solid var(--border-light);
}

/* Image Loading Placeholder */
img {
    background: linear-gradient(135deg, #e8e6e3 0%, #f0eeeb 100%);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 10px;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    padding: 4px 8px;
    transition: all 0.3s;
    font-family: var(--font-body);
}

.lang-btn:hover {
    color: var(--navy);
}

.lang-btn.active {
    color: var(--gold);
    font-weight: 600;
}

.lang-divider {
    color: var(--border-light);
    font-size: 12px;
}

/* Hero Section */
.hero {
    background: var(--navy-dark);
    color: var(--white);
    padding: 140px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(201, 169, 98, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201, 169, 98, 0.05) 0%, transparent 40%);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.visa-badge {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-accent {
    color: var(--gold);
    font-style: italic;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 20px;
    opacity: 0.9;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 16px;
    opacity: 0.7;
    margin-bottom: 50px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 80px;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 18px 40px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid var(--gold);
}

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

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 18px 40px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-large {
    padding: 22px 50px;
    font-size: 15px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    line-height: 1.6;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.2);
}

/* Section Styles */
section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header.light {
    color: var(--white);
}

.section-label {
    display: inline-block;
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-label.light {
    color: var(--gold);
    border-color: var(--gold);
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-header.light h2 {
    color: var(--white);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Visa Section */
.visa-section {
    background: transparent;
}

.visa-section .section-header h2 {
    color: var(--navy);
}

.visa-section .section-subtitle {
    color: var(--text-light);
}

.visa-section .visa-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.visa-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.visa-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    padding: 50px 35px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
}

.visa-card:hover {
    background: rgba(255, 255, 255, 0.90);
    border-color: rgba(201, 169, 98, 0.6);
    transform: translateY(-5px);
}

.visa-icon {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 25px;
}

.visa-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--navy);
    font-weight: 500;
}

.visa-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

/* Visa Tabs */
.visa-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.visa-tab {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    padding: 20px 40px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    min-width: 200px;
}

.visa-tab:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--gold);
}

.visa-tab.active {
    background: var(--navy);
    border-color: var(--gold);
}

.tab-icon {
    font-size: 28px;
}

.tab-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--navy);
}

.visa-tab.active .tab-title {
    color: var(--white);
}

.tab-badge {
    font-size: 11px;
    padding: 4px 12px;
    background: var(--gold);
    color: var(--navy);
    font-weight: 600;
    letter-spacing: 1px;
}

.visa-tab.active .tab-badge {
    background: var(--gold-light);
}

/* Visa Content */
.visa-content {
    display: none;
}

.visa-content.active {
    display: block;
}

.visa-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px;
    border: 1px solid var(--border-gold);
}

.visa-intro h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 15px;
}

.visa-intro p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.visa-cta {
    text-align: center;
    margin-top: 50px;
}

/* Routes Section */
.routes-section {
    background: var(--white);
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.route-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 50px;
    position: relative;
    transition: all 0.3s;
}

.route-card:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.route-number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 300;
    color: var(--border-light);
    line-height: 1;
}

.route-card:hover .route-number {
    color: var(--gold);
}

.route-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.route-content h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.route-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-style: italic;
}

.route-desc {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 15px;
}

.route-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.route-highlights span {
    border: 1px solid var(--border-light);
    padding: 8px 16px;
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

/* Process Section */
.process-section {
    background: var(--navy);
    color: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.step {
    text-align: center;
    padding: 20px;
}

.step-number {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 300;
    color: var(--gold);
    opacity: 0.5;
    margin-bottom: 20px;
    line-height: 1;
}

.step h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--white);
}

.step p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

/* Pricing Section */
.pricing-section {
    background: var(--cream);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    background: var(--white);
    padding: 50px 40px;
    border: 1px solid var(--border-light);
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: var(--gold);
    background: var(--navy);
    color: var(--white);
}

.pricing-card.featured .pricing-tier,
.pricing-card.featured .price,
.pricing-card.featured .pricing-features li {
    color: var(--white);
}

.pricing-card.featured .pricing-note {
    color: var(--text-muted);
}

.pricing-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    margin: -50px -40px 30px -40px;
    width: calc(100% + 80px);
}

.pricing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pricing-card:hover .pricing-image img {
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    padding: 8px 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-tier {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.price {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 30px;
}

.price span {
    font-size: 24px;
    margin: 0 5px;
    opacity: 0.5;
}

.price-unit {
    font-size: 16px !important;
    opacity: 0.7 !important;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-light);
    font-size: 14px;
}

.pricing-card.featured .pricing-features li {
    border-color: var(--navy-light);
}

.pricing-note {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
}

.pricing-footer {
    text-align: center;
    background: var(--white);
    padding: 50px;
    border: 1px solid var(--border-light);
    position: relative;
}

.pricing-footer p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 14px;
}

.cta-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 32px;
}

.cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.paypal-badge {
    height: 52px;
    width: auto;
}

.payment-note {
    font-size: 14px;
    color: var(--navy);
    font-weight: 700;
    letter-spacing: 0.3px;
    text-align: center;
}

/* Why Us Section */
.why-us-section {
    background: var(--white);
}

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

.why-card {
    text-align: center;
    padding: 30px;
}

.why-icon {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 25px;
}

.why-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 24px rgba(201, 169, 98, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover .why-icon-circle {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(201, 169, 98, 0.4);
}

.why-icon-emoji {
    font-size: 36px;
    line-height: 1;
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--navy);
}

.why-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

/* About Section */
.about-section {
    background: var(--cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text .section-label {
    margin-bottom: 20px;
}

.about-text h2 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 15px;
}

.about-intro {
    font-size: 20px;
    color: var(--gold);
    font-style: italic;
    margin-bottom: 30px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 15px;
}

.about-text blockquote {
    border-left: 3px solid var(--gold);
    padding-left: 30px;
    margin: 40px 0;
    font-family: var(--font-display);
    font-size: 20px;
    font-style: italic;
    color: var(--navy);
    line-height: 1.6;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.about-image-placeholder {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #e8e6e3 0%, #f0eeeb 100%);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Partner Section */
.partner-section {
    background: var(--cream);
    padding: var(--section-padding) 0;
}

.partner-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.partner-info {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}

.partner-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-placeholder {
    width: 220px;
    height: 220px;
    border: 2px solid var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--white);
}

.partner-logo-text {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--gold-dark);
    letter-spacing: 2px;
}

.partner-logo-sub {
    font-size: 10px;
    color: var(--text-light);
    text-align: center;
    margin-top: 8px;
    line-height: 1.4;
    padding: 0 16px;
    letter-spacing: 0.5px;
}

.partner-details h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.partner-tagline {
    font-size: 14px;
    color: var(--gold-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.partner-desc {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.partner-desc strong {
    color: var(--navy);
}

.partner-credentials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.credential-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s;
}

.credential-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.credential-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.credential-text h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.credential-text p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

.partner-license-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.license-image-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.license-image-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.license-caption {
    padding: 16px 20px;
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
    background: var(--white);
    border-top: 1px solid var(--border-light);
}

.partner-awards-section {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 48px;
}

.awards-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--navy);
    text-align: center;
    margin-bottom: 40px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.award-card {
    background: var(--cream);
    border: 1px solid var(--border-gold);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}

.award-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.award-emoji {
    font-size: 40px;
    margin-bottom: 16px;
}

.award-info h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.award-theme {
    font-size: 13px;
    color: var(--gold-dark);
    margin-bottom: 12px;
}

.award-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

.awards-photo-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 32px;
    font-style: italic;
}

.partner-quote {
    background: var(--navy-dark);
    padding: 48px 60px;
    text-align: center;
}

.partner-quote blockquote {
    font-family: var(--font-display);
    font-size: 20px;
    font-style: italic;
    color: var(--cream);
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

/* FAQ Section */
.faq-section {
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.faq-item {
    padding: 40px;
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-item h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.faq-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

.faq-item p + p {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--border-light);
    color: var(--navy);
    font-weight: 500;
}

.faq-payment {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.faq-paypal-logo {
    height: 22px;
    width: auto;
}

/* CTA Section */
.cta-section {
    background: var(--navy-dark);
    color: var(--white);
    text-align: center;
    padding: 140px 0;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-section > p {
    font-size: 18px;
    opacity: 0.7;
    margin-bottom: 50px;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.cta-note {
    font-size: 13px !important;
    opacity: 0.5 !important;
    letter-spacing: 1px;
}

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

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .footer-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 25px;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact p,
.footer-social p {
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-contact a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-contact .contact-primary a {
    color: var(--white);
    font-weight: 500;
}

.footer-contact .contact-backup a {
    color: var(--text-muted);
    font-size: 13px;
}

.footer-bottom {
    border-top: 1px solid var(--navy-light);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 72px;
    height: 72px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 999;
    transition: all 0.3s;
    text-decoration: none;
    gap: 2px;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float svg {
    width: 34px;
    height: 34px;
}

.whatsapp-float-text {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: white;
    text-align: center;
    line-height: 1.1;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128c7e;
    animation: none;
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Navbar WhatsApp CTA */
.nav-whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: white !important;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    text-decoration: none;
    white-space: nowrap;
}

.nav-whatsapp-cta:hover {
    background: #128c7e;
    transform: translateY(-1px);
    color: white !important;
}

.nav-whatsapp-cta svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* =============================================
   FEATURED ROUTES STRIP
   ============================================= */
.featured-routes {
    background: var(--cream);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-light);
}

.featured-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
    gap: 20px;
}

.featured-title-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.featured-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.featured-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--navy);
    margin: 0;
}

.featured-see-all {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 2px;
    transition: all 0.2s;
}

.featured-see-all:hover {
    color: var(--gold);
}

/* =============================================
   ROUTE CAROUSEL (horizontal scroll)
   ============================================= */
.route-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 0 20px;
    background: var(--cream);
    scroll-snap-type: x mandatory;
    scroll-padding: 0 max(40px, calc((100vw - 1200px) / 2));
}

.route-carousel::-webkit-scrollbar {
    display: none;
}

.route-carousel-track {
    display: flex;
    gap: 16px;
    padding: 0 max(40px, calc((100vw - 1200px) / 2));
}

.route-carousel-item {
    flex: 0 0 auto;
    width: 300px;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: center;
}

.route-carousel-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.route-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.route-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 10px 0 0;
}

.route-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(15,23,42,0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.route-carousel-dot.active {
    background: var(--navy);
    width: 24px;
    border-radius: 4px;
}

.route-carousel-disclaimer {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    padding: 8px 0 0;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .route-carousel-track {
        gap: 12px;
        padding: 0 20px;
    }
    .route-carousel-item {
        width: 260px;
        height: 360px;
    }
}

@media (max-width: 480px) {
    .route-carousel-track {
        padding: 0 16px;
    }
    .route-carousel-item {
        width: 240px;
        height: 320px;
    }
}

/* =============================================
   WHATSAPP STICKY BAR (replaces floating button)
   ============================================= */
.whatsapp-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy);
    z-index: 998;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.whatsapp-sticky-bar.visible {
    transform: translateY(0);
}

.whatsapp-sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.whatsapp-sticky-text {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    line-height: 1.4;
}

.whatsapp-sticky-text strong {
    color: white;
}

.whatsapp-sticky-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(37,211,102,0.5);
    min-height: 48px;
}

.whatsapp-sticky-btn:hover {
    background: #128c7e;
    transform: scale(1.03);
    color: white;
}

.whatsapp-sticky-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.whatsapp-sticky-note {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
}

/* =============================================
   RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .visa-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Partner section 1024px */
    .partner-credentials {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-license-images {
        gap: 24px;
    }

    /* Featured routes tablet — now handled by carousel */
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .container {
        padding: 0 20px;
    }

    .navbar .container {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 20px;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .stat-divider {
        display: none;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .visa-grid,
    .routes-grid,
    .process-steps,
    .pricing-grid,
    .why-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-brand .logo-svg {
        margin: 0 auto 20px;
    }

    /* Partner section responsive */
    .partner-info {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .partner-logo-wrap {
        justify-content: center;
    }

    .partner-logo-placeholder {
        width: 180px;
        height: 180px;
    }

    .partner-logo-text {
        font-size: 34px;
    }

    .partner-license-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .license-image-card img {
        height: 240px;
    }

    .partner-credentials {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-awards-section {
        padding: 32px 24px;
    }

    .awards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* CTA row responsive */
    .cta-row {
        flex-direction: column;
        gap: 24px;
    }

    .payment-badges {
        align-items: center;
    }

    /* Featured routes mobile */
    .featured-routes {
        padding: 40px 0;
    }

    .featured-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    /* WhatsApp sticky bar mobile */
    .whatsapp-sticky-inner {
        flex-direction: row;
        gap: 10px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .whatsapp-sticky-text {
        font-size: 12px;
    }

    .whatsapp-sticky-note {
        font-size: 10px;
    }

    .whatsapp-sticky-btn {
        padding: 12px 20px;
        font-size: 14px;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

    .route-card {
        padding: 30px;
    }

    .pricing-card {
        padding: 40px 30px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 64px;
        height: 64px;
        flex-direction: column;
        gap: 1px;
    }

    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }

    .whatsapp-float-text {
        font-size: 8px;
    }

    .nav-whatsapp-cta {
        padding: 8px 16px;
        font-size: 13px;
    }

    .nav-whatsapp-cta span {
        display: none;
    }

    /* Partner section 480px */
    .partner-credentials {
        grid-template-columns: 1fr;
    }

    .partner-logo-placeholder {
        width: 150px;
        height: 150px;
    }

    .partner-logo-text {
        font-size: 28px;
    }

    /* WhatsApp sticky bar 480px — make it BIG and obvious */
    .whatsapp-sticky-bar {
        z-index: 9999;
    }

    .whatsapp-sticky-inner {
        padding-top: 12px;
        padding-bottom: 12px;
        gap: 12px;
    }

    .whatsapp-sticky-text {
        display: none;
    }

    .whatsapp-sticky-note {
        display: none;
    }

    .whatsapp-sticky-btn {
        padding: 16px 28px !important;
        font-size: 16px !important;
        font-weight: 800 !important;
        border-radius: 50px !important;
        min-height: 56px;
        flex: 1;
        justify-content: center;
        box-shadow: 0 8px 25px rgba(37,211,102,0.6) !important;
    }

    .whatsapp-sticky-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* =============================================
   LIGHTBOX — poster click-to-enlarge
   ============================================= */
.lightbox-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.lightbox-modal.active {
    display: flex;
}
.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: fixed;
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    font-size: 28px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.25);
}
.lightbox-close { top: 20px; right: 24px; font-size: 36px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-counter {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    letter-spacing: 1px;
}

/* Lightbox — mobile responsive */
@media (max-width: 768px) {
    .lightbox-img {
        max-width: 96vw;
        max-height: 80vh;
    }
    .lightbox-close {
        top: 12px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 28px;
    }
    .lightbox-prev,
    .lightbox-next {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-counter { bottom: 14px; font-size: 12px; }
}
