/* ========================================
   GLOBAL STYLES & RESET
   ======================================== */

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

:root {
    /* Color Palette - Sophisticated High-End */
    --primary-color: #1a3a3a;
    --primary-dark: #0f2424;
    --primary-light: #2d5757;
    --accent-color: #c9a961;
    --accent-dark: #a68b4d;
    
    --text-dark: #0f1419;
    --text-medium: #3d4852;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Effects */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   STICKY BOOKING BAR
   ======================================== */

.sticky-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

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

.sticky-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-content {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.sticky-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.sticky-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* ========================================
   NAVIGATION
   ======================================== */

.nav {
    background: var(--bg-white);
    padding: 1.5rem 0;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    transition: var(--transition);
}

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

.nav-cta {
    background: var(--primary-color);
    color: var(--bg-white) !important;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--primary-dark);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 58, 58, 0.85), rgba(15, 36, 36, 0.75)),
                url('images/kegon-falls-autumn-foliage-peak-nikko.webp') center/cover;
    background-attachment: fixed;
    color: var(--bg-white);
    text-align: center;
    padding: 2rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.trust-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hero-note {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ========================================
   BUTTONS / CTA
   ======================================== */

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-body);
    text-decoration: none;
    text-align: center;
}

.cta-primary {
    background: var(--accent-color);
    color: var(--text-dark);
}

.cta-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-secondary {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.cta-secondary:hover {
    background: var(--bg-white);
    color: var(--primary-color);
}

.cta-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.cta-full {
    width: 100%;
}

/* ========================================
   HIGHLIGHTS SECTION
   ======================================== */

.highlights {
    padding: var(--spacing-lg) 0;
    background: var(--bg-white);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.highlight-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.highlight-card p {
    color: var(--text-medium);
}

/* ========================================
   EXPERIENCE SECTION
   ======================================== */

.experience {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.experience-text h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.experience-text h3:first-child {
    margin-top: 0;
}

.experience-text p {
    color: var(--text-medium);
    line-height: 1.8;
}

.experience-images {
    display: grid;
    gap: 1.5rem;
}

.image-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.image-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.image-card img {
    width: 100%;
    display: block;
}

/* ========================================
   STORY / TIMELINE SECTION
   ======================================== */

.story {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.story-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
}

.story-timeline {
    position: relative;
    padding-left: 3rem;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3.6rem;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--accent-color);
    border: 3px solid var(--bg-white);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-time {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.timeline-content p {
    color: var(--text-medium);
    line-height: 1.8;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: var(--spacing-lg) 0;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: var(--spacing-md);
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    color: #ffa500;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
}

.testimonial-author strong {
    color: var(--text-dark);
}

.verified {
    display: block;
    color: var(--primary-color);
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

.trust-section {
    text-align: center;
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 2px solid var(--border-color);
}

.trust-text {
    font-size: 1.1rem;
    color: var(--text-medium);
}

/* ========================================
   INCLUDED SECTION
   ======================================== */

.included {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: var(--spacing-lg);
}

.included-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.included-list {
    list-style: none;
    padding: 0;
}

.included-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-medium);
    font-size: 1.05rem;
}

.included-list li:last-child {
    border-bottom: none;
}

.important-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.important-note strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.important-note p {
    color: var(--text-medium);
    margin: 0.3rem 0;
}

/* ========================================
   BOOKING SECTION WITH PHOTO
   ======================================== */

.booking-photo-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 58, 58, 0.7), rgba(15, 36, 36, 0.8)),
                url('images/kegon-falls-full-view-nikko-national-park.webp') center/cover;
    background-attachment: fixed;
    color: var(--bg-white);
    text-align: center;
    padding: var(--spacing-xl) 2rem;
}

.booking-photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.booking-photo-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.booking-price-badge {
    display: inline-block;
    background: rgba(201, 169, 97, 0.95);
    color: var(--text-dark);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.booking-price-badge .price-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.booking-price-badge .price-value {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    margin: 0 0.3rem;
}

.booking-price-badge .price-per {
    font-size: 0.95rem;
    opacity: 0.8;
}

.booking-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 15px rgba(0,0,0,0.4);
    line-height: 1.2;
}

.booking-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-booking-prominent {
    padding: 1.8rem 4rem;
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--accent-color);
    color: var(--text-dark);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 25px rgba(201, 169, 97, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.cta-booking-prominent:hover {
    background: var(--accent-dark);
    transform: translateY(-4px);
    box-shadow: 0 8px 35px rgba(201, 169, 97, 0.7);
}

.booking-features {
    margin-top: 2rem;
    font-size: 1rem;
    opacity: 0.9;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.faq-list {
    margin-top: var(--spacing-lg);
}

.faq-item {
    background: var(--bg-white);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ========================================
   VISUAL BOOKING CTA SECTION
   ======================================== */

.visual-cta {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 58, 58, 0.75), rgba(15, 36, 36, 0.85)),
                url('images/kegon-falls-full-view-nikko-national-park.webp') center/cover;
    background-attachment: fixed;
    color: var(--bg-white);
    text-align: center;
    padding: var(--spacing-xl) 2rem;
    margin: var(--spacing-xl) 0;
}

.visual-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
}

.visual-cta-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.visual-cta-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.visual-cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-booking-large {
    padding: 1.5rem 3.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--accent-color);
    color: var(--text-dark);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-booking-large:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(201, 169, 97, 0.6);
}

.visual-cta-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */

.final-cta {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
    text-align: center;
}

.final-cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.urgency-note {
    background: rgba(212, 163, 115, 0.3);
    padding: 1rem 2rem;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 600;
}

.final-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--text-dark);
    color: var(--bg-light);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: var(--spacing-md);
}

.footer-col h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p, .footer-col li {
    color: var(--bg-light);
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col a {
    color: var(--bg-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--accent-color);
}

.footer-trust {
    margin-top: 1rem;
}

.footer-bottom {
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 1rem;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--bg-light);
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .nav-links {
        display: none;
    }
    
    .experience-content {
        grid-template-columns: 1fr;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .price-card-featured {
        transform: scale(1);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .story-timeline {
        padding-left: 2rem;
    }
    
    .timeline-item::before {
        left: -2.6rem;
    }
    
    .sticky-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .container, .container-narrow {
        padding: 0 1rem;
    }
    
    .visual-cta {
        min-height: 400px;
        background-attachment: scroll;
    }
    
    .visual-cta-title {
        font-size: 2rem;
    }
    
    .cta-booking-large {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    .booking-photo-section {
        min-height: 500px;
        background-attachment: scroll;
    }
    
    .booking-title {
        font-size: 2.2rem;
    }
    
    .booking-price-badge .price-value {
        font-size: 2rem;
    }
    
    .cta-booking-prominent {
        padding: 1.3rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .booking-features {
        flex-direction: column;
        gap: 0.3rem;
    }
}

/* ========================================
   ANIMATIONS & EFFECTS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scroll offset for sticky header */
html {
    scroll-padding-top: 100px;
}
