:root {
    --palatinate: #7d0082;
    --mauveine: #d000d1;
    --pink-lavender: #f0c8f5;
    --rebecca-purple: #8a4fb0;
    --beige: #fff8e1;
    
    --vibrant-purple: #b300ff;
    --electric-pink: #ff00ff;
    --neon-purple: #9d00ff;
    --bright-lavender: #dda0ff;
    
    --gradient-primary: linear-gradient(135deg, var(--palatinate), var(--vibrant-purple));
    --gradient-secondary: linear-gradient(45deg, var(--rebecca-purple), var(--bright-lavender));
    --gradient-vibrant: linear-gradient(45deg, var(--electric-pink), var(--neon-purple));
    --gradient-glow: linear-gradient(135deg, var(--mauveine), var(--pink-lavender));
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header.scrolled {
    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);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 8px 40px;
}

.header.scrolled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(125, 0, 130, 0.05) 100%);
    z-index: -1;
    border-radius: 0 0 20px 20px;
}

.logo img {
    height: 80px;
    transition: all 0.3s ease;
}

.header.scrolled .logo img {
    height: 60px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Dynamic hamburger color based on background */
.header.on-white-bg .hamburger span {
    background: var(--palatinate);
}

.header.scrolled .hamburger span {
    background: var(--palatinate);
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

.nav-link {
    font-family: 'Montserrat', sans-serif;
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1rem;
}

.nav-link:hover {
    color: var(--pink-lavender);
    transform: translateY(-2px);
}

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

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

/* Remove these conflicting rules for mobile menu */

.header.on-white-bg .nav-link::after {
    background: var(--mauveine);
}

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: linear-gradient(rgba(125, 0, 130, 0.3), rgba(157, 0, 255, 0.5)), 
                url('resources/hero.jpg') center/cover;
    will-change: transform;
    z-index: -1;
}

.hero-content {
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 5.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: white;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-transform: uppercase;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.5));
    }
    to {
        filter: drop-shadow(0 0 30px rgba(157, 0, 255, 0.8));
    }
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 0;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.4;
    max-width: 700px;
    margin: 0 auto;
}

.cta-button {
    font-family: 'Montserrat', sans-serif;
    background: var(--gradient-vibrant);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 255, 0.6);
    background: var(--gradient-glow);
    border-color: rgba(255, 255, 255, 0.8);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin: 10px auto;
}

.preview-cards {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--beige), var(--pink-lavender));
    overflow: hidden;
}

.cards-container {
    display: flex;
    gap: 30px;
    padding: 0 50px;
    transform: translateX(100%);
    transition: transform 0.8s ease-out;
}

.cards-container.animate {
    transform: translateX(0);
}

.preview-card {
    min-width: 350px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(125, 0, 130, 0.2);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.preview-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(255, 0, 255, 0.3);
    border-color: var(--mauveine);
}

.preview-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 600;
}

.about {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(240, 200, 245, 0.1) 25%, 
        rgba(255, 255, 255, 1) 50%, 
        rgba(238, 235, 208, 0.15) 75%, 
        rgba(255, 255, 255, 1) 100%);
}

.about h2 {
    text-align: center;
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 50px;
    font-weight: 700;
}

.about p {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #666;
}

.about-intro, .about-vision {
    margin-bottom: 50px;
}

