/* === WASA Vietnam Travel — Modern Luxury 2025 === */
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

:root {
    --green: #6b7c5e;
    --green-light: #F4FDE4;
    --green-muted: #9aab8c;
    --cream: #fdfcfa;
    --warm: #F2E8DF;
    --white: #ffffff;
    --black: #0d0d0d;
    --text: #1a1a1a;
    --text-secondary: #5a5a5a;
    --text-muted: #999;
    --border: rgba(0,0,0,0.05);
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'WenQuanYi Zen Hei Sharp', 'Noto Sans KR', sans-serif;
    --font-body-en: 'Be Vietnam Pro', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --radius: 16px;
    --radius-lg: 24px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html[lang="en"] body, html[lang="vi"] body { font-family: var(--font-body-en); }
html[lang="ko"] body { font-family: var(--font-body); }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    font-size: 15px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-wrap: pretty;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

/* === NAVIGATION === */
.lang-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    transition: all 0.5s var(--ease);
}

.lang-nav.scrolled {
    padding: 16px 48px;
    background: rgba(250, 249, 247, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 36px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-menu a {
    text-decoration: none;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
    letter-spacing: 1.5px;
    font-weight: 400;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.lang-nav.scrolled .nav-menu a {
    color: var(--text-secondary);
}

.nav-menu a:hover {
    color: var(--white);
}

.lang-nav.scrolled .nav-menu a:hover {
    color: var(--black);
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 26px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.4s ease;
}

.lang-nav.scrolled .logo-img {
    filter: none;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 6px;
    color: var(--white);
    transition: color 0.4s ease;
}

.lang-nav.scrolled .logo-text {
    color: var(--black);
}

.lang-select-wrapper {
    position: relative;
}

.lang-select {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.85);
    padding: 7px 24px 7px 0;
    font-size: 0.75rem;
    font-family: var(--font-body);
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
}

.lang-nav.scrolled .lang-select {
    color: var(--text);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='rgba(0,0,0,0.4)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
}

.lang-select option {
    background: var(--white);
    color: var(--text);
}

/* === HERO === */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--black);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-video.ready {
    opacity: 0.75;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(0,0,0,0.4) 0%, 
        rgba(0,0,0,0.2) 45%, 
        rgba(0,0,0,0.65) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}

.hero-subtitle {
    font-size: 0.7rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 28px;
    font-weight: 300;
    opacity: 0;
    animation: heroFade 1.4s var(--ease) 0.3s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 28px;
    opacity: 0;
    animation: heroFade 1.4s var(--ease) 0.6s forwards;
    letter-spacing: -1px;
    text-wrap: balance;
}

.hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
    line-height: 1.8;
    max-width: 480px;
    margin: 0 auto;
    opacity: 0;
    animation: heroFade 1.4s var(--ease) 0.9s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: heroFade 1.4s var(--ease) 1.2s forwards;
}

.hero-scroll span {
    display: none;
}

.scroll-line {
    width: 1px;
    height: 56px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: pulse 2.5s ease-in-out infinite;
}

@keyframes heroFade {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* === SECTIONS === */
.section { padding: 100px 0; }

.section-label {
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 500;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--black);
    line-height: 1.15;
    letter-spacing: -1px;
    text-wrap: balance;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 520px;
    font-weight: 300;
    line-height: 1.9;
}

/* === ABOUT === */
.about { background: var(--white); }

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 64px;
    align-items: center;
}

.about-content p {
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 2;
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.about-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform 1s var(--ease);
}

.about-image:hover img {
    transform: scale(1.03);
}

/* === FEATURES (Stay & Dine) === */
.features { background: var(--white); }

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

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.feature-img-wrapper {
    overflow: hidden;
    height: 280px;
}

.feature-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1s var(--ease);
}

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

.feature-text {
    padding: 32px;
}

.feature-text h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 400;
    color: var(--black);
}

.feature-text p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.85;
    text-wrap: pretty;
}

.feature-note {
    font-size: 0.75rem !important;
    color: var(--text-muted) !important;
    font-style: italic;
    margin-top: 12px;
}

/* === EXPERIENCES (Itinerary rows) === */
.experiences { background: var(--white); }

.timeline {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
    cursor: default;
}

.timeline-item:first-child {
    border-top: 1px solid var(--border);
}

.timeline-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0;
}

.timeline-day {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    min-width: auto;
}

.timeline-header h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--black);
    flex: none;
    line-height: 1.2;
}

