/* =================================
   RESET & BASE STYLES
   ================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Tropical Color Palette */
    --ocean-blue: #0D6EFD;
    --turquoise: #00D4FF;
    --deep-sea: #003D5C;
    --sand: #F4E4C1;
    --coral: #FF6B6B;
    --palm-green: #2E8B57;
    --sunset-orange: #FF8A3D;
    --sky-blue: #87CEEB;
    
    /* Neutrals */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #DEE2E6;
    --dark-gray: #495057;
    --black: #212529;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--dark-gray);
    background: linear-gradient(135deg, #E8F4F8 0%, #F0F8FA 50%, #FFF9F0 100%);
    background-attachment: fixed;
    position: relative;
}

/* Beautiful Bohol/Siquijor-inspired background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(46, 139, 87, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(135, 206, 235, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 60% 60%, rgba(244, 228, 193, 0.1) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--deep-sea);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: var(--ocean-blue);
    transition: var(--transition);
}

a:hover {
    color: var(--turquoise);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =================================
   HERO SECTION
   ================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--deep-sea) 0%, var(--ocean-blue) 50%, var(--turquoise) 100%);
    background-image: 
        linear-gradient(135deg, rgba(0, 61, 92, 0.92) 0%, rgba(13, 110, 253, 0.85) 50%, rgba(0, 212, 255, 0.78) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.3"/><circle cx="25" cy="75" r="1.5" fill="white" opacity="0.2"/><circle cx="75" cy="25" r="0.8" fill="white" opacity="0.4"/></svg>');
    animation: drift 60s linear infinite;
}

@keyframes drift {
    from { transform: translate(0, 0); }
    to { transform: translate(100px, 100px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 61, 92, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    max-width: 900px;
    animation: fadeInUp 1s ease;
}

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

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 15px;
    color: var(--sand);
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-dates {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.hero-dates i {
    margin-right: 10px;
    color: var(--sunset-orange);
}

.hero-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--white);
    color: var(--ocean-blue);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border: 2px solid transparent;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    background: var(--turquoise);
    color: var(--white);
}

.hero-btn i {
    margin-left: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

/* =================================
   QUICK NAVIGATION
   ================================= */
.quick-nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    z-index: 100;
    transition: var(--transition);
}

.quick-nav.scrolled {
    box-shadow: var(--shadow-lg);
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px 0;
    flex-wrap: wrap;
}

.nav-links a {
    padding: 10px 24px;
    color: var(--deep-sea);
    font-weight: 600;
    border-radius: 25px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-links a:hover {
    background: var(--ocean-blue);
    color: var(--white);
}

/* =================================
   SECTIONS
   ================================= */
.section {
    padding: 80px 20px;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: var(--deep-sea);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--turquoise), var(--ocean-blue));
    border-radius: 2px;
}

.section-title i {
    margin-right: 15px;
    color: var(--ocean-blue);
}

/* =================================
   OVERVIEW SECTION
   ================================= */
.overview-section {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.overview-card {
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--turquoise) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.overview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.overview-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.overview-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.overview-card p {
    font-size: 1rem;
    opacity: 0.95;
}

/* Trip Highlights */
.trip-highlights {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    margin-top: 40px;
    box-shadow: var(--shadow-sm);
}

.trip-highlights h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--deep-sea);
}

.trip-highlights h3 i {
    color: var(--sunset-orange);
    margin-right: 10px;
}

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

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.highlight-item i {
    font-size: 1.8rem;
    color: var(--palm-green);
}

.highlight-item span {
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

/* =================================
   DAY CARDS
   ================================= */
.bohol-section {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7) 0%, rgba(240, 248, 250, 0.8) 100%);
}

.siquijor-section {
    background: linear-gradient(to bottom, rgba(240, 248, 250, 0.8) 0%, rgba(255, 255, 255, 0.7) 100%);
}

.day-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.day-card:hover {
    box-shadow: var(--shadow-lg);
}

.day-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--turquoise) 100%);
    color: var(--white);
}

.day-number {
    font-size: 1.4rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.25);
    min-width: 90px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
}

.day-info h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 5px;
    line-height: 1.3;
}

.day-theme {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 400;
}

.day-content {
    padding: 35px;
}

/* Timeline */
.timeline {
    margin-bottom: 40px;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px dashed var(--medium-gray);
}

.timeline-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.timeline-item i {
    font-size: 2rem;
    color: var(--ocean-blue);
    flex-shrink: 0;
    margin-top: 5px;
}

.timeline-content h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--deep-sea);
}

.timeline-content p {
    color: var(--dark-gray);
    margin-bottom: 10px;
}

