/*
Theme Name: NeonGlass RTL Training Theme
Theme URI: https://example.com/neonglass-rtl
Author: MiniMax Agent
Author URI: https://example.com
Description: A modern, animated WordPress theme with glassmorphism effects, RTL Arabic support, dark mode toggle, and 3D card flip animations. Perfect for training programs and educational content.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: neonglass-rtl
Tags: rtl, arabic, training, education, glassmorphism, animated, dark-mode, responsive, custom-colors, custom-header, custom-background, translation-ready
*/

/* ============================================
   ACCESSIBILITY - SKIP LINK
   ============================================ */

.skip-link {
    position: absolute;
    top: -9999px;
    left: 50%;
    transform: translateX(-50%);
    background: #667eea;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    z-index: 999999;
    text-decoration: none;
    font-weight: bold;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 10px;
    outline: 3px solid #fff;
    outline-offset: 2px;
}

body.dark-mode .skip-link {
    background: #a855f7;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* =============================================
   BASE RESPONSIVE SETUP
   ============================================ */

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Tajawal', sans-serif;
    background: linear-gradient(-45deg, #667eea, #764ba2, #f093fb, #f5576c);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    min-height: 100vh;
    color: #222;
    transition: all 0.6s ease-in-out;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ============================================
   DARK MODE STYLES
   ============================================ */

body.dark-mode {
    color: #fff;
    background: linear-gradient(-45deg, #1a0023, #2d003e, #31004f, #4d007d);
}

body.dark-mode .glassmorphism {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .neo-button {
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    box-shadow:
        20px 20px 60px #0d0d0d,
        -20px -20px 60px #2a2a2a;
    color: #fff;
}

body.dark-mode .neo-button:hover {
    box-shadow:
        25px 25px 80px #0d0d0d,
        -25px -25px 80px #2a2a2a;
}

body.dark-mode .list-item {
    background: rgba(0, 0, 0, 0.2);
    border-left-color: #a855f7;
}

body.dark-mode .list-item:hover {
    background: rgba(0, 0, 0, 0.3);
}

body.dark-mode nav.glassmorphism {
    background: rgba(0, 0, 0, 0.3);
}

body.dark-mode footer.glassmorphism {
    background: rgba(0, 0, 0, 0.3);
}

/* ============================================
   ANIMATED GRADIENT BACKGROUND
   ============================================ */

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* ============================================
   GLASSMORPHISM EFFECT
   ============================================ */

.glassmorphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* Fallback for browsers that don't support backdrop-filter */
@supports not (backdrop-filter: blur(20px)) {
    .glassmorphism {
        background: rgba(255, 255, 255, 0.9);
    }
    body.dark-mode .glassmorphism {
        background: rgba(0, 0, 0, 0.8);
    }
}

/* Three.js Fallback Styles */
.threejs-fallback {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: -1;
    text-align: center;
    padding: 2rem;
}

.threejs-fallback p {
    font-size: 1.2rem;
    color: inherit;
    max-width: 600px;
}

/* Menu Fallback Styles */
.menu-fallback-message {
    padding: 1rem 2rem;
    text-align: center;
    border-radius: 12px;
    margin: 0 auto;
}

.menu-fallback-message p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ============================================
   NEO-BUTTON STYLES
   ============================================ */

.neo-button {
    background: linear-gradient(145deg, #ffffff, #e2e8f0);
    box-shadow:
        20px 20px 60px #bebebe,
        -20px -20px 60px #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
    font-family: 'Tajawal', sans-serif;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
}

.neo-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        25px 25px 80px #bebebe,
        -25px -25px 80px #ffffff;
}

.neo-button:active {
    transform: translateY(0) scale(0.98);
    box-shadow:
        5px 5px 20px #bebebe,
        -5px -5px 20px #ffffff;
}

.neo-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.5s ease;
}

.neo-button:hover::before {
    left: 100%;
}

/* ============================================
   CARD FLIP STYLES
   ============================================ */

/* ============================================
   RESPONSIVE CARD FLIP STYLES
   ============================================ */

.card-container {
    perspective: 1000px;
    position: relative;
    height: clamp(350px, 60vh, 500px);
    width: 100%;
    max-width: min(600px, 95vw);
    margin: 0 auto;
}

.training-card {
    width: 100%;
    height: clamp(350px, 60vh, 500px);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
    display: none;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s ease;
    transform-style: preserve-3d;
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: clamp(1rem, 3vw, 2rem);
    padding: clamp(1rem, 3vw, 2rem);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        inset 0px 1px 0px rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.card-front {
    background: rgba(255, 255, 255, 0.1);
}

.card-back {
    transform: rotateY(180deg);
    background: var(--card-bg-dark, #1c002e);
    color: white;
}

/* ============================================
   ICON STYLES
   ============================================ */

/* ============================================
   RESPONSIVE ICONS
   ============================================ */

.feature-icon {
    width: clamp(40px, 8vw, 60px);
    height: clamp(40px, 8vw, 60px);
    color: #a855f7;
    animation: wiggle 2s ease-in-out infinite;
    margin-bottom: 1rem;
}

.hero-icon {
    width: clamp(60px, 12vw, 120px);
    height: clamp(60px, 12vw, 120px);
    color: #6366f1;
    filter: drop-shadow(0 10px 20px rgba(99, 102, 241, 0.3));
    margin-bottom: 1.5rem;
}

body.dark-mode .hero-icon {
    color: #a855f7;
    filter: drop-shadow(0 10px 20px rgba(168, 85, 247, 0.4));
}

@keyframes wiggle {
    0%, 7% {
        transform: rotateZ(0);
    }
    15% {
        transform: rotateZ(-15deg);
    }
    20% {
        transform: rotateZ(10deg);
    }
    25% {
        transform: rotateZ(-10deg);
    }
    30% {
        transform: rotateZ(6deg);
    }
    35% {
        transform: rotateZ(-4deg);
    }
    40%, 100% {
        transform: rotateZ(0);
    }
}

/* ============================================
   LIST ITEM STYLES
   ============================================ */

/* ============================================
   RESPONSIVE LIST ITEMS
   ============================================ */

.list-item {
    padding: clamp(0.5rem, 2vw, 1rem);
    margin: 0.5rem 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: clamp(0.5rem, 2vw, 1rem);
    border-left: 4px solid #6366f1;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: right;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.list-item svg {
    margin-left: 0.5rem;
    flex-shrink: 0;
    width: clamp(16px, 4vw, 20px);
    height: clamp(16px, 4vw, 20px);
}

/* ============================================
   TITLE GRADIENT STYLES
   ============================================ */

.title-gradient {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 3s ease infinite;
    background-size: 200% 200%;
}

/* ============================================
   PROGRESS BAR STYLES
   ============================================ */

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899);
    z-index: 1000;
    transition: width 0.3s ease;
}

/* ============================================
   NAVIGATION DOTS STYLES
   ============================================ */

.navigation-dots {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 1000;
}

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

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.nav-dot.active {
    background: #6366f1;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

body.dark-mode .nav-dot.active {
    background: #a855f7;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.6);
}

/* ============================================
   THEME TOGGLE BUTTON
   ============================================ */

/* ============================================
   RESPONSIVE NAVIGATION
   ============================================ */

.theme-toggle-btn {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    cursor: pointer;
    color: #fff;
    transition: transform 0.3s ease, color 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(40px, 8vw, 48px);
    height: clamp(40px, 8vw, 48px);
    -webkit-tap-highlight-color: transparent;
}

.theme-toggle-btn:hover {
    transform: rotate(12deg) scale(1.1);
}

.theme-toggle-btn svg,
.theme-toggle-btn [data-lucide] {
    width: clamp(1.2rem, 3vw, 1.5rem);
    height: clamp(1.2rem, 3vw, 1.5rem);
}

/* ============================================
   NAVIGATION STYLES
   ============================================ */


.nav-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.slide-counter-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.slide-counter {
    font-size: 1.1rem;
    font-weight: 600;
    white-space: nowrap;
}

.progress-container {
    width: 120px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #a855f7);
    border-radius: 999px;
    transition: width 0.3s ease;
}

body.dark-mode .progress-fill {
    background: linear-gradient(90deg, #a855f7, #ec4899);
}

.nav-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE FOOTER
   ============================================ */

.site-footer {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: clamp(1.5rem, 4vw, 2rem);
    text-align: center;
    margin-top: clamp(2rem, 5vw, 3rem);
}

.footer-content {
    max-width: 100%;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
}

.footer-title {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
}

.footer-description {
    margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
    opacity: 0.8;
}

.footer-navigation {
    margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
}

.footer-menu {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: clamp(0.75rem, 2vw, 1.5rem);
    flex-wrap: wrap;
}

.footer-menu a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.footer-menu a:hover {
    opacity: 0.7;
}

.footer-copyright {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    opacity: 0.7;
}

.footer-copyright .credit {
    margin-top: 0.5rem;
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

/* ============================================
   RESPONSIVE TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    word-wrap: break-word;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: clamp(1rem, 2vw, 1.25rem); }

p {
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 65ch;
}

/* ============================================
   RESPONSIVE STYLES - COMPREHENSIVE
   ============================================ */

@media (max-width: 1200px) {
    .services-showcase,
    .knowledge-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .session-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-showcase {
        gap: 2rem;
    }
    
    .hero-actions {
        gap: 1rem;
    }
}

@media (max-width: 1024px) {
    .main-content {
        padding: 0 1rem;
    }
    
    .hero-section {
        padding: clamp(3rem, 8vw, 5rem) 0;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .about-section,
    .services-section,
    .why-section,
    .cta-section,
    .knowledge-section,
    .session-types-section {
        padding: clamp(3rem, 6vw, 5rem) 0;
    }
    
    .about-showcase {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-visual {
        max-width: min(350px, 80vw);
        margin: 0 auto;
    }
    
    .reservation-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .reservation-info-card {
        position: static;
        order: -1;
    }
    
    .info-items-vertical {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .gallery-carousel-item {
        flex: 0 0 calc(50% - 0.75rem);
        min-width: 250px;
    }
    
    .carousel-item {
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .page-container,
    .single-container,
    .archive-container {
        padding: 5rem 0.75rem 2rem;
    }
    
    .main-header {
        padding: 0.25rem 0;
    }
    
    .enhanced-nav {
        padding: 0.5rem;
    }
    
    .page-navigation-menu.enhanced {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero-section {
        padding: clamp(2.5rem, 6vw, 4rem) 0;
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 4.5vw, 2.5rem);
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .title-brand {
        font-size: clamp(1.75rem, 4.5vw, 2.5rem);
    }
    
    .title-main {
        font-size: clamp(1.25rem, 3.5vw, 1.75rem);
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
        padding: 0 0.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero-cta {
        width: 100%;
        max-width: min(280px, 90vw);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: clamp(0.75rem, 2vw, 1rem);
        margin-top: 1.5rem;
    }
    
    .stat-item {
        padding: 0.5rem 1rem;
    }
    
    .stat-number {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .stat-label {
        font-size: clamp(0.8rem, 2vw, 0.9rem);
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .section-title {
        font-size: clamp(1.4rem, 3.5vw, 1.75rem);
        justify-content: center;
    }
    
    .services-showcase,
    .knowledge-showcase,
    .why-showcase {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card.enhanced,
    .knowledge-card.enhanced {
        padding: clamp(1.25rem, 3vw, 1.5rem);
    }
    
    .why-card {
        padding: clamp(1.25rem, 3vw, 1.5rem);
    }
    
    .why-showcase {
        gap: 1rem;
    }
    
    .why-icon-wrapper {
        width: clamp(60px, 12vw, 80px);
        height: clamp(60px, 12vw, 80px);
    }
    
    .session-types-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .session-type-card {
        padding: clamp(1.25rem, 3vw, 1.5rem);
    }
    
    .cta-showcase {
        padding: clamp(2rem, 5vw, 3rem) 1rem;
    }
    
    .cta-content h2 {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .cta-content > p {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .social-showcase {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .social-card {
        width: 100%;
        max-width: min(250px, 90vw);
        padding: clamp(1.25rem, 3vw, 1.5rem);
    }
    
    .reservation-hero {
        padding: clamp(3rem, 6vw, 4rem) 1rem;
    }
    
    .reservation-hero .hero-title {
        font-size: clamp(1.75rem, 4.5vw, 2.2rem);
    }
    
    .subtitle-line {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
    }
    
    .hero-icon-container {
        width: clamp(100px, 20vw, 150px);
        height: clamp(100px, 20vw, 150px);
    }
    
    .hero-main-icon {
        width: clamp(50px, 10vw, 80px);
        height: clamp(50px, 10vw, 80px);
    }
    
    .icon-ring {
        width: clamp(100px, 20vw, 150px);
        height: clamp(100px, 20vw, 150px);
    }
    
    .reservation-form-section {
        padding: clamp(2rem, 5vw, 3rem) 0;
    }
    
    .reservation-form-container {
        padding: clamp(1.25rem, 3vw, 1.5rem);
    }
    
    .form-row.two-col {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        margin-top: 1.5rem;
    }
    
    .gallery-page {
        padding-top: 1rem;
    }
    
    .gallery-hero {
        padding: clamp(2rem, 5vw, 3rem) 1rem;
        margin-bottom: 2rem;
    }
    
    .gallery-hero .hero-title {
        font-size: clamp(1.75rem, 4.5vw, 2.5rem);
    }
    
    .gallery-hero .hero-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    }
    
    .gallery-carousel-wrapper {
        padding: 0.5rem 0;
    }
    
    .gallery-carousel-track {
        gap: 1rem;
        padding: 0.5rem;
    }
    
    .gallery-carousel-item {
        flex: 0 0 calc(60% - 0.5rem);
        min-width: 200px;
    }
    
    .carousel-controls {
        gap: 0.25rem;
    }
    
    .carousel-btn {
        width: clamp(36px, 8vw, 44px);
        height: clamp(36px, 8vw, 44px);
    }
    
    .about-visual {
        max-width: min(280px, 75vw);
    }
    
    .about-visual .visual-icon {
        width: clamp(100px, 25vw, 150px);
        height: clamp(100px, 25vw, 150px);
    }
    
    .about-visual .visual-icon svg {
        width: clamp(50px, 12vw, 75px);
        height: clamp(50px, 12vw, 75px);
    }
    
    .ebook-grid,
    .knowledge-card-grid,
    .archive-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .ebook-card,
    .training-card-grid-item,
    .post-grid-item {
        padding: clamp(1.25rem, 3vw, 1.5rem);
    }
    
    .single-post,
    .single-page,
    .training-card-grid-item,
    .post-grid-item {
        padding: clamp(1.25rem, 3vw, 1.5rem);
        border-radius: clamp(1rem, 3vw, 1.5rem);
    }
    
    .post-thumbnail,
    .page-thumbnail {
        margin: clamp(-1rem, -3vw, -1.5rem) clamp(-1rem, -3vw, -1.5rem) 1.5rem;
        border-radius: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 3vw, 1.5rem) 0 0;
    }
    
    .post-title,
    .page-title,
    .archive-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .pagination {
        gap: 0.25rem;
        padding: 0.75rem 1rem;
    }
    
    .pagination .page-numbers {
        min-width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .comments-area {
        padding: clamp(1.25rem, 3vw, 1.5rem);
        border-radius: clamp(1rem, 3vw, 1.5rem);
    }
    
    .nav-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .progress-container {
        width: clamp(50px, 12vw, 80px);
    }
    
    .slide-counter {
        font-size: clamp(0.8rem, 2vw, 0.9rem);
    }
    
    .neo-button {
        padding: clamp(0.6rem, 2vw, 0.75rem) clamp(1rem, 2.5vw, 1.5rem);
        font-size: clamp(0.85rem, 2vw, 1rem);
    }
    
    .theme-toggle-btn {
        top: 0.5rem;
        left: 0.5rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .page-container,
    .single-container,
    .archive-container {
        padding: 4.5rem 0.5rem 1.5rem;
    }
    
    .skip-link {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-section {
        padding: clamp(2rem, 5vw, 3rem) 0;
    }
    
    .hero-content {
        padding: 0 0.25rem;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .title-brand {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .title-main {
        font-size: clamp(1rem, 3vw, 1.25rem);
    }
    
    .hero-subtitle {
        font-size: clamp(0.85rem, 2vw, 0.95rem);
    }
    
    .hero-cta {
        max-width: 100%;
        padding: 0.75rem 1.25rem;
    }
    
    .hero-stats {
        gap: 0.5rem;
    }
    
    .stat-item {
        padding: 0.35rem 0.75rem;
    }
    
    .stat-number {
        font-size: clamp(1.25rem, 3.5vw, 1.5rem);
    }
    
    .stat-label {
        font-size: clamp(0.75rem, 1.5vw, 0.8rem);
    }
    
    .card-container {
        height: clamp(300px, 55vh, 400px);
    }
    
    .training-card {
        height: clamp(300px, 55vh, 400px);
    }
    
    .card-front,
    .card-back {
        padding: 1rem;
        border-radius: 1rem;
    }
    
    .about-section,
    .services-section,
    .why-section,
    .cta-section,
    .knowledge-section,
    .session-types-section {
        padding: clamp(2rem, 5vw, 3rem) 0;
    }
    
    .section-title {
        font-size: clamp(1.25rem, 3vw, 1.5rem);
    }
    
    .service-card.enhanced,
    .knowledge-card.enhanced,
    .why-card,
    .session-type-card {
        padding: 1rem;
    }
    
    .service-icon {
        width: clamp(50px, 12vw, 60px);
        height: clamp(50px, 12vw, 60px);
    }
    
    .service-icon svg {
        width: clamp(24px, 6vw, 28px);
        height: clamp(24px, 6vw, 28px);
    }
    
    .knowledge-icon-wrapper {
        width: clamp(70px, 15vw, 90px);
        height: clamp(70px, 15vw, 90px);
    }
    
    .type-icon {
        width: clamp(50px, 12vw, 65px);
        height: clamp(50px, 12vw, 65px);
    }
    
    .cta-showcase {
        padding: 1.5rem 0.75rem;
    }
    
    .cta-content h2 {
        font-size: clamp(1.25rem, 3.5vw, 1.5rem);
    }
    
    .cta-content > p {
        font-size: clamp(0.85rem, 2vw, 0.9rem);
    }
    
    .social-card {
        padding: 1rem;
        min-width: auto;
        width: 100%;
    }
    
    .reservation-hero {
        padding: clamp(2rem, 5vw, 3rem) 0.75rem;
    }
    
    .reservation-hero .hero-title {
        font-size: clamp(1.5rem, 4vw, 1.8rem);
    }
    
    .hero-icon-container {
        width: clamp(80px, 18vw, 120px);
        height: clamp(80px, 18vw, 120px);
    }
    
    .hero-main-icon {
        width: clamp(40px, 10vw, 60px);
        height: clamp(40px, 10vw, 60px);
    }
    
    .icon-ring {
        width: clamp(80px, 18vw, 120px);
        height: clamp(80px, 18vw, 120px);
    }
    
    .reservation-form-container {
        padding: 1rem;
    }
    
    .reservation-info-card {
        padding: 1rem;
    }
    
    .info-items-vertical {
        grid-template-columns: 1fr;
    }
    
    .form-section {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .section-label {
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
        margin-bottom: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .checkbox-group.enhanced {
        padding: 0.75rem;
    }
    
    .submit-btn.large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .gallery-hero {
        padding: clamp(1.5rem, 4vw, 2rem) 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .gallery-hero .hero-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .gallery-hero .hero-subtitle {
        font-size: clamp(0.85rem, 2vw, 0.95rem);
    }
    
    .gallery-carousel-item {
        flex: 0 0 calc(80% - 0.5rem);
        min-width: 180px;
    }
    
    .carousel-item {
        min-width: 220px;
        padding: 1rem;
    }
    
    .ebook-card,
    .training-card-grid-item,
    .post-grid-item {
        padding: 1rem;
        border-radius: 1rem;
    }
    
    .single-post,
    .single-page {
        padding: 1rem;
        border-radius: 1rem;
    }
    
    .post-thumbnail,
    .page-thumbnail {
        margin: -1rem -1rem 1rem;
        border-radius: 1rem 1rem 0 0;
    }
    
    .post-title,
    .page-title,
    .archive-title {
        font-size: clamp(1.25rem, 3.5vw, 1.5rem);
    }
    
    .footer-menu {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
    }
    
    .mobile-menu-content {
        padding: 1rem;
    }
    
    .nav-container {
        gap: 0.5rem;
    }
    
    .progress-container {
        width: 50px;
        height: 5px;
    }
    
    .mobile-menu.enhanced {
        top: 55px;
        height: calc(100vh - 55px);
    }
    
    .neo-button {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .neo-button:hover {
        transform: translateY(-2px) scale(1.02);
    }
}

@media (max-width: 360px) {
    html {
        font-size: 13px;
    }
    
    .page-container,
    .single-container,
    .archive-container {
        padding: 4rem 0.25rem 1rem;
    }
    
    .hero-title {
        font-size: clamp(1.25rem, 3.5vw, 1.5rem);
    }
    
    .title-brand {
        font-size: clamp(1.25rem, 3.5vw, 1.5rem);
    }
    
    .title-main {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }
    
    .stat-item {
        padding: 0.25rem 0.5rem;
    }
    
    .card-container {
        height: clamp(280px, 50vh, 350px);
    }
    
    .training-card {
        height: clamp(280px, 50vh, 350px);
    }
    
    .reservation-form-container {
        padding: 0.75rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .neo-input,
    .neo-textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .gallery-carousel-item {
        flex: 0 0 calc(100% - 0.5rem);
        min-width: 160px;
    }
    
    .carousel-item {
        min-width: 180px;
    }
}

/* ============================================
   WORDPRESS REQUIRED STYLES
   ============================================ */

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

.gallery-caption {
    font-size: 0.9rem;
    text-align: center;
}

.bypostauthor {
    font-weight: 600;
}

.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.p-8 {
    padding: 2rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.overflow-hidden {
    overflow: hidden;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

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

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.w-full {
    width: 100%;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-4xl {
    max-width: 56rem;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.page-container,
.single-container,
.archive-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 6rem 1rem 3rem;
    width: 100%;
}

.main-content {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.pt-24 {
    padding-top: 6rem;
}

.pb-20 {
    padding-bottom: 5rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.hidden {
    display: none;
}

.block {
    display: block;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.transition {
    transition: all 0.3s ease;
}

.cursor-pointer {
    cursor: pointer;
}

.pointer-events-none {
    pointer-events: none;
}

select, textarea, input {
    font-family: 'Tajawal', sans-serif;
}

/* ============================================
   FORM STYLES
   ============================================ */

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid transparent;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: inherit;
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

body.dark-mode input[type="text"],
body.dark-mode input[type="email"],
body.dark-mode input[type="url"],
body.dark-mode input[type="password"],
body.dark-mode input[type="search"],
body.dark-mode input[type="tel"],
body.dark-mode input[type="number"],
body.dark-mode textarea,
body.dark-mode select {
    background: rgba(0, 0, 0, 0.2);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   PAGE/CONTENT STYLES
   ============================================ */

.page-container,
.single-container,
.archive-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 1rem 3rem;
}

.single-post,
.single-page,
.training-card-grid-item,
.post-grid-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

body.dark-mode .single-post,
body.dark-mode .single-page,
body.dark-mode .training-card-grid-item,
body.dark-mode .post-grid-item {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
}

.post-thumbnail,
.page-thumbnail {
    margin: -2rem -2rem 2rem;
    border-radius: 2rem 2rem 0 0;
    overflow: hidden;
}

.post-thumbnail img,
.page-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.post-title,
.page-title,
.archive-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.post-meta,
.page-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.post-meta span,
.page-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.post-content,
.page-content,
.entry-content {
    line-height: 1.9;
}

.post-content ul,
.post-content ol,
.page-content ul,
.page-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.post-content li,
.page-content li {
    margin-bottom: 0.5rem;
}

.post-content blockquote,
.page-content blockquote {
    border-left: 4px solid #6366f1;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    opacity: 0.9;
}

/* ============================================
   ARCHIVE STYLES
   ============================================ */

.archive-header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.archive-title-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.archive-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.archive-description {
    opacity: 0.8;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.training-card-grid-item,
.post-grid-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.training-card-grid-item:hover,
.post-grid-item:hover {
    transform: translateY(-5px);
}

.card-icon {
    margin-bottom: 1rem;
}

.card-icon svg {
    width: 64px;
    height: 64px;
    color: #6366f1;
}

body.dark-mode .card-icon svg {
    color: #a855f7;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.card-title a {
    text-decoration: none;
    color: inherit;
}

.card-summary {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.card-link {
    font-size: 0.9rem;
    text-decoration: none;
}

/* ============================================
   PAGINATION STYLES
   ============================================ */

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 1rem 2rem;
    border-radius: 999px;
}

.pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: #6366f1;
    color: white;
}

body.dark-mode .pagination .page-numbers:hover,
body.dark-mode .pagination .page-numbers.current {
    background: #a855f7;
}

.pagination .prev,
.pagination .next {
    padding: 0 1rem;
    border-radius: 999px;
    min-width: auto;
}

.pagination .prev svg,
.pagination .next svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   NO RESULTS STYLES
   ============================================ */

.no-results {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 2rem;
}

.no-results-icon {
    color: #6366f1;
    margin-bottom: 1rem;
}

body.dark-mode .no-results-icon {
    color: #a855f7;
}

.no-results-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* ============================================
   COMMENTS AREA STYLES
   ============================================ */

.comments-area {
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 2rem;
}

.comments-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.comment-list > .comment {
    margin-bottom: 1.5rem;
}

.comment-body {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1.5rem;
}

body.dark-mode .comment-body {
    background: rgba(0, 0, 0, 0.2);
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.comment-avatar {
    border-radius: 50%;
}

.fn {
    font-weight: 600;
}

.comment-metadata {
    font-size: 0.85rem;
    opacity: 0.7;
}

.comment-metadata a {
    color: inherit;
    text-decoration: none;
}

.edit-link {
    margin-right: 0.5rem;
}

.reply {
    display: inline-block;
    margin-top: 0.5rem;
}

.reply a {
    font-size: 0.9rem;
    color: #6366f1;
    text-decoration: none;
}

body.dark-mode .reply a {
    color: #a855f7;
}

.comment-content {
    line-height: 1.7;
}

.comment-awaiting-moderation {
    font-style: italic;
    opacity: 0.7;
}

.form-submit {
    text-align: center;
    margin-top: 1.5rem;
}

.comment-form textarea {
    width: 100%;
    min-height: 150px;
}

.comment-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.comment-form .required {
    color: #ef4444;
}

.comment-notes {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

/* ============================================
   WIDGET STYLES
   ============================================ */

.widget {
    margin-bottom: 1.5rem;
}

.widget-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.widget ul {
    list-style: none;
    padding: 0;
}

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

.widget ul li a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.widget ul li a:hover {
    opacity: 0.7;
}

.tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tagcloud a {
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tagcloud a:hover {
    background: #6366f1;
    color: white;
}

body.dark-mode .tagcloud a:hover {
    background: #a855f7;
}

/* ============================================
   GALLERY PAGE STYLES
   ============================================ */

.gallery-page {
    padding-top: 2rem;
}

/* Gallery Hero Section */
.gallery-hero {
    padding: 4rem 2rem;
    margin-bottom: 3rem;
    border-radius: 0 0 2rem 2rem;
}

.gallery-hero .hero-content {
    text-align: center;
}

.gallery-hero .hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.gallery-hero .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-header.center {
    justify-content: center;
}

.section-title {
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-icon {
    width: 32px;
    height: 32px;
    color: #6366f1;
}

body.dark-mode .section-icon {
    color: #a855f7;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    gap: 0.5rem;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: #6366f1;
    transform: scale(1.05);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

body.dark-mode .carousel-btn:hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: #a855f7;
}

/* Gallery Carousel Section */
.gallery-carousel-section {
    margin-bottom: 4rem;
}

.gallery-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.gallery-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1.5rem;
    padding: 1rem;
}

.gallery-carousel-item {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 300px;
}

/* Gallery Card Styles */
.gallery-card {
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.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-card:hover .gallery-image {
    transform: scale(1.1);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

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

.gallery-overlay-content {
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

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

.gallery-item-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.gallery-item-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.gallery-item-date svg {
    width: 16px;
    height: 16px;
}

.gallery-zoom-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gallery-zoom-btn:hover {
    background: #6366f1;
    transform: scale(1.1);
}

.gallery-zoom-btn svg {
    width: 20px;
    height: 20px;
}

/* Gallery Carousel Pagination */
.gallery-carousel-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

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

.pagination-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.pagination-dot.active {
    background: #6366f1;
    width: 30px;
    border-radius: 5px;
}

body.dark-mode .pagination-dot.active {
    background: #a855f7;
}

/* Gallery Grid Section */
.gallery-grid-section {
    margin-bottom: 4rem;
}

.gallery-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: inherit;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #6366f1;
    border-color: #6366f1;
}

body.dark-mode .filter-btn:hover,
body.dark-mode .filter-btn.active {
    background: #a855f7;
    border-color: #a855f7;
}

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

.gallery-grid-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.gallery-grid-item.fade-in {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-load-more {
    text-align: center;
    margin-top: 2rem;
}

.load-more-btn {
    padding: 1rem 2rem;
}

/* Gallery Lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: white;
    margin-top: 1rem;
}

.lightbox-caption h3 {
    font-size: 1.25rem;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.lightbox-nav-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
}

.lightbox-nav-btn:hover {
    background: rgba(99, 102, 241, 0.3);
    border-color: #6366f1;
}

.lightbox-nav-btn svg {
    width: 28px;
    height: 28px;
}

/* ============================================
   EBOOKS PAGE STYLES
   ============================================ */

.ebooks-page {
    padding-top: 2rem;
}

/* eBooks Hero Section */
.ebooks-hero {
    padding: 4rem 2rem;
    margin-bottom: 3rem;
    border-radius: 0 0 2rem 2rem;
    text-align: center;
}

.hero-icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.hero-icon-wrapper .hero-icon {
    width: 50px;
    height: 50px;
    margin: 0;
}

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

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6366f1;
    display: block;
}

body.dark-mode .stat-number {
    color: #a855f7;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* eBooks Featured Section */
.ebooks-featured-section {
    margin-bottom: 4rem;
}

.ebooks-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.ebooks-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1.5rem;
    padding: 1rem;
}

.ebooks-carousel-item {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 320px;
}

/* eBooks Card Styles */
.ebook-card {
    padding: 1.5rem;
    transition: all 0.4s ease;
}

.ebook-card:hover {
    transform: translateY(-8px);
}

/* 3D Book Effect */
.ebook-3d-wrapper {
    perspective: 1000px;
    width: 140px;
    height: 200px;
    margin: 0 auto 1.5rem;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}

.ebook-3d-wrapper.flipped {
    transform: rotateY(-180deg);
}

.ebook-cover {
    position: absolute;
    inset: 0;
    border-radius: 4px 12px 12px 4px;
    transform: translateZ(2px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.6s ease;
}

.ebook-3d-wrapper.flipped .ebook-cover {
    transform: rotateY(180deg) translateZ(2px);
}

.ebook-cover-content {
    text-align: center;
    color: white;
}

.ebook-cover-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.ebook-category {
    font-size: 0.75rem;
    opacity: 0.9;
}

.ebook-spine {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 4px 0 0 4px;
    transform: translateZ(1px) rotateY(90deg);
    transform-origin: left;
}

.ebook-3d-wrapper.flipped .ebook-spine {
    transform: translateZ(1px) rotateY(0deg);
}

.ebook-pages {
    position: absolute;
    right: 15px;
    top: 5px;
    bottom: 5px;
    width: 25px;
    background: linear-gradient(to right, #f5f5f5, #e0e0e0);
    border-radius: 0 4px 4px 0;
    transform: rotateY(90deg) translateZ(-10px);
    transform-origin: right;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ebook-3d-wrapper.flipped .ebook-pages {
    transform: rotateY(0deg) translateZ(-10px);
}

.page-count {
    font-size: 0.6rem;
    color: #666;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.ebook-back {
    position: absolute;
    inset: 0;
    border-radius: 4px 12px 12px 4px;
    transform: rotateY(180deg) translateZ(1px);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}

/* eBook Info */
.ebook-info {
    text-align: center;
}

.ebook-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.ebook-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.ebook-author svg {
    width: 16px;
    height: 16px;
}

.ebook-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ebook-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.9rem;
}

.ebook-rating .star-icon {
    width: 16px;
    height: 16px;
    color: #fbbf24;
}

.ebook-rating .star-icon.filled {
    fill: currentColor;
}

.ebook-download-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.ebook-download-btn svg {
    width: 16px;
    height: 16px;
}

/* eBooks Categories Section */
.ebooks-categories-section {
    margin-bottom: 4rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
}

.category-card {
    padding: 2rem 1.5rem;
    text-align: center;
    border-radius: 1.5rem;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: var(--category-color);
    box-shadow: 0 0 30px var(--category-color);
}

.category-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.category-icon {
    width: 32px;
    height: 32px;
    color: var(--category-color);
}

.category-name {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.category-count {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* eBooks Latest Section */
.ebooks-latest-section {
    margin-bottom: 4rem;
}

.view-all-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: inherit;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.view-all-link:hover {
    opacity: 0.7;
}

.view-all-link svg {
    width: 18px;
    height: 18px;
}

.ebooks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.ebook-grid-item {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.ebook-grid-item:nth-child(1) { animation-delay: 0.1s; }
.ebook-grid-item:nth-child(2) { animation-delay: 0.2s; }
.ebook-grid-item:nth-child(3) { animation-delay: 0.3s; }
.ebook-grid-item:nth-child(4) { animation-delay: 0.4s; }
.ebook-grid-item:nth-child(5) { animation-delay: 0.5s; }
.ebook-grid-item:nth-child(6) { animation-delay: 0.6s; }
.ebook-grid-item:nth-child(7) { animation-delay: 0.7s; }
.ebook-grid-item:nth-child(8) { animation-delay: 0.8s; }

.ebook-card.horizontal {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    padding: 1rem;
}

.ebook-cover-small {
    width: 80px;
    height: 110px;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ebook-small-icon {
    width: 32px;
    height: 32px;
    color: white;
    opacity: 0.9;
}

.ebook-info {
    flex: 1;
    text-align: right;
}

.ebook-category-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 999px;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

body.dark-mode .ebook-category-tag {
    background: rgba(168, 85, 247, 0.2);
}

.ebook-card.horizontal .ebook-title {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.ebook-card.horizontal .ebook-author {
    justify-content: flex-end;
    margin-bottom: 0.5rem;
}

.ebook-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
}

.ebook-date {
    font-size: 0.8rem;
    opacity: 0.7;
}

.ebook-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.2);
    border: none;
    color: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ebook-action-btn:hover {
    background: #6366f1;
}

.ebook-action-btn svg {
    width: 18px;
    height: 18px;
}

body.dark-mode .ebook-action-btn:hover {
    background: #a855f7;
}

.ebooks-load-more {
    text-align: center;
    margin-top: 2rem;
}

/* eBooks Newsletter Section */
.ebooks-newsletter-section {
    margin-bottom: 3rem;
}

.newsletter-card {
    padding: 3rem 2rem;
    border-radius: 2rem;
    text-align: center;
}

.newsletter-content {
    margin-bottom: 2rem;
}

.newsletter-icon {
    width: 48px;
    height: 48px;
    color: #6366f1;
    margin-bottom: 1rem;
}

body.dark-mode .newsletter-icon {
    color: #a855f7;
}

.newsletter-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.newsletter-content p {
    opacity: 0.8;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
}

.newsletter-submit {
    white-space: nowrap;
}

.newsletter-submit svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   GLASS CARD UTILITY
   ============================================ */

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

body.dark-mode .glass-card {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

body.dark-mode .glass-panel {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
}

/* ============================================
   RESPONSIVE STYLES FOR NEW PAGES
   ============================================ */

@media (max-width: 1024px) {
    .gallery-carousel-item {
        flex: 0 0 calc(50% - 0.75rem);
    }
    
    .ebooks-carousel-item {
        flex: 0 0 calc(50% - 0.75rem);
    }
    
    .hero-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .gallery-hero .hero-title {
        font-size: 2rem;
    }
    
    .ebooks-hero .hero-title {
        font-size: 2rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .gallery-carousel-item {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .ebooks-carousel-item {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-number::after {
        content: '+';
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ebook-card.horizontal {
        flex-direction: column;
        text-align: center;
    }
    
    .ebook-cover-small {
        margin: 0 auto;
    }
    
    .ebook-info {
        text-align: center;
    }
    
    .ebook-author {
        justify-content: center;
    }
    
    .lightbox-nav-btn {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .gallery-hero,
    .ebooks-hero {
        padding: 3rem 1rem;
    }
    
    .gallery-hero .hero-title,
    .ebooks-hero .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input {
        min-width: 100%;
    }
}

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */

/* Hover Glow Effect */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(99, 102, 241, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.6);
    }
}

body.dark-mode @keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(168, 85, 247, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
    }
}

.glass-card:hover {
    animation: glow 2s ease-in-out infinite;
}

/* Pulse Animation for Buttons */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.carousel-btn:hover {
    animation: pulse 1s ease-in-out infinite;
}

/* Slide Up Animation */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ebook-card,
.category-card,
.gallery-card {
    animation: slideUp 0.6s ease forwards;
}

/* Stagger Animation Delays */
.ebooks-carousel-item:nth-child(1) { animation-delay: 0.1s; }
.ebooks-carousel-item:nth-child(2) { animation-delay: 0.2s; }
.ebooks-carousel-item:nth-child(3) { animation-delay: 0.3s; }
.ebooks-carousel-item:nth-child(4) { animation-delay: 0.4s; }
.ebooks-carousel-item:nth-child(5) { animation-delay: 0.5s; }
.ebooks-carousel-item:nth-child(6) { animation-delay: 0.6s; }

.gallery-carousel-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-carousel-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-carousel-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-carousel-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-carousel-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-carousel-item:nth-child(6) { animation-delay: 0.6s; }

.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.15s; }
.category-card:nth-child(3) { animation-delay: 0.2s; }
.category-card:nth-child(4) { animation-delay: 0.25s; }
.category-card:nth-child(5) { animation-delay: 0.3s; }
.category-card:nth-child(6) { animation-delay: 0.35s; }

/* Neo Input Styles */
.neo-input {
    background: linear-gradient(145deg, #ffffff, #e2e8f0);
    box-shadow:
        inset 3px 3px 6px #bebebe,
        inset -3px -3px 6px #ffffff;
    border: none;
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

body.dark-mode .neo-input {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    box-shadow:
        inset 3px 3px 6px #2a2a2a,
        inset -3px -3px 6px #0d0d0d;
    color: white;
}

.neo-input:focus {
    outline: none;
    box-shadow:
        inset 2px 2px 4px #bebebe,
        inset -2px -2px 4px #ffffff,
        0 0 0 3px rgba(99, 102, 241, 0.2);
}

body.dark-mode .neo-input:focus {
    box-shadow:
        inset 2px 2px 4px #2a2a2a,
        inset -2px -2px 4px #0d0d0d,
        0 0 0 3px rgba(168, 85, 247, 0.2);
}

.neo-textarea {
    background: linear-gradient(145deg, #ffffff, #e2e8f0);
    box-shadow:
        inset 3px 3px 6px #bebebe,
        inset -3px -3px 6px #ffffff;
    border: none;
    border-radius: 12px;
    padding: 1rem;
    font-size: 1rem;
    resize: vertical;
    min-height: 120px;
    font-family: 'Tajawal', sans-serif;
}

body.dark-mode .neo-textarea {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    box-shadow:
        inset 3px 3px 6px #2a2a2a,
        inset -3px -3px 6px #0d0d0d;
    color: white;
}

/* ============================================
   DYNAMIC PAGE NAVIGATION STYLES
   ============================================ */

.main-navigation {
    position: fixed;
    top: 4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    width: 90%;
    max-width: 1200px;
}

.main-navigation .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    flex-shrink: 0;
}

.site-title-link {
    text-decoration: none;
    color: inherit;
}

.site-title {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Page Navigation Menu */
.page-navigation-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.page-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    color: inherit;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    background: rgba(99, 102, 241, 0.1);
}

.nav-link.active {
    background: rgba(99, 102, 241, 0.2);
    color: #6366f1;
}

body.dark-mode .nav-link.active {
    color: #a855f7;
    background: rgba(168, 85, 247, 0.2);
}

.nav-link svg {
    width: 18px;
    height: 18px;
}

/* Home Nav Item */
.home-nav-item .nav-link {
    background: rgba(99, 102, 241, 0.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: inherit;
    padding: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(99, 102, 241, 0.2);
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
}

/* Show mobile toggle only on smaller screens */
@media (max-width: 1024px) {
    .main-nav-toggle {
        display: flex !important;
    }
    
    .page-navigation-menu {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 6rem;
    right: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem;
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

body.dark-mode .mobile-menu {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-list li {
    margin-bottom: 0.5rem;
}

.mobile-menu-list a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    text-decoration: none;
    color: inherit;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.mobile-menu-list a:hover,
.mobile-menu-list a.active {
    background: rgba(99, 102, 241, 0.2);
}

body.dark-mode .mobile-menu-list a:hover,
body.dark-mode .mobile-menu-list a.active {
    background: rgba(168, 85, 247, 0.2);
}

.mobile-menu-list svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   RESERVATION PAGE STYLES
   ============================================ */

.reservation-page {
    padding-top: 2rem;
}

/* Reservation Hero */
.reservation-hero {
    padding: 4rem 2rem;
    margin-bottom: 3rem;
    border-radius: 0 0 2rem 2rem;
    text-align: center;
}

.reservation-hero .hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.reservation-hero .hero-icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.reservation-hero .hero-icon {
    width: 50px;
    height: 50px;
    margin: 0;
    color: #6366f1;
}

body.dark-mode .reservation-hero .hero-icon {
    color: #a855f7;
}

.reservation-hero .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.reservation-hero .hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Reservation Section */
.reservation-form-section {
    margin-bottom: 4rem;
}

.reservation-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

/* Reservation Alert */
.reservation-alert {
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.reservation-alert.success {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
}

.reservation-alert.error {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
}

.alert-icon {
    flex-shrink: 0;
}

.alert-icon svg {
    width: 28px;
    height: 28px;
}

.reservation-alert.success .alert-icon {
    color: #22c55e;
}

.reservation-alert.error .alert-icon {
    color: #ef4444;
}

.alert-content p {
    margin: 0;
    line-height: 1.6;
}

/* Reservation Card */
.reservation-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    padding: 2rem;
    border-radius: 1.5rem;
}

.reservation-info {
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .reservation-info {
    border-color: rgba(255, 255, 255, 0.1);
}

.reservation-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.reservation-info > p {
    opacity: 0.8;
    margin-bottom: 2rem;
}

/* Info Items */
.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.info-item svg {
    width: 24px;
    height: 24px;
    color: #6366f1;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

body.dark-mode .info-item svg {
    color: #a855f7;
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

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

/* Reservation Form */
.reservation-form-container {
    padding: 0 1rem;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: flex;
    flex-direction: column;
}

.form-row.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group label svg {
    width: 18px;
    height: 18px;
    color: #6366f1;
}

body.dark-mode .form-group label svg {
    color: #a855f7;
}

.required {
    color: #ef4444;
}

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

/* Checkbox Styles */
.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #6366f1;
}

body.dark-mode .checkbox-label input[type="checkbox"] {
    accent-color: #a855f7;
}

.terms-link {
    color: #6366f1;
    text-decoration: none;
}

body.dark-mode .terms-link {
    color: #a855f7;
}

.terms-link:hover {
    text-decoration: underline;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.submit-btn svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   RESPONSIVE NAV & RESERVATION
   ============================================ */

@media (max-width: 1024px) {
    .page-navigation-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .reservation-card {
        grid-template-columns: 1fr;
    }
    
    .reservation-info {
        padding-left: 0;
        padding-bottom: 1.5rem;
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    body.dark-mode .reservation-info {
        border-color: rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 768px) {
    .main-navigation {
        top: 3.5rem;
        padding: 0.5rem 1rem;
    }
    
    .reservation-hero {
        padding: 3rem 1rem;
    }
    
    .reservation-hero .hero-title {
        font-size: 2rem;
    }
    
    .form-row.two-col {
        grid-template-columns: 1fr;
    }
    
    .reservation-card {
        padding: 1.5rem;
    }
    
    .reservation-form-container {
        padding: 1.5rem 0 0;
    }
}

@media (max-width: 480px) {
    .main-navigation {
        width: 95%;
    }
    
    .nav-logo {
        display: none;
    }
    
    .reservation-hero .hero-title {
        font-size: 1.75rem;
    }
    
    .reservation-alert {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ============================================
   LANDING PAGE STYLES
   ============================================ */

/* Hero Section */
.hero-section {
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-icon-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.hero-icon-wrapper .hero-icon {
    width: 60px;
    height: 60px;
    margin: 0;
    color: #6366f1;
}

body.dark-mode .hero-icon-wrapper .hero-icon {
    color: #a855f7;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-cta {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* About Section */
.about-section {
    padding: 2rem 2rem;
}

.section-card {
    padding: 3rem 2rem;
    border-radius: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Services Section */
.services-section {
    padding: 4rem 2rem;
}

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

.service-card {
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #6366f1;
}

body.dark-mode .service-icon {
    color: #a855f7;
    background: rgba(168, 85, 247, 0.1);
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    padding: 0;
    text-align: right;
}

.service-list li {
    padding: 0.5rem 0;
    padding-right: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    opacity: 0.9;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: #6366f1;
    font-weight: bold;
}

body.dark-mode .service-list li::before {
    color: #a855f7;
}

/* Knowledge Section */
.knowledge-section {
    padding: 4rem 2rem;
}

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

.knowledge-card {
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
}

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

.knowledge-icon {
    margin-bottom: 1rem;
    color: #6366f1;
}

body.dark-mode .knowledge-icon {
    color: #a855f7;
}

.knowledge-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.knowledge-card p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

/* Why Section */
.why-section {
    padding: 4rem 2rem;
}

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

.why-item {
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: center;
}

.why-item svg {
    color: #6366f1;
    margin-bottom: 1rem;
}

body.dark-mode .why-item svg {
    color: #a855f7;
}

.why-item p {
    margin: 0;
    font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
}

.contact-actions {
    margin: 2rem 0;
}

.contact-note {
    font-size: 0.9rem;
    opacity: 0.7;
}

.social-section {
    margin-top: 3rem;
}

.social-section h3 {
    margin-bottom: 0.5rem;
}

.social-section > p {
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

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

/* Disclaimer Section */
.disclaimer-section {
    padding: 2rem 2rem 4rem;
}

.disclaimer-card {
    padding: 2rem;
    border-radius: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-card p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

.services-page {
    padding-top: 2rem;
}

.services-header,
.knowledge-header,
.contact-header {
    padding: 4rem 2rem;
    margin-bottom: 2rem;
    border-radius: 0 0 2rem 2rem;
    text-align: center;
}

.services-header .page-title,
.knowledge-header .page-title,
.contact-header .page-title {
    font-size: 2.5rem;
}

.services-header .page-description,
.knowledge-header .page-description,
.contact-header .page-description {
    max-width: 600px;
    margin: 1rem auto 0;
    opacity: 0.8;
}

.service-detail-section {
    margin-bottom: 4rem;
}

.service-header {
    text-align: center;
    margin-bottom: 2rem;
}

.service-icon-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #6366f1;
}

body.dark-mode .service-icon-large {
    color: #a855f7;
    background: rgba(168, 85, 247, 0.1);
}

.service-title-large {
    font-size: 2rem;
}

.service-content h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #6366f1;
}

body.dark-mode .service-content h3 {
    color: #a855f7;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    padding-right: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: #22c55e;
    font-weight: bold;
}

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

/* ============================================
   KNOWLEDGE PAGE STYLES
   ============================================ */

.knowledge-section-main {
    margin-bottom: 4rem;
}

.section-subheader {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.section-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 1rem;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    flex-shrink: 0;
}

body.dark-mode .section-icon-box {
    color: #a855f7;
    background: rgba(168, 85, 247, 0.1);
}

.section-title-area h2 {
    margin-bottom: 0.5rem;
}

.section-title-area p {
    margin: 0;
    opacity: 0.8;
}

.section-action {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Articles Section */
.articles-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.article-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 1.5rem;
    transition: all 0.3s ease;
}

.article-item:hover {
    transform: translateX(-10px);
}

.article-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    flex-shrink: 0;
}

body.dark-mode .article-icon {
    color: #a855f7;
    background: rgba(168, 85, 247, 0.1);
}

.article-content {
    flex: 1;
}

.article-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.article-content p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.article-date {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Videos Section */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.video-card {
    padding: 1.5rem;
    border-radius: 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
}

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

.video-thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #6366f1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-thumbnail:hover {
    background: rgba(99, 102, 241, 0.2);
}

body.dark-mode .video-thumbnail {
    color: #a855f7;
    background: rgba(168, 85, 247, 0.1);
}

body.dark-mode .video-thumbnail:hover {
    background: rgba(168, 85, 247, 0.2);
}

.video-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.video-card p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

/* Tools Section */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tool-card {
    padding: 1.5rem;
    border-radius: 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
}

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

.tool-icon {
    margin-bottom: 1rem;
    color: #6366f1;
}

body.dark-mode .tool-icon {
    color: #a855f7;
}

.tool-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.tool-card p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-info-section {
    margin-bottom: 4rem;
}

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

.contact-info-card {
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

.contact-info-card .info-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #6366f1;
}

body.dark-mode .contact-info-card .info-icon {
    color: #a855f7;
    background: rgba(168, 85, 247, 0.1);
}

.contact-info-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    margin: 0;
}

.contact-info-card a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: #6366f1;
}

body.dark-mode .contact-info-card a:hover {
    color: #a855f7;
}

/* Contact Form Section */
.contact-form-section {
    margin-bottom: 4rem;
}

.contact-form-section .section-card {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    margin-bottom: 0.5rem;
}

.form-header p {
    margin: 0;
    opacity: 0.8;
}

/* Contact Alert */
.contact-alert {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.contact-alert.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.contact-alert.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.contact-alert svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-alert.success svg {
    color: #22c55e;
}

.contact-alert.error svg {
    color: #ef4444;
}

.contact-alert p {
    margin: 0;
    line-height: 1.6;
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-form .form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-form .form-group label svg {
    width: 18px;
    height: 18px;
    color: #6366f1;
}

body.dark-mode .contact-form .form-group label svg {
    color: #a855f7;
}

/* Social Section Page */
.social-section-page .section-card {
    max-width: 800px;
    margin: 0 auto;
}

.social-section-page h2 {
    margin-bottom: 0.5rem;
}

.social-section-page > .section-card > p {
    margin-bottom: 2rem;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    min-width: 120px;
}

.social-link-large:hover {
    transform: translateY(-5px);
}

.social-link-large span {
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE LANDING & PAGES
   ============================================ */

@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 1rem 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-icon-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .hero-icon-wrapper .hero-icon {
        width: 50px;
        height: 50px;
    }
    
    .services-header,
    .knowledge-header,
    .contact-header {
        padding: 3rem 1rem;
    }
    
    .services-header .page-title,
    .knowledge-header .page-title,
    .contact-header .page-title {
        font-size: 2rem;
    }
    
    .section-card {
        padding: 2rem 1.5rem;
    }
    
    .section-subheader {
        flex-direction: column;
        text-align: center;
    }
    
    .article-item {
        flex-direction: column;
        text-align: center;
    }
    
    .article-item .neo-button {
        width: 100%;
    }
    
    .service-title-large {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .services-grid,
    .knowledge-grid,
    .why-grid,
    .videos-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links-large {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link-large {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .page-navigation-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .reservation-card {
        grid-template-columns: 1fr;
    }
    
    .reservation-info {
        padding-left: 0;
        padding-bottom: 1.5rem;
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    body.dark-mode .reservation-info {
        border-color: rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 768px) {
    .main-navigation {
        top: 3.5rem;
        padding: 0.5rem 1rem;
    }
    
    .reservation-hero {
        padding: 3rem 1rem;
    }
    
    .reservation-hero .hero-title {
        font-size: 2rem;
    }
    
    .form-row.two-col {
        grid-template-columns: 1fr;
    }
    
    .reservation-card {
        padding: 1.5rem;
    }
    
    .reservation-form-container {
        padding: 1.5rem 0 0;
    }
}

@media (max-width: 480px) {
    .main-navigation {
        width: 95%;
    }
    
    .nav-logo {
        display: none;
    }
    
    .reservation-hero .hero-title {
        font-size: 1.75rem;
    }
    
    .reservation-alert {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}


/* ============================================
   THREE.JS CANVAS STYLES
   ============================================ */

.threejs-canvas,
.threejs-header-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.threejs-header-canvas {
    z-index: -2;
}

/* ============================================
   FLOATING ORBS & BACKGROUND ELEMENTS
   ============================================ */

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

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float-orb 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #667eea 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #f093fb 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #a855f7 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

.orb-4 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #f5576c 0%, transparent 70%);
    bottom: 20%;
    right: 20%;
    animation-delay: -15s;
}

@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.05);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(20px, 30px) scale(1.02);
    }
}

/* ============================================
   ENHANCED HERO SECTION
   ============================================ */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
}

.hero-icon {
    width: 100px;
    height: 100px;
    color: #667eea;
    position: relative;
    z-index: 1;
}

body.dark-mode .hero-icon {
    color: #a855f7;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.title-brand {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #667eea, #f093fb, transparent);
    border-radius: 2px;
}

.title-main {
    font-size: 2rem;
    color: #333;
}

body.dark-mode .title-main {
    color: #fff;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 1rem;
}

body.dark-mode .hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.hero-description {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

body.dark-mode .hero-description {
    color: rgba(255, 255, 255, 0.7);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-cta.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.hero-cta.secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
}

.hero-cta.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

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

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
}

body.dark-mode .stat-number {
    color: #a855f7;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

body.dark-mode .stat-label {
    color: rgba(255, 255, 255, 0.7);
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(102, 126, 234, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    animation: bounce-scroll 2s ease-in-out infinite;
}

body.dark-mode .scroll-indicator {
    color: rgba(255, 255, 255, 0.6);
}

.scroll-arrow {
    animation: bounce-arrow 1.5s ease-in-out infinite;
}

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

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

/* ============================================
   SECTION HEADER STYLES
   ============================================ */

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

.section-header-large h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #333;
}

body.dark-mode .section-header-large h2 {
    color: #fff;
}

.section-header-large p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

body.dark-mode .section-header-large p {
    color: rgba(255, 255, 255, 0.7);
}

.section-header-large.light h2 {
    color: #fff;
}

.section-header-large.light p {
    color: rgba(255, 255, 255, 0.8);
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.header-decoration .deco-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #667eea);
}

.header-decoration .deco-line:last-child {
    background: linear-gradient(90deg, #667eea, transparent);
}

.header-decoration .deco-dot {
    width: 10px;
    height: 10px;
    background: #667eea;
    border-radius: 50%;
    animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
    }
}

.section-action {
    text-align: center;
    margin-top: 3rem;
}

.section-action .neo-button.large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ============================================
   ENHANCED ABOUT SECTION
   ============================================ */

.about-section {
    padding: 6rem 0;
}

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

.about-visual {
    padding: 3rem;
    text-align: center;
    position: relative;
}

.visual-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(240, 147, 251, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-icon-wrapper svg {
    width: 60px;
    height: 60px;
    color: #667eea;
}

body.dark-mode .visual-icon-wrapper svg {
    color: #a855f7;
}

.visual-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
}

.about-content-wrapper {
    padding: 1rem 0;
}

.lead-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.1));
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 999px;
    color: #667eea;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

body.dark-mode .lead-badge {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
    border-color: rgba(168, 85, 247, 0.4);
    color: #a855f7;
}

.lead-description {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 500;
}

body.dark-mode .lead-description {
    color: #fff;
}

.main-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.9;
    margin-bottom: 2rem;
}

body.dark-mode .main-description {
    color: rgba(255, 255, 255, 0.7);
}

.highlight-quote {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.1));
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    border-right: 4px solid #667eea;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

body.dark-mode .highlight-quote {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1));
    border-right-color: #a855f7;
}

.highlight-quote .quote-icon {
    color: #667eea;
    flex-shrink: 0;
}

body.dark-mode .highlight-quote .quote-icon {
    color: #a855f7;
}

.highlight-quote p {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
}

body.dark-mode .highlight-quote p {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   ENHANCED SERVICES SECTION
   ============================================ */

.services-section {
    padding: 6rem 0;
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card.enhanced {
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card.enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(240, 147, 251, 0.15));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
}

body.dark-mode .service-icon-wrapper {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
    color: #a855f7;
}

.service-number {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(102, 126, 234, 0.2);
}

body.dark-mode .service-number {
    color: rgba(168, 85, 247, 0.3);
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #333;
}

body.dark-mode .service-title {
    color: #fff;
}

.service-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
}

body.dark-mode .service-description {
    color: rgba(255, 255, 255, 0.7);
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.95rem;
}

body.dark-mode .service-features li {
    color: rgba(255, 255, 255, 0.8);
}

.service-features li svg {
    color: #22c55e;
    flex-shrink: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s ease;
}

body.dark-mode .service-link {
    color: #a855f7;
}

.service-link:hover {
    gap: 1rem;
}

.service-card.enhanced.featured {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(240, 147, 251, 0.15));
    border-color: rgba(102, 126, 234, 0.4);
}

body.dark-mode .service-card.enhanced.featured {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(236, 72, 153, 0.15));
    border-color: rgba(168, 85, 247, 0.4);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 999px;
}

/* ============================================
   ENHANCED KNOWLEDGE SECTION
   ============================================ */

.knowledge-section {
    padding: 6rem 0;
}

.knowledge-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.knowledge-card.enhanced {
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.knowledge-card.enhanced:hover .card-glow {
    opacity: 1;
}

.knowledge-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(240, 147, 251, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    transition: transform 0.3s ease;
}

body.dark-mode .knowledge-icon-wrapper {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
    color: #a855f7;
}

.knowledge-card.enhanced:hover .knowledge-icon-wrapper {
    transform: scale(1.1);
}

.knowledge-card.enhanced .knowledge-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

body.dark-mode .knowledge-card.enhanced .knowledge-title {
    color: #fff;
}

.knowledge-card.enhanced > p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

body.dark-mode .knowledge-card.enhanced > p {
    color: rgba(255, 255, 255, 0.7);
}

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

.resource-count {
    font-size: 0.85rem;
    color: #667eea;
    font-weight: 500;
}

body.dark-mode .resource-count {
    color: #a855f7;
}

/* ============================================
   ENHANCED WHY SECTION
   ============================================ */

.why-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, transparent, rgba(102, 126, 234, 0.05), transparent);
}

.why-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.why-card {
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.why-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(240, 147, 251, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
}

body.dark-mode .why-icon-wrapper {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
    color: #a855f7;
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #333;
}

body.dark-mode .why-card h3 {
    color: #fff;
}

.why-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

body.dark-mode .why-card p {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 6rem 0;
}

.cta-showcase {
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.dec-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.dec-circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.dec-circle:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
}

.dec-circle:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #333;
}

body.dark-mode .cta-content h2 {
    color: #fff;
}

.cta-content > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

body.dark-mode .cta-content > p {
    color: rgba(255, 255, 255, 0.7);
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

body.dark-mode .cta-note {
    color: rgba(255, 255, 255, 0.7);
}

.cta-note svg {
    color: #22c55e;
}

/* ============================================
   SOCIAL SHOWCASE
   ============================================ */

.social-showcase {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-card {
    padding: 2rem;
    text-align: center;
    min-width: 150px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.social-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(240, 147, 251, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
}

body.dark-mode .social-icon {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
    color: #a855f7;
}

.social-label {
    font-weight: 500;
    color: #555;
}

body.dark-mode .social-label {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   ENHANCED DISCLAIMER
   ============================================ */

.disclaimer-section {
    padding: 4rem 0;
}

.disclaimer-card {
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(251, 191, 36, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f59e0b;
    flex-shrink: 0;
}

.disclaimer-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

body.dark-mode .disclaimer-card p {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   ENHANCED NAVIGATION
   ============================================ */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9998;
    padding: 0.5rem 0;
}

.enhanced-nav {
    border-radius: 0 0 1rem 1rem;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo .site-title-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: clamp(32px, 6vw, 40px);
    height: clamp(32px, 6vw, 40px);
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .site-title {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 700;
    color: #333;
}

.site-tagline {
    font-size: clamp(0.65rem, 1.5vw, 0.75rem);
    color: #666;
}

.page-navigation-menu.enhanced .page-nav-list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: clamp(0.5rem, 1.5vw, 0.75rem) clamp(0.75rem, 2vw, 1rem);
    border-radius: 0.5rem;
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-icon-wrapper {
    width: clamp(16px, 3vw, 20px);
    height: clamp(16px, 3vw, 20px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-text {
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.nav-cta {
    margin-right: auto;
}

.nav-cta-btn {
    padding: clamp(0.5rem, 1.5vw, 0.6rem) clamp(0.75rem, 2vw, 1.2rem);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    margin-right: auto;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.hamburger-line {
    display: block;
    width: clamp(18px, 4vw, 24px);
    height: 2px;
    background: currentColor;
    margin: 4px 0;
    transition: all 0.3s ease;
}

.mobile-menu.enhanced {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(0, 0, 0, 0.95);
    z-index: 9997;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.enhanced.active {
    display: block;
}

.mobile-menu-content {
    padding: 1.5rem;
    max-width: 100%;
    margin: 0 auto;
}

.mobile-menu-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 600;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: clamp(0.75rem, 2vw, 1rem);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(102, 126, 234, 0.2);
    color: #fff;
}

.mobile-menu-footer .neo-button {
    width: 100%;
    justify-content: center;
    padding: 1rem;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 1.5rem);
    flex-wrap: wrap;
    justify-content: center;
}

.slide-counter-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.slide-counter {
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    font-weight: 600;
    white-space: nowrap;
}

.progress-container {
    width: clamp(60px, 15vw, 120px);
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    overflow: hidden;
}

.nav-btn {
    padding: 0.5rem clamp(0.75rem, 2vw, 1rem);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

/* ============================================
   THEME TOGGLE ENHANCED
   ============================================ */

.theme-toggle-btn {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1001;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.theme-toggle-btn .toggle-icon {
    position: absolute;
    transition: all 0.3s ease;
}

.theme-toggle-btn .sun {
    opacity: 1;
    transform: rotate(0deg);
}

.theme-toggle-btn .moon {
    opacity: 0;
    transform: rotate(90deg);
}

body.dark-mode .theme-toggle-btn .sun {
    opacity: 0;
    transform: rotate(-90deg);
}

body.dark-mode .theme-toggle-btn .moon {
    opacity: 1;
    transform: rotate(0deg);
}

/* ============================================
   ENHANCED RESERVATION PAGE
   ============================================ */

.reservation-page {
    padding-top: 80px;
}

#reservation-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.reservation-hero {
    position: relative;
    padding: 6rem 2rem;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: float-shape 15s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: #667eea;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: #f093fb;
    top: 20%;
    right: 15%;
    animation-delay: -5s;
}

.shape-3 {
    width: 180px;
    height: 180px;
    background: #a855f7;
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes float-shape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(5deg);
    }
    50% {
        transform: translate(-10px, 10px) rotate(-5deg);
    }
    75% {
        transform: translate(15px, 15px) rotate(3deg);
    }
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
}

.hero-icon-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
}

.icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border: 3px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    animation: ring-pulse 3s ease-out infinite;
}

.icon-ring.delay-1 {
    animation-delay: 1s;
}

.icon-ring.delay-2 {
    animation-delay: 2s;
}

@keyframes ring-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.hero-main-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    color: #667eea;
}

.reservation-hero .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-line {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle-line {
    font-size: 1.3rem;
    color: #666;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

/* ============================================
   RESERVATION FORM SECTION
   ============================================ */

.reservation-form-section {
    padding: 4rem 0;
}

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

.reservation-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
}

.reservation-info-card {
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card-header svg {
    color: #667eea;
}

body.dark-mode .info-card-header svg {
    color: #a855f7;
}

.info-card-header h3 {
    font-size: 1.1rem;
    color: #333;
}

body.dark-mode .info-card-header h3 {
    color: #fff;
}

.info-intro {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
}

body.dark-mode .info-intro {
    color: rgba(255, 255, 255, 0.7);
}

.info-items-vertical {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.info-item-large .item-icon {
    width: 45px;
    height: 45px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    flex-shrink: 0;
}

body.dark-mode .info-item-large .item-icon {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
}

.info-item-large .item-content h4 {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.25rem;
}

body.dark-mode .info-item-large .item-content h4 {
    color: #fff;
}

.info-item-large .item-content p,
.info-item-large .item-content a {
    font-size: 0.85rem;
    color: #666;
    text-decoration: none;
}

body.dark-mode .info-item-large .item-content p,
body.dark-mode .info-item-large .item-content a {
    color: rgba(255, 255, 255, 0.7);
}

.info-card-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links-compact {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links-compact a {
    width: 40px;
    height: 40px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
}

body.dark-mode .social-links-compact a {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
}

.social-links-compact a:hover {
    background: #667eea;
    color: #fff;
    transform: translateY(-3px);
}

/* ============================================
   RESERVATION FORM STYLES
   ============================================ */

.reservation-form-container {
    padding: 2rem;
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-section:last-of-type {
    border-bottom: none;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

body.dark-mode .section-label {
    color: #fff;
}

.section-label svg {
    color: #667eea;
}

body.dark-mode .section-label svg {
    color: #a855f7;
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
}

body.dark-mode .form-group label {
    color: rgba(255, 255, 255, 0.9);
}

.form-group label svg {
    color: #667eea;
    flex-shrink: 0;
}

.form-group label .required {
    color: #ef4444;
    margin-right: 0.25rem;
}

.form-group.floating {
    position: relative;
}

.form-group.floating .neo-input {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group.floating .neo-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group.floating label {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #999;
    pointer-events: none;
    transition: all 0.3s ease;
    margin: 0;
    background: transparent;
    padding: 0;
}

.form-group.floating .neo-input:focus ~ label,
.form-group.floating .neo-input:not(:placeholder-shown) ~ label {
    top: 0;
    right: 0.75rem;
    font-size: 0.8rem;
    padding: 0.2rem 0.5rem;
    background: linear-gradient(-45deg, #667eea, #764ba2);
    color: #fff;
    border-radius: 0.25rem;
}

.neo-input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    font-size: 1rem;
    color: #333;
    font-family: 'Tajawal', sans-serif;
    transition: all 0.3s ease;
}

body.dark-mode .neo-input {
    color: #fff;
}

.neo-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

body.dark-mode .neo-input:focus {
    border-color: #a855f7;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.neo-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    font-size: 1rem;
    color: #333;
    font-family: 'Tajawal', sans-serif;
    resize: vertical;
    min-height: 120px;
    transition: all 0.3s ease;
}

body.dark-mode .neo-textarea {
    color: #fff;
}

.neo-textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-row {
    margin-bottom: 1rem;
}

.form-row.two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.checkbox-group.enhanced {
    padding: 1rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    text-align: right;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(102, 126, 234, 0.5);
    border-radius: 5px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: transparent;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

body.dark-mode .checkbox-text {
    color: rgba(255, 255, 255, 0.8);
}

.checkbox-text a {
    color: #667eea;
    text-decoration: none;
}

body.dark-mode .checkbox-text a {
    color: #a855f7;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

.form-actions {
    margin-top: 2rem;
}

.submit-btn.large {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.submit-btn.large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

/* ============================================
   RESERVATION ALERT
   ============================================ */

.reservation-alert {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    position: relative;
}

.reservation-alert.success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.reservation-alert.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(248, 113, 113, 0.1));
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.alert-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reservation-alert.success .alert-icon-wrapper {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.reservation-alert.error .alert-icon-wrapper {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.alert-content {
    flex: 1;
}

.alert-content p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
}

body.dark-mode .alert-content p {
    color: #fff;
}

.alert-close {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.3s ease;
}

.alert-close:hover {
    color: #333;
}

/* ============================================
   SESSION TYPES SECTION
   ============================================ */

.session-types-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, transparent, rgba(102, 126, 234, 0.03), transparent);
}

.session-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.session-type-card {
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

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

.session-type-card.featured {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(240, 147, 251, 0.15));
    border-color: rgba(102, 126, 234, 0.4);
}

.type-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(240, 147, 251, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
}

body.dark-mode .type-icon {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
    color: #a855f7;
}

.session-type-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #333;
}

body.dark-mode .session-type-card h3 {
    color: #fff;
}

.session-type-card > p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

body.dark-mode .session-type-card > p {
    color: rgba(255, 255, 255, 0.7);
}

.type-duration {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 999px;
    font-size: 0.8rem;
    color: #667eea;
    font-weight: 500;
}

body.dark-mode .type-duration {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 999px;
}

/* ============================================
   RESPONSIVE ENHANCEMENTS
   ============================================ */

@media (max-width: 1200px) {
    .services-showcase,
    .knowledge-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .session-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-showcase {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-visual {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .reservation-grid {
        grid-template-columns: 1fr;
    }
    
    .reservation-info-card {
        position: static;
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-brand {
        font-size: 2rem;
    }
    
    .title-main {
        font-size: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-divider {
        width: 50px;
        height: 1px;
    }
    
    .services-showcase,
    .knowledge-showcase {
        grid-template-columns: 1fr;
    }
    
    .why-showcase {
        grid-template-columns: 1fr;
    }
    
    .session-types-grid {
        grid-template-columns: 1fr;
    }
    
    .page-navigation-menu.enhanced {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        margin-right: auto;
    }
    
    .nav-cta {
        display: none;
    }
    
    .form-row.two-col {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .title-brand {
        font-size: 1.5rem;
    }
    
    .title-main {
        font-size: 1.2rem;
    }
    
    .reservation-hero .hero-title {
        font-size: 1.8rem;
    }
    
    .section-header-large h2 {
        font-size: 1.5rem;
    }
    
    .social-showcase {
        flex-direction: column;
        align-items: center;
    }
    
    .social-card {
        width: 100%;
        max-width: 200px;
    }
}
