/* CSS Variables - Design System */
:root {
    /* Coastal Village Theme - Ocean Blues & Sandy Tones */
    --background: hsl(200, 30%, 98%);
    --foreground: hsl(210, 25%, 15%);
    
    --card: hsl(200, 50%, 97%);
    --card-foreground: hsl(210, 25%, 15%);
    
    --primary: hsl(210, 85%, 45%);
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-glow: hsl(210, 85%, 65%);
    
    --secondary: hsl(45, 85%, 85%);
    --secondary-foreground: hsl(210, 25%, 25%);
    
    --muted: hsl(200, 20%, 90%);
    --muted-foreground: hsl(210, 15%, 45%);
    
    --accent: hsl(25, 85%, 75%);
    --accent-foreground: hsl(210, 25%, 25%);
    
    --border: hsl(200, 20%, 85%);
    --input: hsl(200, 20%, 85%);
    
    /* Coastal Design Elements */
    --ocean-deep: hsl(220, 85%, 35%);
    --ocean-light: hsl(210, 85%, 65%);
    --sand-light: hsl(45, 85%, 90%);
    --sand-warm: hsl(35, 75%, 80%);
    --sunset-orange: hsl(25, 85%, 65%);
    --coral: hsl(15, 85%, 70%);
    
    /* Gradients */
    --gradient-ocean: linear-gradient(135deg, var(--ocean-deep), var(--primary));
    --gradient-sunset: linear-gradient(135deg, var(--sunset-orange), var(--coral));
    --gradient-beach: linear-gradient(180deg, var(--sand-light), var(--sand-warm));
    --gradient-hero: linear-gradient(135deg, var(--primary) 0%, var(--ocean-light) 100%);
    
    /* Shadows */
    --shadow-coastal: 0 10px 30px -10px hsla(210, 85%, 45%, 0.3);
    --shadow-warm: 0 8px 25px -8px hsla(25, 85%, 65%, 0.4);
    
    --radius: 0.75rem;
}

