/* ===== CLEAN UI - RESET & BASE STYLES ===== */
:root {
    /* Clean Color Palette */
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary: #dc2626;
    --accent: #059669;
    --dark: #0f172a;
    --darker: #020617;
    --dark-transparent: rgba(15, 23, 42, 0.95);
    --light: #f8fafc;
    --light-transparent: rgba(248, 250, 252, 0.95);
    --gradient: linear-gradient(135deg, #2563eb 0%, #059669 100%);
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    
    /* Spacing System */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Typography */
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    
    /* Z-Index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: var(--font-main);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--light);
    background-color: var(--dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Focus Management for Accessibility */
*:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

*:focus:not(:focus-visible) {
    outline: none;
}

/* Typography */
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

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

ul, ol {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ===== CLEAN TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: var(--spacing-md);
    color: var(--light);
    letter-spacing: -0.025em;
}

h1 { 
    font-size: var(--font-size-4xl);
    font-weight: 700;
}

h2 { 
    font-size: var(--font-size-3xl);
    position: relative;
    display: inline-block;
    margin-bottom: var(--spacing-xl);
}

h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 0.25rem;
    background: var(--gradient);
    border-radius: var(--radius-sm);
}

h3 { 
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-lg);
}

h4 { 
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-md);
}

h5 { 
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-sm);
}

h6 { 
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    color: rgba(248, 250, 252, 0.8);
}

/* Text Utilities */
.text-sm { font-size: var(--font-size-sm); }
.text-lg { font-size: var(--font-size-lg); }
.text-xl { font-size: var(--font-size-xl); }
.text-2xl { font-size: var(--font-size-2xl); }
.text-3xl { font-size: var(--font-size-3xl); }
.text-4xl { font-size: var(--font-size-4xl); }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ===== CLEAN HEADER & NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--dark-transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: var(--z-fixed);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    padding: var(--spacing-sm) var(--spacing-xl);
    background: rgba(15, 23, 42, 0.98);
    box-shadow: var(--shadow-lg);
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: var(--font-size-xl);
    color: var(--light);
    text-decoration: none;
    transition: var(--transition-base);
}

.logo:hover {
    transform: translateY(-1px);
    color: var(--primary);
}

.logo-main {
    color: var(--primary);
    font-weight: 800;
    margin-right: var(--spacing-xs);
}

.logo-sub {
    font-weight: 500;
    opacity: 0.9;
}

.nav-links {
    display: flex;
    gap: var(--spacing-xl);
    margin: 0;
    padding: 0;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    position: relative;
    color: var(--light);
    font-weight: 500;
    font-size: var(--font-size-base);
    padding: var(--spacing-sm) 0;
    transition: var(--transition-base);
    border-radius: var(--radius-sm);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-base);
    border-radius: var(--radius-sm);
}

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

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

/* ===== CLEAN HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem var(--spacing-xl) 4rem;
    position: relative;
    overflow: hidden;

    /* Logo background */
    background: 
        url('../images/backgrounds/Logo.png') no-repeat center center;
    background-color: #0F172A;  /* Deep blue background */
    -webkit-background-size: 45% auto;  /* Reduced from 60% to zoom out */
    -moz-background-size: 45% auto;
    -o-background-size: 45% auto;
    background-size: 45% auto;
}




