/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --text-light: #eaeaea;
    --text-dark: #333;
    --gold: #d4af37;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #e8e8e8;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Page Load Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes cardHover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-5deg) scale(0.95);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Scroll Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Enhanced Card Animations */
.card,
.mini-card,
.gallery-item,
.nav-button {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover,
.mini-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding: 2rem 0;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--gold));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    padding-right: 50%;
    padding-left: 2rem;
}

.timeline-item:nth-child(even) {
    padding-left: 50%;
    padding-right: 2rem;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.timeline-item:nth-child(even) .timeline-content:hover {
    transform: translateX(-10px);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 2rem;
    width: 20px;
    height: 20px;
    background: var(--gold);
    border: 4px solid white;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px var(--primary-color);
    z-index: 2;
}

.timeline-date {
    color: var(--gold);
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.timeline-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.timeline-description {
    color: var(--text-dark);
    line-height: 1.8;
}

/* Table Styles */
.data-table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    margin: 2rem auto;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    animation: fadeInUp 0.8s ease;
    table-layout: fixed;
}

.data-table thead {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
}

.data-table th {
    padding: 1.2rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-table td {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid #eee;
    transition: var(--transition);
}

.data-table tbody tr {
    transition: var(--transition);
}

.data-table tbody tr:hover {
    background: #f9f9f9;
    transform: scale(1.01);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.data-table .highlight {
    color: var(--gold);
    font-weight: bold;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.4s;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-dark);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Progress Bars */
.progress-section {
    margin: 2rem 0;
}

.progress-item {
    margin-bottom: 1.5rem;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.progress-bar-container {
    height: 30px;
    background: #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--gold));
    border-radius: 15px;
    transition: width 1s ease;
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

/* Loading Animation */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(212, 175, 55, 0.3);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Header and Navigation */
header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    animation: fadeIn 0.6s ease;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-light);
    text-decoration: none;
    animation: slideInLeft 0.8s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    display: block;
    line-height: 1.2;
}

.site-domain {
    font-size: 0.85rem;
    font-weight: 400;
    margin-top: 0.3rem;
    opacity: 0.9;
    display: block;
    line-height: 1;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    animation: slideInRight 0.8s ease;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--gold);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
    animation: fadeIn 1s ease;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1.2s ease;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

/* Hero Text Only (for subpages) */
.hero.hero-text-only {
    height: auto;
    min-height: auto;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.hero.hero-text-only::before {
    display: none;
}

.hero.hero-text-only .hero-image {
    display: none;
}

.hero.hero-text-only .hero-content {
    position: relative;
    z-index: 1;
}

.hero.hero-text-only h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: none;
}

.hero.hero-text-only p {
    font-size: 1.1rem;
    text-shadow: none;
    opacity: 0.9;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

/* Section Styles */
section {
    padding: 5rem 0;
    animation: fadeInUp 0.8s ease;
    border-bottom: 1px solid #e0e0e0;
}

section.hero {
    border-bottom: none;
}

main > section:last-of-type {
    border-bottom: none;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gold);
}

/* Content Blocks */
.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease;
}

.content-block.reverse {
    grid-template-columns: 1fr 1fr;
}

.content-block.reverse .block-image {
    order: 2;
}

.content-block.reverse .block-text {
    order: 1;
}

.block-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.block-image:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.block-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.block-text {
    padding: 2rem;
}

.block-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.block-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Image Top Block */
.image-top-block {
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease;
}

.image-top-block img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Cultural & Creative Areas Image */
.image-top-block .cultural-creative-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto 2rem;
}

/* Image Bottom Block */
.image-bottom-block {
    margin-top: 4rem;
    animation: fadeInUp 0.8s ease;
}

.image-bottom-block img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Mini Cards */
.mini-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

@media (max-width: 768px) {
    .mini-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.mini-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    border-left: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.mini-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--gold));
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.mini-card:hover::before {
    transform: scaleY(1);
}

.mini-card:nth-child(1) {
    animation-delay: 0.1s;
}

.mini-card:nth-child(2) {
    animation-delay: 0.2s;
}

.mini-card:nth-child(3) {
    animation-delay: 0.3s;
}

.mini-card:nth-child(4) {
    animation-delay: 0.4s;
}

.mini-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
}

.mini-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    padding-left: 1.5rem;
}

.mini-card h4::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.mini-card:hover h4::before {
    transform: translateX(5px);
}

.mini-card p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding-left: 1.5rem;
}

/* Mini-card as link */
a.mini-card {
    text-decoration: none;
    display: block;
    cursor: pointer;
}

