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

:root {
    --navy: #0d2137;
    --ocean: #1a4a6e;
    --teal: #1e7a8c;
    --aqua: #3ab5c8;
    --sand: #e8d5b0;
    --cream: #f5f0e8;
    --white: #ffffff;
    --dark: #0a1520;
    --text: #2c3e50;
    --muted: #6b7f8e;
    --accent: #e67e22;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--cream);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: var(--teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

/* PAGE LOADER */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-wave {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

.loader-wave span {
    display: block;
    width: 6px;
    height: 30px;
    background: var(--aqua);
    border-radius: 3px;
    animation: wave 1.2s ease-in-out infinite;
}

.loader-wave span:nth-child(2) { animation-delay: 0.1s; }
.loader-wave span:nth-child(3) { animation-delay: 0.2s; }
.loader-wave span:nth-child(4) { animation-delay: 0.3s; }
.loader-wave span:nth-child(5) { animation-delay: 0.4s; }

@keyframes wave {
    0%, 100% { transform: scaleY(0.4); }
    50% { transform: scaleY(1); }
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 33, 55, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(58, 181, 200, 0.2);
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(13, 33, 55, 0.99);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--teal), var(--aqua));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
}

.logo-tagline {
    font-family: 'Oswald', sans-serif;
    font-size: 0.65rem;
    font-weight: 300;
    color: var(--aqua);
    letter-spacing: 2px;
    text-transform: uppercase;
}

nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

nav a {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--aqua);
    transition: width 0.3s ease;
}

nav a:hover,
nav a.active {
    color: var(--aqua);
}

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

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.burger-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-btn.open span:nth-child(2) {
    opacity: 0;
}

.burger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    position: fixed;
    top: 77px;
    left: 0;
    width: 100%;
    background: var(--navy);
    border-top: 1px solid rgba(58, 181, 200, 0.2);
    z-index: 999;
    padding: 24px;
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-menu.open {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu a {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--aqua);
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/f/fe/Adriatic_Sea_Croatia.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero:hover .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,33,55,0.85) 0%, rgba(26,74,110,0.6) 50%, rgba(13,33,55,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    padding-top: 80px;
}

.hero-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--aqua);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 700px;
}

.hero h1 em {
    font-style: italic;
    color: var(--aqua);
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 520px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal);
    color: var(--white);
    padding: 14px 32px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-primary:hover {
    background: var(--aqua);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 13px 32px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--aqua);
    color: var(--aqua);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
}

.hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* INTRO STRIP */
.intro-strip {
    background: var(--navy);
    padding: 48px 0;
}

.intro-strip-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.intro-item {
    padding: 24px 32px;
    border-right: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.intro-item:last-child {
    border-right: none;
}

.intro-icon {
    width: 48px;
    height: 48px;
    background: rgba(58, 181, 200, 0.15);
    border: 1px solid rgba(58, 181, 200, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.intro-text h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.intro-text p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}

/* SECTIONS */
section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 56px;
}

.section-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    font-weight: 300;
    color: var(--teal);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title em {
    font-style: italic;
    color: var(--teal);
}

.section-desc {
    font-size: 1rem;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.7;
}

/* FEATURED ARTICLES */
.articles-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.article-card {
    position: relative;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.article-card-img {
    position: relative;
    overflow: hidden;
}

.article-card-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.article-card-img .tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--teal);
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 12px;
}

.article-card-body {
    padding: 28px;
}

.article-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.article-card-body p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.read-more {
    color: var(--teal);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease, color 0.3s ease;
}

.read-more:hover {
    color: var(--aqua);
    gap: 10px;
}

.articles-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.article-card-small {
    display: flex;
    gap: 16px;
    background: var(--white);
    padding: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.article-card-small:hover {
    transform: translateX(4px);
}

.article-card-small img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    flex-shrink: 0;
}

.article-card-small-body h4 {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1.3;
}

.article-card-small-body p {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.5;
}

/* DESTINATIONS SECTION */
.destinations-bg {
    background: var(--navy);
    position: relative;
}

.destinations-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--teal), var(--aqua), var(--teal));
}

.destinations-bg .section-title {
    color: var(--white);
}

.destinations-bg .section-label {
    color: var(--aqua);
}

.destinations-bg .section-desc {
    color: rgba(255,255,255,0.6);
}

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

.dest-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.dest-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.75);
}

.dest-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.6);
}

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,33,55,0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.dest-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.dest-overlay span {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    color: var(--aqua);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* TIPS SECTION */
.tips-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.tips-image {
    position: relative;
}

.tips-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.tips-image::before {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    right: 16px;
    bottom: 16px;
    border: 2px solid var(--teal);
    z-index: -1;
}

.tips-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--navy);
    border: 3px solid var(--aqua);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
}

