/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
}

/* Flying Stingray Animation - Completely isolated rendering context */
.flying-stingray {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2147483647;
    opacity: 0;
    transform: translate(50vw, -50vh) rotate(0deg);
    transition: all 0s ease-out;
    isolation: isolate;
    backdrop-filter: none;
    contain: layout style paint;
    /* Force hardware acceleration and new stacking context */
    transform: translate3d(50vw, -50vh, 0) rotate(0deg);
    will-change: transform, opacity;
}

.flying-stingray.active {
    opacity: 1 !important;
    transform: translate3d(50vw, 100vh, 0) rotate(0deg);
    transition: all 12s ease-in-out;
}

.flying-stingray video {
    width: 800px !important;
    height: auto !important;
    position: fixed !important;
    opacity: 1 !important;
    mix-blend-mode: normal !important;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)) !important;
    mask: none !important;
    -webkit-mask: none !important;
    will-change: transform !important;
    object-fit: contain !important;
    display: block !important;
    transform: translate3d(0, 0, 0) rotate(200deg) !important;
    z-index: 2147483647 !important;
    contain: layout style paint;
    transform-style: flat;
    backface-visibility: hidden;
    /* Force hardware acceleration */
    -webkit-transform: translate3d(0, 0, 0) rotate(200deg) !important;
}

/* Force consistent compositing */
.flying-stingray::before {
    content: "";
    position: absolute;
    inset: -10px;
    background: rgba(0, 0, 0, 0.001);
    pointer-events: none;
    z-index: -1;
}

/* Override any inherited properties from parent elements */
.flying-stingray video,
.flying-stingray video *,
body .flying-stingray video,
html .flying-stingray video,
* .flying-stingray video {
    opacity: 1 !important;
    mix-blend-mode: normal !important;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)) !important;
    mask: none !important;
    -webkit-mask: none !important;
    isolation: auto !important;
    transform: rotate(200deg) !important;
    position: fixed !important;
    z-index: 2147483647 !important;
    contain: layout style paint !important;
    transform-style: flat !important;
    backface-visibility: hidden !important;
}

/* Hide stingray after animation completes */
.flying-stingray.completed {
    opacity: 0;
    transition: opacity 1s ease-out;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Override for sections with colored backgrounds */
.exhibits .section-subtitle,
.seatrek .section-subtitle,
.history .section-subtitle,
.photo-gallery .section-subtitle,
.live-webcam .section-subtitle,
.what-to-expect .section-subtitle,
.tickets .section-subtitle,
.about .section-subtitle,
.gift-shop .section-subtitle,
.education .section-subtitle,
.contact .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(52, 152, 219, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.5rem;
    color: #2980b9;
}

.nav-logo i {
    font-size: 2rem;
    color: #3498db;
}

.nav-logo-image {
    height: 70px;
    width: auto;
    margin-right: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Main Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link i:first-child {
    font-size: 1.1rem;
    color: #3498db;
}

.nav-link:hover {
    color: #3498db;
    background: rgba(52, 152, 219, 0.05);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #3498db;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.dropdown-arrow {
    font-size: 0.8rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menus */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 400px;
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.dropdown-section h4 {
    font-size: 1rem;
    color: #3498db;
    margin-bottom: 1rem;
    font-weight: 600;
}

.dropdown-section ul {
    list-style: none;
}

.dropdown-section li {
    margin-bottom: 0.75rem;
}

.dropdown-section a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.dropdown-section a:hover {
    color: #3498db;
    padding-left: 0.5rem;
}

/* Right Side Navigation */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Search */
.nav-search {
    position: relative;
}

.search-toggle {
    background: none;
    border: none;
    color: #2c3e50;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.search-toggle:hover {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.search-overlay.active .search-container {
    transform: scale(1);
}

.search-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 1.1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: #3498db;
}

.search-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #7f8c8d;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.search-close:hover {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

/* Language Selector */
.nav-language {
    position: relative;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: #2c3e50;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.language-toggle:hover {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 150px;
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.nav-language:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: block;
    padding: 0.75rem 1rem;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(52, 152, 219, 0.1);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover,
.language-option.active {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

/* CTA Button */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    color: white;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
    text-shadow: 
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: white;
    text-shadow: 
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        1px 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #f1c40f;
    text-shadow: 
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        1px 1px 3px rgba(0, 0, 0, 0.8);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    color: white;
    text-shadow: 
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* What to Expect Section */
.what-to-expect {
    position: relative;
    color: white;
}

/* What to Expect Hero Section */
.what-to-expect-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.what-to-expect-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.what-to-expect-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.what-to-expect-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.7) 0%, rgba(41, 128, 185, 0.7) 100%);
    z-index: 2;
}

.what-to-expect-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 4rem 0;
}