.hero-content {
    max-width: 56rem;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.hero h1 {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--spacing-lg);
    color: var(--light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    font-weight: 800;
}

.hero p {
    font-size: var(--font-size-xl);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
    max-width: 44rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ===== MOBILE NAVIGATION ===== */
.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 2000;
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    background: transparent;
    border: none;
    position: relative;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.menu-toggle span {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: var(--light);
    margin: 5px 0;
    transition: var(--transition-base);
    border-radius: var(--radius-sm);
}

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

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: var(--font-size-3xl);
    }
    
    .hero p {
        font-size: var(--font-size-lg);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
    }
    
    .nav-links {
        position: fixed;
        top: 60px;
        right: 1rem;
        width: 220px;
        height: auto;
        background: #1e293b;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0.25rem;
        transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
        z-index: 1500;
        padding: 0.75rem;
        box-shadow: 0 8px 32px rgba(0,0,0,0.6);
        backdrop-filter: none;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.2);
    }
    
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-links li {
        width: 100%;
        text-align: left;
    }
    
    .nav-links a {
        font-size: 0.95rem;
        padding: 0.7rem 1rem;
        border-radius: 8px;
        background: transparent;
        width: 100%;
        display: block;
        text-align: left;
        border: none;
        letter-spacing: 0.02em;
        color: #ffffff;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(37, 99, 235, 0.25);
        color: #60a5fa;
    }

    .nav-links a::after {
        display: none;
    }
    
    .hero {
        padding: 5rem var(--spacing-md) 3rem;
        background-size: 80% auto;
    }
    
    .hero h1 {
        font-size: var(--font-size-2xl);
    }
    
    .hero p {
        font-size: var(--font-size-base);
    }
    
    .navbar {
        padding: var(--spacing-sm) var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .hero {
        background-size: 95% auto;
    }

    .hero h1 {
        font-size: var(--font-size-xl);
    }
    
    .hero p {
        font-size: var(--font-size-sm);
    }
    
    .navbar {
        padding: var(--spacing-sm) var(--spacing-sm);
    }
}

/* ===== CLEAN GALLERY STYLES ===== */
.gallery-section {
    padding: var(--spacing-3xl) 0;
    background: var(--dark);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    padding: 0 var(--spacing-md);
}

.section-header h2 {
    font-size: var(--font-size-3xl);
    color: var(--light);
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 4rem;
    height: 0.25rem;
    background: var(--gradient);
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    border-radius: var(--radius-sm);
}

.section-subtitle {
    color: rgba(248, 250, 252, 0.8);
    font-size: var(--font-size-lg);
    max-width: 44rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== GALLERY FILTERS ===== */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-2xl);
    padding: 0 var(--spacing-md);
}

.filter-btn {
    background: transparent;
}

.category-btn {
    padding: var(--spacing-md) var(--spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-2xl);
    background: rgba(255, 255, 255, 0.05);
    color: var(--light);
    font-size: var(--font-size-base);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    backdrop-filter: blur(8px);
}

.category-btn:hover {
    background: rgba(37, 99, 235, 0.1);
    border-color: var(--primary);
    transform: translateY(-1px);
}

.category-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--light);
    box-shadow: var(--shadow-md);
}

.category-btn i {
    font-size: var(--font-size-lg);
}

.category-btn .count {
    background: rgba(255, 255, 255, 0.2);
    color: var(--light);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-sm);
    margin-left: var(--spacing-sm);
    font-weight: 600;
}

/* Sort Options */
.sort-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.sort-options select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    background: white;
    cursor: pointer;
    font-size: 0.9rem;
    width: 200px;
    appearance: none;
background-image: url("images/background/logo.png");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px 8px;
}

/* Fix for Firefox */
@-moz-document url-prefix() {
    .sort-options select {
        background-image: none;
    }
}

.view-options {
    display: flex;
    gap: 10px;
    align-items: center;
}

.view-options button {
    padding: 8px 12px;
    border: none;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.view-options button:hover {
    background: #ff6b6b;
    color: white;
    transform: scale(1.1);
}

.view-options button.active {
    background: #ff6b6b;
    color: white;
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
    gap: var(--spacing-xl);
    padding: 0 var(--spacing-md);
    margin-top: var(--spacing-2xl);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--light);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-slow);
    cursor: pointer;
    will-change: transform;
    aspect-ratio: 1;
}

.gallery-item:hover {
    transform: translateY(-0.5rem) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    will-change: transform;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.95);
}

/* ===== GALLERY OVERLAY ===== */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-lg);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--light);
    transform: translateY(100%);
    transition: var(--transition-slow);
    will-change: transform;
}

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

.gallery-overlay h4 {
    margin: 0;
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    line-height: 1.2;
}

.gallery-overlay p {
    margin: 0;
    font-size: var(--font-size-base);
    opacity: 0.9;
    line-height: 1.4;
}

