@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS variables for "Aegean Breeze" Mediterranean Minimalist Theme --- */
:root {
    --bg: #FFFFFF;
    --bg-warm: #F5F0EB;
    --bg-blue: #E8F1F5;
    --fg: #2B2B2B;
    --fg-muted: #7A7A7A;
    --accent: #1B6B93;
    --accent-hover: #145A7D;
    --accent-2: #D4A853;
    --accent-2-hover: #C09540;
    --border: #E0DCD5;
    --border-light: #EDEBE6;
    --card-shadow: 0 2px 16px rgba(0,0,0,0.04);
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --max-width: 1200px;
}

/* --- Global Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg);
    color: var(--fg);
    font-family: 'Inter', -apple-system, sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    overflow-wrap: break-word;
    word-break: break-word;
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--fg);
}

p {
    color: var(--fg-muted);
    font-weight: 300;
    font-size: 1rem;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

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

/* --- Custom Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* --- Core Layout --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 3rem;
}

.section {
    padding: 6rem 0;
}

.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-gold { color: var(--accent-2); }

.section-title {
    font-size: 3.2rem;
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--accent-2);
    margin-top: 1rem;
}

.text-center .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    max-width: 550px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* --- Header / Sticky Nav --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
}

.header.scrolled {
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 1px 6px rgba(0,0,0,0.03);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--fg);
    text-decoration: none;
}

.logo-icon {
    font-size: 1.7rem;
    color: var(--accent);
}

.nav-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    color: var(--fg-muted);
    text-decoration: none;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* --- Burger Menu --- */
.burger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0.5rem;
    z-index: 1001;
}

.burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background-color: var(--fg);
    margin: 6px 0;
    transition: var(--transition-smooth);
}

/* --- Full-screen Mobile Nav Overlay --- */
.mobile-overlay {
    display: none;
}

/* --- Split Hero (50/50) --- */
.hero {
    position: relative;
    height: 92vh;
    min-height: 600px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.hero-image-half {
    position: relative;
    overflow: hidden;
}

.hero-image-half img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-divider {
    position: absolute;
    right: 0;
    top: 5%;
    height: 90%;
    width: 1px;
    background: var(--border);
}

.hero-content-half {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
}

.hero-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.7s 0.2s forwards;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.7s 0.4s forwards;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--fg-muted);
    max-width: 420px;
    margin-bottom: 2.5rem;
    line-height: 1.75;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.7s 0.6s forwards;
}

.hero-btn-container {
    display: flex;
    gap: 1rem;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.7s 0.8s forwards;
}

/* --- Backward Compat Hero (full-screen fallback) --- */
.hero.hero-fullscreen {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.hero.hero-fullscreen::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.9) 80%, var(--bg) 100%);
    z-index: 1;
}

.hero.hero-fullscreen .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 750px;
    padding: 0 2rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--accent);
    color: #fff;
    border: 1.5px solid var(--accent);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(27,107,147,0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--fg);
    border: 1.5px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* --- Arch Image Treatment --- */
.arch-image {
    border-radius: 50% 50% 0 0;
    overflow: hidden;
}

.arch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

/* --- Flat Cards (Underline Style) --- */
.glass-panel {
    background: var(--bg);
    border: none;
    border-bottom: 2px solid var(--accent);
    box-shadow: none;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.glass-panel::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--bg-blue);
    transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}

.glass-panel:hover::before {
    height: 100%;
}

.glass-panel > * {
    position: relative;
    z-index: 1;
}

.glass-panel:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(27,107,147,0.08);
}

.glass-panel:hover h2,
.glass-panel:hover h3,
.glass-panel:hover h4,
.glass-panel:hover p,
.glass-panel:hover span,
.glass-panel:hover div,
.glass-panel:hover li,
.glass-panel:hover strong {
    color: var(--fg) !important;
}

.glass-panel:hover a {
    color: var(--accent) !important;
}

/* --- Horizontal Tour Carousel --- */
.tours-carousel-section {
    padding: 4rem 0;
    background: var(--bg-warm);
}

.tours-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 3rem 2rem;
    scrollbar-width: none;
}

.tours-carousel::-webkit-scrollbar { display: none; }

