:root {
    --primary-color: #eab308;
    --primary-dark: #ca8a04;
    --secondary-color: #0f172a;
    --accent-color: #334155;
    --text-color: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --bg-light: #f1f5f9;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --container-width: 1400px;
    --header-height: 100px;
    --border-radius: 32px;
    --shadow-premium: 0 20px 50px -15px rgba(15, 23, 42, 0.1);
    --shadow-hover: 0 40px 80px -20px rgba(15, 23, 42, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.8;
    overflow-x: hidden;
    background-color: var(--white);
    letter-spacing: -0.01em;
}

/* Global Spacing System */
.section {
    padding: 160px 0;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 60px;
}

/* Typography Hierarchy */
.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 30px auto 0;
    line-height: 1.6;
}

/* Buttons Polish */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 45px;
    border-radius: 100px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
    cursor: pointer;
    font-size: 12px;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--secondary-color);
    box-shadow: 0 15px 35px -10px rgba(234, 179, 8, 0.4);
}

.btn-primary:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(234, 179, 8, 0.6);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--secondary-color);
    transform: translateY(-8px);
}

/* Navbar Premium Look */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition-smooth);
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4) 0%, transparent 100%);
    padding: 0; /* Let container handle padding */
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.navbar.scrolled {
    height: 85px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: 0 10px 40px -15px rgba(0,0,0,0.1);
}

.nav-cta .btn-nav {
    padding: 12px 28px;
    font-size: 13px;
    background: var(--primary-color);
    color: var(--secondary-color) !important;
    font-weight: 700;
    border-radius: 50px;
    text-shadow: none !important;
}

.nav-cta .btn-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(234, 179, 8, 0.3);
}

/* Premium Card Interaction */
.package-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-premium);
    background: var(--white);
}

.package-card:hover {
    transform: translateY(-20px) scale(1.01);
    box-shadow: var(--shadow-hover);
}

/* Gallery Staggered Grid */
.gallery-grid {
    gap: 20px;
    padding: 0 30px;
}

.gallery-item {
    transition: var(--transition-smooth);
    border-radius: var(--border-radius);
}

.gallery-item:hover {
    transform: scale(1.05);
    z-index: 5;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

/* Scroll Animations Utility */
.animate-in {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Delay Classes for Staggering */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

@media (max-width: 1024px) {
    .itinerary-meta { grid-template-columns: repeat(2, 1fr); }
    .section { padding: 100px 0; }
    .container { padding: 0 40px; }
}

@media (max-width: 768px) {
    .itinerary-meta { grid-template-columns: 1fr; }
    .section { padding: 80px 0; }
    .container { padding: 0 25px; }
    .btn { padding: 18px 35px; }
}

.logo {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    display: flex;
    flex-direction: column;
}

.logo span {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: -2px;
}

.navbar.scrolled .logo, .navbar.scrolled .nav-links a {
    color: var(--secondary-color);
    text-shadow: none;
}

.navbar.scrolled .nav-cta .btn-nav {
    background: var(--secondary-color);
    color: var(--white) !important;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-smooth);
    box-shadow: 0 0 10px var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 28px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled .mobile-menu-btn {
    color: var(--secondary-color);
    text-shadow: none;
}

/* Hero */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1544735716-392fe2489ffa?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 80px;
    text-align: left;
}

.hero-label {
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--primary-color);
}

.hero-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--primary-color);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 96px;
    margin-bottom: 30px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 60px;
    letter-spacing: 0.5px;
    max-width: 600px;
    opacity: 0.85;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 30px;
    justify-content: flex-start;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 1px solid var(--primary-color);
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

/* Extra Mobile Responsiveness for Hero */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 30px;
        text-align: center;
    }
    
    .hero-label {
        justify-content: center;
    }
    
    .hero-label::before {
        display: none;
    }
    
    .hero-title {
        font-size: 52px;
    }
    
    .hero-btns {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-overlay {
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.8) 100%);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0.6;
}

.mouse {
    width: 2px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.mouse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background-color: var(--primary-color);
    animation: scroll 3s cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
}

@media (max-width: 1280px) {
    .container { padding: 0 40px; }
    .hero-title { font-size: 80px; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 52px; }
    .hero-subtitle { font-size: 16px; margin-bottom: 40px; }
    .hero-btns { flex-direction: column; align-items: stretch; gap: 15px; }
}
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