/* ===== ITEM ACTIONS ===== */
.item-actions {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    opacity: 0;
    transform: translateY(1.25rem);
    transition: var(--transition-base);
    will-change: opacity, transform;
}

.gallery-item:hover .item-actions {
    opacity: 1;
    transform: translateY(0);
}

.item-actions button {
    padding: var(--spacing-sm);
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition-base);
    font-size: var(--font-size-lg);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.item-actions button:hover {
    background: var(--primary);
    color: var(--light);
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.item-actions button:active {
    transform: scale(0.95);
}

/* ===== LOAD MORE BUTTON ===== */
.load-more-container {
    text-align: center;
    margin: var(--spacing-2xl) 0;
    padding: var(--spacing-xl) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.load-more-btn {
    padding: var(--spacing-md) var(--spacing-2xl);
    border: none;
    border-radius: var(--radius-2xl);
    background: var(--primary);
    color: var(--light);
    font-size: var(--font-size-base);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    box-shadow: var(--shadow-md);
}

.load-more-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.loading-spinner {
    display: none;
}

.load-more-btn.loading .btn-text {
    display: none;
}

.load-more-btn.loading .loading-spinner {
    display: inline-block;
}

/* ===== GALLERY MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
        gap: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }
    
    .gallery-filters {
        gap: var(--spacing-xs);
        padding: 0 var(--spacing-sm);
    }
    
    .category-btn {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: var(--font-size-sm);
    }
    
    .gallery-overlay {
        padding: var(--spacing-md);
    }
    
    .gallery-overlay h4 {
        font-size: var(--font-size-base);
    }
    
    .gallery-overlay p {
        font-size: var(--font-size-sm);
    }
    
    .item-actions button {
        width: 2rem;
        height: 2rem;
        font-size: var(--font-size-base);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .section-header h2 {
        font-size: var(--font-size-2xl);
    }
    
    .section-subtitle {
        font-size: var(--font-size-base);
        padding: 0 var(--spacing-sm);
    }
}

/* Gallery Info Panel */
.gallery-info-panel {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 300px;
}

.info-content {
    max-width: 100%;
}

.info-items {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.info-item {
display: flex;
align-items: center;
gap: 10px;
color: #666;
flex: 1;
}

.info-item i {
color: #ff6b6b;
font-size: 1.2rem;
}

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

/* Category Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    background: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}

.category-btn:hover {
    color: var(--primary-color);
}

.category-btn.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.5s ease;
    background: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(1);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.95);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.gallery-overlay h4 {
    color: white;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.gallery-overlay p {
    color: white;
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    transition: transform 0.3s ease;
}

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

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-lightbox:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .gallery-item {
        aspect-ratio: 1.2;
    }
}

/* Filter Sidebar */
.filter-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    padding: 20px;
    overflow-y: auto;
}

.filter-sidebar.active {
    right: 0;
}

.filter-sidebar .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.filter-sidebar .close-btn:hover {
    color: #ff6b6b;
}

.filter-section {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
}

.filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-section h4 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 107, 107, 0.05);
}

.checkbox-group label:hover {
    background: rgba(255, 107, 107, 0.1);
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 4px;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-group input[type="checkbox"]:checked {
    border-color: #ff6b6b;
    background: #ff6b6b;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='9' viewBox='0 0 12 9'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' d='M1 4.304L3.696 7l6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
}

.date-range {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.date-range input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
}

.tag-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.tag-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 20px;
    background: #f5f5f5;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.tag-btn.active {
    background: #ff6b6b;
    color: white;
}

.tag-btn:hover {
    background: rgba(255, 107, 107, 0.1);
}

.filter-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.filter-actions button {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.apply-filters {
    background: #ff6b6b;
    color: white;
}

.clear-filters {
    background: #ddd;
    color: #333;
}

.filter-actions button:hover {
    opacity: 0.9;
}

/* Filter Toggle Button */
.filter-toggle-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 25px;
    border: none;
    border-radius: 25px;
    background: #ff6b6b;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.filter-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 107, 107, 0.4);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 5px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: var(--primary);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 15px;
    }
    
    .gallery-filters {
        gap: 8px;
        padding: 0 15px;
    }
    
    .filter-btn {
        padding: 6px 15px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
}