.timeline-toggle { display: none; }

.timeline-detail {
    max-height: none;
    overflow: visible;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-start;
    align-content: flex-start;
}

.timeline-item.open .timeline-detail {
    max-height: none;
    padding: 0;
}

.timeline-detail p {
    display: contents;
}

.timeline-tag {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 300;
    padding: 6px 14px;
    background: var(--warm);
    border-radius: 20px;
    border: 1px solid var(--border);
    white-space: nowrap;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.timeline-tag:hover {
    background: var(--green-light);
    color: var(--green);
    border-color: rgba(107, 124, 94, 0.25);
}

.timeline-img { display: none; }
.timeline-content { display: none; }
.timeline-marker { display: none; }

@media (max-width: 768px) {
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .timeline-item { grid-template-columns: 1fr; gap: 12px; }
}

/* === QUOTE === */
.quote-section {
    background: var(--warm);
    text-align: center;
    padding: 80px 40px;
}

.quote-section blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 300;
    color: var(--text);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.5;
}

/* === PACKAGES === */
.packages { background: var(--white); }

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.packages-grid--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.price-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 300;
}

.package-icon {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(0,0,0,0.03);
}

.package-green .package-icon { background: rgba(45,107,36,0.06); }
.package-ocean .package-icon { background: rgba(29,95,128,0.06); }
.package-coastal .package-icon { background: rgba(26,74,106,0.06); }

.package-green .package-header h3::before,
.package-ocean .package-header h3::before {
    content: none;
}

.package-tagline {
    font-family: var(--font-display);
    font-size: 1.1rem !important;
    font-style: italic;
    color: var(--text) !important;
    margin-bottom: 12px !important;
    font-weight: 400 !important;
}

.package-green {
    border-top: none;
    background: linear-gradient(165deg, #dcefd4 0%, var(--white) 50%);
    border-color: #5a9e4e;
}

.package-green .package-header h3 {
    color: #2d6b24;
}

.package-green .package-header h3::before {
    content: '';
}

.package-ocean {
    border-top: none;
    background: linear-gradient(165deg, #d4e8f5 0%, var(--white) 50%);
    border-color: #4a8aae;
}

.package-ocean .package-header h3 {
    color: #1d5f80;
}

.package-coastal {
    border-top: none;
    background: linear-gradient(165deg, #c8dff0 0%, #eaf4fb 30%, var(--white) 60%);
    border-color: #2a6a8e;
}

.package-coastal .package-header h3 {
    color: #1a4a6a;
}

.package-coastal:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 60px rgba(42, 106, 142, 0.12);
    border-color: #2a6a8e;
}

.package-hotel {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 300;
    display: block;
    margin-top: 4px;
}

.package-green:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 60px rgba(74, 122, 62, 0.15);
    border-color: #4a7a3e;
}

.package-ocean:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 60px rgba(58, 122, 158, 0.15);
    border-color: #3a7a9e;
}

.package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 28px 36px;
    border: 1px solid var(--border);
    position: relative;
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.package-card.recommended {
    border-color: var(--black);
    background: var(--white);
}

.package-header { margin-bottom: 20px; }

.tier-label {
    font-size: 0.62rem;
    letter-spacing: 2.5px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 500;
}

.package-card h3 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    margin-top: 8px;
    font-weight: 400;
    color: var(--black);
}

.package-card > p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.85;
    margin-bottom: 28px;
    flex: 1;
}

.price {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--black);
}

.price span {
    font-size: 0.75rem;
    font-family: var(--font-body);
    color: var(--text-muted);
    font-weight: 300;
    margin-left: 6px;
}

.badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--black);
    color: white;
    font-size: 0.58rem;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1.5px;
    font-weight: 500;
    text-transform: uppercase;
}

/* === INCLUDED === */
.included { background: var(--white); }

.included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 36px;
}

.included-item {
    padding: 32px 24px;
    background: var(--green-light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: transform 0.4s var(--ease);
}

.included-item:hover {
    transform: translateY(-3px);
}

.included-icon {
    margin-bottom: 18px;
    display: block;
    color: var(--text-muted);
    line-height: 1;
}

.included-icon svg {
    width: 28px;
    height: 28px;
}

.included-item h4 {
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--black);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.included-item p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.75;
}

.not-included {
    margin-top: 40px;
    padding: 20px 28px;
    background: var(--warm);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    display: flex;
    gap: 16px;
    align-items: center;
}