.what-to-expect-hero-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.what-to-expect-hero-content .section-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.what-to-expect-main-content {
    padding: 4rem 0;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.section-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.8) 0%, rgba(41, 128, 185, 0.8) 100%);
    z-index: -1;
}

.what-to-expect h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.expect-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.expect-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.expect-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-left: 4px solid #3498db;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.expect-highlight i {
    font-size: 2rem;
    color: #3498db;
}

.expect-highlight h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.expect-highlight p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.expect-description {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.expect-description h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.expect-description p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.expect-description p:last-child {
    margin-bottom: 0;
}

.shark-feed-schedule {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.shark-feed-schedule h3 {
    text-align: center;
    color: white;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.feed-schedule {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feed-type {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.feed-type i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.feed-type h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.feed-type p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.local-discount {
    margin-top: 2rem;
}

.discount-banner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.3);
}

.discount-banner i {
    font-size: 3rem;
    color: #f1c40f;
}

.discount-banner h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.discount-banner p {
    margin: 0;
    opacity: 0.95;
    line-height: 1.6;
}

/* Live Webcam Section */
.live-webcam {
    padding: 80px 0;
    background: #ecf0f1;
}

.live-webcam h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

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

.webcam-placeholder {
    background: #34495e;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    color: white;
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.webcam-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.webcam-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #e74c3c;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.webcam-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.webcam-info p {
    margin-bottom: 1.5rem;
    color: #7f8c8d;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #1abc9c, #16a085);
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(26, 188, 156, 0.3);
}

.btn-outline {
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-outline:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Loading states */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Exhibits Section */
.exhibits {
    position: relative;
    color: white;
}

/* Exhibits Hero Section */
.exhibits-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.exhibits-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.exhibits-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.8) 0%, rgba(52, 152, 219, 0.8) 50%, rgba(41, 128, 185, 0.8) 100%);
    z-index: 2;
}

.exhibits-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 4rem 0;
}

.exhibits-hero-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.exhibits-hero-content .section-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.exhibits-main-content {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
}

.exhibits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.exhibits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.exhibit-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.exhibit-card.featured {
    border: 2px solid #3498db;
    transform: scale(1.02);
}

.exhibit-card:hover {
    transform: translateY(-10px);
}

.exhibit-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.exhibit-content {
    padding: 1.5rem;
}