/* ===== LAYOUT ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
}
/* ===== VIDEO SLIDER ===== */
.video-gallery-container {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 1.5rem;
    position: relative;
}

.video-slider-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    background: #1a1a1a;
    aspect-ratio: 16/9;
}

.video-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    position: relative;
    width: 100%;
}

.video-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

/* Video Slider Styles */
.video-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    overflow: hidden;
}

.video-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.video-slide {
    min-width: 100%;
    position: relative;
    padding: 20px;
    box-sizing: border-box;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.02);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Navigation Buttons */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 0;
}

.slider-nav.next {
    right: 0;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.slider-dot:hover {
    background: var(--primary-light);
}

/* Video Info */
.video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-thumbnail:hover .video-info {
    opacity: 1;
}

.video-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.video-info p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Play Button */
.play-button {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button i {
    color: white;
    font-size: 24px;
    margin-left: 5px;
}

.video-thumbnail:hover .play-button {
    background: var(--primary);
    transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .video-slider-container {
        padding: 0 20px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .video-info {
        padding: 15px;
    }
    
    .video-info h3 {
        font-size: 1rem;
    }
    
    .video-info p {
        font-size: 0.8rem;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-button i {
        font-size: 20px;
    }
}

.video-thumbnail .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-thumbnail .play-button i {
    color: #fff;
    font-size: 30px;
    margin-left: 5px;
}

.video-thumbnail:hover .play-button {
    background: var(--primary);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-iframe {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    margin: 0 10px;
    outline: none;
}

.slider-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 20px;
    padding-right: 3px;
}

.slider-nav.next {
    right: 20px;
    padding-left: 3px;
}

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
    margin: 2px 0;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
}

.video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    padding: 30px 20px 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.1s;
    pointer-events: none;
}

.video-info h3 {
    margin: 0 0 0.5rem;
    font-size: 1.4rem;
    text-transform: none;
    letter-spacing: 0.5px;
}

.video-info p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

.video-slide.active .video-info {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .video-slider {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .video-slider {
        height: 300px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .video-info h3 {
        font-size: 1.2rem;
    }
    
    .video-info p {
        font-size: 0.85rem;
    }
}

/* ===== CLEAN CONTACT SECTION ===== */
.contact-container {
    max-width: 75rem;
    margin: 0 auto;
    padding: var(--spacing-xl);
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-3xl);
}

.contact-info {
    padding: var(--spacing-xl);
    background: linear-gradient(145deg, var(--darker), var(--dark));
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info h2 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-lg);
    color: var(--light);
    position: relative;
    padding-bottom: var(--spacing-md);
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 4rem;
    height: 0.25rem;
    background: var(--gradient);
    border-radius: var(--radius-sm);
}

.contact-intro {
    color: rgba(248, 250, 252, 0.7);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.7;
    font-size: var(--font-size-lg);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.contact-method {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    color: var(--primary);
    flex-shrink: 0;
    transition: var(--transition-base);
}

.contact-method:hover .contact-icon {
    background: var(--gradient);
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-details h4 {
    color: var(--light);
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-lg);
    font-weight: 600;
}

.contact-details p {
    color: rgba(248, 250, 252, 0.7);
    margin: var(--spacing-xs) 0;
    font-size: var(--font-size-base);
    line-height: 1.6;
}

/* ===== CLEAN CONTACT FORM ===== */
.contact-form-container {
    background: linear-gradient(145deg, var(--darker), var(--dark));
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-container h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-2xl);
    color: var(--light);
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.025em;
    position: relative;
    padding-bottom: var(--spacing-md);
}

.contact-form-container h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 5rem;
    height: 0.25rem;
    background: var(--gradient);
    border-radius: var(--radius-sm);
}

/* ===== FORM LAYOUT ===== */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.form-group {
    position: relative;
    margin-bottom: var(--spacing-xl);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--spacing-md) 0;
    font-size: var(--font-size-base);
    color: var(--light);
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-top: 1.5rem;
    padding-bottom: var(--spacing-sm);
    cursor: pointer;
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: var(--primary);
    background: rgba(37, 99, 235, 0.05);
}

