:root {
            --primary-color: #5a2d82;
            --secondary-color: #ff4d8d;
            --accent-color: #00c2ff;
            --text-color: #e0e0e0;
            --light-bg: #121212;
            --dark-bg: #080808;
            --card-bg: #1a1a1a;
            --white: #ffffff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Syncopate:wght@400;700&display=swap');
        
        body {
            font-family: 'Outfit', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            overflow-x: hidden;
            background-color: var(--dark-bg);
        }
        
        a {
            text-decoration: none;
            color: var(--primary-color);
        }
        
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--secondary-color);
            color: var(--white);
            border: none;
            border-radius: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 2px;
            font-family: 'Syncopate', sans-serif;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: all 0.4s ease;
            z-index: -1;
        }
        
        .btn:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }
        
        .btn:hover:before {
            left: 100%;
        }
        
        .text-center {
            text-align: center;
        }
        
/* ------------------------------------------------------------------ */

/* Header z filmem w tle */
header {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

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

.header-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(5,0,20,0.2));
}

.header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    z-index: 2;
}

.header-content h1 {
    font-family: 'Syncopate', sans-serif;
    font-size: 3.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.5), 0 0 20px var(--secondary-color);
}

.header-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}


/* ------------------------------------------------------------------ */





        /* Header Styles */