.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tour-card {
    scroll-snap-align: start;
    min-width: 280px;
    max-width: 340px;
    flex-shrink: 0;
    background: var(--bg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.tour-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.tour-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 50% 50% 0 0;
}

.tour-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.tour-card:hover .tour-image {
    transform: scale(1.05);
}

.tour-provider-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.2rem 0.5rem;
    border-radius: 0;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    z-index: 2;
}

.tour-provider-badge.viator {
    background-color: #ff5a5f;
    color: #fff;
}

.tour-provider-badge.headout {
    background-color: #ec1943;
    color: #fff;
}

.tour-price-tag {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: var(--bg);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 0.3rem 0.7rem;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
}

.tour-info {
    padding: 1.5rem;
}

.tour-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 0.6rem;
    min-height: 3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.8rem;
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    color: var(--accent-2);
}

.tour-reviews { color: var(--fg-muted); }
.tour-duration { color: var(--fg-muted); }

.tour-features {
    list-style: none;
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.tour-features li {
    font-size: 0.8rem;
    color: var(--fg-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.tour-features li::before {
    content: '·';
    font-size: 1.5em;
    color: var(--accent);
    line-height: 1;
}

.tour-button { width: 100%; }

/* --- Staggered Asymmetric Content Blocks --- */
.asymmetric-block {
    display: grid;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.asymmetric-block.left-heavy {
    grid-template-columns: 2fr 3fr;
}

.asymmetric-block.right-heavy {
    grid-template-columns: 3fr 2fr;
}

/* --- Split Section (backward compat) --- */
.split-section {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.split-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 50% 50% 8px 8px;
    border: 1px solid var(--border-light);
}

.split-image {
    transition: var(--transition-smooth);
}

.split-image-container:hover .split-image {
    transform: scale(1.03);
}

.split-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(27, 107, 147, 0.06);
    border: 1px solid rgba(27, 107, 147, 0.2);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.split-content h2 {
    font-size: 2.8rem;
    line-height: 1.12;
    margin-bottom: 1.25rem;
}

.split-content p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.75;
}

/* --- Features Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    padding: 2.5rem 2rem;
    text-align: center;
}

.feature-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1.25rem;
    display: inline-flex;
}

.feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--fg);
}

.feature-desc {
    font-size: 0.9rem;
}

/* --- Transport Grid --- */
.transport-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.transport-card {
    padding: 2rem;
    display: flex;
    gap: 1.25rem;
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-bottom: 2px solid var(--accent);
}

.transport-icon-box {
    background: var(--bg-blue);
    border: none;
    width: 52px;
    height: 52px;
    border-radius: 50% 50% 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent);
    flex-shrink: 0;
}

.transport-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

.transport-details {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    border-top: 1px solid var(--border-light);
    padding-top: 0.75rem;
}

.transport-detail-item {
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
}

.transport-detail-item span:first-child { color: var(--fg-muted); }
.transport-detail-item span:last-child { font-weight: 500; color: var(--fg); }

/* --- Pricing --- */
.pricing-flex {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.pricing-card {
    flex: 1;
    padding: 2.5rem 2rem;
    background: var(--bg);
    border: 1px solid var(--border-light);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--accent);
    border-width: 2px;
}

.pricing-card-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    text-transform: uppercase;
}

.pricing-header {
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
}

.pricing-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    margin-bottom: 0.4rem;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
}

.pricing-amount span {
    font-size: 0.9rem;
    color: var(--fg-muted);
    font-weight: 300;
}

.pricing-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.pricing-list-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
}

.pricing-list-check { color: var(--accent); font-weight: bold; }

/* --- Zigzag Timeline --- */
.zigzag-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.zigzag-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.zigzag-block:nth-child(even) .zigzag-image { order: 2; }
.zigzag-block:nth-child(even) .zigzag-text { order: 1; }

.zigzag-image {
    border-radius: 50% 50% 8px 8px;
    overflow: hidden;
}

.zigzag-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.zigzag-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

/* --- Timeline (backward compat) --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 1px;
    background-color: var(--border);
    top: 0;
    bottom: 0;
    left: 50%;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    right: -6px;
    background-color: var(--bg);
    border: 2px solid var(--accent);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-left { left: 0; }
.timeline-right { left: 50%; }
.timeline-right::after { left: -6px; }

.timeline-content {
    padding: 1.5rem;
    border: 1px solid var(--border-light);
}

.timeline-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--accent-2);
    margin-bottom: 0.4rem;
    display: block;
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

/* --- FAQ Accordion --- */
.faq-container {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
    background: var(--bg);
}

