@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Space+Grotesque:wght@400;500;600;700&display=swap');

/* --- Mediterranean Coastal Sophistication Design System --- */
:root {
    --bg-primary: #fcfbfa; /* Sandstone Alabaster */
    --bg-secondary: #f6efe7; /* Warm Sandy Beige */
    --bg-dark: #0a1322; /* Deep Marine Navy */
    --bg-dark-rgb: 10, 19, 34;
    --accent-teal: #087786; /* Deep Mediterranean Sea Teal */
    --accent-teal-rgb: 8, 119, 134;
    --accent-copper: #c77232; /* Cliff Ocher/Copper */
    --accent-copper-rgb: 199, 114, 50;
    --accent-gold: #d1a533; /* Golden Hour Sun */
    --text-main: #1f2732; /* Deep Slate/Charcoal */
    --text-muted: #5e6b7d; /* Softer Slate for Secondary Text */
    --text-light: #f1f5f9; /* White/Light Grey for Dark Bgs */
    --text-light-muted: #94a3b8;
    --border-color: rgba(199, 114, 50, 0.15); /* Warm Copper Border */
    --border-light: rgba(255, 255, 255, 0.1);
    --card-shadow: 0 16px 48px -12px rgba(10, 19, 34, 0.08);
    --card-shadow-hover: 0 24px 64px -8px rgba(199, 114, 50, 0.12);
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --max-width: 1200px;
}

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

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

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 0% 0%, rgba(8, 119, 134, 0.04) 0%, transparent 35%),
        radial-gradient(circle at 100% 100%, rgba(199, 114, 50, 0.03) 0%, transparent 45%);
}

/* Typography Selection */
h1, h2, h3, h4, .font-serif {
    font-family: 'Space Grotesque', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--bg-dark);
    line-height: 1.2;
}

p {
    color: var(--text-muted);
    font-weight: 400;
}

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

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

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-secondary);
    border: 1px solid var(--bg-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-copper);
}

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

.section {
    padding: 7.5rem 0;
}

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

.section-title {
    font-size: 3.2rem;
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
    color: var(--bg-dark);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-teal), var(--accent-copper));
    margin: 1.25rem auto 0;
    border-radius: 4px;
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* --- Glassmorphic / Terracotta Card Styling --- */
.glass-panel {
    background: rgba(252, 251, 250, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: rgba(199, 114, 50, 0.35);
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-8px);
}

/* Dark mode panel for contrast */
.dark-panel {
    background: var(--bg-dark);
    color: var(--text-light);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
}

.dark-panel h3 {
    color: var(--text-light);
}

.dark-panel p {
    color: var(--text-light-muted);
}

/* --- Header / Sticky Nav --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(252, 251, 250, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(199, 114, 50, 0.08);
    transition: var(--transition-smooth);
}

.header.scrolled {
    padding: 0.25rem 0;
    background: var(--bg-primary);
    box-shadow: 0 4px 30px rgba(10, 19, 34, 0.03);
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--bg-dark);
}

.logo-icon {
    font-family: 'Space Grotesque', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-copper));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    color: var(--text-muted);
    font-family: 'Space Grotesque', sans-serif;
}

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

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

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

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

.burger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--bg-dark);
    margin: 5px 0;
    transition: var(--transition-smooth);
}

/* Burger Animation */
.burger.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 5px);
}
.burger.toggle .line2 {
    opacity: 0;
}
.burger.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -5px);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 19, 34, 0.45) 0%,
        rgba(10, 19, 34, 0.75) 60%,
        var(--bg-primary) 100%
    );
    z-index: 1;
}

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

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.2s forwards cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Space Grotesque', sans-serif;
}

.hero-title {
    font-size: 5.2rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s 0.4s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.85);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.6s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-btn-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.8s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Custom Styled Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: 'Space Grotesque', sans-serif;
}

.btn-primary {
    background-color: var(--accent-teal);
    color: #fff;
    border: 1px solid var(--accent-teal);
    box-shadow: 0 8px 24px rgba(8, 119, 134, 0.25);
}

.btn-primary:hover {
    background-color: #0b8a9c;
    border-color: #0b8a9c;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(8, 119, 134, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-3px);
}

.btn-dark {
    background-color: var(--bg-dark);
    color: #fff;
    border: 1px solid var(--bg-dark);
    box-shadow: 0 8px 24px rgba(10, 19, 34, 0.15);
}

