/* 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);
}

.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: 12px 24px;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s;
}

.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;
}

/* 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);
}

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

/* 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-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;
}

/* 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;
}

/* 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 .logo-svg {
    color: var(--gold);
    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-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: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    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;
}

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

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

/* 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);
    }
}

@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;
    }
}

@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: 50px;
        height: 50px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}