.exhibit-category {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.exhibit-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.exhibit-details {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.exhibit-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Activities Section */
.activities {
    padding: 80px 0;
    position: relative;
    color: white;
}

.activities h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

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

.activities-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.activities-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.activities-list {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.activity-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.activity-item i {
    font-size: 1.5rem;
    color: #3498db;
    margin-top: 0.25rem;
}

.activity-item h4 {
    margin-bottom: 0.5rem;
    color: white;
}

.activity-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.activities-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Education Section */
.education {
    padding: 80px 0;
    background: white;
}

.education h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.education-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.education-card:hover {
    transform: translateY(-5px);
}

.education-card i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.education-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.education-card p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.education-card ul {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.education-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.education-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

/* About Section */
.about {
    position: relative;
    color: white;
}

/* About Hero Section */
.about-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.8) 0%, rgba(44, 62, 80, 0.8) 100%);
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 4rem 0;
}

.about-hero-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.about-hero-content .section-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.about-main-content {
    padding: 4rem 0;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

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

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.about-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.about-highlights {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.highlight-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.highlight-item h4 {
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.highlight-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* History Section */
.history {
    padding: 80px 0;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
    position: relative;
}

.history h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.history-timeline {
    max-width: 800px;
    margin: 3rem auto;
    position: relative;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    min-width: 120px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin: 0 2rem;
    flex: 1;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 10px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -20px;
    border-left-color: white;
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -20px;
    border-right-color: white;
    transform: translateY(-50%);
}

.timeline-content h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.history-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-card i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.highlight-card h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.highlight-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Responsive History Section */
@media (max-width: 768px) {
    .history-timeline {
        max-width: 100%;
        margin: 2rem auto;
    }
    
    .history-timeline::before {
        display: none;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: center;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .timeline-date {
        margin-bottom: 1rem;
        align-self: center;
        min-width: 100px;
    }
    
    .timeline-content {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .history-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .highlight-card {
        padding: 1.5rem;
    }
    
    .highlight-card i {
        font-size: 2rem;
    }
    
    .highlight-card h4 {
        font-size: 1.1rem;
    }
}

/* Responsive What to Expect Section */
@media (max-width: 768px) {
    .expect-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feed-schedule {
        grid-template-columns: 1fr;
    }
    
    .discount-banner {
        flex-direction: column;
        text-align: center;
    }
}

/* Responsive SeaTREK Section */
@media (max-width: 768px) {
    .seatrek-hero-content h2 {
        font-size: 2.5rem;
    }
    
    .seatrek-tagline {
        font-size: 1.2rem;
    }
    
    .seatrek-highlight {
        padding: 2rem;
    }
    
    .seatrek-highlight h3 {
        font-size: 1.8rem;
    }
    
    .seatrek-main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .seatrek-features {
        grid-template-columns: 1fr;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .seatrek-details {
        padding: 2rem 1rem;
    }
}

/* Tickets Section */
.tickets {
    position: relative;
    color: white;
}

/* Tickets Hero Section */
.tickets-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.tickets-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.tickets-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.7) 0%, rgba(41, 128, 185, 0.7) 100%);
    z-index: 2;
}

.tickets-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 4rem 0;
}

.tickets-hero-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.tickets-hero-content .section-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.tickets-main-content {
    padding: 4rem 0;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.tickets h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.ticket-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.ticket-card.featured {
    border: 2px solid #3498db;
    transform: scale(1.02);
}

.ticket-card:hover {
    transform: translateY(-5px);
}

.ticket-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #e74c3c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.ticket-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.ticket-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.ticket-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
}

.per-person {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.ticket-pricing {
    margin-bottom: 1.5rem;
}

.price-tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ecf0f1;
}

.price-tier:last-child {
    border-bottom: none;
}

.price-tier .age-group {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.price-tier .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3498db;
}

.price-tier:last-child .price {
    color: #27ae60;
    font-weight: 600;
}

.ticket-card ul {
    list-style: none;
    margin: 1.5rem 0;
}

.ticket-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.ticket-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Contact Section */
.contact {
    position: relative;
    color: white;
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.contact-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.8) 0%, rgba(41, 128, 185, 0.8) 100%);
    z-index: 2;
}

.contact-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 4rem 0;
}

.contact-hero-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.contact-hero-content .section-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.contact-main-content {
    padding: 4rem 0;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: grid;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item i {
    font-size: 1.5rem;
    color: #3498db;
    margin-top: 0.25rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.contact-form {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

/* Legal Pages */
.legal-content {
    background: #f8f9fa;
    min-height: 100vh;
}

.legal-text {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
}

.legal-text h1 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.legal-text h2 {
    color: #3498db;
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
}

.legal-text p {
    margin-bottom: 1rem;
    color: #555;
}

.legal-text ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #3498db;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: rgba(52, 152, 219, 0.2);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    background: #34495e;
    color: white;
}

.newsletter-form input::placeholder {
    color: #bdc3c7;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
}

.footer-bottom a {
    color: #3498db;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        justify-content: center;
        padding: 1rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(52, 152, 219, 0.05);
        border-radius: 0;
        margin-top: 0.5rem;
    }

    .dropdown-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-right {
        gap: 0.5rem;
    }

    .nav-cta span {
        display: none;
    }

    .nav-cta {
        padding: 0.75rem;
    }

    .language-toggle span {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        gap: 2rem;
    }

    .webcam-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .exhibits-grid,
    .education-grid,
    .tickets-grid,
    .webcam-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .activities-content,
    .about-content,
    .contact-content,
    .virtual-tour-content,
    .seatrek-content,
    .gift-shop-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

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

    .hero p {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .container {
        padding: 0 15px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.75rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.exhibit-card,
.education-card,
.ticket-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Live Webcam Section */
.live-webcam {
    padding: 80px 0;
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
    color: white;
    position: relative;
}

.live-webcam h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.webcam-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.webcam-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid #ecf0f1;
}

.webcam-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.webcam-placeholder {
    background: linear-gradient(135deg, #3498db, #2980b9);
    height: 200px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
}

.webcam-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.webcam-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #e74c3c;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.webcam-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.webcam-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Virtual Tour Section */
.virtual-tour {
    padding: 80px 0;
    background: white;
}

.virtual-tour h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.virtual-tour-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.tour-preview {
    position: relative;
}

.tour-placeholder {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    height: 400px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.tour-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    z-index: 2;
}

.tour-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    z-index: 2;
}

.tour-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.tour-info p {
    margin-bottom: 2rem;
    color: #7f8c8d;
    line-height: 1.6;
}

.tour-features {
    list-style: none;
    margin-bottom: 2rem;
}

.tour-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.tour-features i {
    color: #27ae60;
    margin-right: 1rem;
    font-size: 1.1rem;
}

/* Photo Gallery Section */
.photo-gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    position: relative;
}

.photo-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.gallery-overlay p {
    opacity: 0.9;
    font-size: 0.9rem;
}

/* SeaTREK Adventure Section */
.seatrek {
    background: #0a1929;
    color: white;
    position: relative;
}

/* SeaTREK Hero Section */
.seatrek-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.seatrek-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.seatrek-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.8) 0%, rgba(52, 152, 219, 0.8) 50%, rgba(41, 128, 185, 0.8) 100%);
    z-index: 2;
}