.package-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px -15px rgba(15, 23, 42, 0.08);
    transition: var(--transition-smooth);
    border: 1px solid rgba(15, 23, 42, 0.03);
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px -25px rgba(15, 23, 42, 0.12);
}

.card-img-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-card:hover .card-img {
    transform: scale(1.1);
}

.card-tag {
    position: absolute;
    top: 25px;
    left: 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--secondary-color);
    padding: 8px 18px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    z-index: 2;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 10;
}

.package-card:hover .card-overlay {
    opacity: 1;
}

.card-content {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.card-meta i {
    color: var(--primary-dark);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    line-height: 1.2;
}

.card-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
    flex: 1;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 25px;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.price-box {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.price-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary-color);
}

.btn-link {
    font-weight: 700;
    font-size: 13px;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-link:hover {
    gap: 15px;
}

.btn-small {
    padding: 14px 30px;
    font-size: 10px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: -30px auto 40px;
}

/* About Split Layout */
.split-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 100px;
}

.split-img {
    height: 700px;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.2);
    position: relative;
}

.split-img::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    top: 40px;
    left: -40px;
    z-index: -1;
    border-radius: var(--border-radius);
}

.split-content .section-title {
    margin-bottom: 35px;
}

.split-content p {
    margin-bottom: 25px;
    color: var(--text-light);
    font-size: 16px;
}

.feature-list {
    margin-top: 40px;
}

.feature-list li {
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--secondary-color);
}

.feature-list i {
    width: 35px;
    height: 35px;
    background-color: rgba(234, 179, 8, 0.1);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-box {
    background-color: var(--white);
    padding: 50px 30px;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.feature-box:hover {
    background-color: var(--white);
    transform: translateY(-10px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(234, 179, 8, 0.2);
}

.icon-box {
    font-size: 45px;
    color: var(--primary-dark);
    margin-bottom: 30px;
    display: inline-block;
}

.feature-box h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.feature-box p {
    font-size: 14px;
    color: var(--text-light);
}

/* Gallery Grid */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 30px;
    background: #f8fafc;
}

.gallery-item {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    transform: scale(0.98);
}

.w-2 { grid-column: span 2; }
.w-3 { grid-column: span 3; }
.h-2 { grid-row: span 2; }

/* Testimonials */
.testimonial-card {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.quote {
    font-family: var(--font-heading);
    font-size: 32px;
    font-style: italic;
    margin-bottom: 50px;
    color: var(--secondary-color);
    line-height: 1.4;
    position: relative;
}

.quote::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 80px;
    color: var(--primary-color);
    opacity: 0.2;
}

.author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--bg-light);
}

.author h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.author span {
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 160px 0;
    background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--white);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.4));
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 56px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 50px;
    opacity: 0.9;
    font-weight: 300;
}

.cta-form {
    display: flex;
    gap: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 10px;
    border-radius: 60px;
    border: 1px solid rgba(255,255,255,0.2);
}

.cta-form input {
    flex: 1;
    padding: 20px 30px;
    border: none;
    background: transparent;
    color: var(--white);
    font-family: inherit;
    font-size: 15px;
}

.cta-form input::placeholder {
    color: rgba(255,255,255,0.7);
}

.cta-form .btn {
    padding: 15px 40px;
}