.tips-badge strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--aqua);
    line-height: 1;
}

.tips-badge span {
    font-family: 'Oswald', sans-serif;
    font-size: 0.55rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
    margin-top: 2px;
}

.tips-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.tips-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.tip-num {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--teal), var(--aqua));
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tip-content h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.tip-content p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.5;
}

/* ARTICLE PAGE */
.article-hero {
    position: relative;
    height: 55vh;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 48px;
    overflow: hidden;
}

.article-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,33,55,0.95) 0%, rgba(13,33,55,0.3) 60%, transparent 100%);
}

.article-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.5);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--aqua);
}

.breadcrumb span {
    color: rgba(255,255,255,0.25);
}

.article-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    max-width: 800px;
    margin-bottom: 16px;
}

.article-info {
    display: flex;
    align-items: center;
    gap: 24px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ARTICLE CONTENT */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 24px;
}

.article-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--navy);
    margin: 40px 0 16px;
    line-height: 1.3;
}

.article-body h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--ocean);
    margin: 28px 0 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.article-body p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.article-body li {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 8px;
}

.article-body img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    margin: 32px 0;
}

.article-body blockquote {
    border-left: 3px solid var(--teal);
    padding: 16px 24px;
    margin: 32px 0;
    background: rgba(30, 122, 140, 0.05);
}

.article-body blockquote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--ocean);
    margin: 0;
}

.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-box {
    background: var(--white);
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.sidebar-box h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.sidebar-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-links li a {
    font-size: 0.9rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.sidebar-links li a::before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    background: var(--teal);
    border-radius: 50%;
    flex-shrink: 0;
}

.sidebar-links li a:hover {
    color: var(--teal);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table tr {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.info-table td {
    padding: 8px 0;
    font-size: 0.85rem;
}

.info-table td:first-child {
    color: var(--muted);
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: 45%;
}

.info-table td:last-child {
    color: var(--text);
    font-weight: 400;
}

/* ABOUT PAGE */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 80px 0;
}

.about-intro img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-text p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-values {
    background: var(--navy);
    padding: 80px 0;
}

.about-values .section-title {
    color: var(--white);
}

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

.value-card {
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: border-color 0.3s ease;
}

.value-card:hover {
    border-color: rgba(58, 181, 200, 0.4);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.value-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}

/* CONTACT PAGE */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding: 80px 0;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    background: rgba(30, 122, 140, 0.1);
    border: 1px solid rgba(30, 122, 140, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item-text strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--teal);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-item-text span,
.contact-item-text a {
    font-size: 0.95rem;
    color: var(--text);
}

.contact-map-box {
    background: var(--white);
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-map-box h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.map-placeholder {
    background: linear-gradient(135deg, var(--navy), var(--ocean));
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* POLICY PAGE */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 24px;
}

.policy-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
    margin: 40px 0 16px;
}

.policy-content p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 16px;
}

.policy-content ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.policy-content li {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 6px;
}

/* FOOTER */
footer {
    background: var(--dark);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 48px;
}

.footer-brand .logo-name {
    font-size: 1.3rem;
    margin-bottom: 4px;
    display: block;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    margin-top: 16px;
    max-width: 280px;
}

.footer-col h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--aqua);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--aqua);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact-item span:first-child {
    color: var(--aqua);
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item span:last-child,
.footer-contact-item a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 24px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

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

.footer-bottom a {
    color: rgba(255,255,255,0.3);
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--aqua);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--aqua);
}

/* COOKIE BANNER */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy);
    border-top: 2px solid var(--teal);
    padding: 20px 24px;
    z-index: 8888;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

#cookie-banner.show {
    display: flex;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-text p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
}

.cookie-text a {
    color: var(--aqua);
}

.cookie-btns {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-accept {
    background: var(--teal);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-accept:hover {
    background: var(--aqua);
}

.cookie-reject {
    background: transparent;
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 24px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-reject:hover {
    border-color: rgba(255,255,255,0.4);
    color: rgba(255,255,255,0.7);
}

/* PAGE HEADER (inner pages) */
.page-header {
    background: var(--navy);
    padding: 140px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--teal), var(--aqua), var(--teal));
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.page-header p {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    max-width: 520px;
}

/* UPDATED DATE */
.updated-date {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.updated-date::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--teal);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .articles-side {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .article-card-small {
        flex: 1;
        min-width: 260px;
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tips-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tips-image {
        max-width: 560px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }

    .about-intro {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .intro-strip-inner {
        grid-template-columns: 1fr;
    }

    .intro-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .intro-item:last-child {
        border-bottom: none;
    }

    .destinations-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .cookie-btns {
        width: 100%;
    }

    .cookie-accept,
    .cookie-reject {
        flex: 1;
        text-align: center;
    }
}