/*
        header {
            height: 100vh;
            width:100%;
            background: linear-gradient(rgba(0,0,0,0.8), rgba(5,0,20,0.9)), url('/api/placeholder/1200/800') center/cover no-repeat;
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        header:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(90, 45, 130, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 30%, rgba(255, 77, 141, 0.15) 0%, transparent 30%);
            z-index: 1;
        }
        
        .header-content {
            --max-width: 800px;
            text-align: center;
            padding: 2rem;
            position: relative;
            z-index: 2;
            width: 90% !important;
            margin-left: auto;
            margin-right: auto;
        }
        
        .header-content h1 {
            font-family: 'Syncopate', sans-serif;
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 15px rgba(0,0,0,0.5), 0 0 20px var(--secondary-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            line-height: 1.2;
        }
        
        .header-content p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
        }
        
*/

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(8,8,8,0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            color: var(--white);
            font-size: 1.5rem;
            font-weight: 700;
            font-family: 'Syncopate', sans-serif;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
            display: inline-block;
        }
        
        .logo:after {
            content: '';
            position: absolute;
            width: 30%;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--secondary-color);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 2rem;
        }
        
        .nav-links a {
            color: var(--white);
            font-weight: 400;
            transition: all 0.3s ease;
            position: relative;
            padding-bottom: 5px;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .nav-links a:before {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
        }
        
        .nav-links a:hover:before {
            width: 100%;
        }
        
        .nav-links a:hover {
            color: var(--accent-color);
        }
        
        /* Sections General Style */
        section {
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }
        
        section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 10%, rgba(90, 45, 130, 0.05) 0%, transparent 30%),
                radial-gradient(circle at 90% 90%, rgba(0, 194, 255, 0.05) 0%, transparent 40%);
            pointer-events: none;
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            text-align: center!important;
            color: var(--white);
            font-family: 'Syncopate', sans-serif;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
            margin-left: auto;
            margin-right: auto;
            padding-bottom: 15px;
        }
        
        .section-title:after {
            content: '';
            text-align: center;
            position: absolute;
            width: 60px;
            height: 3px;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            margin-bottom: 4rem;
            text-align: center;
            color: rgba(255,255,255,0.7);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
        }
        
        .section-subtitle-shoty {
            font-size: 2.1rem;
            margin-bottom: 20px !important;
            padding-bottom: 20px !important;
            text-align: center;
            color: rgba(255,255,255,0.7);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
        }
        
        /* About Section */
        .about {
            background-color: var(--dark-bg);
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        
        .about-image {
            width: 70%;
            border-radius: 3px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
            position: relative;
            z-index: 1;
            filter: contrast(1.1) brightness(0.9);
        }
        
        .about-image:before {
            content: '';
            position: absolute;
            top: 20px;
            left: -20px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--secondary-color);
            z-index: -1;
        }
        
        .about-text h3 {
            font-size: 1.8rem;
            width: 70%;
            margin-bottom: 1.5rem;
            color: var(--accent-color);
            font-weight: 600;
            position: relative;
            padding-bottom: 15px;
        }
        
        .about-text h3:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            bottom: 0;
            left: 0;
            background: var(--secondary-color);
        }
        
        .about-text p {
            margin-bottom: 1.5rem;
            font-weight: 300;
            line-height: 1.8;
            width: 70%;
            text-align: justify;
        }
        
        .credentials {
            display: flex;
            gap: 1rem;
            margin-top: 2.5rem;
            
        }
        
        .credential-item {
            display: inline-block;
            flex-direction: column;
            align-items: center;
            text-align: center;
            background-color: rgba(255,255,255,0.03);
            padding: 1.5rem;
            border-radius: 3px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255,255,255,0.05);
            transition: all 0.3s ease;
            width: 22%;
        }
        
        .credential-item:hover {
            transform: translateY(-5px);
            background-color: rgba(255,255,255,0.05);
        }
        
        .credential-icon {
            font-size: 2rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        
        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            --grid-template-columns: repeat(3, 1fr); /* dokładnie 3 kolumny */
            gap: 2rem;
        }
        
        .service-card {
            background-color: var(--card-bg);
            border-radius: 3px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.05);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            z-index: 2;
            transition: all 0.3s ease;
            transform: scaleX(0);
            transform-origin: left;
        }
        
        .service-card:hover:before {
            transform: scaleX(1);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
            background-color: rgba(26, 26, 26, 0.8);
        }
        
        .service-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.2);
            color: var(--accent-color);
        }
        
        .service-title {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--white);
            font-weight: 600;
        }
        
        /* Events Section */
        .events {
            background-color: var(--light-bg);
        }
        
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            --grid-template-columns: repeat(4, 1fr); /* dokładnie 3 kolumny */
            gap: 2rem;
        }
        
        .event-card {
            background-color: var(--card-bg);
            border-radius: 3px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.05);
        }
        
        .event-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }
        
        .event-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }
        
        .event-image:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .event-card:hover .event-image:before {
            opacity: 1;
        }
        
        .event-details {
            padding: 1.8rem;
        }
        
        .event-title {
            display: flex;
            align-items: center;
            margin-bottom: 1.2rem;
        }
        
        .event-icon {
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-right: 1rem;
            transition: all 0.3s ease;
        }
        
        .event-card:hover .event-icon {
            transform: scale(1.2);
            color: var(--accent-color);
        }
        
        .event-title h3 {
            color: var(--white);
            font-weight: 600;
        }
        
        .event-details p {
            color: rgba(255,255,255,0.8);
            font-weight: 300;
            line-height: 1.8;
        }
        
        /* Menu Section */
        .cocktail-menu {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        
        .cocktail-card {
            background-color: var(--card-bg);
            border-radius: 3px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.05);
            position: relative;
        }
        
        .cocktail-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }
        
        .cocktail-image {
            height: 220px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
            transition: all 0.5s ease;
        }
        
        .cocktail-card:hover .cocktail-image {
            filter: brightness(110%) contrast(110%);
        }
        
        .cocktail-image:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.8) 100%);
        }
        
        .cocktail-details {
            padding: 1.8rem;
            position: relative;
            z-index: 1;
        }
        
        .cocktail-name {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            color: var(--white);
            font-weight: 600;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }
        
        .cocktail-name:after {
            content: '';
            position: absolute;
            width: 30px;
            height: 2px;
            bottom: 0;
            left: 0;
            background: var(--secondary-color);
        }
        
        .cocktail-ingredients {
            margin-bottom: 1rem;
            font-style: italic;
            color: var(--secondary-color);
            font-weight: 300;
        }
        
        .cocktail-details p {
            color: rgba(255,255,255,0.8);
            font-weight: 300;
            line-height: 1.7;
        }details {
            padding: 1.5rem;
        }
        
        .cocktail-name {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
        }
        
        .cocktail-ingredients {
            margin-bottom: 1rem;
            font-style: italic;
            color: var(--secondary-color);
        }
        
        /* Gallery Section */
        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            grid-auto-rows: 280px;
            grid-auto-flow: dense;
            gap: 20px;
            margin-top: 3rem;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 3px;
            height: 100%;
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
            transition: all 0.5s ease;
        }
        
        .gallery-item:nth-child(4n) {
            grid-column: span 2;
            grid-row: span 1;
        }
        
        .gallery-item:nth-child(8n) {
            grid-column: span 1;
            grid-row: span 2;
        }
        
        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease, filter 0.5s ease;
            filter: grayscale(30%) contrast(120%) brightness(80%);
        }
        
        .gallery-item:hover .gallery-image {
            transform: scale(1.05);
            filter: grayscale(0%) contrast(110%) brightness(100%);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-caption {
            color: var(--white);
            text-align: center;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }
        
        .gallery-icon {
            color: var(--white);
            font-size: 2rem;
            margin-bottom: 10px;
        }
        
        /* Testimonials Section */
        .testimonials {
            background-color: var(--light-bg);
            position: relative;
        }
        
        .testimonials:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('/api/placeholder/1200/800');
            background-size: cover;
            background-position: center;
            opacity: 0.05;
            filter: grayscale(100%) contrast(120%);
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .testimonial-card {
            background-color: var(--card-bg);
            border-radius: 3px;
            padding: 2.5rem;
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
            position: relative;
            border: 1px solid rgba(255,255,255,0.05);
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }
        
        .testimonial-text {
            margin-bottom: 1.5rem;
            font-style: italic;
            color: rgba(255,255,255,0.9);
            line-height: 1.8;
            font-weight: 300;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            margin-top: 2rem;
        }
        
        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 1rem;
            object-fit: cover;
            border: 2px solid var(--secondary-color);
        }
        
        .testimonial-info h4 {
            font-size: 1.1rem;
            margin-bottom: 0.2rem;
            color: var(--white);
            font-weight: 600;
        }
        
        .testimonial-info p {
            font-size: 0.9rem;
            color: var(--secondary-color);
        }
        
        .testimonial-quote {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            font-size: 2.5rem;
            color: var(--secondary-color);
            opacity: 0.2;
        };
            right: 1rem;
            font-size: 2rem;
            color: rgba(0,0,0,0.1);
        }
        
        /* Pricing Section */
        
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(30%, 1fr); /* dokładnie 3 kolumny */
            gap: 2rem;
        }
        
        .pricing-card {
           background-color: var(--card-bg);
            border-radius: 3px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.05);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .pricing-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            z-index: 2;
            transition: all 0.3s ease;
            transform: scaleX(0);
            transform-origin: left;
        }
        
        
        .pricing-card:hover {
            transform: scale(1.03);
            box-shadow: 0 20px 50px rgba(0,0,0,0.4);
        }
        
        .pricing-title {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--white);
            font-weight: 600;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .pricing-title:after {
            content: '';
            position: absolute;
            width: 30px;
            height: 2px;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            background: var(--secondary-color);
        }
        
        .pricing-price {
            font-size: 2.5rem;
            font-weight: 500;
            margin-bottom: 2rem;
            color: var(--secondary-color);
            font-family: 'Syncopate', sans-serif;
        }
        
        .pricing-features {
            list-style: none;
            margin-bottom: 2.5rem;
            text-align: left;
        }
        
        .pricing-features li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            position: relative;
            padding-left: 1.5rem;
            font-weight: 300;
        }
        
        .pricing-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-color);
        }
        
        .pricing-features li.placeholder-li:before {
            content: '' !important;
            position: absolute;
            left: 0;
            color: var(--accent-color);
        }
        
        .pricing-features li:last-child {
            border-bottom: none;
        }
        
        /* FAQ Section */
        .faq {
            background-color: var(--light-bg);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background-color: var(--card-bg);
            border-radius: 3px;
            margin-bottom: 1.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.05);
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }
        
        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--white);
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            color: var(--accent-color);
        }
        
        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.5s ease;
            color: rgba(255,255,255,0.8);
            font-weight: 300;
            line-height: 1.8;
        }
        
        .faq-answer.active {
            max-height: 300px;
            padding-bottom: 1.5rem;
        }
        
        .faq-icon {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
            color: var(--secondary-color);
        }
        
        .faq-question.active .faq-icon {
            transform: rotate(180deg);
        }
        
        /* Contact Section */
        .contact-flex {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
        }
        
        .contact-info {
            flex: 1;
            min-width: 300px;
        }
        
        .contact-item {
            display: flex;
            margin-bottom: 2rem;
            align-items: flex-start;
        }
        
        .contact-icon {
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-right: 1.5rem;
            margin-top: 0.5rem;
        }
        
        .contact-item h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--white);
            font-weight: 600;
        }
        
        .contact-item p {
            color: rgba(255,255,255,0.8);
            font-weight: 300;
            line-height: 1.6;
        }
        
        .contact-form {
            flex: 2;
            min-width: 300px;
            background-color: var(--card-bg);
            padding: 2.5rem;
            border-radius: 3px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
            border: 1px solid rgba(255,255,255,0.05);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            background-color: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 3px;
            color: var(--white);
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--accent-color);
            background-color: rgba(255,255,255,0.1);
        }
        
        .form-control::placeholder {
            color: rgba(255,255,255,0.5);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        select.form-control {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 15px;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-bg);
            color: var(--white);
            padding: 4rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
        }
        
        .footer-logo {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            font-family: 'Syncopate', sans-serif;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: linear-gradient(45deg, var(--white) 30%, var(--secondary-color) 70%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            list-style: none;
            margin: 2rem 0;
        }
        
        .footer-links li {
            margin: 0 1.5rem;
        }
        
        .footer-links a {
            color: var(--white);
            font-size: 1.8rem;
            transition: all 0.3s ease;
            opacity: 0.7;
        }
        
        .footer-links a:hover {
            color: var(--secondary-color);
            opacity: 1;
            transform: scale(1.2);
        }
        
        .footer-text {
            margin-top: 2rem;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.5);
            font-weight: 300;
        }
        
        /* Floating CTA */
        .floating-cta {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 999;
        }
        
        /* Media Queries */
        @media (max-width: 768px) {
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .header-content h1 {
                font-size: 1.5rem;
            }
            
            .header-content p {
                font-size: 1rem;
                width: 80% !important;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .nav-links {
                display: none;
            }
            
            .gallery-item:nth-child(4n),
            .gallery-item:nth-child(8n) {
                grid-column: span 1;
                grid-row: span 1;
            }
        }