/* Dark Theme */
.dark {
    --background: hsl(220, 40%, 8%);
    --foreground: hsl(200, 20%, 95%);
    --card: hsl(220, 35%, 12%);
    --card-foreground: hsl(200, 20%, 95%);
    --primary: hsl(210, 85%, 65%);
    --primary-foreground: hsl(220, 40%, 8%);
    --primary-glow: hsl(210, 85%, 75%);
    --secondary: hsl(220, 25%, 20%);
    --secondary-foreground: hsl(200, 20%, 90%);
    --muted: hsl(220, 25%, 18%);
    --muted-foreground: hsl(200, 10%, 60%);
    --accent: hsl(25, 85%, 65%);
    --accent-foreground: hsl(220, 40%, 8%);
    --border: hsl(220, 25%, 20%);
    --input: hsl(220, 25%, 20%);
    --ocean-deep: hsl(220, 85%, 25%);
    --ocean-light: hsl(210, 85%, 55%);
    --sand-light: hsl(45, 60%, 75%);
    --sand-warm: hsl(35, 65%, 65%);
    --sunset-orange: hsl(25, 85%, 60%);
    --coral: hsl(15, 85%, 65%);
    --gradient-ocean: linear-gradient(135deg, var(--ocean-deep), var(--primary));
    --gradient-sunset: linear-gradient(135deg, var(--sunset-orange), var(--coral));
    --gradient-hero: linear-gradient(135deg, var(--primary) 0%, var(--ocean-light) 100%);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.gradient-text {
    background: var(--gradient-ocean);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Animations */
@keyframes wave {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

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

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.animate-wave {
    animation: wave 2.5s ease-in-out infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-bounce {
    animation: bounce 2s ease-in-out infinite;
}

.animate-shimmer {
    animation: shimmer 2s ease-in-out infinite;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: hsla(200, 30%, 98%, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-coastal);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.5rem;
    padding: 0 0.5rem;
}

@media (min-width: 768px) {
    .nav-content {
        padding: 0 1rem;
    }
}

@media (min-width: 1024px) {
    .nav-content {
        padding: 0 1.5rem;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    flex-shrink: 0;
    margin-right: 0.25rem;
}

@media (min-width: 768px) {
    .nav-logo {
        gap: 0.5rem;
        margin-right: 0.5rem;
    }
}

@media (min-width: 1024px) {
    .nav-logo {
        margin-right: 1rem;
    }
}

@media (min-width: 1280px) {
    .nav-logo {
        margin-right: 1.5rem;
    }
}

.nav-logo-icon {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--primary);
    animation: wave 3s ease-in-out infinite;
}

@media (min-width: 768px) {
    .nav-logo-icon {
        width: 2rem;
        height: 2rem;
    }
}

@media (min-width: 1024px) {
    .nav-logo-icon {
        width: 2.25rem;
        height: 2.25rem;
    }
}

.nav-logo-text {
    font-size: 0.9rem;
    font-weight: 700;
    background: var(--gradient-ocean);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .nav-logo-text {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .nav-logo-text {
        font-size: 1.125rem;
    }
}

@media (min-width: 1280px) {
    .nav-logo-text {
        font-size: 1.25rem;
    }
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    justify-content: flex-end;
    margin-left: 0.25rem;
    overflow: visible;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
        gap: 0.375rem;
    }
}

@media (min-width: 900px) {
    .nav-desktop {
        gap: 0.5rem;
    }
}

@media (min-width: 1024px) {
    .nav-desktop {
        gap: 0.75rem;
        margin-left: 0.5rem;
        justify-content: center;
    }
}

@media (min-width: 1200px) {
    .nav-desktop {
        gap: 1rem;
    }
}

@media (min-width: 1440px) {
    .nav-desktop {
        gap: 1.5rem;
    }
}

.nav-link {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.7rem;
    padding: 0.5rem 0.125rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
    background-color: hsla(210, 85%, 45%, 0.1);
    transform: translateY(-1px);
}

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

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

@media (min-width: 768px) {
    .nav-link {
        font-size: 0.75rem;
        padding: 0.5rem 0.25rem;
    }
}

@media (min-width: 900px) {
    .nav-link {
        font-size: 0.8rem;
        padding: 0.5rem 0.3rem;
    }
}

@media (min-width: 1024px) {
    .nav-link {
        font-size: 0.85rem;
        padding: 0.5rem 0.375rem;
    }
}

@media (min-width: 1200px) {
    .nav-link {
        font-size: 0.875rem;
        padding: 0.5rem 0.5rem;
    }
}

@media (min-width: 1440px) {
    .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }
}

.nav-mobile-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    margin-left: auto;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .nav-mobile-btn {
        display: none;
    }
}

.nav-mobile-btn:hover {
    background-color: var(--muted);
    transform: scale(1.05);
}

.nav-mobile-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--foreground);
}

.nav-mobile {
    padding: 1rem 0;
    border-top: 1px solid var(--border);
}