a.mini-card:visited {
    color: inherit;
}

a.mini-card:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Article Content Styles */
.article-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 0;
}

.article-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.article-content h2:first-child {
    margin-top: 0;
}

.article-content h3 {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.article-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.back-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.back-link:hover {
    color: var(--gold);
    transform: translateX(-5px);
}

/* List Styles */
.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.feature-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-dark);
    animation: slideInLeft 0.6s ease;
    animation-fill-mode: both;
}

.feature-list li:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-list li:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-list li:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
}

.gallery-item:nth-child(1) {
    animation-delay: 0.1s;
}

.gallery-item:nth-child(2) {
    animation-delay: 0.2s;
}

.gallery-item:nth-child(3) {
    animation-delay: 0.3s;
}

.gallery-item:nth-child(4) {
    animation-delay: 0.4s;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Quick Navigation */
.quick-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.nav-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
}

.nav-button:nth-child(1) {
    animation-delay: 0.1s;
}

.nav-button:nth-child(2) {
    animation-delay: 0.2s;
}

.nav-button:nth-child(3) {
    animation-delay: 0.3s;
}

.nav-button:nth-child(4) {
    animation-delay: 0.4s;
}

.nav-button:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
}

.nav-button h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.card:nth-child(1) {
    animation-delay: 0.1s;
}

.card:nth-child(2) {
    animation-delay: 0.2s;
}