.faq-summary {
    padding: 1.25rem 0;
    font-weight: 500;
    font-size: 1.05rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
    color: var(--fg);
}

.faq-summary::-webkit-details-marker { display: none; }

.faq-summary::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--accent-2);
    transition: transform 0.3s ease;
    font-weight: 300;
}

.faq-item[open] .faq-summary::after { content: '−'; }

.faq-item[open] .faq-summary { color: var(--accent); }

.faq-answer {
    padding: 0 0 1.5rem;
}

.faq-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--accent-2);
    margin-right: 0.75rem;
    font-weight: 300;
}

/* --- Weather Widget --- */
.weather-widget-section {
    padding: 3rem;
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
}

.om-weather-widget {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-warm);
    border: 1px solid var(--border-light);
    border-radius: 50% 50% 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.weather-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--fg-muted);
}

.weather-spinner {
    width: 28px;
    height: 28px;
    border: 2px solid var(--border-light);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

.weather-data {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

.weather-temp { font-size: 2.5rem; font-weight: 700; color: var(--fg); }
.weather-info { text-align: left; }
.weather-info .city { font-size: 1.1rem; font-weight: 600; color: var(--accent); }
.weather-info .desc { font-size: 0.85rem; text-transform: capitalize; color: var(--fg-muted); }
.weather-stats { font-size: 0.8rem; color: var(--fg-muted); text-align: right; }

/* --- Map --- */
.map-container {
    overflow: hidden;
    border: 1px solid var(--border-light);
    height: 420px;
    border-radius: 50% 50% 0 0;
}

/* --- Info Points --- */
.info-points { list-style: none; margin-top: 1.5rem; }
.info-point { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; }
.info-point-bullet { color: var(--accent); font-weight: bold; font-size: 1.1rem; line-height: 1; margin-top: 0.15rem; }
.info-point-text strong { color: var(--fg); }

/* --- Scroll Text Reveal --- */
.text-reveal-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.text-reveal-word.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- Footer --- */
.footer {
    background-color: var(--bg-warm);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-logo { margin-bottom: 1rem; }

.footer-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    color: var(--fg);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background-color: var(--accent-2);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: var(--fg-muted);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    color: var(--fg-muted);
}

.footer-contact-icon { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    color: var(--fg-muted);
    font-size: 0.8rem;
}

/* --- Image Credits --- */
.image-credit {
    font-size: 0.65rem;
    color: var(--fg-muted);
    opacity: 0.45;
    text-align: right;
    margin-top: 0.3rem;
    padding-right: 0.4rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    transition: var(--transition-smooth);
}

.image-credit a { text-decoration: underline; color: inherit; }
.image-credit:hover { opacity: 1; color: var(--accent); }

/* --- Keyframes --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; height: auto; min-height: 0; }
    .hero-image-half { height: 50vh; }
    .hero-divider { display: none; }
    .hero-content-half { padding: 3rem 2rem; }
    .hero-title { font-size: 3rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .tours-grid { grid-template-columns: repeat(2, 1fr); }
    .burger { display: block; }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.5s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu .nav-link {
        font-size: 1.2rem;
        letter-spacing: 0.2em;
    }

    .zigzag-block { grid-template-columns: 1fr; }
    .zigzag-block:nth-child(even) .zigzag-image { order: 0; }
    .zigzag-block:nth-child(even) .zigzag-text { order: 0; }
}

@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
    .hero-title { font-size: 2.5rem; word-break: break-word; }
    .section-title { font-size: 2.4rem; word-break: break-word; }
    .features-grid { grid-template-columns: 1fr; }
    .split-section { grid-template-columns: 1fr; gap: 2rem; }
    .split-content { order: -1; }
    .transport-grid { grid-template-columns: 1fr; }
    .pricing-flex { flex-direction: column; }
    .tours-grid { grid-template-columns: 1fr; }
    .asymmetric-block.left-heavy,
    .asymmetric-block.right-heavy { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-bottom { flex-direction: column; align-items: center; gap: 0.75rem; text-align: center; }

    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    .timeline-item::after { left: 22px; }
    .timeline-right { left: 0%; }
}