.not-included h4 {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
}

.not-included p {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* === TESTIMONIALS === */
.testimonials { background: var(--warm); }

.testimonials-wrapper {
    position: relative;
    margin-top: 40px;
}

.testi-track {
    overflow: hidden;
}

.testi-slide {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testi-slide.active {
    display: grid;
}

.testi-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
}

.testi-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-header strong {
    display: block;
    font-size: 0.88rem;
    color: var(--black);
}

.testi-header span {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.testi-card p {
    font-size: 0.84rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.85;
    font-style: italic;
}

.testi-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    cursor: pointer;
    font-size: 1rem;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.testi-arrow:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.testi-prev { left: -20px; }
.testi-next { right: -20px; }

@media (max-width: 768px) {
    .testi-slide { grid-template-columns: 1fr; }
    .testi-prev { left: 0; }
    .testi-next { right: 0; }
}

/* === BLOG PREVIEW === */
.blog-preview { background: var(--cream); }

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 32px;
}

.blog-preview-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.blog-preview-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-preview-card .card-body {
    padding: 20px;
}

.blog-preview-card h4 {
    font-size: 0.92rem;
    font-weight: 500;
    margin-bottom: 6px;
    line-height: 1.4;
}

.blog-preview-card p {
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-view-all {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s;
}

.blog-view-all:hover {
    color: var(--black);
}

@media (max-width: 768px) {
    .blog-preview-grid { grid-template-columns: 1fr; }
}

/* === WHY WASA === */
.why-wasa { background: var(--white); }

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

.why-item {
    padding: 36px 28px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: transform 0.4s var(--ease);
}

.why-item:hover {
    transform: translateY(-4px);
}

.why-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--warm);
    color: var(--black);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: var(--font-display);
    border: 1px solid var(--border);
}

.why-item h4 {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--black);
}

.why-item p {
    font-size: 0.84rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.9;
}

/* === CTA === */
.cta {
    background: var(--black);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(61,90,58,0.2) 0%, transparent 60%);
}

.cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    font-weight: 300;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    position: relative;
    text-wrap: balance;
}

.cta p {
    color: rgba(255,255,255,0.45);
    font-size: 1rem;
    margin-bottom: 48px;
    font-weight: 300;
    position: relative;
}

.cta-btn {
    display: inline-block;
    background: var(--white);
    color: var(--black);
    padding: 16px 44px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: relative;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

/* === FOOTER === */
.footer {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 48px 0 32px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-logo-img {
    height: 24px;
    width: auto;
    filter: invert(1);
    opacity: 0.6;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 6px;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
}

.footer-tagline {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    font-weight: 300;
    margin-bottom: 28px;
}

.footer-contact p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    margin-bottom: 4px;
}

.footer-contact strong {
    color: rgba(255,255,255,0.5);
    font-weight: 400;
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
}

.footer-contact a:hover strong {
    color: rgba(255,255,255,0.9);
}

.footer-copy {
    margin-top: 36px;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.15);
    letter-spacing: 1px;
}

/* === ANIMATIONS === */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.06s; }
.reveal-delay-2 { transition-delay: 0.12s; }
.reveal-delay-3 { transition-delay: 0.18s; }
.reveal-delay-4 { transition-delay: 0.24s; }
.reveal-delay-5 { transition-delay: 0.3s; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .container { padding: 0 28px; }
    .packages-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
    .why-grid { grid-template-columns: 1fr; gap: 16px; }
    .included-grid { grid-template-columns: repeat(2, 1fr); }
    .about-wrapper { grid-template-columns: 1fr; gap: 48px; }
    .about-image img { height: 360px; }
    .timeline { max-width: 100%; }
}

@media (max-width: 768px) {
    .lang-nav { padding: 16px 20px; }
    .lang-nav.scrolled { padding: 12px 20px; }
    .nav-menu { display: none; }
    .section { padding: 72px 0; }
    .container { padding: 0 20px; }
    .features-grid { grid-template-columns: 1fr; }
    .exp-grid { grid-template-columns: 1fr; }
    .exp-grid .exp-card:last-child { grid-column: auto; max-width: none; }
    .included-grid { grid-template-columns: 1fr; }
    .not-included { flex-direction: column; align-items: flex-start; gap: 6px; }
    .hero-title { letter-spacing: -1px; }
    .quote-section { padding: 80px 24px; }
}