.card:nth-child(3) {
    animation-delay: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-content h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Contact Form */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    animation: slideInLeft 0.8s ease;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    animation: slideInRight 0.8s ease;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Google Maps */
.map-container {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-text {
    text-align: center;
    padding-top: 1rem;
    opacity: 0.8;
}

/* Legal Pages */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: white;
    min-height: calc(100vh - 200px);
}

.legal-page h1 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.legal-page h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.legal-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--primary-color);
        flex-direction: column;
        padding: 5rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero.hero-text-only {
        padding: 3rem 0;
    }

    .hero.hero-text-only h1 {
        font-size: 2rem;
    }

    .hero.hero-text-only p {
        font-size: 1rem;
    }

    .content-block {
        display: grid;
        grid-template-columns: 1fr;
        align-items: stretch;
        gap: 0;
        margin-bottom: 2rem;
    }

    .content-block.reverse .block-image {
        order: 1;
    }

    .content-block.reverse .block-text {
        order: 2;
    }

    .content-block .block-image {
        width: 100%;
        max-width: 100%;
        margin: 0 auto 1rem;
        border: none;
        box-shadow: none;
        background: transparent;
        border-radius: 0;
        overflow: visible;
    }

    .content-block .block-image:hover {
        transform: none;
        box-shadow: none;
    }

    .content-block .block-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        border-radius: 0;
    }

    .content-block .block-text {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
        margin: 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .quick-nav {
        grid-template-columns: 1fr;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 60px !important;
        padding-right: 0 !important;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-item:nth-child(even) .timeline-content:hover {
        transform: translateX(10px);
    }

    .data-table {
        font-size: 0.65rem;
        width: 100%;
        max-width: 100%;
        margin: 2rem auto;
        display: table;
        table-layout: fixed;
        overflow: visible;
    }

    .data-table th,
    .data-table td {
        padding: 0.4rem 0.3rem;
        font-size: 0.6rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        text-align: center;
        line-height: 1.3;
    }

    .data-table th {
        font-size: 0.65rem;
        padding: 0.5rem 0.3rem;
    }

    .data-table thead th {
        font-size: 0.7rem;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .cultural-creative-image {
        max-width: 100%;
        width: 100%;
    }

    /* Family-Friendly Spots Card Mobile Layout */
    .family-friendly-card {
        background: white;
        border-radius: 10px;
        box-shadow: 0 3px 15px rgba(0,0,0,0.1);
        padding: 18px;
        display: grid;
        grid-template-columns: 40% 1fr;
        grid-template-rows: auto auto;
        gap: 0;
        align-items: start;
    }

    .family-friendly-card .family-friendly-image {
        grid-column: 1;
        grid-row: 1;
        width: 100%;
        margin: 0;
        border-radius: 10px 0 0 10px;
        box-shadow: none;
        background: transparent;
        overflow: hidden;
        height: 120px;
    }

    .family-friendly-card .family-friendly-image:hover {
        transform: none;
        box-shadow: none;
    }

    .family-friendly-card .family-friendly-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 10px 0 0 10px;
    }

    .family-friendly-card .family-friendly-text {
        display: contents;
    }

    .family-friendly-card .family-friendly-title {
        grid-column: 2;
        grid-row: 1;
        margin: 0;
        padding: 0 0 0 12px;
        font-size: 1.3rem;
        color: var(--primary-color);
        text-align: left;
        word-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
        line-height: 1.3;
        display: flex;
        align-items: center;
        min-height: 120px;
    }

    .family-friendly-card .family-friendly-description {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        margin-top: 14px;
        padding: 0;
        font-size: 1rem;
        line-height: 1.6;
        color: var(--text-dark);
    }

    /* Engaging Digital Experiences Card Mobile Layout */
    .engaging-digital-card {
        background: white;
        border-radius: 10px;
        box-shadow: 0 3px 15px rgba(0,0,0,0.1);
        padding: 18px;
        display: grid;
        grid-template-columns: 40% 1fr;
        grid-template-rows: auto auto;
        gap: 0;
        align-items: start;
    }

    .engaging-digital-card .engaging-digital-image {
        grid-column: 1;
        grid-row: 1;
        width: 100%;
        margin: 0;
        border-radius: 10px 0 0 10px;
        box-shadow: none;
        background: transparent;
        overflow: hidden;
        height: 120px;
    }

    .engaging-digital-card .engaging-digital-image:hover {
        transform: none;
        box-shadow: none;
    }

    .engaging-digital-card .engaging-digital-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 10px 0 0 10px;
    }

    .engaging-digital-card .engaging-digital-text {
        display: contents;
    }

    .engaging-digital-card .engaging-digital-title {
        grid-column: 2;
        grid-row: 1;
        margin: 0;
        padding: 0 0 0 12px;
        font-size: 1.3rem;
        color: var(--primary-color);
        text-align: left;
        word-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
        line-height: 1.3;
        display: flex;
        align-items: center;
        min-height: 120px;
    }

    .engaging-digital-card .engaging-digital-description {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        margin-top: 14px;
        padding: 0;
        font-size: 1rem;
        line-height: 1.6;
        color: var(--text-dark);
    }

    .engaging-digital-card .engaging-digital-description p {
        margin: 0;
    }

    /* Technology-Enhanced Learning Card Mobile Layout */
    .technology-enhanced-card {
        background: white;
        border-radius: 10px;
        box-shadow: 0 3px 15px rgba(0,0,0,0.1);
        padding: 18px;
        display: grid;
        grid-template-columns: 40% 1fr;
        grid-template-rows: auto auto;
        gap: 0;
        align-items: start;
    }

    .technology-enhanced-card .technology-enhanced-image {
        grid-column: 1;
        grid-row: 1;
        width: 100%;
        margin: 0;
        border-radius: 10px 0 0 10px;
        box-shadow: none;
        background: transparent;
        overflow: hidden;
        height: 120px;
    }

    .technology-enhanced-card .technology-enhanced-image:hover {
        transform: none;
        box-shadow: none;
    }

    .technology-enhanced-card .technology-enhanced-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 10px 0 0 10px;
    }

    .technology-enhanced-card .technology-enhanced-text {
        display: contents;
    }

    .technology-enhanced-card .technology-enhanced-title {
        grid-column: 2;
        grid-row: 1;
        margin: 0;
        padding: 0 0 0 12px;
        font-size: 1.3rem;
        color: var(--primary-color);
        text-align: left;
        word-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
        line-height: 1.3;
        display: flex;
        align-items: center;
        min-height: 120px;
    }

    .technology-enhanced-card .technology-enhanced-description {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        margin-top: 14px;
        padding: 0;
        font-size: 1rem;
        line-height: 1.6;
        color: var(--text-dark);
    }

    .technology-enhanced-card .technology-enhanced-description p {
        margin: 0;
    }

    /* Serene Water Environments Card Mobile Layout */
    .serene-water-card {
        background: white;
        border-radius: 10px;
        box-shadow: 0 3px 15px rgba(0,0,0,0.1);
        padding: 18px;
        display: grid;
        grid-template-columns: 40% 1fr;
        grid-template-rows: auto auto;
        gap: 0;
        align-items: start;
    }

    .serene-water-card .serene-water-image {
        grid-column: 1;
        grid-row: 1;
        width: 100%;
        margin: 0;
        border-radius: 10px 0 0 10px;
        box-shadow: none;
        background: transparent;
        overflow: hidden;
        height: 120px;
    }

    .serene-water-card .serene-water-image:hover {
        transform: none;
        box-shadow: none;
    }

    .serene-water-card .serene-water-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 10px 0 0 10px;
    }

    .serene-water-card .serene-water-text {
        display: contents;
    }

    .serene-water-card .serene-water-title {
        grid-column: 2;
        grid-row: 1;
        margin: 0;
        padding: 0 0 0 12px;
        font-size: 1.3rem;
        color: var(--primary-color);
        text-align: left;
        word-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
        line-height: 1.3;
        display: flex;
        align-items: center;
        min-height: 120px;
    }

    .serene-water-card .serene-water-description {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        margin-top: 14px;
        padding: 0;
        font-size: 1rem;
        line-height: 1.6;
        color: var(--text-dark);
    }

    .serene-water-card .serene-water-description p {
        margin: 0;
    }

    /* Enclosed Water Experiences Card Mobile Layout */
    .enclosed-water-card {
        background: white;
        border-radius: 10px;
        box-shadow: 0 3px 15px rgba(0,0,0,0.1);
        padding: 18px;
        display: grid;
        grid-template-columns: 40% 1fr;
        grid-template-rows: auto auto;
        gap: 0;
        align-items: start;
    }

    .enclosed-water-card .enclosed-water-image {
        grid-column: 1;
        grid-row: 1;
        width: 100%;
        margin: 0;
        border-radius: 10px 0 0 10px;
        box-shadow: none;
        background: transparent;
        overflow: hidden;
        height: 120px;
    }

    .enclosed-water-card .enclosed-water-image:hover {
        transform: none;
        box-shadow: none;
    }

    .enclosed-water-card .enclosed-water-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 10px 0 0 10px;
    }

    .enclosed-water-card .enclosed-water-text {
        display: contents;
    }

    .enclosed-water-card .enclosed-water-title {
        grid-column: 2;
        grid-row: 1;
        margin: 0;
        padding: 0 0 0 12px;
        font-size: 1.3rem;
        color: var(--primary-color);
        text-align: left;
        word-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
        line-height: 1.3;
        display: flex;
        align-items: center;
        min-height: 120px;
    }

    .enclosed-water-card .enclosed-water-description {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        margin-top: 14px;
        padding: 0;
        font-size: 1rem;
        line-height: 1.6;
        color: var(--text-dark);
    }

    .enclosed-water-card .enclosed-water-description p {
        margin: 0;
    }

    /* Picture-Perfect Locations Card Mobile Layout */
    .picture-perfect-card {
        background: white;
        border-radius: 10px;
        box-shadow: 0 3px 15px rgba(0,0,0,0.1);
        padding: 18px;
        display: grid;
        grid-template-columns: 40% 1fr;
        grid-template-rows: auto auto;
        gap: 0;
        align-items: start;
    }

    .picture-perfect-card .picture-perfect-image {
        grid-column: 1;
        grid-row: 1;
        width: 100%;
        margin: 0;
        border-radius: 10px 0 0 10px;
        box-shadow: none;
        background: transparent;
        overflow: hidden;
        height: 120px;
    }

    .picture-perfect-card .picture-perfect-image:hover {
        transform: none;
        box-shadow: none;
    }

    .picture-perfect-card .picture-perfect-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 10px 0 0 10px;
    }

    .picture-perfect-card .picture-perfect-text {
        display: contents;
    }

    .picture-perfect-card .picture-perfect-title {
        grid-column: 2;
        grid-row: 1;
        margin: 0;
        padding: 0 0 0 12px;
        font-size: 1.3rem;
        color: var(--primary-color);
        text-align: left;
        word-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
        line-height: 1.3;
        display: flex;
        align-items: center;
        min-height: 120px;
    }

    .picture-perfect-card .picture-perfect-description {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        margin-top: 14px;
        padding: 0;
        font-size: 1rem;
        line-height: 1.6;
        color: var(--text-dark);
    }

    .picture-perfect-card .picture-perfect-description p {
        margin: 0;
    }

    .evening-light-section {
        display: none;
    }

    .sky-level-section {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero.hero-text-only {
        padding: 2.5rem 0;
    }

    .hero.hero-text-only h1 {
        font-size: 1.5rem;
    }

    .hero.hero-text-only p {
        font-size: 0.9rem;
    }

    .container {
        padding: 0 0.8rem;
        max-width: 100%;
        overflow-x: hidden;
    }

    section {
        padding: 3rem 0;
    }

    .data-table {
        font-size: 0.6rem;
        width: 100%;
        margin: 1.5rem auto;
    }

    .data-table th,
    .data-table td {
        padding: 0.35rem 0.25rem;
        font-size: 0.55rem;
    }

    .data-table th {
        font-size: 0.6rem;
        padding: 0.45rem 0.25rem;
    }

    .data-table thead th {
        font-size: 0.65rem;
    }
}