.nav-mobile-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nav-mobile-link {
    color: var(--foreground);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

.nav-mobile-link:hover {
    color: var(--primary);
    background-color: var(--muted);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        url('../assets/gallery-boating.jpg'),
        url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&h=1080&fit=crop&crop=center');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: hero-bg-slideshow 24s ease-in-out infinite;
}

@keyframes hero-bg-slideshow {
    0%, 20% {
        background-image:
            url('../assets/gallery-boating.jpg'),
            url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&h=1080&fit=crop&crop=center');
        filter: brightness(0.8) contrast(1.1);
    }
    20%, 40% {
        background-image:
            url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&h=1080&fit=crop&crop=center'),
            url('../assets/gallery-boating.jpg');
        filter: brightness(0.7) contrast(1.2) saturate(1.1);
    }
    40%, 60% {
        background-image:
            url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=1920&h=1080&fit=crop&crop=center'),
            url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&h=1080&fit=crop&crop=center');
        filter: brightness(0.8) contrast(1.1) saturate(1.2);
    }
    60%, 80% {
        background-image:
            url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=1920&h=1080&fit=crop&crop=center'),
            url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&h=1080&fit=crop&crop=center');
        filter: brightness(0.9) contrast(1.0) saturate(1.1);
    }
    80%, 100% {
        background-image:
            url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?w=1920&h=1080&fit=crop&crop=center'),
            url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&h=1080&fit=crop&crop=center');
        filter: brightness(0.8) contrast(1.1) saturate(1.0);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, hsla(210, 85%, 45%, 0.8), hsla(210, 85%, 45%, 0.6), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    text-align: center;
    color: white;
    padding: 0 1rem;
}

.hero-inner {
    max-width: 64rem;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: hsla(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-badge-icon {
    width: 1rem;
    height: 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-title-line {
    display: block;
}

.hero-title-main {
    display: block;
    background: linear-gradient(to right, var(--sand-light), var(--sunset-orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: hsla(255, 255, 255, 0.9);
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-scroll {
    animation: bounce 2s ease-in-out infinite;
}

.hero-scroll-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin: 0 auto;
    color: hsla(255, 255, 255, 0.8);
}

.hero-floating {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    display: none;
}

@media (min-width: 1024px) {
    .hero-floating {
        display: block;
    }
}

.hero-floating-card {
    background: hsla(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    padding: 1rem;
    color: white;
    font-size: 0.875rem;
    animation: float 3s ease-in-out infinite;
}

.hero-floating-title {
    font-weight: 600;
}

.hero-floating-subtitle {
    color: hsla(255, 255, 255, 0.8);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-primary {
    background-color: white;
    color: var(--primary);
    box-shadow: var(--shadow-warm);
}

.btn-primary:hover {
    background-color: var(--sand-light);
    color: var(--primary);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary);
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--gradient-beach);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: hsla(210, 85%, 45%, 0.1);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
}

.section-badge-icon {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
}

.section-badge span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-card {
    background: hsla(200, 50%, 97%, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid hsla(200, 20%, 85%, 0.5);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    gap: 1rem;
}

.feature-card:hover {
    box-shadow: var(--shadow-coastal);
    transform: translateY(-2px);
}

.feature-icon-wrapper {
    flex-shrink: 0;
    padding: 0.75rem;
    background: var(--muted);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: hsla(210, 85%, 45%, 0.1);
}

.feature-icon {
    width: 2rem;
    height: 2rem;
}

.feature-icon.primary {
    color: var(--primary);
}

.feature-icon.sunset {
    color: var(--sunset-orange);
}

.feature-icon.ocean {
    color: var(--ocean-light);
}

.feature-icon.coral {
    color: var(--coral);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.feature-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Village Info Card */
.village-info-card {
    background: var(--gradient-ocean);
    color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-coastal);
}

.village-info-content {
    padding: 2rem;
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .village-info-content {
        grid-template-columns: repeat(2, 1fr);
        padding: 3rem;
    }
}

.village-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.village-info-description {
    color: hsla(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.village-info-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: hsla(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.village-info-meta-icon {
    width: 1rem;
    height: 1rem;
}

.village-info-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.village-detail-item {
    background: hsla(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    padding: 1rem;
}

.village-detail-label {
    font-size: 0.875rem;
    color: hsla(255, 255, 255, 0.8);
}

.village-detail-value {
    font-weight: 600;
}

/* Boating Section */
.boating {
    padding: 5rem 0;
    background: var(--background);
}

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

@media (min-width: 768px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .activities-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.activity-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.activity-card:hover {
    box-shadow: var(--shadow-coastal);
    transform: translateY(-4px);
}

.activity-icon-wrapper {
    width: 4rem;
    height: 4rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.activity-card:hover .activity-icon-wrapper {
    background: var(--primary-glow);
    transform: scale(1.1);
}

.activity-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.activity-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.activity-description {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.activity-time {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.boating-info {
    background: var(--gradient-sunset);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-warm);
}

.boating-info-content {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .boating-info-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

.boating-info-text {
    padding: 2rem;
    color: white;
}

@media (min-width: 768px) {
    .boating-info-text {
        padding: 3rem;
    }
}

.boating-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.boating-info-description {
    color: hsla(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.boating-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.boating-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: hsla(255, 255, 255, 0.9);
}

.boating-feature-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.boating-info-image {
    height: 100%;
    min-height: 20rem;
}

.boating-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Updates Section */
.updates {
    padding: 5rem 0;
    background: var(--muted);
}

.updates-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .updates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.update-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.update-card:hover {
    box-shadow: var(--shadow-coastal);
    transform: translateY(-2px);
}

.update-card.featured {
    background: var(--gradient-ocean);
    color: white;
    border: none;
}

.update-card.featured .update-title,
.update-card.featured .update-description,
.update-card.featured .update-meta {
    color: white;
}

.update-card.featured .update-description {
    color: hsla(255, 255, 255, 0.9);
}

.update-card.featured .update-meta {
    color: hsla(255, 255, 255, 0.8);
}

.update-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--sunset-orange);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.update-date {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.update-card.featured .update-date {
    color: hsla(255, 255, 255, 0.8);
}

.update-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.update-description {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.update-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.update-meta-icon {
    width: 1rem;
    height: 1rem;
}

/* Government Section */
.government {
    padding: 5rem 0;
    background: hsla(200, 20%, 90%, 0.3);
}

.officials-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .officials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.official-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.official-card:hover {
    box-shadow: var(--shadow-coastal);
    transform: translateY(-2px);
}

.official-avatar {
    width: 4rem;
    height: 4rem;
    background: hsla(210, 85%, 45%, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.official-icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.official-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.official-position {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.official-jurisdiction {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.official-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.official-contact-icon {
    width: 1rem;
    height: 1rem;
}

.schemes-section {
    margin-top: 4rem;
}

.schemes-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--foreground);
}

.schemes-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .schemes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .schemes-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.scheme-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.scheme-card:hover {
    box-shadow: var(--shadow-coastal);
    transform: translateY(-2px);
}

.scheme-icon-wrapper {
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.scheme-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.scheme-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.scheme-description {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.5;
}

.scheme-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 1rem;
}

.scheme-status.active {
    background: var(--primary);
    color: white;
}

.scheme-status.completed {
    background: var(--primary);
    color: white;
}

/* Announcements Section */
.announcements-section {
    margin-bottom: 4rem;
}

.announcements-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--foreground);
}

.announcements-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .announcements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .announcements-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.announcement-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.announcement-card:hover {
    box-shadow: var(--shadow-coastal);
    transform: translateY(-2px);
}

.announcement-card.featured {
    background: var(--gradient-ocean);
    color: white;
    border: none;
}

.announcement-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--sunset-orange);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.announcement-date {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.announcement-card.featured .announcement-date {
    color: hsla(255, 255, 255, 0.8);
}

.announcement-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.announcement-card.featured .announcement-title {
    color: white;
}

.announcement-description {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.announcement-card.featured .announcement-description {
    color: hsla(255, 255, 255, 0.9);
}

.announcement-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.announcement-card.featured .announcement-status {
    color: hsla(255, 255, 255, 0.8);
}

.announcement-status-icon {
    width: 1rem;
    height: 1rem;
}

/* Administration Section */
.administration-section {
    margin-top: 4rem;
}

.administration-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--foreground);
}

.administration-content {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .administration-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

.administration-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.administration-description {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.administration-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.administration-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--foreground);
}

.administration-feature-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--muted);
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: var(--primary);
    color: white;
    transform: translateX(0.5rem);
}

.service-item-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.service-item:hover .service-item-icon {
    color: white;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--background);
}

.services-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-coastal);
    transform: translateY(-4px);
}

.service-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--gradient-ocean);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.service-description {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-hours {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Services Tabs */
.services-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
}

.service-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    color: var(--muted-foreground);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.service-tab:hover {
    background: var(--muted);
    color: var(--foreground);
}

.service-tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-coastal);
}

.service-tab-icon {
    width: 1rem;
    height: 1rem;
}

.service-content {
    display: none;
}

.service-content.active {
    display: block;
}

/* Transport Section */
.transport-section {
    max-width: 64rem;
    margin: 0 auto;
}

.transport-header {
    text-align: center;
    margin-bottom: 3rem;
}

.transport-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.transport-description {
    color: var(--muted-foreground);
    font-size: 1.125rem;
}

.transport-options {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.transport-option {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.transport-option:hover {
    box-shadow: var(--shadow-coastal);
    transform: translateY(-2px);
}

.transport-icon-wrapper {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    background: var(--gradient-ocean);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transport-icon {
    width: 2rem;
    height: 2rem;
    color: white;
}

.transport-details {
    flex: 1;
}

.transport-method {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.transport-info {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.transport-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 500;
}

.transport-time-icon {
    width: 1rem;
    height: 1rem;
}

.transport-tips {
    background: var(--gradient-sunset);
    color: white;
    border-radius: var(--radius);
    padding: 2rem;
}

.transport-tips-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.transport-tips-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .transport-tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.transport-tip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: hsla(255, 255, 255, 0.9);
}

.transport-tip-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

/* Development Section */
.development {
    padding: 5rem 0;
    background: var(--gradient-beach);
}

/* Featured Project */
.featured-project {
    margin-bottom: 4rem;
    background: var(--gradient-ocean);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-coastal);
}

.featured-project-content {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .featured-project-content {
        grid-template-columns: 2fr 1fr;
    }
}

.featured-project-info {
    padding: 3rem;
    color: white;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: hsla(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.featured-badge-icon {
    width: 1rem;
    height: 1rem;
}

.featured-project-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .featured-project-title {
        font-size: 2.5rem;
    }
}

.featured-project-description {
    font-size: 1.125rem;
    color: hsla(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.featured-project-stats {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .featured-project-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

.featured-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: hsla(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.featured-stat-icon {
    width: 3rem;
    height: 3rem;
    background: hsla(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.featured-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.featured-stat-label {
    font-size: 0.875rem;
    color: hsla(255, 255, 255, 0.8);
}

.featured-project-progress {
    background: hsla(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.progress-label {
    font-weight: 600;
}

.progress-percentage {
    font-size: 1.25rem;
    font-weight: 700;
}

.progress-bar-container {
    margin-bottom: 0.75rem;
}

.progress-bar-bg {
    width: 100%;
    height: 0.75rem;
    background: hsla(255, 255, 255, 0.2);
    border-radius: 9999px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(to right, var(--sand-light), var(--sunset-orange));
    border-radius: 9999px;
    transition: width 0.8s ease;
    animation: progress-glow 2s ease-in-out infinite alternate;
}

@keyframes progress-glow {
    0% { box-shadow: 0 0 5px hsla(255, 255, 255, 0.5); }
    100% { box-shadow: 0 0 20px hsla(255, 255, 255, 0.8); }
}

.progress-status {
    font-size: 0.875rem;
    color: hsla(255, 255, 255, 0.8);
    font-weight: 500;
}

.featured-project-visual {
    padding: 2rem;
}

.project-image {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-warm);
}

.featured-image {
    width: 100%;
    height: 16rem;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1rem;
}

.project-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 500;
}

.project-status-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Development Cards Grid */
.development-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .development-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .development-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.development-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.development-card:hover {
    box-shadow: var(--shadow-coastal);
    transform: translateY(-4px);
}

.development-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--border);
}

.development-card.completed::before {
    background: var(--primary);
}

.development-card.in-progress::before {
    background: var(--sunset-orange);
}

.development-card.planning::before {
    background: var(--muted-foreground);
}

.development-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.development-icon {
    width: 3rem;
    height: 3rem;
    background: var(--muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.development-card.completed .development-icon {
    background: var(--primary);
}

.development-card.in-progress .development-icon {
    background: var(--sunset-orange);
}

.development-card.planning .development-icon {
    background: var(--muted-foreground);
}

.development-icon-svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.development-status {
    text-align: right;
}

.status-badge {
    display: block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.status-badge.completed {
    background: var(--primary);
    color: white;
}

.status-badge.in-progress {
    background: var(--sunset-orange);
    color: white;
}

.status-badge.planning {
    background: var(--muted-foreground);
    color: white;
}

.development-date {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.development-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.development-card-description {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.development-metrics {
    display: flex;
    gap: 1rem;
}

.metric {
    text-align: center;
    flex: 1;
}

.metric-number {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
}

.metric-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.development-progress-mini {
    margin-top: 1rem;
}

.progress-mini-bar {
    width: 100%;
    height: 0.5rem;
    background: var(--muted);
    border-radius: 9999px;
    overflow: hidden;
}

.progress-mini-fill {
    height: 100%;
    background: var(--sunset-orange);
    border-radius: 9999px;
    transition: width 0.5s ease;
}

/* Impact Dashboard */
.impact-dashboard {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: var(--shadow-coastal);
}

.impact-dashboard-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--foreground);
}

.impact-dashboard-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .impact-dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .impact-dashboard-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.impact-metric-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gradient-ocean);
    border-radius: 0.5rem;
    color: white;
    transition: all 0.3s ease;
}

.impact-metric-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-warm);
}

.impact-metric-icon {
    width: 3rem;
    height: 3rem;
    background: hsla(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.impact-metric-svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.impact-metric-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.impact-metric-label {
    font-size: 0.875rem;
    color: hsla(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.impact-metric-change {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: hsla(255, 255, 255, 0.8);
}

.change-icon {
    width: 0.875rem;
    height: 0.875rem;
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: hsla(200, 20%, 90%, 0.3);
}

.gallery-stats {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: hsla(210, 85%, 45%, 0.1);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    background: var(--background);
    color: var(--foreground);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: hsla(210, 85%, 45%, 0.1);
    color: var(--primary);
    transform: scale(1.05);
}

.filter-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-coastal);
}

.filter-icon {
    width: 1rem;
    height: 1rem;
}

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

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    cursor: pointer;
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-coastal);
}

.gallery-image-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-zoom {
    background: hsla(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    padding: 0.75rem;
    margin-top: 2rem;
}

.gallery-zoom-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.gallery-info {
    color: white;
    text-align: center;
    transform: translateY(1rem);
    transition: transform 0.3s ease;
}

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

.gallery-category {
    display: inline-block;
    background: hsla(210, 85%, 45%, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: capitalize;
}

.gallery-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.gallery-description {
    font-size: 0.875rem;
    color: hsla(255, 255, 255, 0.9);
}

.gallery-show-more {
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-statistics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .gallery-statistics {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-statistics {
        grid-template-columns: repeat(7, 1fr);
    }
}

.stat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    box-shadow: var(--shadow-coastal);
    transform: scale(1.05);
}

.stat-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-bottom: 0.5rem;
}

.stat-icon.maritime { color: var(--ocean-deep); }
.stat-icon.temples { color: var(--coral); }
.stat-icon.education { color: var(--primary); }
.stat-icon.agriculture { color: var(--sunset-orange); }
.stat-icon.aquaculture { color: var(--ocean-light); }
.stat-icon.nature { color: var(--muted-foreground); }
.stat-icon.heritage { color: var(--muted-foreground); }

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.gallery-note {
    background: var(--gradient-ocean);
    color: white;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-coastal);
}

.gallery-note-content {
    padding: 2rem;
}

.gallery-note-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    color: hsla(255, 255, 255, 0.8);
    animation: float 3s ease-in-out infinite;
}

.gallery-note-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.gallery-note-description {
    color: hsla(255, 255, 255, 0.9);
    max-width: 32rem;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--gradient-beach);
}

.contact-content {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-card {
    background: hsla(200, 50%, 97%, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid hsla(200, 20%, 85%, 0.5);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    transition: all 0.5s ease;
}

.contact-card:hover {
    box-shadow: var(--shadow-coastal);
    transform: scale(1.05);
    background: hsla(200, 50%, 97%, 0.9);
}

.contact-icon-wrapper {
    flex-shrink: 0;
    padding: 0.75rem;
    background: hsla(210, 85%, 45%, 0.1);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon-wrapper {
    background: hsla(210, 85%, 45%, 0.2);
    transform: scale(1.1);
}

.contact-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    transition: color 0.3s ease;
}

.contact-card:hover .contact-icon {
    color: var(--primary-glow);
}

.contact-details {
    flex: 1;
}

.contact-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--foreground);
    transition: color 0.3s ease;
}

.contact-card:hover .contact-title {
    color: var(--primary);
}

.contact-content-text {
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.contact-card:hover .contact-content-text {
    color: hsla(210, 25%, 15%, 0.9);
}

.contact-subtitle {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    transition: color 0.3s ease;
}

.contact-card:hover .contact-subtitle {
    color: hsla(210, 15%, 45%, 0.8);
}

/* Map Section */
.map-section {
    background: hsla(200, 50%, 97%, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid hsla(200, 20%, 85%, 0.5);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-coastal);
    transition: all 0.5s ease;
}

.map-section:hover {
    box-shadow: var(--shadow-warm);
}

.map-header {
    background: var(--gradient-sunset);
    color: white;
    padding: 1.5rem;
}

.map-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.map-title-icon {
    width: 1.25rem;
    height: 1.25rem;
    animation: wave 2.5s ease-in-out infinite;
}

.map-subtitle {
    font-size: 0.875rem;
    color: hsla(255, 255, 255, 0.8);
}

.map-container {
    height: 16rem;
    background: var(--muted);
}

.map-footer {
    background: var(--gradient-ocean);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.map-location {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.map-address {
    font-size: 0.875rem;
    color: hsla(255, 255, 255, 0.8);
}

.map-btn {
    background: hsla(255, 255, 255, 0.2);
    color: white;
    border: 1px solid hsla(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.map-btn:hover {
    background: hsla(255, 255, 255, 0.3);
    border-color: hsla(255, 255, 255, 0.5);
    transform: scale(1.05);
}

/* Contact Form */
.contact-form-section {
    background: hsla(200, 50%, 97%, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid hsla(200, 20%, 85%, 0.5);
    border-radius: var(--radius);
    box-shadow: var(--shadow-coastal);
    transition: all 0.5s ease;
}

.contact-form-section:hover {
    box-shadow: var(--shadow-warm);
}

.contact-form-header {
    background: var(--gradient-ocean);
    color: white;
    padding: 2rem;
    border-radius: var(--radius) var(--radius) 0 0;
}

.contact-form-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form-icon {
    width: 1.25rem;
    height: 1.25rem;
    animation: float 3s ease-in-out infinite;
}

.contact-form-subtitle {
    color: hsla(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.contact-form {
    padding: 2rem;
}

.form-row {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 500;
    color: var(--foreground);
}

.form-input,
.form-textarea {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    background: var(--background);
    color: var(--foreground);
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsla(210, 85%, 45%, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 7.5rem;
}

.form-submit {
    width: 100%;
    background: var(--gradient-ocean);
    color: white;
    padding: 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: var(--shadow-warm);
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: var(--gradient-sunset);
    box-shadow: var(--shadow-coastal);
    transform: scale(1.05);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.loading-spinner {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid hsla(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Footer */
.footer {
    background: linear-gradient(to right, var(--ocean-deep), var(--primary));
    color: white;
}

.footer-content {
    padding: 4rem 0 3rem;
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 2rem;
    height: 2rem;
    color: var(--sand-light);
    animation: wave 2.5s ease-in-out infinite;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-description {
    color: hsla(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-heritage {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--sand-light);
}

.footer-heritage-icon {
    width: 1rem;
    height: 1rem;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.footer-contact {
    display: flex;
    gap: 0.75rem;
}

.footer-contact-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--sand-light);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-contact-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsla(255, 255, 255, 0.9);
}

.footer-contact-text {
    font-size: 0.875rem;
    color: hsla(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: hsla(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--sand-light);
}

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

.footer-highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: hsla(255, 255, 255, 0.8);
}

.footer-highlight-icon {
    width: 1rem;
    height: 1rem;
    color: var(--sand-light);
}

.footer-bottom {
    border-top: 1px solid hsla(255, 255, 255, 0.2);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: hsla(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: hsla(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-wave {
    height: 0.25rem;
    background: linear-gradient(to right, var(--sand-light), var(--sunset-orange), var(--coral));
    background-size: 200% 100%;
    animation: shimmer 2s ease-in-out infinite;
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    max-width: 64rem;
    max-height: 100%;
}

.modal-close {
    position: absolute;
    top: -3rem;
    right: 0;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s ease;
}

.modal-close:hover {
    background: hsla(255, 255, 255, 0.2);
}

.modal-close-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Toast */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 200;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-coastal);
    transition: all 0.3s ease;
    transform: translateX(100%);
}

.toast:not(.hidden) {
    transform: translateX(0);
}

.toast.toast-error {
    background: var(--destructive);
    color: white;
    border-color: var(--destructive);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toast-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.toast.toast-error .toast-icon {
    color: white;
}

.toast-message {
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

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

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

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

/* Print Styles */
@media print {
    .nav,
    .hero-scroll,
    .btn,
    .modal,
    .toast {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .section {
        padding: 1rem 0;
    }
}