/* Style the dropdown arrow - only for event select */
.form-group:has(select#event)::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    pointer-events: none;
    font-size: 0.8rem;
}

/* Style the dropdown options */
select#event option {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 10px 15px;
    border: none;
}

/* Video Slider Styles */
.video-gallery-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.video-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.video-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    height: 500px; /* Adjust based on your needs */
}

.video-slide {
    min-width: 100%;
    position: relative;
    display: none;
}

.video-slide.active {
    display: block;
}

.video-container {
    width: 100%;
    height: 100%;
    background: #000;
    position: relative;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: rgba(0, 0, 0, 0.5);
}

.play-button {
    text-align: center;
    color: white;
}

.play-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 60px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-nav.prev {
    left: 10px;
}

.slider-nav.next {
    right: 10px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    color: white;
    z-index: 2;
}

.video-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.5rem;
}

.video-info p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.video-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background: var(--darker);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.video-slide {
    min-width: 100%;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    background: #000;
}

.video-info {
    padding: 1.5rem;
    text-align: center;
}

.video-info h3 {
    color: var(--light);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.video-info p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

/* Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

/* Dots Navigation */
.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
    padding: 0;
    margin: 0;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.6);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .video-info {
        padding: 1rem;
    }
    
    .video-info h3 {
        font-size: 1.2rem;
    }
    
    .video-info p {
        font-size: 0.9rem;
    }
}

/* Ensure the dropdown is visible against the background */
select#event:focus {
    outline: none;
    border-bottom-color: var(--primary);
    background-color: rgba(26, 32, 44, 0.8);
}

/* Style for the select when it has a value */
select#event:not([value=""]) {
    color: var(--text-light);
}

/* Reset styles for other form elements */
.form-group input,
.form-group textarea {
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    padding: 12px 0;
    font-size: 1rem;
    color: var(--text-light);
    border-radius: 0;
    padding-top: 1.2rem;
    padding-bottom: 0.5rem;
}

/* Style for select to override default styles */
select#event {
    width: 100%;
    padding: 12px 0;
    font-size: 1rem;
    color: var(--text-light);
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-top: 1.2rem;
    padding-bottom: 0.5rem;
    cursor: pointer;
}

/* ===== FORM LABELS ===== */
.form-group label {
    position: absolute;
    left: 0;
    top: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-size-base);
    transition: var(--transition-base);
    pointer-events: none;
    font-weight: 400;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]) + label {
    top: 0;
    font-size: var(--font-size-sm);
    color: var(--primary);
    background: var(--darker);
    padding: 0 var(--spacing-sm);
    left: 0;
    font-weight: 500;
    letter-spacing: 0.025em;
}

.focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.form-group input:focus ~ .focus-border,
.form-group textarea:focus ~ .focus-border,
.form-group select:focus ~ .focus-border {
    width: 100%;
}

/* ===== SUBMIT BUTTON ===== */
.submit-btn {
    background: var(--gradient);
    color: var(--light);
    border: none;
    padding: var(--spacing-md) var(--spacing-2xl);
    font-size: var(--font-size-base);
    font-weight: 600;
    border-radius: var(--radius-lg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin: var(--spacing-2xl) auto 0;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 20rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    opacity: 0;
    transition: var(--transition-base);
    z-index: -1;
}

.submit-btn:hover::before {
    opacity: 1;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.submit-btn i {
    font-size: var(--font-size-lg);
}

/* Map Container */
.map-container {
    margin-top: 4rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== CONTACT RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        max-width: 44rem;
        margin: 0 auto var(--spacing-3xl);
        padding: var(--spacing-md);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 768px) {
    .contact-container {
        padding: var(--spacing-sm);
    }

    .contact-info,
    .contact-form-container {
        padding: var(--spacing-lg);
    }
    
    .contact-info h2 {
        font-size: var(--font-size-xl);
    }
    
    .contact-form-container h3 {
        font-size: var(--font-size-lg);
    }
    
    .contact-method {
        flex-direction: row;
        gap: var(--spacing-md);
        align-items: center;
    }

    .map-container {
        margin-top: 2rem;
        height: 300px;
    }

    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-info,
    .contact-form-container {
        padding: var(--spacing-md);
    }
    
    .contact-info h2 {
        font-size: var(--font-size-lg);
    }
    
    .contact-form-container h3 {
        font-size: var(--font-size-base);
    }

    .submit-btn {
        max-width: 100%;
    }
}

/* Services Section */
.section-header.text-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}

.section-header .section-divider.mx-auto {
    margin: 1.5rem auto;
}

/* ===== CLEAN FOOTER ===== */
footer {
    background: linear-gradient(135deg, var(--darker), var(--dark));
    color: var(--light);
    padding: var(--spacing-3xl) 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.25rem;
    background: var(--gradient);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: var(--spacing-2xl);
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.footer-section {
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-base);
}

.footer-section:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-lg);
}