.btn-dark:hover {
    background-color: var(--accent-copper);
    border-color: var(--accent-copper);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(199, 114, 50, 0.3);
}

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

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

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

.feature-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--bg-dark);
}

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

/* --- Intro Details Section (Split Columns) --- */
.split-section {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 5rem;
    align-items: center;
}

.split-image-container {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.split-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 19, 34, 0.3) 0%, transparent 60%);
}

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

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

.split-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(8, 119, 134, 0.1);
    border: 1px solid rgba(8, 119, 134, 0.2);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-teal);
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesque', sans-serif;
}

.split-content h2 {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.split-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.info-points {
    list-style: none;
    margin-top: 2.5rem;
}

.info-point {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.info-point-bullet {
    color: var(--accent-copper);
    font-weight: bold;
    font-size: 1.4rem;
    line-height: 1;
    margin-top: 0.1rem;
}

.info-point-text {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.info-point-text strong {
    color: var(--bg-dark);
    display: block;
    margin-bottom: 0.25rem;
    font-family: 'Space Grotesque', sans-serif;
    font-size: 1.1rem;
}

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

.transport-card {
    padding: 3rem 2.5rem;
    display: flex;
    gap: 1.75rem;
}

.transport-icon-box {
    background: rgba(8, 119, 134, 0.1);
    border: 1px solid rgba(8, 119, 134, 0.2);
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-teal);
    flex-shrink: 0;
}

.transport-content {
    flex-grow: 1;
}

.transport-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.transport-details {
    margin-top: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-top: 1px solid rgba(199, 114, 50, 0.1);
    padding-top: 1.25rem;
}

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

.transport-detail-item span:first-child {
    color: var(--text-muted);
}

.transport-detail-item span:last-child {
    font-weight: 600;
    color: var(--bg-dark);
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    height: 500px;
    margin-top: 3rem;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--bg-secondary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.map-placeholder i {
    font-size: 3.5rem;
    color: var(--accent-teal);
    margin-bottom: 1rem;
}

/* --- Accommodations Grid (Three Price Tiers) --- */
.stay-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.stay-card {
    overflow: hidden;
    padding: 0;
}

.stay-image-container {
    height: 240px;
    overflow: hidden;
    position: relative;
    border-radius: 24px 24px 0 0;
}

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

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

.stay-tier-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    padding: 0.4rem 1rem;
    background: var(--bg-dark);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
    border: 1px solid var(--border-light);
}

.stay-tier-badge.budget { background-color: var(--accent-teal); }
.stay-tier-badge.midrange { background-color: var(--accent-copper); }
.stay-tier-badge.luxury { background-color: var(--accent-gold); }

.stay-info {
    padding: 2.5rem 2rem;
}

.stay-price-tag {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-copper);
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesque', sans-serif;
}

.stay-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--bg-dark);
}

.stay-desc {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
}

.stay-amenities {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    border-top: 1px solid rgba(199, 114, 50, 0.1);
    padding-top: 1.25rem;
}

.stay-amenities li {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stay-amenities li::before {
    content: '✓';
    color: var(--accent-teal);
    font-weight: bold;
}

/* --- Tour Card Dynamic Widgets --- */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.tour-card {
    overflow: hidden;
    padding: 0;
}

.tour-image-container {
    position: relative;
    height: 240px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

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

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

.tour-provider-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    padding: 0.35rem 0.9rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

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

.tour-provider-badge.local-guide {
    background-color: var(--accent-teal);
    color: #fff;
}

.tour-price-tag {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    background: var(--bg-primary);
    border: 1px solid var(--accent-copper);
    color: var(--accent-copper);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 4px 12px rgba(10, 19, 34, 0.1);
    z-index: 2;
    font-family: 'Space Grotesque', sans-serif;
}

.tour-info {
    padding: 2.5rem 2rem;
}

.tour-title {
    font-size: 1.45rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    min-height: 3.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--bg-dark);
}

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

.tour-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #f1c40f;
    font-weight: 600;
}

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

.tour-duration {
    color: var(--text-muted);
    font-weight: 500;
}

.tour-features {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    border-top: 1px solid rgba(199, 114, 50, 0.1);
    padding-top: 1.25rem;
}

