        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            background: #000000;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 80%, rgba(0, 123, 255, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(0, 123, 255, 0.1) 0%, transparent 50%);
            z-index: -1;
            animation: subtleGlow 15s ease-in-out infinite;
        }

        @keyframes subtleGlow {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.6; }
        }

        /* Page System */
        .page {
            display: none;
            min-height: 100vh;
            padding-top: 100px;
        }

        .page.active {
            display: block;
        }

        /* Navigation - Enhanced Colors */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 1.5rem 0;
            border-bottom: 1px solid rgba(0, 123, 255, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 2.5rem;
            font-weight: 800;
            color: #007bff;
            text-decoration: none;
            background: linear-gradient(45deg, #007bff, #66b3ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: logoShimmer 3s ease-in-out infinite;
        }

        @keyframes logoShimmer {
            0%, 100% { filter: brightness(1); }
            50% { filter: brightness(1.3); }
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 3rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            cursor: pointer;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            width: 0;
            height: 3px;
            background: linear-gradient(45deg, #007bff, #66b3ff);
            transition: all 0.4s ease;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .nav-links a:hover::before {
            width: 100%;
        }

        .nav-links a:hover {
            color: #66b3ff;
            transform: translateY(-3px);
        }

        .auth-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn {
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.85rem;
        }

        .btn-login {
            background: transparent;
            color: white;
            border: 2px solid #007bff;
            position: relative;
            overflow: hidden;
        }

        .btn-login::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #007bff, #66b3ff);
            transition: left 0.4s ease;
            z-index: -1;
        }

        .btn-login:hover::before {
            left: 0;
        }

        .btn-signup {
            background: linear-gradient(45deg, #007bff, #66b3ff);
            color: white;
            box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 123, 255, 0.4);
        }

        /* Enhanced Floating Cards with Continuous Animation */
        .hero-visual {
            position: relative;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .floating-elements {
            position: relative;
            width: 500px;
            height: 500px;
        }

        .floating-card {
            position: absolute;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            padding: 2rem;
            text-align: center;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: pointer;
        }

        .floating-card:hover {
            transform: scale(1.1);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .card-1 {
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #007bff, #66b3ff);
            animation: floatCard1 8s ease-in-out infinite;
        }

        .card-2 {
            top: 50%;
            right: 0;
            transform: translateY(-50%);
            background: linear-gradient(135deg, #66b3ff, #007bff);
            animation: floatCard2 8s ease-in-out infinite 2.67s;
        }

        .card-3 {
            bottom: 0;
            left: 0;
            background: linear-gradient(135deg, #007bff, #66b3ff);
            animation: floatCard3 8s ease-in-out infinite 5.33s;
        }

        @keyframes floatCard1 {
            0%, 100% { 
                transform: translateX(-50%) translateY(0px) rotate(0deg) scale(1);
                opacity: 1;
            }
            25% { 
                transform: translateX(-50%) translateY(-30px) rotate(5deg) scale(1.05);
                opacity: 0.8;
            }
            50% { 
                transform: translateX(-50%) translateY(-15px) rotate(-3deg) scale(1.1);
                opacity: 0.6;
            }
            75% { 
                transform: translateX(-50%) translateY(-25px) rotate(2deg) scale(1.05);
                opacity: 0.8;
            }
        }

        @keyframes floatCard2 {
            0%, 100% { 
                transform: translateY(-50%) translateX(0px) rotate(0deg) scale(1);
                opacity: 1;
            }
            25% { 
                transform: translateY(-50%) translateX(-20px) rotate(-4deg) scale(1.05);
                opacity: 0.8;
            }
            50% { 
                transform: translateY(-50%) translateX(-35px) rotate(6deg) scale(1.1);
                opacity: 0.6;
            }
            75% { 
                transform: translateY(-50%) translateX(-10px) rotate(-2deg) scale(1.05);
                opacity: 0.8;
            }
        }

        @keyframes floatCard3 {
            0%, 100% { 
                transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
                opacity: 1;
            }
            25% { 
                transform: translateY(-20px) translateX(15px) rotate(3deg) scale(1.05);
                opacity: 0.8;
            }
            50% { 
                transform: translateY(-40px) translateX(30px) rotate(-5deg) scale(1.1);
                opacity: 0.6;
            }
            75% { 
                transform: translateY(-15px) translateX(10px) rotate(1deg) scale(1.05);
                opacity: 0.8;
            }
        }
.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    border-radius: 50%; /* circle */
    overflow: hidden;
    background: rgba(255, 255, 255, 0.15); /* subtle background */
    animation: iconPulse 2s ease-in-out infinite;
}

.card-icon img.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* fills circle neatly */
}


        @keyframes iconPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        .card-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .card-text {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Animated Gallery Section - Enhanced */
        .gallery-section {
            padding: 4rem 0;
            background: rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(20px);
            margin: 2rem 0;
        }

        .gallery-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            height: 600px;
            overflow: hidden;
        }

        .gallery-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            opacity: 0;
            transform: translateX(100%);
            transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .gallery-slide.active {
            opacity: 1;
            transform: translateX(0);
        }

        .gallery-slide.prev {
            transform: translateX(-100%);
        }

        /* Continuous Image Animation */
        .gallery-image {
            width: 400px;
            height: 400px;
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: white;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .gallery-slide:nth-child(1) .gallery-image {
            background: linear-gradient(135deg, #007bff, #66b3ff);
            animation: imageRotate 6s linear infinite;
        }

        .gallery-slide:nth-child(2) .gallery-image {
            background: linear-gradient(135deg, #66b3ff, #007bff);
            animation: imageScale 4s ease-in-out infinite;
        }

        .gallery-slide:nth-child(3) .gallery-image {
            background: linear-gradient(135deg, #007bff, #66b3ff);
            animation: imageBounce 3s ease-in-out infinite;
        }

        @keyframes imageRotate {
            0% { transform: rotate(0deg) scale(1); }
            25% { transform: rotate(90deg) scale(1.05); }
            50% { transform: rotate(180deg) scale(1.1); }
            75% { transform: rotate(270deg) scale(1.05); }
            100% { transform: rotate(360deg) scale(1); }
        }

        @keyframes imageScale {
            0%, 100% { 
                transform: scale(1) rotateY(0deg);
                border-radius: 30px;
            }
            50% { 
                transform: scale(1.15) rotateY(180deg);
                border-radius: 50%;
            }
        }

        @keyframes imageBounce {
            0%, 100% { 
                transform: translateY(0px) rotateX(0deg);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            }
            25% { 
                transform: translateY(-30px) rotateX(15deg);
                box-shadow: 0 40px 60px rgba(0, 0, 0, 0.4);
            }
            50% { 
                transform: translateY(-50px) rotateX(30deg);
                box-shadow: 0 60px 80px rgba(0, 0, 0, 0.5);
            }
            75% { 
                transform: translateY(-20px) rotateX(15deg);
                box-shadow: 0 40px 60px rgba(0, 0, 0, 0.4);
            }
        }

        .gallery-image::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .gallery-content {
            flex: 1;
            padding: 0 4rem;
            color: white;
        }

        .gallery-title {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, #ffffff 0%, #66b3ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .typewriter-quote {
            font-size: 1.5rem;
            font-style: italic;
            margin-bottom: 2rem;
            min-height: 4rem;
            position: relative;
        }

        .typewriter-text {
            border-right: 3px solid #66b3ff;
            animation: blink 1s infinite;
        }

        @keyframes blink {
            0%, 50% { border-color: #66b3ff; }
            51%, 100% { border-color: transparent; }
        }

        .gallery-description {
            font-size: 1.2rem;
            line-height: 1.8;
            opacity: 0.9;
            margin-bottom: 2rem;
        }

        .gallery-stats {
            display: flex;
            gap: 3rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: #66b3ff;
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.8;
        }

        /* Hero Section - Enhanced */
        .hero {
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            padding: 0 2rem;
            max-width: 1400px;
            margin: 0 auto;
            gap: 4rem;
            position: relative;
        }

        .hero-content {
            color: white;
            z-index: 2;
            padding: 2rem 0;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            margin-bottom: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: fadeInUp 1s ease-out;
        }

        .hero-title {
            font-size: 4.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            background: linear-gradient(135deg, #ffffff 0%, #66b3ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: slideInLeft 1s ease-out 0.3s both;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            opacity: 0.9;
            font-weight: 400;
            line-height: 1.6;
            animation: slideInLeft 1s ease-out 0.6s both;
        }

        .hero-cta {
            display: flex;
            gap: 1.5rem;
            animation: slideInLeft 1s ease-out 0.9s both;
        }

        .btn-primary {
            background: linear-gradient(45deg, #007bff, #66b3ff);
            color: white;
            padding: 1.2rem 3rem;
            font-size: 1.1rem;
            border-radius: 50px;
            font-weight: 700;
            box-shadow: 0 10px 30px rgba(0, 123, 255, 0.4);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 1.2rem 3rem;
            font-size: 1.1rem;
            border-radius: 50px;
            font-weight: 700;
            backdrop-filter: blur(10px);
        }

        /* Enhanced Content Sections */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-badge {
            display: inline-block;
            background: rgba(0, 123, 255, 0.1);
            color: #66b3ff;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title {
            font-size: 3.5rem;
            color: white;
            font-weight: 900;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffffff 0%, #66b3ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* About Page Content - Enhanced */
        .about-content {
            padding: 4rem 0;
        }

        .about-intro {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            padding: 4rem;
            margin-bottom: 4rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .about-intro h3 {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 2rem;
            font-weight: 700;
        }

        .about-intro p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
            margin: 4rem 0;
        }

        .about-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            padding: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
        }

        .about-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
            border-color: rgba(76, 205, 196, 0.3);
        }

        .about-icon {
            font-size: 3rem;
            margin-bottom: 2rem;
            display: block;
        }

        .about-card h3 {
            font-size: 1.8rem;
            color: white;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .about-card p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            font-size: 1.1rem;
        }

        /* Menu Page Enhanced */
        .menu-content {
            padding: 4rem 0;
        }

        .menu-categories {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 4rem;
            flex-wrap: wrap;
        }

        .category-btn {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.2);
            padding: 1rem 2rem;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .category-btn.active,
        .category-btn:hover {
            background: linear-gradient(45deg, #007bff, #66b3ff);
            border-color: #007bff;
            transform: translateY(-3px);
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .menu-item {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            padding: 2.5rem;
            text-align: center;
            color: white;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .menu-item:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 30px 60px rgba(76, 205, 196, 0.2);
            border-color: rgba(76, 205, 196, 0.4);
        }

        .menu-item-image {
            width: 120px;
            height: 120px;
            margin: 0 auto 2rem;
            border-radius: 50%;
            background: linear-gradient(135deg, #4ecdc4, #ff6b6b);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;
            animation: itemPulse 3s ease-in-out infinite;
        }

        @keyframes itemPulse {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(76, 205, 196, 0.4);
            }
            50% { 
                transform: scale(1.05);
                box-shadow: 0 0 0 20px rgba(76, 205, 196, 0);
            }
        }

        .menu-item h3 {
            font-size: 1.6rem;
            margin-bottom: 1rem;
            color: white;
            font-weight: 700;
        }

        .menu-item p {
            margin-bottom: 1.5rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        .price {
            font-size: 2rem;
            font-weight: 900;
            color: #4ecdc4;
            margin-bottom: 2rem;
        }

        .btn-cart {
            background: linear-gradient(45deg, #4ecdc4, #ff6b6b);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            margin: 0.5rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
        }

        /* Services Page Enhanced */
        .services-content {
            padding: 4rem 0;
        }

        .services-intro {
            text-align: center;
            margin-bottom: 5rem;
        }

        .services-intro h3 {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 2rem;
            font-weight: 700;
        }

        .services-intro p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            padding: 3rem;
            color: white;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(76, 205, 196, 0.2);
            border-color: rgba(76, 205, 196, 0.3);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 2rem;
            display: block;
        }

        .service-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .service-card p {
            font-size: 1.1rem;
            opacity: 0.9;
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .service-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .service-features li {
            padding: 0.5rem 0;
            position: relative;
            padding-left: 2rem;
        }

        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #4ecdc4;
            font-weight: bold;
        }

        .service-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ff6b6b;
            margin-bottom: 1rem;
        }

        /* Contact Page Enhanced */
        .contact-content {
            padding: 4rem 0;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 4rem;
        }

        .contact-info {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            padding: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .contact-info h3 {
            font-size: 2rem;
            color: white;
            margin-bottom: 2rem;
            font-weight: 700;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            color: white;
        }

        .contact-item-icon {
            font-size: 1.5rem;
            margin-right: 1rem;
            color: #4ecdc4;
            width: 40px;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            padding: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            color: white;
            margin-bottom: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1.2rem;
            border: none;
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #4ecdc4;
            box-shadow: 0 0 0 3px rgba(76, 205, 196, 0.1);
            background: rgba(255, 255, 255, 0.15);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        /* Footer Enhanced */
        .footer {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            color: #4ecdc4;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            font-weight: 700;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .footer-section a:hover {
            color: #4ecdc4;
            transform: translateX(5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.8;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
        }

        .modal-content {
            background: linear-gradient(135deg, #4ecdc4 0%, #45b7d1 100%);
            margin: 3% auto;
            padding: 4rem;
            border-radius: 30px;
            width: 90%;
            max-width: 500px;
            position: relative;
            animation: modalZoomIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        @keyframes modalZoomIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .close {
            color: white;
            float: right;
            font-size: 2rem;
            font-weight: bold;
            cursor: pointer;
            position: absolute;
            top: 1.5rem;
            right: 2rem;
            transition: all 0.3s ease;
        }

        .close:hover {
            color: #ff6b6b;
            transform: scale(1.1);
        }

        .modal h2 {
            color: white;
            margin-bottom: 2rem;
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
        }

        /* Content Pages Styles */
        .content-page {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            padding: 4rem;
            margin: 2rem 0;
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: white;
            line-height: 1.8;
        }

        .content-page h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: #4ecdc4;
            font-weight: 700;
        }

        .content-page h3 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem 0;
            color: #96ceb4;
            font-weight: 600;
        }

        .content-page p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .content-page ul {
            margin: 1rem 0 2rem 2rem;
        }

        .content-page li {
            margin-bottom: 0.8rem;
        }

        /* Animations */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 2rem 1rem;
            }

            .hero-title {
                font-size: 3rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .gallery-slide {
                flex-direction: column;
                text-align: center;
            }

            .gallery-image {
                width: 300px;
                height: 300px;
                margin-bottom: 2rem;
            }

            .gallery-content {
                padding: 0 1rem;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .floating-elements {
                width: 300px;
                height: 300px;
            }

            .floating-card {
                width: 150px;
                height: 150px;
                padding: 1rem;
            }
        }

        /* Hidden class for logout functionality */
        .hidden {
            display: none;
        }

        /* User info display */
        .user-info {
            color: white;
            display: none;
            align-items: center;
            gap: 1rem;
        }

        .user-info.show {
            display: flex;
        }