/* Route Cards */
.route-card {
    background: linear-gradient(135deg, rgba(232, 244, 248, 0.9) 0%, rgba(244, 228, 193, 0.5) 100%);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border-left: 5px solid var(--ocean-blue);
    box-shadow: var(--shadow-sm);
}

.route-card i {
    font-size: 2.5rem;
    color: var(--ocean-blue);
    flex-shrink: 0;
}

.route-card h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--deep-sea);
}

.route-card p {
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* Map Links */
.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--ocean-blue);
    color: var(--white);
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.map-link:hover {
    background: var(--turquoise);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.map-link.large {
    padding: 12px 30px;
    font-size: 1.05rem;
}

.map-link-small {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    background: var(--ocean-blue);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.map-link-small:hover {
    background: var(--turquoise);
}

/* Stops Section */
.stops-section {
    margin-top: 30px;
}

.stops-section h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--deep-sea);
}

.stops-section h4 i {
    color: var(--coral);
    margin-right: 10px;
}

/* Attractions List */
.attractions-list {
    display: grid;
    gap: 25px;
}

.attraction-card {
    display: flex;
    gap: 25px;
    padding: 25px;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 15px;
    transition: var(--transition);
    border-left: 5px solid var(--medium-gray);
}

.attraction-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

/* Attraction Type Colors */
.attraction-card.wildlife { border-left-color: #8B4513; }
.attraction-card.dining { border-left-color: #FF6347; }
.attraction-card.nature { border-left-color: var(--palm-green); }
.attraction-card.viewpoint { border-left-color: #9370DB; }
.attraction-card.cave { border-left-color: #696969; }
.attraction-card.beach { border-left-color: var(--turquoise); }
.attraction-card.waterfall { border-left-color: #4682B4; }
.attraction-card.heritage { border-left-color: #DAA520; }
.attraction-card.marine { border-left-color: #20B2AA; }
.attraction-card.spring { border-left-color: #00CED1; }
.attraction-card.park { border-left-color: #228B22; }
.attraction-card.town { border-left-color: #CD853F; }
.attraction-card.landmark { border-left-color: #B8860B; }

.attraction-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.attraction-icon i {
    font-size: 2rem;
    color: var(--ocean-blue);
}

.attraction-info {
    flex: 1;
}

.attraction-info h5 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--deep-sea);
}

.attraction-type {
    display: inline-block;
    padding: 4px 12px;
    background: var(--ocean-blue);
    color: var(--white);
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.attraction-desc {
    color: var(--dark-gray);
    margin-bottom: 10px;
    line-height: 1.5;
}

.attraction-hours,
.attraction-price,
.attraction-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--dark-gray);
    margin-top: 8px;
}

.attraction-hours i,
.attraction-price i,
.attraction-highlight i {
    color: var(--ocean-blue);
}

.attraction-highlight {
    color: var(--coral);
    font-weight: 600;
}

/* Tips Box */
.tips-box {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(227, 242, 253, 0.9) 0%, rgba(187, 222, 251, 0.7) 100%);
    border-radius: 15px;
    margin-top: 30px;
    border-left: 5px solid var(--ocean-blue);
}

.tips-box i {
    font-size: 2rem;
    color: var(--ocean-blue);
    flex-shrink: 0;
}

.tips-box.warning {
    background: linear-gradient(135deg, rgba(255, 243, 224, 0.9) 0%, rgba(255, 224, 178, 0.7) 100%);
    border-left-color: var(--sunset-orange);
}

.tips-box.warning i {
    color: var(--sunset-orange);
}

.tips-box strong {
    color: var(--deep-sea);
}

/* Free Day Content */
.free-day-content {
    text-align: center;
}

.free-day-content h4 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--deep-sea);
}

.free-day-content h4 i {
    color: var(--palm-green);
    margin-right: 10px;
}

.free-day-content > p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.activity-option {
    background: rgba(248, 249, 250, 0.9);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.activity-option:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.activity-option i {
    font-size: 3rem;
    color: var(--ocean-blue);
    margin-bottom: 15px;
}

.activity-option h5 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--deep-sea);
}

.activity-option p {
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* Departure Content */
.departure-content {
    text-align: center;
    padding: 40px;
}

.departure-content i {
    font-size: 4rem;
    color: var(--ocean-blue);
    margin-bottom: 20px;
}

.departure-content h4 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--deep-sea);
}

.departure-content p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

/* =================================
   FOOD & ESSENTIALS SECTION
   ================================= */
.food-section {
    background: rgba(255, 255, 255, 0.7);
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.food-card {
    background: rgba(248, 249, 250, 0.9);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.food-card h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--deep-sea);
    padding-bottom: 15px;
    border-bottom: 3px solid var(--ocean-blue);
}

.food-card h3 i {
    color: var(--coral);
    margin-right: 10px;
}

.food-spots {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.food-spot {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    transition: var(--transition);
    color: var(--dark-gray);
}

.food-spot:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    background: var(--ocean-blue);
    color: var(--white);
}

.food-spot i {
    font-size: 2rem;
    color: var(--ocean-blue);
    flex-shrink: 0;
    margin-top: 5px;
}

.food-spot:hover i {
    color: var(--white);
}

.food-spot h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--deep-sea);
}

.food-spot:hover h4 {
    color: var(--white);
}

.food-spot p {
    font-size: 0.95rem;
}

/* Essentials Section */
.essentials-section {
    margin-top: 40px;
}

.essentials-section h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    margin-top: 50px;
    color: var(--deep-sea);
}

