:root {
    --primary-color: #0891b2;
    --primary-dark: #0e7490;
    --primary-light: #22d3ee;
    --secondary-color: #f59e0b;
    --secondary-light: #fbbf24;
    --accent-color: #10b981;
    --accent-light: #34d399;
    --text-dark: #0f172a;
    --text-medium: #475569;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-sand: #fef3c7;
    --bg-ocean: #e0f2fe;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.3s ease;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: linear-gradient(180deg, var(--bg-ocean) 0%, var(--bg-light) 30%, var(--white) 100%);
    min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}
p {
    font-family: 'Source Serif 4', serif;
    color: var(--text-medium);
}
a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}
a:hover {
    color: var(--primary-dark);
}
img {
    max-width: 100%;
    height: auto;
}
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--primary-light) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}
.loader-content {
    text-align: center;
}
.loader-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}
.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}
.spinner-ring:nth-child(2) {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-top-color: var(--secondary-light);
    animation-duration: 1s;
    animation-direction: reverse;
}
.spinner-ring:nth-child(3) {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    border-top-color: var(--white);
    animation-duration: 0.8s;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.loader-text {
    color: var(--white);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}
.navbar {
    padding: 12px 0;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}
.brand-logo {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}
.brand-logo img {
    border-radius: 4px;
}
.brand-info {
    display: flex;
    flex-direction: column;
}
.brand-name {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.2;
}
.brand-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.navbar-brand:hover .brand-name {
    color: var(--primary-color);
}
.navbar-nav .nav-link {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    padding: 10px 18px;
    margin: 0 3px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
    background: rgba(8, 145, 178, 0.08);
}
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
    padding: 12px 0;
    margin-top: 10px;
}
.dropdown-item {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    padding: 10px 20px;
    transition: var(--transition);
}
.dropdown-item:hover,
.dropdown-item.active {
    background: rgba(8, 145, 178, 0.08);
    color: var(--primary-color);
}
.navbar-toggler {
    border: none;
    padding: 10px;
    background: transparent;
    cursor: pointer;
}
.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}
.toggler-bar {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--text-dark);
    margin: 5px 0;
    border-radius: 3px;
    transition: var(--transition);
}
.navbar-toggler.active .toggler-bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.navbar-toggler.active .toggler-bar:nth-child(2) {
    opacity: 0;
}
.navbar-toggler.active .toggler-bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    transition: right 0.35s ease;
    overflow-y: auto;
}
.mobile-menu.active {
    right: 0;
}
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}
.mobile-menu-title {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--white);
}
.mobile-menu-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: var(--white);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.mobile-menu-close:hover {
    background: rgba(255,255,255,0.3);
}
.mobile-menu-nav {
    list-style: none;
    padding: 24px 0;
}
.mobile-menu-nav > li > a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: var(--transition);
}
.mobile-menu-nav > li > a:hover,
.mobile-menu-nav > li > a.active {
    background: rgba(8, 145, 178, 0.08);
    color: var(--primary-color);
}
.mobile-menu-section {
    padding: 10px 0;
}
.section-label {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px 10px;
    color: var(--text-light);
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.mobile-submenu {
    list-style: none;
    padding-left: 24px;
}
.mobile-submenu li a {
    display: block;
    padding: 12px 24px;
    color: var(--text-medium);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    border-left: 3px solid transparent;
}
.mobile-submenu li a:hover,
.mobile-submenu li a.active {
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    background: rgba(8, 145, 178, 0.05);
}
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}
main {
    padding-top: 80px;
}
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0891b2 0%, #0d9488 30%, #10b981 60%, #0891b2 100%);
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
}
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    color: var(--white);
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 28px;
    border: 1px solid rgba(255,255,255,0.2);
}
.hero-title {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 24px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.15);
    line-height: 1.1;
}
.hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255,255,255,0.92);
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.8;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
}
.btn-hero-primary {
    background: var(--white);
    color: var(--primary-color);
}
.btn-hero-primary:hover {
    background: var(--secondary-light);
    color: var(--text-dark);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.btn-hero-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn-hero-outline:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-4px);
}
.hero-image-wrapper {
    position: relative;
}
.hero-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}
.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
    color: var(--white);
}
.hero-image-title {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 6px;
}
.hero-image-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    opacity: 0.9;
}
.hero-floating-card {
    position: absolute;
    background: var(--white);
    padding: 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}