/* Footer */
.footer {
    padding: 120px 0 40px;
    background-color: var(--secondary-color);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-brand .logo { margin-bottom: 35px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 15px; margin-bottom: 40px; max-width: 350px; }

.social-links {
    display: flex;
    gap: 30px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    color: var(--white);
}

.social-links a:hover { 
    background-color: var(--primary-color); 
    color: var(--secondary-color); 
    transform: translateY(-5px);
}

.footer h3 {
    margin-bottom: 40px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

.footer-links ul li, .footer-contact ul li {
    margin-bottom: 20px;
    font-size: 15px;
    color: rgba(255,255,255,0.6);
}

.footer-links ul li a:hover { color: var(--primary-color); padding-left: 10px; }

.footer-contact li i {
    width: 30px;
    color: var(--primary-color);
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* Animations */
.animate-in {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-smooth);
}

.animate-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Overrides for JS toggle */
.nav-links.active {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--secondary-color);
    flex-direction: column;
    padding: 100px 40px;
    z-index: 999;
    align-items: flex-start;
    gap: 30px;
    animation: slideInDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.nav-links.active a {
    color: var(--white) !important;
    font-size: 24px;
    letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 1280px) {
    .container { padding: 0 40px; }
    .hero-title { font-size: 80px; }
    .split-layout { gap: 60px; }
}

@media (max-width: 1024px) {
    .section { padding: 80px 0; }
    .hero-title { font-size: 64px; }
    .gallery-grid { grid-template-columns: repeat(4, 1fr); }
    .split-layout { grid-template-columns: 1fr; gap: 40px; }
    .split-img { height: 450px; }
    .split-img::after { display: none; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    :root { --header-height: 70px; }
    .navbar { padding: 0 20px; }
    .logo { font-size: 22px; }
    .nav-links, .nav-cta { display: none; }
    .mobile-menu-btn { display: block; cursor: pointer; position: relative; z-index: 1001; }
    
    .hero-title { font-size: 42px; line-height: 1.1; }
    .hero-subtitle { font-size: 16px; margin-bottom: 40px; }
    .hero-btns { flex-direction: column; width: 100%; gap: 15px; }
    .hero-btns .btn { width: 100%; }

    .section-title { font-size: 32px; }
    .package-grid { grid-template-columns: 1fr; gap: 30px; }
    .package-card { border-radius: 16px; }
    .card-img-wrapper { height: 250px; }
    .card-content { padding: 30px; }
    
    .feature-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 200px); }
    .gallery-item.w-3 { grid-column: span 2; }
    
    .quote { font-size: 22px; }
    .author { flex-direction: column; text-align: center; gap: 15px; }
    
    .cta-content h2 { font-size: 36px; }
    .cta-form { flex-direction: column; background: transparent; backdrop-filter: none; border: none; padding: 0; }
    .cta-form input { background: rgba(255,255,255,0.1); border-radius: 50px; margin-bottom: 15px; width: 100%; padding: 18px 25px; }
    .cta-form .btn { width: 100%; padding: 18px; }
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand p { margin-left: auto; margin-right: auto; }
    .social-links { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .hero-title { font-size: 34px; }
    .section { padding: 40px 0; }
    .card-title { font-size: 22px; }
}
/* Itinerary Styles */
.itinerary-section {
    background-color: var(--white);
}

.itinerary-container {
    max-width: 1000px;
    margin: 0 auto;
}

.itinerary-meta {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

/* Pricing Table specifically for Itinerary */
.pricing-table-container {
    margin-top: 40px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-small);
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pricing-table th, .pricing-table td {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.pricing-table th {
    background: var(--secondary-color);
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:hover {
    background: rgba(234, 179, 8, 0.05);
}

.price-cell {
    font-weight: 700;
    color: var(--primary-dark);
}

.meta-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.meta-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.meta-item h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.meta-item p {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
}

.itinerary-timeline {
    position: relative;
    padding-left: 60px;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--bg-light));
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-dot {
    position: absolute;
    left: -51px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    z-index: 2;
}

.day-tag {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.timeline-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 16px;
}

.timeline-highlights {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
}

.timeline-highlights h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.timeline-highlights ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.timeline-highlights ul li {
    font-size: 14px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.timeline-highlights ul li i {
    color: var(--primary-color);
    font-size: 12px;
}

.permit-section {
    margin-top: 80px;
    padding: 40px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.permit-icon {
    font-size: 40px;
    color: var(--primary-color);
}

.permit-content h3 {
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.permit-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .itinerary-meta { grid-template-columns: 1fr; }
    .timeline-highlights ul { grid-template-columns: 1fr; }
    .permit-section { flex-direction: column; text-align: center; }
}

/* Itinerary Tab System */
.itinerary-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 35px;
    border-radius: 50px;
    background: var(--bg-light);
    border: 1px solid rgba(15, 23, 42, 0.1);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: var(--text-light);
}

.tab-btn.active {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.itinerary-content {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.itinerary-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.summary-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 24px;
    margin-top: 60px;
}

.summary-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.summary-item i {
    color: var(--primary-color);
}