.footer-section h3 {
    color: var(--primary);
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-lg);
    position: relative;
    padding-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 3rem;
    height: 0.25rem;
    background: var(--gradient);
    border-radius: var(--radius-sm);
}

.footer-section p {
    margin-bottom: var(--spacing-md);
    color: rgba(248, 250, 252, 0.7);
    line-height: 1.7;
    font-size: var(--font-size-base);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: var(--light);
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: white;
    border-color: transparent;
}

.social-links a:hover::before {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
    font-size: 0.9rem;
    color: #888;
}

.footer-bottom p {
    margin: 0;
    letter-spacing: 1px;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

/* ===== CLEAN SECTION HEADERS ===== */
.section h2 {
    text-align: center;
    font-size: var(--font-size-3xl);
    margin: 0 auto var(--spacing-2xl);
    color: var(--light);
    position: relative;
    display: block;
    width: 100%;
    padding: 0 var(--spacing-md);
    letter-spacing: 0.05em;
    font-weight: 700;
}

/* ===== GALLERY PREVIEW ===== */
.gallery-preview {
    text-align: center;
    padding: 3rem 0;
}

.preview-image {
    margin-bottom: 2rem;
}

.preview-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.preview-image img:hover {
    transform: scale(1.02);
}

.gallery-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: var(--primary);
    color: var(--dark);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.gallery-cta:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.gallery-cta i {
    font-size: 1.2rem;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 0.25rem;
    background: var(--gradient);
    border-radius: var(--radius-sm);
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    text-decoration: none;
    opacity: 0.9;
    transform: translateY(0);
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: white;
    opacity: 1;
}

.whatsapp-float .whatsapp-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.whatsapp-float .whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    border-width: 5px 0 5px 5px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(0, 0, 0, 0.8);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
    right: 75px;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Account for fixed header */
}

/* ===== CLEAN UTILITY CLASSES ===== */
/* Spacing */
.mt-xs { margin-top: var(--spacing-xs); }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }
.mt-2xl { margin-top: var(--spacing-2xl); }
.mt-3xl { margin-top: var(--spacing-3xl); }

.mb-xs { margin-bottom: var(--spacing-xs); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }
.mb-2xl { margin-bottom: var(--spacing-2xl); }
.mb-3xl { margin-bottom: var(--spacing-3xl); }

.p-xs { padding: var(--spacing-xs); }
.p-sm { padding: var(--spacing-sm); }
.p-md { padding: var(--spacing-md); }
.p-lg { padding: var(--spacing-lg); }
.p-xl { padding: var(--spacing-xl); }
.p-2xl { padding: var(--spacing-2xl); }
.p-3xl { padding: var(--spacing-3xl); }

/* Colors */
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-light { color: var(--light); }
.text-dark { color: var(--dark); }

.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-accent { background-color: var(--accent); }
.bg-dark { background-color: var(--dark); }
.bg-light { background-color: var(--light); }

/* Display */
.hidden { display: none; }
.block { display: block; }
.inline { display: inline; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.grid { display: grid; }

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus visible for better accessibility */
.focus-visible:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary: #0066cc;
        --secondary: #cc0000;
        --accent: #006600;
        --dark: #000000;
        --light: #ffffff;
    }
    
    .gallery-item,
    .footer-section,
    .contact-info,
    .contact-form-container {
        border: 2px solid var(--light);
    }
}