.about-intro h3, .about-vision h3 {
    color: var(--palatinate);
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.about-intro p, .about-vision p {
    text-align: left;
    max-width: 900px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.source {
    font-size: 0.9rem !important;
    color: #999 !important;
    font-style: italic;
    text-align: center !important;
}

.purple-quote {
    background: linear-gradient(135deg, var(--pink-lavender), var(--beige));
    border-left: 5px solid var(--mauveine);
    padding: 25px;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(163, 0, 164, 0.1);
    max-width: 850px;
}

.purple-quote p {
    margin: 0 !important;
    font-style: italic;
    color: var(--rebecca-purple);
    font-size: 1.1rem;
    text-align: left !important;
}

.who-we-are {
    margin: 60px auto;
    max-width: 900px;
}

.who-we-are h3 {
    color: var(--palatinate);
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.company-details {
    display: grid;
    gap: 40px;
}

.detail-item {
    background: linear-gradient(135deg, rgba(240, 200, 245, 0.1), rgba(238, 235, 208, 0.1));
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--mauveine);
    box-shadow: 0 8px 20px rgba(163, 0, 164, 0.08);
}

.detail-item h4 {
    color: var(--vibrant-purple);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.detail-item p {
    text-align: left !important;
    margin: 0 0 15px 0 !important;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.company-segments, .diversified-portfolio {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.company-segments li, .diversified-portfolio li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
    color: var(--rebecca-purple);
}

.company-segments li::before, .diversified-portfolio li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--mauveine);
    font-size: 1.2rem;
}

.mission-vision {
    margin: 60px auto;
    max-width: 1000px;
}

.mission-vision h3 {
    color: var(--palatinate);
    font-size: 1.8rem;
    margin-bottom: 40px;
    text-align: center;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mission-card, .vision-card {
    background: linear-gradient(135deg, rgba(240, 200, 245, 0.15), rgba(255, 255, 255, 0.9));
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(163, 0, 164, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before, .vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 1;
}

.mission-card::before {
    background: linear-gradient(90deg, var(--palatinate), var(--mauveine));
}

.vision-card::before {
    background: linear-gradient(90deg, var(--mauveine), var(--vibrant-purple));
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(163, 0, 164, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.mission-card h4, .vision-card h4 {
    color: var(--vibrant-purple);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.mission-card p, .vision-card p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    text-align: left;
}

@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mission-card, .vision-card {
        padding: 30px 25px;
    }
}

.our-network {
    padding: 100px 0;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(228, 183, 229, 0.08) 30%, 
        rgba(255, 255, 255, 1) 60%, 
        rgba(208, 0, 209, 0.05) 90%, 
        rgba(255, 255, 255, 1) 100%);
}

.clients {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(240, 200, 245, 0.1) 25%, 
        rgba(255, 255, 255, 1) 50%, 
        rgba(238, 235, 208, 0.15) 75%, 
        rgba(255, 255, 255, 1) 100%);
}

.clients h2 {
    text-align: center;
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    font-weight: 700;
}

.clients > .container > p {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #666;
}

.clients-image-container {
    text-align: center;
    margin: 60px 0;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(163, 0, 164, 0.1);
}

.clients-image {
    max-width: 80%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.our-network h2 {
    text-align: center;
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    font-weight: 700;
}

.our-network > .container > p {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #666;
}

.network-image-container {
    text-align: center;
    margin: 60px 0;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(163, 0, 164, 0.1);
}

.network-map {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.network-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 600px;
    margin: 60px auto 0;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, var(--gradient-secondary));
    border-radius: 20px;
    color: white;
    box-shadow: 0 15px 30px rgba(163, 0, 164, 0.2);
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .network-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 300px;
    }
    
    .network-image-container {
        padding: 20px;
        margin: 40px 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

.about-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 60px 0;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-content h3 {
    font-size: 2rem;
    background: var(--gradient-vibrant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
    text-align: left;
}

.about-highlights {
    list-style: none;
    padding: 0;
}

.about-highlights li {
    padding: 8px 0;
    color: var(--vibrant-purple);
    font-weight: 600;
    position: relative;
    padding-left: 25px;
}

.about-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--electric-pink);
    font-weight: bold;
    font-size: 1.2rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.feature {
    text-align: center;
    padding: 40px;
    border-radius: 25px;
    background: var(--gradient-vibrant);
    color: white;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(255, 0, 255, 0.3);
    will-change: transform;
}

.feature::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    will-change: transform, opacity;
}

.feature:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.feature:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(255, 0, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.8);
}

.feature:nth-child(1) {
    background: linear-gradient(135deg, var(--electric-pink), var(--vibrant-purple));
}

.feature:nth-child(2) {
    background: linear-gradient(135deg, var(--neon-purple), var(--mauveine));
}

.feature:nth-child(3) {
    background: linear-gradient(135deg, var(--vibrant-purple), var(--electric-pink));
}

.feature-icon {
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.feature-icon img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    will-change: transform;
}

.feature:hover .feature-icon img {
    transform: scale(1.08);
    border-color: white;
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
}

.feature h4 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.feature p {
    position: relative;
    z-index: 2;
    font-size: 1rem;
    line-height: 1.6;
    color: white;
    opacity: 1;
    font-weight: 400;
}

.events {
    padding: 100px 0;
    background: white;
}

.events h2 {
    text-align: center;
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 60px;
    font-weight: 700;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.event-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(125, 0, 130, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(208, 208, 208, 0.3);
    position: relative;
}

.event-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 1;
}

.event-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(163, 0, 164, 0.25);
    border-color: var(--mauveine);
}

.event-item:nth-child(1)::before {
    background: linear-gradient(90deg, var(--palatinate), var(--mauveine));
}

.event-item:nth-child(2)::before {
    background: linear-gradient(90deg, var(--mauveine), var(--rebecca-purple));
}

.event-item:nth-child(3)::before {
    background: linear-gradient(90deg, var(--rebecca-purple), var(--palatinate));
}

.event-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.event-item h3 {
    padding: 20px 25px 10px;
    color: var(--palatinate);
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.event-item p {
    padding: 0 25px 25px;
    color: #666;
    position: relative;
    z-index: 2;
}

.gallery {
    padding: 100px 0;
    background: linear-gradient(45deg, white, var(--pink-lavender));
}

.gallery h2 {
    text-align: center;
    font-size: 3rem;
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    font-weight: 700;
}

.gallery > .container > p {
    text-align: center;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 60px;
    color: #666;
}

.slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(163, 0, 164, 0.2);
}

.slider-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider-track {
    display: flex;
    width: 5400%; /* 54 slides × 100% */
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 1.85185%; /* 100% / 54 slides */
    flex-shrink: 0;
    position: relative;
}

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

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--palatinate);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 30px rgba(163, 0, 164, 0.3);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-btn span {
    font-size: 24px;
    font-weight: bold;
    color: var(--palatinate);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px 0;
    background: rgba(240, 200, 245, 0.1);
    overflow-x: auto;
    max-width: 100%;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(125, 0, 130, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

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

.dot:hover {
    background: var(--mauveine);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .header {
        padding: 10px 20px;
    }
    
    .header.scrolled {
        padding: 5px 20px;
    }
    
    .logo img {
        height: 70px;
    }
    
    .header.scrolled .logo img {
        height: 55px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 90%;
        max-width: 400px;
        height: 100vh;
        background: white;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        border-radius: 25px 0 0 25px;
        overflow: hidden;
    }
    
    .nav::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 120px;
        height: 100%;
        background: linear-gradient(180deg, 
            var(--palatinate) 0%, 
            var(--mauveine) 30%, 
            var(--vibrant-purple) 60%, 
            var(--electric-pink) 100%);
        z-index: -1;
    }
    
    .nav::after {
        content: '';
        position: absolute;
        top: 20%;
        right: 20px;
        width: 80px;
        height: 200px;
        background: linear-gradient(45deg, 
            rgba(255, 255, 255, 0.1) 0%, 
            rgba(255, 255, 255, 0.05) 50%, 
            transparent 100%);
        border-radius: 20px;
        transform: rotate(-15deg);
        z-index: -1;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 80px 40px 40px 40px;
        margin: 0;
        height: 100%;
        position: relative;
    }
    
    .nav-link {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.2rem;
        font-weight: 500;
        color: #2c2c2c !important;
        text-decoration: none;
        padding: 20px 0;
        border-bottom: 1px solid #e8e8e8;
        width: 100%;
        transition: all 0.3s ease;
        position: relative;
        letter-spacing: 0.5px;
        display: flex;
        align-items: center;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link:hover {
        color: var(--palatinate) !important;
        transform: translateX(10px);
    }
    
    .nav-link:active {
        color: var(--mauveine) !important;
    }
    
    .nav-link::before {
        content: '';
        width: 6px;
        height: 6px;
        background: var(--palatinate);
        border-radius: 50%;
        margin-right: 15px;
        opacity: 0;
        transform: scale(0);
        transition: all 0.3s ease;
    }
    
    .nav-link:hover::before {
        opacity: 1;
        transform: scale(1);
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 19px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--palatinate), var(--mauveine));
        transition: width 0.3s ease;
    }
    
    .nav-link:hover::after {
        width: 80px;
    }
    
    /* Close button styling */
    .hamburger.active {
        position: fixed;
        top: 30px;
        right: 30px;
        z-index: 1001;
        background: rgba(255, 255, 255, 0.95);
        padding: 15px;
        border-radius: 50%;
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 25px rgba(125, 0, 130, 0.15);
        border: 1px solid rgba(125, 0, 130, 0.1);
    }
    
    .hamburger.active span {
        background: var(--palatinate);
        width: 20px;
    }
    
    .hamburger.active:hover {
        background: var(--palatinate);
        transform: scale(1.05);
    }
    
    .hamburger.active:hover span {
        background: white;
    }
    
    .slider-container {
        max-width: 100%;
        margin: 0 20px;
    }
    
    .slider-wrapper {
        height: 450px;
    }
    
    .slider-btn {
        width: 60px;
        height: 60px;
    }
    
    .slider-btn span {
        font-size: 24px;
    }
    
    .prev-btn {
        left: -30px;
    }
    
    .next-btn {
        right: -30px;
    }
    
    .slider-dots {
        padding: 25px 15px;
        gap: 6px;
    }
    
    .dot {
        width: 6px;
        height: 6px;
    }
    
    .dot.active {
        transform: scale(1.8);
    }
    
    .dot:hover {
        transform: scale(1.5);
    }
}

.contact {
    padding: 100px 0;
    background: var(--gradient-vibrant);
    color: white;
}

.contact h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-details p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form button {
    padding: 15px;
    background: var(--beige);
    color: var(--vibrant-purple);
    border: 2px solid var(--bright-lavender);
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-3px);
    background: var(--bright-lavender);
    color: var(--palatinate);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.contact-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-status {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-status.success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4CAF50;
    display: block;
}

.form-status.error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #f44336;
    display: block;
}

.footer {
    background: linear-gradient(135deg, var(--palatinate), var(--neon-purple));
    color: white;
    text-align: center;
    padding: 30px 0;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }
    
    .nav-list {
        gap: 15px;
    }
    
    .nav-link {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .hero {
        height: 100svh;
        min-height: 100vh;
        padding: 20px 0;
    }
    
    .hero-content {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
        margin-bottom: 20px;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        max-width: 95%;
    }
    
    .cards-container {
        padding: 0 20px;
    }
    
    .preview-card {
        min-width: 280px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-content p {
        text-align: center;
    }
    
    .about h2,
    .events h2,
    .gallery h2,
    .contact h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin: 0 auto;
        text-align: center;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .scroll-indicator {
        bottom: 20px;
        font-size: 0.9rem;
    }
}