.hero-floating-card.card-1 {
    top: -25px;
    right: -35px;
    animation: float 3s ease-in-out infinite;
}
.hero-floating-card.card-2 {
    bottom: 50px;
    left: -45px;
    animation: float 3s ease-in-out infinite 0.5s;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}
.floating-card-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 12px;
}
.floating-card-title {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--text-dark);
}
.floating-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}
.section {
    padding: 100px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 65px;
}
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
}
.section-title {
    font-size: 3rem;
    margin-bottom: 18px;
}
.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 620px;
    margin: 0 auto;
}
.beach-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
}
.beach-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}
.beach-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}
.beach-card-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}
.beach-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.beach-card:hover .beach-card-image img {
    transform: scale(1.08);
}
.beach-card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
}
.beach-card-body {
    padding: 28px;
}
.beach-card-title {
    font-size: 1.6rem;
    margin-bottom: 14px;
}
.beach-card-title a {
    color: var(--text-dark);
}
.beach-card-title a:hover {
    color: var(--primary-color);
}
.beach-card-excerpt {
    font-size: 1rem;
    margin-bottom: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.beach-card-meta {
    display: flex;
    align-items: center;
    gap: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.beach-card-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--text-light);
}
.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-color);
    margin-top: 16px;
}
.read-more-link:hover {
    gap: 14px;
    color: var(--primary-dark);
}
.features-section {
    background: var(--white);
}
.feature-box {
    text-align: center;
    padding: 45px 32px;
    background: linear-gradient(145deg, var(--bg-ocean) 0%, var(--bg-sand) 100%);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
}
.feature-box.animate-in {
    opacity: 1;
    transform: translateY(0);
}
.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.feature-icon {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 2.2rem;
    color: var(--white);
}
.feature-title {
    font-size: 1.4rem;
    margin-bottom: 14px;
}
.feature-text {
    font-size: 0.98rem;
    color: var(--text-light);
    margin: 0;
}
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.cta-title {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 18px;
}
.cta-text {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    max-width: 620px;
    margin: 0 auto 35px;
}
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 38px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: var(--radius-md);
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}
.cta-btn:hover {
    background: var(--secondary-light);
    color: var(--text-dark);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.article-header {
    position: relative;
    padding: 130px 0 90px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    overflow: hidden;
}
.article-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}
.article-header-content {
    position: relative;
    z-index: 2;
}
.breadcrumb-nav {
    margin-bottom: 28px;
}
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}
.breadcrumb-item {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}
.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
}
.breadcrumb-item a:hover {
    color: var(--white);
}
.breadcrumb-item.active {
    color: var(--white);
}
.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.6);
}
.article-title {
    font-size: 3.2rem;
    color: var(--white);
    margin-bottom: 22px;
}
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    color: rgba(255,255,255,0.9);
}
.article-meta span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}
.article-content {
    padding: 90px 0;
}
.article-featured-image {
    margin-top: -110px;
    margin-bottom: 55px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.article-featured-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}