/* Print styles */
@media print {
    .navbar,
    .menu-toggle,
    .whatsapp-float,
    .filter-toggle-btn {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero {
        background: none !important;
        color: black !important;
    }
}

/* ===== SERVICES SECTION ===== */
.services-container {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 2rem 2rem 4rem;
    align-items: stretch;
}

.service-sidebar {
    position: sticky;
    top: 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
    width: 100%;
    background: var(--dark-transparent);
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-lg);
    align-self: start;
}

.service-sidebar .tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.85rem 0.5rem;
    border-radius: 8px;
    background: transparent;
    color: rgba(255,255,255,0.75);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.25s ease;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.78rem;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-height: 70px;
}

.service-sidebar .tab-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 100%;
    background: var(--gradient);
    transition: width 0.25s ease;
    z-index: -1;
    border-radius: 8px;
}

.service-sidebar .tab-btn:hover::before,
.service-sidebar .tab-btn.active::before {
    width: 100%;
}

.service-sidebar .tab-btn:hover,
.service-sidebar .tab-btn.active {
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-sm);
    transform: translateX(3px);
}

.service-sidebar .tab-btn i:first-child {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.service-sidebar .tab-btn span {
    line-height: 1.2;
    word-break: break-word;
}

/* Hide chevron on desktop */
.service-sidebar .tab-btn .tab-chevron {
    display: none;
}

/* Hide accordion panels on desktop */
.mobile-accordion-panel {
    display: none;
}

.service-main {
    background: var(--dark-transparent);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.08);
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.service-panel {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.service-panel-content h3 {
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.service-panel-content .service-description {
    color: rgba(255,255,255,0.75);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: background 0.2s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.feature-item i {
    color: var(--primary);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.feature-item p {
    margin: 0;
    color: var(--light);
    font-size: 0.9rem;
    line-height: 1.3;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: var(--gradient);
    color: var(--light);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: var(--transition-base);
    margin-top: 1.5rem;
    box-shadow: var(--shadow-md);
    font-size: 0.95rem;
}

.service-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--light);
}

/* ===== ABOUT US SECTION ===== */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.team-section {
margin-bottom: 4rem;
}

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

.team-member {
    background: var(--dark-transparent);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

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

.member-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start; /* Align image to the top */
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top -30px center; /* Move the image 30px up from the top */
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.member-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--primary);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--accent);
}

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-info h4 {
    color: var(--light);
    margin-bottom: 0.5rem;
}

.member-role {
    display: block;
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.member-bio {
    color: rgba(255, 255, 255, 0.8);
}

.values-section {
    margin-bottom: 4rem;
}

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

.value-card {
    background: var(--dark-transparent);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

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

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: var(--dark);
    font-size: 1.5rem;
}

.value-card h4 {
    color: var(--light);
    margin-bottom: 1rem;
}

.value-card p {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-section {
    margin-bottom: 4rem;
}

.testimonials-slider {
    position: relative;
    max-width: 700px;
    margin: 2rem auto 0;
    min-height: 160px;
}

.testimonial {
    position: absolute;
    top: 0; left: 0; right: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    text-align: center;
    padding: 2rem 2.5rem;
    background: var(--dark-transparent);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    pointer-events: none;
}

.testimonial.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.testimonial p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial .t-name {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.03em;
}

.t-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    padding: 0;
}

.t-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

.stats-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.stat-item {
    background: var(--dark-transparent);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
}

.stat-text {
    display: block;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== CLEAN ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(1.25rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { 
        opacity: 0;
        transform: scale(0.95);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

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

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

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Add subtle animations to elements */
.hero h1 {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

.hero p {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    animation-delay: 0.4s;
}

.hero .btn {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    animation-delay: 0.6s;
}

/* Add hover effect to all interactive elements */
a, button, .gallery-item, .nav-links a {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== SECTION HEADER ANIMATIONS ===== */
.section-header h2 {
    position: relative;
    display: block;
    text-align: center;
    margin: 0 auto var(--spacing-2xl);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 0.25rem;
    background: var(--gradient);
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.section-header:hover h2::after {
    width: 6rem;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .services-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-sidebar {
        position: static;
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
    }
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 5px;
    color: white;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transform: translateX(0);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    max-width: 350px;
}

.notification.success {
    background-color: var(--success);
}

.notification.error {
    background-color: var(--danger);
}

.notification.fade-out {
    transform: translateX(100%);
    opacity: 0;
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 1rem;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    /* Section headers on mobile */
    .section h2,
    .section-header h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }
    
    /* Services mobile layout - accordion style */
    .services-container {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 0;
    }

    .service-sidebar {
        position: static;
        display: flex;
        flex-direction: column;
        gap: 0;
        max-width: 100%;
        overflow: visible;
    }

    .service-main {
        display: none; /* hide the desktop panel area on mobile */
    }

    .service-sidebar .tab-btn {
        flex-shrink: unset;
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
        min-height: unset;
        white-space: normal;
        border-radius: 10px;
        text-align: left;
        justify-content: flex-start;
        flex-direction: row;
        gap: 0.6rem;
        margin-bottom: 0;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .service-sidebar .tab-btn.active {
        border-radius: 10px 10px 0 0;
        margin-bottom: 0;
    }

    /* Inline accordion panel shown after active button */
    .mobile-accordion-panel {
        display: none;
        background: var(--dark-transparent);
        border: 1px solid rgba(255,255,255,0.1);
        border-top: none;
        border-radius: 0 0 10px 10px;
        padding: 1.25rem;
        margin-bottom: 0.4rem;
    }

    .mobile-accordion-panel.open {
        display: block;
    }

    .mobile-accordion-panel h3 {
        color: var(--primary);
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .mobile-accordion-panel .service-description {
        font-size: 0.85rem;
        color: rgba(255,255,255,0.75);
        margin-bottom: 0.75rem;
    }

    .mobile-accordion-panel .service-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-top: 0.5rem;
    }

    .mobile-accordion-panel .feature-item {
        padding: 0.6rem 0.75rem;
        font-size: 0.82rem;
    }

    .mobile-accordion-panel .service-cta {
        margin-top: 1rem;
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }

    /* chevron indicator on tab button */
    .service-sidebar .tab-btn .tab-chevron {
        margin-left: auto;
        font-size: 0.75rem;
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }

    .service-sidebar .tab-btn.active .tab-chevron {
        transform: rotate(180deg);
    }
}

@media (max-width: 576px) {
    :root {
        --font-size-xl: 1.75rem;
        --spacing-md: 1.5rem;
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    /* Section headers on small mobile */
    .section h2,
    .section-header h2 {
        font-size: var(--font-size-xl);
        margin-bottom: var(--spacing-md);
        padding: 0 var(--spacing-xs);
    }
}

/* ===== MOBILE MENU OVERLAY ===== */
body.menu-open {
    overflow: hidden;
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1400;
}

.nav-overlay.active {
    display: block;
}

/* ===== MOBILE SECTION SPACING ===== */
@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }

    .about-container {
        padding: 1.5rem 1rem;
    }

    .team-section,
    .values-section,
    .testimonials-section {
        margin-bottom: 2.5rem;
    }

    .member-image {
        width: 200px !important;
        height: 200px !important;
        margin: 0 auto 1rem;
    }

    .member-info h4 {
        font-size: 1.2rem !important;
    }

    .footer-content {
        padding: 0 1rem;
        gap: 1rem;
    }

    .footer-section {
        padding: 1rem;
    }

    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }

    .section-header {
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .video-gallery-container {
        padding: 0 0.75rem;
        margin-bottom: 2rem;
    }

    .service-main {
        padding: 1.25rem;
    }

    .service-panel {
        padding: 1rem;
    }

    .service-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .stats-section {
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 2rem 0;
    }

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

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

    /* Remove mobile bottom nav - not needed */
    .mobile-bottom-nav {
        display: none !important;
    }

    body {
        padding-bottom: 0;
    }

    .whatsapp-float {
        bottom: 24px;
    }
