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

:root {
    /* Color tokens matching Aura360fi brand - Updated to new purple/navy scheme */
    --background: #ffffff;
    --foreground: #211955;
    --card: #f8f9ff;
    --card-foreground: #211955;
    --popover: #ffffff;
    --popover-foreground: #211955;
    --primary: #8331b1;
    --primary-foreground: #ffffff;
    --secondary: #211955;
    --secondary-foreground: #ffffff;
    --muted: #f8f9ff;
    --muted-foreground: #4a5568;
    --accent: #a855f7;
    --accent-foreground: #ffffff;
    --destructive: #dc2626;
    --destructive-foreground: #ffffff;
    --border: #e2e8f0;
    --input: #ffffff;
    --ring: rgba(131, 49, 177, 0.3);
    --radius: 0.5rem;
}

.dark {
    --background: #0a0f2e;
    --foreground: #f1f5f9;
    --card: #1a1f3e;
    --card-foreground: #f1f5f9;
    --popover: #1a1f3e;
    --popover-foreground: #f1f5f9;
    --primary: #a855f7;
    --primary-foreground: #ffffff;
    --secondary: #8331b1;
    --secondary-foreground: #ffffff;
    --muted: #2d3748;
    --muted-foreground: #94a3b8;
    --accent: #a855f7;
    --accent-foreground: #ffffff;
    --destructive: #dc2626;
    --destructive-foreground: #ffffff;
    --border: #2d3748;
    --input: #1a1f3e;
    --ring: rgba(168, 85, 247, 0.3);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

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

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(248, 249, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(131, 49, 177, 0.1);
    box-shadow: 0 4px 20px rgba(131, 49, 177, 0.1);
}

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

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

.logo-img {
    width: 2.5rem;
    height: 2.5rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(131, 49, 177, 0.3);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    text-shadow: 0 0 20px rgba(131, 49, 177, 0.3);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    color: var(--foreground);
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-toggle:hover {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(131, 49, 177, 0.4);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}

.lang-btn {
    background: none;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

.lang-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 10px rgba(131, 49, 177, 0.3);
}

.hamburger {
    display: block;
    width: 1.5rem;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 1.5rem;
    height: 2px;
    background-color: currentColor;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    bottom: -6px;
}

/* Video Hero Section */
.video-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

.hero-video-carousel {
    position: absolute;
    top: 4rem; /* Start below navigation bar */
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100vh - 4rem); /* Full height minus navigation bar */
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-video.active {
    opacity: 1;
}

/* Carousel Navigation Dots */
.carousel-dots {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

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

.carousel-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.carousel-dot.active {
    background-color: #8331b1;
    border-color: white;
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(131, 49, 177, 0.6);
}

/* Carousel Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 20;
    backdrop-filter: blur(10px);
}

.carousel-arrow:hover {
    background: rgba(131, 49, 177, 0.2);
    border-color: rgba(131, 49, 177, 0.8);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(131, 49, 177, 0.4);
}

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

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}

.video-overlay {
    position: absolute;
    top: 4rem; /* Start below navigation bar */
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - 4rem); /* Full height minus navigation bar */
    background: transparent; /* Remove overlay completely */
    z-index: 5;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 2rem;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: opacity 0.5s ease;
    width: 100%;
}

/* Responsive adjustments for video hero section */
@media (min-width: 769px) {
    .hero-video-carousel {
        top: 4rem; /* Standard spacing on desktop */
        height: calc(100vh - 4rem); /* Standard height calculation */
    }
    
    .video-overlay {
        top: 4rem; /* Standard spacing on desktop */
        height: calc(100vh - 4rem); /* Standard height calculation */
    }
    
    .hero-video {
        object-fit: cover; /* Fill the entire container on desktop */
        width: 100vw; /* Force full viewport width */
        height: 100vh; /* Force full viewport height */
        left: 0; /* Align to left edge */
        top: 0; /* Align to top edge */
    }
}

@media (max-width: 768px) {
    .video-hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-video-carousel {
        top: 3.5rem; /* Slightly less spacing on mobile */
    }
    
    .video-overlay {
        top: 3.5rem; /* Slightly less spacing on mobile */
    }
    
    .carousel-arrow {
        width: 44px;
        height: 44px;
    }
    
    .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .carousel-prev {
        left: 20px;
    }
    
    .carousel-next {
        right: 20px;
    }
    
    .carousel-dots {
        bottom: 100px;
    }
}

@media (max-width: 480px) {
    .video-hero {
        height: 70vh;
        min-height: 400px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .carousel-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .carousel-prev {
        left: 15px;
    }
    
    .carousel-next {
        right: 15px;
    }
    
    .carousel-dots {
        bottom: 80px;
        gap: 8px;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
    
    .scroll-indicator {
        bottom: 1rem;
    }
    
    .scroll-arrow {
        width: 1.25rem;
        height: 2rem;
    }
}


.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 2rem;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: opacity 0.5s ease;
    width: 100%;
}

/* Hero section background handled by inline styles */


.hero-title {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(33, 25, 85, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(33, 25, 85, 0.4);
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    transform: scale(1);
    position: relative;
    overflow: hidden;
}

.hero-cta::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: left 0.5s ease;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    background-color: var(--accent);
    transform: scale(1.05);
}

/* Fade animations for text carousel */
.fade-out {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid white;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 20px rgba(131, 49, 177, 0.3);
}

.scroll-arrow::after {
    content: '';
    width: 0.25rem;
    height: 0.75rem;
    background-color: white;
    border-radius: 0.125rem;
    margin-top: 0.5rem;
    animation: pulse 2s infinite;
}

/* Services Section */
.services-section {
    padding: 5rem 1rem;
    background: linear-gradient(180deg, var(--background) 0%, rgba(131, 49, 177, 0.02) 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(131,49,177,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

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

.section-title {
    font-size: clamp(2.5rem, 6vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--foreground);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.section-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.service-card {
    background-color: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    text-align: center;
    padding: 1rem;
}

.service-card.animate-fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(131, 49, 177, 0.15), 0 0 30px rgba(131, 49, 177, 0.1);
    border: 1px solid rgba(131, 49, 177, 0.2);
}

.service-image {
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    height: 300px;
    border-radius: 20px;
    background: var(--card);
    box-shadow: 0 8px 25px rgba(131, 49, 177, 0.15);
    margin: 0 auto 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 15px;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 1.5rem;
}

.service-icon {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(131, 49, 177, 0.3);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--card-foreground);
}

.service-description {
    color: var(--muted-foreground);
}

/* Video Showcase Section */
.video-showcase {
    padding: 5rem 1rem;
    background: linear-gradient(180deg, var(--background) 0%, rgba(131, 49, 177, 0.02) 100%);
    position: relative;
}

.video-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circles" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(131,49,177,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23circles)"/></svg>');
    opacity: 0.5;
}

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

.video-item {
    transition: transform 0.3s ease;
    background-color: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(131, 49, 177, 0.1);
}

.video-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(131, 49, 177, 0.15);
}

.video-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background-color: var(--card);
}

.video-container video {
    width: 100%;
    height: 350px;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: var(--radius);
}

.video-item:hover .video-container video {
    transform: scale(1.05);
}

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

.video-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.video-info p {
    font-size: 0.95rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Portfolio Section */
.portfolio-section {
    padding: 5rem 1rem;
    background: linear-gradient(180deg, var(--muted) 0%, rgba(33, 25, 85, 0.02) 100%);
    position: relative;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(33,25,85,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

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

.portfolio-item {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background-color: var(--card);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(33, 25, 85, 0.8), rgba(131, 49, 177, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    color: white;
}

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

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-item:hover {
    box-shadow: 0 15px 35px rgba(131, 49, 177, 0.2);
    border: 1px solid rgba(131, 49, 177, 0.1);
}

.portfolio-overlay h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.portfolio-overlay p {
    font-size: 0.875rem;
    opacity: 0.8;
}


/* Footer */
.footer {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    padding: 3rem 1rem;
    color: var(--secondary-foreground);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 2rem;
    height: 2rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 15px rgba(131, 49, 177, 0.4);
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.social-link {
    color: var(--secondary-foreground);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(131, 49, 177, 0.4);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-icon {
    font-size: 1.25rem;
}

.services-list {
    list-style: none;
}

.services-list li {
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.services-list li:hover {
    color: var(--primary);
    text-shadow: 0 0 8px rgba(131, 49, 177, 0.3);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    text-align: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-rotate-360 {
    animation: rotate360 2s linear infinite;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

.animate-delay-200 {
    animation-delay: 0.2s;
}

.animate-delay-400 {
    animation-delay: 0.4s;
}

.animate-delay-600 {
    animation-delay: 0.6s;
}

.animate-delay-800 {
    animation-delay: 0.8s;
}

/* Hero content transition animations */
.hero-title,
.hero-subtitle,
.hero-cta {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-title.fade-out,
.hero-subtitle.fade-out,
.hero-cta.fade-out {
    opacity: 0;
    transform: translateY(10px);
}

.hero-title.fade-in,
.hero-subtitle.fade-in,
.hero-cta.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--card);
        border-top: 1px solid rgba(131, 49, 177, 0.1);
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        box-shadow: 0 10px 30px rgba(131, 49, 177, 0.1);
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
    }
    
    .language-switcher {
        margin-left: 0;
        margin-top: 0.5rem;
        justify-content: center;
    }

    .nav-toggle {
        display: block;
    }

    .hero-content {
        min-height: 150px;
        padding: 0 1rem;
        justify-content: center;
        padding-top: 2rem;
        text-align: center;
    }

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

    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-image {
        height: 200px;
        max-width: 100%;
    }
    
    .service-card {
        padding: 0.75rem;
    }
    
    .service-content {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .section-description {
        font-size: 1rem;
    }

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

    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .video-container video {
        height: 250px;
    }

    .video-info {
        padding: 1rem;
    }
    
    .video-showcase {
        padding: 3rem 1rem;
    }

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

@media (max-width: 1024px) and (min-width: 769px) {
    .hero-section {
        height: 90vh;
    }
    
    .hero-content {
        min-height: 160px;
        padding: 0 1rem;
    }

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

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-cta {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
    
    .scroll-indicator {
        bottom: 1.5rem;
    }
}

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

    .hero-content {
        padding: 0 0.75rem;
        min-height: 120px;
        justify-content: center;
        padding-top: 1.5rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .hero-cta {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.75rem;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-card {
        padding: 0.5rem;
    }
    
    .service-content {
        padding: 0.75rem;
    }
    
    .service-title {
        font-size: 1.125rem;
    }
    
    .service-description {
        font-size: 0.875rem;
    }
    
    .video-container video {
        height: 200px;
    }
    
    .video-showcase {
        padding: 2rem 0.5rem;
    }
    
    .video-info {
        padding: 0.75rem;
    }
    
    .video-info h3 {
        font-size: 1.125rem;
    }
    
    .video-info p {
        font-size: 0.875rem;
    }
} 