.article-body {
    font-size: 1.1rem;
    line-height: 1.95;
}
.article-body h2 {
    font-size: 2.1rem;
    margin: 55px 0 28px;
    color: var(--text-dark);
}
.article-body h3 {
    font-size: 1.6rem;
    margin: 45px 0 22px;
    color: var(--text-dark);
}
.article-body p {
    margin-bottom: 28px;
    color: var(--text-medium);
}
.article-body ul,
.article-body ol {
    margin-bottom: 28px;
    padding-left: 28px;
}
.article-body li {
    margin-bottom: 14px;
    color: var(--text-medium);
}
.article-body blockquote {
    background: linear-gradient(145deg, var(--bg-ocean), var(--bg-sand));
    border-left: 5px solid var(--primary-color);
    padding: 35px;
    margin: 45px 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.article-body blockquote p {
    font-style: italic;
    font-size: 1.25rem;
    margin: 0;
    color: var(--text-dark);
}
.info-box {
    background: linear-gradient(145deg, var(--bg-ocean), var(--bg-sand));
    padding: 35px;
    border-radius: var(--radius-md);
    margin: 45px 0;
}
.info-box-title {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.4rem;
    margin-bottom: 22px;
}
.info-box-title i {
    color: var(--primary-color);
}
.info-box ul {
    margin: 0;
    padding-left: 28px;
}
.article-sidebar {
    position: sticky;
    top: 110px;
}
.sidebar-widget {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 32px;
}
.sidebar-title {
    font-size: 1.4rem;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--primary-color);
}
.related-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.related-posts-list li {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.related-posts-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.related-posts-list a {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}
.related-posts-list a:hover {
    color: var(--primary-color);
}
.related-posts-list img {
    width: 75px;
    height: 55px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}
.quick-facts {
    list-style: none;
    padding: 0;
    margin: 0;
}
.quick-facts li {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}
.quick-facts li:last-child {
    border-bottom: none;
}
.quick-facts .label {
    color: var(--text-light);
}
.quick-facts .value {
    font-weight: 600;
    color: var(--text-dark);
}
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 130px 0 70px;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}
.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.page-title {
    font-size: 3.2rem;
    color: var(--white);
    margin-bottom: 18px;
}
.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    max-width: 620px;
    margin: 0 auto;
}
.about-section {
    padding: 90px 0;
}
.about-content {
    background: var(--white);
    padding: 55px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 55px;
}
.team-card {
    text-align: center;
    padding: 35px;
    background: linear-gradient(145deg, var(--bg-ocean), var(--bg-sand));
    border-radius: var(--radius-lg);
}
.team-avatar {
    width: 105px;
    height: 105px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 2.8rem;
    color: var(--white);
}
.team-name {
    font-size: 1.25rem;
    margin-bottom: 6px;
}
.team-role {
    color: var(--text-light);
    font-size: 0.92rem;
}
.contact-section {
    padding: 90px 0;
}
.contact-info-card {
    background: var(--white);
    padding: 45px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    height: 100%;
}
.contact-info-title {
    font-size: 1.9rem;
    margin-bottom: 35px;
}
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.contact-info-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.contact-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    flex-shrink: 0;
}
.contact-details h4 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
}
.contact-details p {
    margin: 0;
    font-size: 0.98rem;
}
.contact-details a {
    color: var(--primary-color);
}
.contact-map {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    height: 100%;
}
.map-placeholder {
    background: linear-gradient(145deg, var(--bg-ocean), var(--bg-sand));
    border-radius: var(--radius-md);
    height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 35px;
}
.map-placeholder i {
    font-size: 4.5rem;
    color: var(--primary-color);
    margin-bottom: 22px;
}
.map-placeholder h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}
.map-placeholder p {
    margin: 0;
    color: var(--text-light);
}
.external-resources {
    margin-top: 45px;
    padding: 35px;
    background: linear-gradient(145deg, var(--bg-ocean), var(--bg-sand));
    border-radius: var(--radius-md);
}
.external-resources h4 {
    font-size: 1.25rem;
    margin-bottom: 22px;
}
.external-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.external-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: var(--white);
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    transition: var(--transition);
}
.external-link:hover {
    background: var(--primary-color);
    color: var(--white);
}
.policy-content {
    padding: 90px 0;
}
.policy-card {
    background: var(--white);
    padding: 55px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.policy-card h2 {
    font-size: 1.9rem;
    margin: 45px 0 22px;
    color: var(--text-dark);
}
.policy-card h2:first-child {
    margin-top: 0;
}
.policy-card p {
    margin-bottom: 22px;
    line-height: 1.85;
}
.policy-card ul {
    margin-bottom: 28px;
    padding-left: 28px;
}
.policy-card li {
    margin-bottom: 12px;
    color: var(--text-medium);
}
.site-footer {
    position: relative;
    background: var(--text-dark);
    color: var(--white);
}
.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 85px;
}
.footer-wave path {
    fill: var(--white);
}
.footer-content {
    padding: 110px 0 55px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 22px;
}
.footer-description {
    color: rgba(255,255,255,0.72);
    font-size: 0.98rem;
    margin-bottom: 22px;
    line-height: 1.8;
}
.footer-update {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
}
.footer-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 28px;
    color: var(--white);
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 14px;
}
.footer-links a {
    color: rgba(255,255,255,0.72);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--secondary-light);
    padding-left: 6px;
}
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.72);
    font-size: 0.95rem;
}
.footer-contact i {
    color: var(--secondary-light);
    margin-top: 4px;
    font-size: 1.1rem;
}
.footer-contact div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.footer-contact strong {
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-contact span {
    color: rgba(255,255,255,0.72);
}
.footer-contact a {
    color: rgba(255,255,255,0.72);
}
.footer-contact a:hover {
    color: var(--secondary-light);
}
.footer-bottom {
    padding: 28px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.copyright {
    margin: 0;
    color: rgba(255,255,255,0.6);
    font-size: 0.92rem;
}
.footer-external {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.footer-external span {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
}
.footer-external a {
    color: rgba(255,255,255,0.72);
    font-size: 0.88rem;
}
.footer-external a:hover {
    color: var(--secondary-light);
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.cookie-banner.active {
    transform: translateY(0);
}
.cookie-content {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 28px;
    max-width: 1200px;
    margin: 0 auto;
}
.cookie-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.9rem;
    flex-shrink: 0;
}
.cookie-text h5 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.15rem;
    margin-bottom: 6px;
}
.cookie-text p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--text-light);
}
.cookie-text a {
    color: var(--primary-color);
    text-decoration: underline;
}
.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.cookie-btn {
    padding: 14px 26px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    transition: var(--transition);
}
.cookie-btn-accept {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
}
.cookie-btn-accept:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}
.cookie-btn-reject {
    background: var(--bg-light);
    color: var(--text-dark);
}
.cookie-btn-reject:hover {
    background: #e2e8f0;
}
.cookie-btn-settings {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.cookie-btn-settings:hover {
    background: var(--primary-color);
    color: var(--white);
}
.cookie-btn-save {
    background: var(--primary-color);
    color: var(--white);
    width: 100%;
}
.cookie-btn-save:hover {
    background: var(--primary-dark);
}
.cookie-settings-panel {
    display: none;
    border-top: 1px solid rgba(0,0,0,0.08);
    padding: 28px;
    max-width: 1200px;
    margin: 0 auto;
}
.cookie-settings-panel.active {
    display: block;
}
.settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}
.settings-header h5 {
    font-family: 'Josefin Sans', sans-serif;
    margin: 0;
}
.settings-close {
    background: transparent;
    border: none;
    font-size: 1.35rem;
    cursor: pointer;
    color: var(--text-light);
}
.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.cookie-option:last-child {
    border-bottom: none;
}
.option-info h6 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.98rem;
    margin-bottom: 5px;
}
.option-info p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-light);
}
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    background: #e2e8f0;
    border-radius: 14px;
    cursor: pointer;
    transition: var(--transition);
}
.toggle-switch.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}
input[type="checkbox"]:checked + .toggle-switch {
    background: var(--primary-color);
}
input[type="checkbox"]:checked + .toggle-switch::after {
    left: 27px;
}
input[type="checkbox"] {
    display: none;
}
.settings-footer {
    margin-top: 22px;
}
.info-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}
.info-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}
.info-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 22px;
}
.info-card-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
}
.info-card-text {
    font-size: 0.98rem;
    color: var(--text-light);
    margin: 0;
}
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-image {
        margin-top: 55px;
    }
    .hero-image img {
        height: 380px;
    }
    .hero-floating-card {
        display: none;
    }
    .section-title {
        font-size: 2.4rem;
    }
    .article-title {
        font-size: 2.4rem;
    }
    .page-title {
        font-size: 2.4rem;
    }
    .navbar-collapse {
        display: none !important;
    }
    .navbar-toggler {
        display: block !important;
    }
}
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 110px 0 70px;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1.05rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .btn-hero {
        width: 100%;
        justify-content: center;
    }
    .section {
        padding: 70px 0;
    }
    .section-title {
        font-size: 2rem;
    }
    .article-header {
        padding: 110px 0 70px;
    }
    .article-title {
        font-size: 2rem;
    }
    .article-featured-image {
        margin-top: -70px;
    }
    .article-featured-image img {
        height: 320px;
    }
    .article-sidebar {
        position: static;
        margin-top: 55px;
    }
    .page-title {
        font-size: 2rem;
    }
    .about-content {
        padding: 35px;
    }
    .contact-info-card {
        padding: 35px;
    }
    .policy-card {
        padding: 35px;
    }
    .cookie-content {
        flex-direction: column;
        text-align: center;
        padding: 22px;
    }
    .cookie-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    .cookie-btn {
        flex: 1;
        min-width: 110px;
    }
    .footer-external {
        justify-content: center;
        margin-top: 16px;
    }
}
@media (max-width: 576px) {
    .container {
        padding-left: 22px;
        padding-right: 22px;
    }
    .hero-title {
        font-size: 1.85rem;
    }
    .section-title {
        font-size: 1.7rem;
    }
    .cta-title {
        font-size: 2rem;
    }
    .beach-card-image {
        height: 240px;
    }
    .article-meta {
        flex-direction: column;
        gap: 12px;
    }
    .footer-content {
        padding: 90px 0 45px;
    }
}