.tour-features li {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.tour-features li::before {
    content: '•';
    color: var(--accent-copper);
    font-weight: bold;
}

.tour-button {
    width: 100%;
}

/* --- History & Diorama Timeline Page --- */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 0;
}

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

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

.timeline-item::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    right: -9px;
    background-color: var(--bg-primary);
    border: 4px solid var(--accent-copper);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
    transition: var(--transition-smooth);
}

.timeline-item:hover::after {
    background-color: var(--accent-teal);
    transform: scale(1.3);
}

.timeline-left {
    left: 0;
}

.timeline-right {
    left: 50%;
}

.timeline-right::after {
    left: -9px;
}

.timeline-content {
    padding: 2.5rem;
    position: relative;
}

.timeline-number {
    font-family: 'Space Grotesque', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-copper);
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--bg-dark);
}

.timeline-desc {
    font-size: 0.95rem;
}

/* --- Climatology & Weather Styling --- */
.weather-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.metric-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.metric-card-icon {
    font-size: 2.5rem;
    color: var(--accent-teal);
    margin-bottom: 1rem;
}

.metric-card-val {
    font-family: 'Space Grotesque', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 0.5rem;
}

.metric-card-lbl {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 600;
}

.weather-months-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 4rem;
    box-shadow: var(--card-shadow);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.weather-months-table th, .weather-months-table td {
    padding: 1.25rem 1.5rem;
    text-align: left;
}

.weather-months-table th {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Space Grotesque', sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.weather-months-table tr {
    background-color: var(--bg-primary);
    border-bottom: 1px solid rgba(199, 114, 50, 0.08);
    transition: var(--transition-smooth);
}

.weather-months-table tr:hover {
    background-color: var(--bg-secondary);
}

.weather-months-table tr:last-child {
    border-bottom: none;
}

/* --- Live Weather Widget --- */
.om-weather-widget {
    background: var(--bg-dark);
    color: var(--text-light);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    max-width: 600px;
    margin: 4rem auto 0;
}

.weather-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.weather-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid var(--accent-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- Image Credits Overlay/Helper --- */
.image-credit {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.6rem;
    padding-left: 0.5rem;
    font-weight: 500;
}

.image-credit a {
    color: var(--accent-teal);
    font-weight: 600;
}

.image-credit a:hover {
    color: var(--accent-copper);
}

/* --- FAQ Accordion Layout --- */
.faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-card {
    padding: 2.5rem;
}

.faq-question {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.6;
}

/* --- Footer Area --- */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 6rem 0 3rem;
    border-top: 1px solid var(--border-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

.footer-brand p {
    color: var(--text-light-muted);
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    max-width: 320px;
}

.footer-links h4, .footer-contact h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesque', sans-serif;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-teal);
}

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

.footer-list a {
    color: var(--text-light-muted);
    font-size: 0.95rem;
}

.footer-list a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    font-size: 0.95rem;
    color: var(--text-light-muted);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact-item i {
    color: var(--accent-teal);
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-light-muted);
}

/* --- Dynamic Animations --- */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive Media Queries --- */

@media (max-width: 1300px) and (min-width: 1024px) {
    .nav-menu {
        gap: 0.85rem;
    }
    .nav-link {
        font-size: 0.85rem;
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 1024px) {
    /* Responsive Navigation Header burger layout */
    .burger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        right: 0;
        top: 90px;
        height: calc(100vh - 90px);
        background-color: var(--bg-primary);
        border-left: 1px solid var(--border-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 60%;
        max-width: 320px;
        transform: translateX(100%);
        transition: var(--transition-smooth);
        box-shadow: -10px 10px 40px rgba(10, 19, 34, 0.05);
        padding: 4rem 2rem;
        gap: 2rem;
        z-index: 1000;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
    }
    
    /* Layout Reductions */
    .features-grid, .tours-grid, .stay-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .split-section, .transport-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 5rem 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .features-grid, .tours-grid, .stay-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item::after {
        left: 22px;
        right: auto;
    }
    
    .timeline-right::after {
        left: 22px;
    }
    
    .timeline-right {
        left: 0%;
    }
    
    .weather-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .weather-months-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-btn-container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .nav-menu {
        width: 80%;
    }
    
    .weather-metrics-grid {
        grid-template-columns: 1fr;
    }
}