.seatrek-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 4rem 0;
}

.seatrek-hero-content h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.seatrek-tagline {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.seatrek-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.seatrek-highlight {
    background: rgba(255, 255, 255, 0.15);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.seatrek-highlight i {
    font-size: 4rem;
    color: #f1c40f;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.seatrek-highlight h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.seatrek-highlight p {
    font-size: 1.3rem;
    opacity: 0.95;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* SeaTREK Main Content */
.seatrek-main-content {
    padding: 4rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.seatrek-info h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.seatrek-info p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.seatrek-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 3rem;
    color: #f1c40f;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.feature h4 {
    margin-bottom: 1rem;
    color: white;
    font-size: 1.3rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.feature p {
    margin: 0;
    opacity: 0.9;
    font-size: 1rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.seatrek-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.seatrek-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.seatrek-placeholder {
    background: rgba(255, 255, 255, 0.1);
    height: 400px;
    width: 100%;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.seatrek-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.seatrek-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.7;
}

/* SeaTREK Process Steps */
.seatrek-process {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.seatrek-process h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    background: #f1c40f;
    color: #2c3e50;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h5 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
}

/* SeaTREK Details */
.seatrek-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 4rem;
    border-radius: 20px;
    margin-top: 4rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.detail-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.detail-card i {
    font-size: 2.5rem;
    color: #f1c40f;
    margin-bottom: 1rem;
}

.detail-card h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.detail-card p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
}

/* SeaTREK Itinerary */
.seatrek-itinerary {
    margin-bottom: 3rem;
}

.seatrek-itinerary h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.seatrek-itinerary ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.seatrek-itinerary li {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.seatrek-itinerary li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f1c40f;
    font-weight: bold;
}

.itinerary-note, .reservation-note {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 4px solid #f1c40f;
}

/* SeaTREK Pricing */
.seatrek-pricing h3 {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.pricing-card h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f1c40f;
    margin-bottom: 0.5rem;
}

.pricing-card p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.pricing-includes {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-size: 1.1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

/* SeaTREK CTA */
.seatrek-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Gift Shop Section */
.gift-shop {
    position: relative;
    color: white;
}

/* Gift Shop Hero Section */
.gift-shop-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.gift-shop-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gift-shop-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gift-shop-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.8) 0%, rgba(41, 128, 185, 0.8) 100%);
    z-index: 2;
}

.gift-shop-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 4rem 0;
}

.gift-shop-hero-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.gift-shop-hero-content .section-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.gift-shop-main-content {
    padding: 4rem 0;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.gift-shop h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.gift-shop-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.gift-shop-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.gift-shop-info p {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.gift-categories {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.category {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.category:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.category i {
    font-size: 1.5rem;
    color: #3498db;
    margin-top: 0.25rem;
}

.category h4 {
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.category p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.gift-shop-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Loading animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Education Section */
.education {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.education-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.education-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.education-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.8) 0%, rgba(42, 82, 152, 0.8) 100%);
    z-index: 2;
}

.education-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
}

.education-hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        2px 2px 4px rgba(0, 0, 0, 0.8);
}

.education-hero-content .section-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.education-main-content {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.education-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.education-intro p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.education-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.education-category {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.education-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.category-header i {
    font-size: 2rem;
    color: #3498db;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.category-header h3 {
    font-size: 1.8rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    margin: 0;
}

.article-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.article-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.article-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.article-title {
    font-weight: 500;
    font-size: 1rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.article-source {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.reading-time {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    white-space: nowrap;
}

.education-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.education-note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.education-note i {
    color: #3498db;
    font-size: 1.2rem;
    margin-top: 0.1rem;
}

.education-note p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

.education-cta {
    text-align: center;
}

.education-cta p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.education-cta .btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.education-cta .btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Responsive styles for education section */
@media (max-width: 768px) {
    .education-hero-content h2 {
        font-size: 2.5rem;
    }
    
    .education-hero-content .section-subtitle {
        font-size: 1.1rem;
    }
    
    .education-categories {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .education-category {
        padding: 1.5rem;
    }
    
    .category-header h3 {
        font-size: 1.5rem;
    }
    
    .article-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .reading-time {
        align-self: flex-end;
    }
    
    .education-footer {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .education-hero-content h2 {
        font-size: 2rem;
    }
    
    .education-intro p {
        font-size: 1rem;
    }
    
    .education-category {
        padding: 1rem;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .category-header i {
        font-size: 1.5rem;
    }
}

/* Enhanced Mobile-First Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .expect-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tickets-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .exhibits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .seatrek-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .seatrek-main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .seatrek-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gift-shop-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .history-timeline {
        flex-direction: column;
        gap: 2rem;
    }
    
    .timeline-item {
        width: 100%;
        text-align: center;
    }
    
    .history-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .education-categories {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo span {
        font-size: 1.2rem;
    }
    
    .nav-logo i {
        font-size: 1.5rem;
    }
    
    .nav-logo-image {
        height: 60px;
        margin-right: 14px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        margin: 0;
    }

    .nav-link {
        justify-content: center;
        padding: 1rem;
        border-bottom: 1px solid rgba(52, 152, 219, 0.1);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-right {
        gap: 0.5rem;
    }

    .book-now {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .book-now span {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
    }

    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background: #3498db;
        transition: 0.3s;
        border-radius: 2px;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-stats .stat {
        padding: 1rem;
    }
    
    .hero-stats .stat-number {
        font-size: 1.8rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .what-to-expect-hero-content h2,
    .tickets-hero-content h2,
    .exhibits-hero-content h2,
    .seatrek-hero-content h2,
    .about-hero-content h2,
    .gift-shop-hero-content h2,
    .contact-hero-content h2,
    .education-hero-content h2 {
        font-size: 2rem;
    }
    
    .what-to-expect-hero-content .section-subtitle,
    .tickets-hero-content .section-subtitle,
    .exhibits-hero-content .section-subtitle,
    .seatrek-hero-content .section-subtitle,
    .about-hero-content .section-subtitle,
    .gift-shop-hero-content .section-subtitle,
    .contact-hero-content .section-subtitle,
    .education-hero-content .section-subtitle {
        font-size: 1rem;
    }
    
    .expect-highlight {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .expect-highlight i {
        font-size: 1.5rem;
    }
    
    .feed-schedule {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .ticket-card {
        padding: 1.5rem;
    }
    
    .ticket-header h3 {
        font-size: 1.3rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .exhibit-card {
        padding: 1.5rem;
    }
    
    .exhibit-card h3 {
        font-size: 1.3rem;
    }
    
    .seatrek-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .seatrek-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .seatrek-hero-content h2 {
        font-size: 2.5rem;
    }
    
    .seatrek-tagline {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .seatrek-highlight {
        padding: 1.5rem;
    }
    
    .seatrek-highlight i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .seatrek-highlight h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .seatrek-highlight p {
        font-size: 1rem;
    }
    
    .seatrek-info h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .seatrek-info p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-image {
        order: -1;
    }
    
    .gift-categories {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .category {
        padding: 1rem;
    }
    
    .history-timeline {
        gap: 1.5rem;
    }
    
    .timeline-item {
        padding: 1rem;
    }
    
    .contact-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.75rem;
    }
    
    .education-category {
        padding: 1.5rem;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .category-header i {
        font-size: 1.5rem;
    }
    
    .article-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .reading-time {
        align-self: flex-end;
    }
    
    .education-footer {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    /* Ensure proper mobile scaling */
    html {
        font-size: 14px;
    }
    
    /* Reduce padding and margins for mobile */
    .hero {
        padding: 2rem 0;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .seatrek-hero {
        min-height: 60vh;
    }
    
    .seatrek-main-content {
        padding: 2rem 0;
    }
    
    .nav-logo span {
        font-size: 1rem;
    }
    
    .nav-logo i {
        font-size: 1.2rem;
    }
    
    .nav-logo-image {
        height: 45px;
        margin-right: 10px;
    }
    
    /* Mobile navigation improvements */
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 0.85rem;
    }
    
    .hero-buttons .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .hero-stats .stat {
        padding: 0.75rem;
    }
    
    .hero-stats .stat-number {
        font-size: 1.3rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.75rem;
    }
    
    .what-to-expect-hero-content h2,
    .tickets-hero-content h2,
    .exhibits-hero-content h2,
    .seatrek-hero-content h2,
    .about-hero-content h2,
    .gift-shop-hero-content h2,
    .contact-hero-content h2,
    .education-hero-content h2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
    
    .expect-description {
        padding: 1rem;
    }
    
    .expect-description h3 {
        font-size: 1.3rem;
    }
    
    .expect-description p {
        font-size: 0.9rem;
    }
    
    .ticket-card {
        padding: 1rem;
    }
    
    .ticket-header h3 {
        font-size: 1.2rem;
    }
    
    .price {
        font-size: 1.8rem;
    }
    
    .price-tier .age-group {
        font-size: 0.8rem;
    }
    
    .price-tier .price {
        font-size: 1rem;
    }
    
    .exhibit-card {
        padding: 1rem;
    }
    
    .exhibit-card h3 {
        font-size: 1.2rem;
    }
    
    .exhibit-card p {
        font-size: 0.9rem;
    }
    
    .seatrek-content h3 {
        font-size: 1.3rem;
    }
    
    .seatrek-content p {
        font-size: 0.9rem;
    }
    
    .seatrek-hero-content h2 {
        font-size: 2rem;
    }
    
    .seatrek-tagline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .seatrek-highlight {
        padding: 1rem;
    }
    
    .seatrek-highlight i {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .seatrek-highlight h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .seatrek-highlight p {
        font-size: 0.9rem;
    }
    
    .seatrek-info h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .seatrek-info p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .about-content h3 {
        font-size: 1.3rem;
    }
    
    .about-content p {
        font-size: 0.9rem;
    }
    
    .gift-shop-info h3 {
        font-size: 1.3rem;
    }
    
    .gift-shop-info p {
        font-size: 0.9rem;
    }
    
    .category h4 {
        font-size: 1.1rem;
    }
    
    .category p {
        font-size: 0.8rem;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    .highlight-card h3 {
        font-size: 1.2rem;
    }
    
    .highlight-card p {
        font-size: 0.9rem;
    }
    
    .contact-item h4 {
        font-size: 1.2rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .contact-form .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .education-intro p {
        font-size: 1rem;
    }
    
    .education-category {
        padding: 1rem;
    }
    
    .category-header h3 {
        font-size: 1.5rem;
    }
    
    .article-title {
        font-size: 0.9rem;
    }
    
    .article-source {
        font-size: 0.8rem;
    }
    
    .reading-time {
        font-size: 0.7rem;
    }
    
    .education-note p {
        font-size: 0.8rem;
    }
    
    .education-cta p {
        font-size: 1rem;
    }
    
    .education-cta .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Mobile touch improvements */
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* Mobile spacing improvements */
    .section {
        margin-bottom: 1rem;
    }
    
    .card, .ticket-card, .exhibit-card {
        margin-bottom: 1rem;
    }
    
    /* History section mobile improvements */
    .history {
        padding: 2rem 0;
    }
    
    .history h2 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .history .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .timeline-date {
        padding: 0.75rem 1rem;
        font-size: 1rem;
        min-width: 80px;
    }
    
    .timeline-content {
        padding: 1rem;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .highlight-card {
        padding: 1rem;
    }
    
    .highlight-card i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .highlight-card h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
}