.essentials-section h3 i {
    color: var(--ocean-blue);
    margin-right: 10px;
}

.essentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.essential-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px;
    background: rgba(248, 249, 250, 0.9);
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    color: var(--dark-gray);
}

.essential-card:hover {
    background: var(--ocean-blue);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.essential-card i {
    font-size: 2.5rem;
    color: var(--sunset-orange);
}

.essential-card:hover i {
    color: var(--white);
}

.essential-card h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--deep-sea);
}

.essential-card:hover h4 {
    color: var(--white);
}

.essential-card p {
    font-size: 0.9rem;
}

/* =================================
   TIPS SECTION
   ================================= */
.tips-section {
    background: linear-gradient(135deg, rgba(240, 248, 250, 0.8) 0%, rgba(255, 255, 255, 0.7) 100%);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.tip-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.tip-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--turquoise) 0%, var(--ocean-blue) 100%);
    border-radius: 50%;
    margin: 0 auto 25px;
}

.tip-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.tip-card h3 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--deep-sea);
}

.tip-card ul {
    list-style: none;
    padding: 0;
}

.tip-card li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--dark-gray);
    line-height: 1.6;
}

.tip-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--palm-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.tip-card li strong {
    color: var(--deep-sea);
}

/* =================================
   FOOTER
   ================================= */
.footer {
    background: linear-gradient(135deg, var(--deep-sea) 0%, var(--ocean-blue) 100%);
    color: var(--white);
    padding: 40px 20px;
    text-align: center;
}

.footer p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer i {
    color: var(--coral);
    margin: 0 5px;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

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

/* =================================
   RESPONSIVE DESIGN - MOBILE OPTIMIZED
   ================================= */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .food-grid {
        grid-template-columns: 1fr;
    }
    
    .overview-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Hero adjustments */
    .hero {
        height: 85vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-dates {
        font-size: 1rem;
    }
    
    .hero-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    /* Sections */
    .section {
        padding: 50px 15px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    /* Day cards - mobile optimized */
    .day-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .day-number {
        font-size: 1.2rem;
        min-width: auto;
        width: 100%;
        max-width: 200px;
        padding: 10px 15px;
    }
    
    .day-info h3 {
        font-size: 1.4rem;
    }
    
    .day-theme {
        font-size: 0.95rem;
    }
    
    .day-content {
        padding: 25px 20px;
    }
    
    /* Attractions - mobile optimized */
    .attraction-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .attraction-icon {
        margin: 0 auto;
    }
    
    .attraction-info h5 {
        font-size: 1.2rem;
    }
    
    /* Route cards */
    .route-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .route-card i {
        margin: 0 auto;
    }
    
    /* Timeline */
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-item i {
        margin: 0 auto 10px;
    }
    
    /* Tips box */
    .tips-box {
        flex-direction: column;
        text-align: center;
    }
    
    .tips-box i {
        margin: 0 auto;
    }
    
    /* Navigation */
    .nav-links {
        gap: 5px;
        padding: 12px 5px;
    }
    
    .nav-links a {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    /* Grids */
    .tips-grid,
    .activities-grid,
    .overview-grid,
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .food-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    /* Hero */
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-dates {
        font-size: 0.9rem;
    }
    
    /* Day number - extra compact for small screens */
    .day-number {
        font-size: 1.1rem;
        padding: 8px 12px;
    }
    
    .day-info h3 {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    /* Content padding */
    .day-content {
        padding: 20px 15px;
    }
    
    /* All single column layouts */
    .overview-grid,
    .highlights-grid,
    .essentials-grid,
    .food-grid {
        grid-template-columns: 1fr;
    }
    
    /* Map links */
    .map-link {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .map-link.large {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

/* =================================
   PRINT STYLES
   ================================= */
@media print {
    .hero,
    .quick-nav,
    .footer {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
    }
    
    .day-card {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid var(--medium-gray);
    }
    
    .map-link {
        color: var(--ocean-blue);
        background: transparent;
        text-decoration: underline;
    }
    
    body::before {
        display: none;
    }
}