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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.7rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-img {
    height: 40px;
    width: auto;
    filter: brightness(1.1);
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff3b3f;
}

.nav-shop {
    background: linear-gradient(135deg, #ff3b3f, #ff5555);
    color: white !important;
    padding: 8px 16px;
    border-radius: 20px;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-shop:hover {
    background: linear-gradient(135deg, #ff5555, #ff3b3f);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 59, 63, 0.3);
    color: white !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff3b3f;
    transition: width 0.3s ease;
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    background: none;
    border: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    display: block;
}

.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);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: url('../assets/hero-bg-diagonal.png') center center / cover no-repeat, 
                linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #0a0a0a 100%);
    animation: heroBgPulse 6s ease-in-out infinite alternate;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-logo-container {
    margin-bottom: 3rem;
}

.hero-logo-img {
    height: 300px;
    width: auto;
    filter: drop-shadow(0 0 30px rgba(255, 59, 63, 0.4));
    animation: heroFloatSmooth 3s ease-in-out infinite,
               heroGlowContinuous 2s ease-in-out infinite;
}

.hero-logo-statico {
    height: 250px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(255, 59, 63, 0.3));
    /* NO animazioni - logo completamente statico */
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ff3b3f;
    font-weight: 300;
    margin-bottom: 2rem;
    font-family: 'Barlow', sans-serif;
}

.hero-description {
    margin-bottom: 3rem;
}

.hero-description p {
    font-size: 1.2rem;
    color: #cccccc;
    font-weight: 300;
    animation: textGlowSmooth 3s ease-in-out infinite;
}

.hero-cta {
    margin-top: 2rem;
}

.hero-cta .btn-primary {
    animation: btnPulse 1.5s ease-in-out infinite;
}

/* Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.bg-element {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 59, 63, 0.25), rgba(255, 59, 63, 0.1));
    border-radius: 0;
    animation: diagonalFlowSmooth 5s linear infinite;
    transform: skew(-20deg);
    border: 1px solid rgba(255, 59, 63, 0.4);
    box-shadow: 0 0 20px rgba(255, 59, 63, 0.2);
}

.bg-element-1 {
    width: 600px;
    height: 100px;
    top: 15%;
    left: -200px;
    animation-delay: 0s;
}

.bg-element-2 {
    width: 400px;
    height: 80px;
    top: 45%;
    right: -150px;
    animation-delay: 1s;
    background: linear-gradient(135deg, rgba(255, 59, 63, 0.2), rgba(255, 59, 63, 0.08));
}

.bg-element-3 {
    width: 700px;
    height: 120px;
    bottom: 25%;
    left: -250px;
    animation-delay: 2s;
}

.bg-element-4 {
    width: 300px;
    height: 60px;
    top: 70%;
    right: -100px;
    animation-delay: 3s;
    background: linear-gradient(135deg, rgba(255, 59, 63, 0.18), rgba(255, 59, 63, 0.06));
}

.bg-element-5 {
    width: 500px;
    height: 90px;
    top: 30%;
    left: -180px;
    animation-delay: 4s;
    background: linear-gradient(135deg, rgba(255, 59, 63, 0.12), rgba(255, 59, 63, 0.04));
}

/* Hero Parent Brand */
.hero-parent-brand {
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 10;
}

.hero-parent-brand-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 300;
}

.hero-parent-brand-link {
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.hero-parent-brand-link:hover {
    opacity: 1;
    transform: scale(1.05);
}

.hero-parent-brand-logo {
    height: 30px;
    width: auto;
    filter: brightness(1.1);
}

/* Hero CTA */
.hero-cta {
    margin-top: 2rem;
    z-index: 10;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ff3b3f, #ff5555);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 59, 63, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 59, 63, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 30px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #0a0a0a;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    color: #ffffff;
    margin-bottom: 1rem;
}

.section-line {
    width: 60px;
    height: 3px;
    background: #ff3b3f;
    margin: 0 auto;
}

/* About Section */
.about {
    background: #111111;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 59, 63, 0.05) 50%, transparent 100%);
    transform: skew(-20deg) translateX(-50%);
    animation: sectionDiagonal 15s ease-in-out infinite;
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text-container {
    color: #cccccc;
}

.about-highlight {
    margin-bottom: 1rem;
}

.highlight-text {
    background: linear-gradient(135deg, #ff3b3f, #ff6b6f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.parent-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.parent-brand-text {
    font-size: 0.9rem;
    color: #999999;
    font-weight: 300;
    font-style: italic;
}

.parent-brand-link {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.parent-brand-logo {
    height: 20px;
    width: auto;
    filter: opacity(0.7);
    transition: all 0.3s ease;
    cursor: pointer;
}

.parent-brand-link:hover .parent-brand-logo {
    filter: opacity(1);
    transform: scale(1.1);
}

.parent-brand:hover .parent-brand-logo {
    filter: opacity(1);
    transform: scale(1.05);
}

.about-title {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-title-logo {
    margin: 1rem 0 1.5rem 0;
    text-align: left;
}

.about-logo {
    height: 80px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #cccccc;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 59, 63, 0.1);
    border-left: 3px solid #ff3b3f;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 59, 63, 0.15);
    transform: translateX(10px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: #ff3b3f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
}

.feature-item span {
    color: #ffffff;
    font-weight: 500;
}

.about-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.about-visual .bg-element {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 59, 63, 0.25), rgba(255, 59, 63, 0.1));
    border-radius: 0;
    animation: diagonalFlowSmooth 5s linear infinite;
    transform: skew(-20deg);
    border: 1px solid rgba(255, 59, 63, 0.4);
    box-shadow: 0 0 20px rgba(255, 59, 63, 0.2);
}

.about-visual .bg-element-1 {
    width: 300px;
    height: 60px;
    top: 10%;
    left: -100px;
    animation-delay: 0s;
}

.about-visual .bg-element-2 {
    width: 250px;
    height: 50px;
    top: 40%;
    right: -80px;
    animation-delay: 1s;
    background: linear-gradient(135deg, rgba(255, 59, 63, 0.2), rgba(255, 59, 63, 0.08));
}

.about-visual .bg-element-3 {
    width: 350px;
    height: 70px;
    bottom: 30%;
    left: -120px;
    animation-delay: 2s;
}

.about-visual .bg-element-4 {
    width: 200px;
    height: 40px;
    top: 70%;
    right: -60px;
    animation-delay: 3s;
    background: linear-gradient(135deg, rgba(255, 59, 63, 0.18), rgba(255, 59, 63, 0.06));
}

.about-visual .bg-element-5 {
    width: 280px;
    height: 55px;
    top: 25%;
    left: -90px;
    animation-delay: 4s;
    background: linear-gradient(135deg, rgba(255, 59, 63, 0.12), rgba(255, 59, 63, 0.04));
}

/* Services Section */
.services {
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.services::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, transparent 0%, rgba(255, 59, 63, 0.08) 30%, transparent 100%);
    transform: skew(20deg) translateX(50%);
    animation: sectionDiagonalReverse 18s ease-in-out infinite;
    z-index: 1;
}

.services .container {
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        max-width: 1200px;
    }
}

.service-card {
    background: #111111;
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #ff3b3f;
    box-shadow: 0 10px 30px rgba(255, 59, 63, 0.2);
}

.service-icon {
    font-size: 3rem;
    color: #ff3b3f;
    margin-bottom: 1.5rem;
}

.service-card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.service-description {
    margin-bottom: 2rem;
    color: #cccccc;
    line-height: 1.6;
    flex-grow: 1;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: rgba(255, 59, 63, 0.2);
    color: #ff3b3f;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}



/* Contact Section */
.contact {
    background: #0a0a0a;
}

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

.contact-subtitle {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.contact-description {
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #cccccc;
}

.contact-item i {
    color: #ff3b3f;
    font-size: 1.2rem;
    width: 20px;
}

.contact-item a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    z-index: 10;
    position: relative;
}

.contact-item a:hover {
    color: #ff3b3f;
    text-decoration: underline;
}

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

/* Footer */
.footer {
    background: #111111;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo-img {
    height: 45px;
    width: auto;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ff3b3f;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #666666;
    font-size: 0.9rem;
    margin-top: 15px;
}

.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.legal-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #ff3b3f;
    text-decoration: underline;
}

.cookie-preferences-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
}

.legal-separator {
    color: #666666;
    font-size: 0.8rem;
}

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

@keyframes heroFloat {
    from {
        transform: translateY(0px) scale(1);
        filter: brightness(1);
    }
    to {
        transform: translateY(-10px) scale(1.02);
        filter: brightness(1.1);
    }
}

@keyframes heroFloatSmooth {
    0% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-15px) rotate(1deg) scale(1.03);
    }
    50% {
        transform: translateY(-8px) rotate(0deg) scale(1.05);
    }
    75% {
        transform: translateY(-20px) rotate(-1deg) scale(1.02);
    }
    100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
}

@keyframes heroGlowContinuous {
    0% {
        filter: drop-shadow(0 0 25px rgba(255, 59, 63, 0.5));
    }
    33% {
        filter: drop-shadow(0 0 40px rgba(255, 59, 63, 0.7)) drop-shadow(0 0 60px rgba(255, 59, 63, 0.2));
    }
    66% {
        filter: drop-shadow(0 0 35px rgba(255, 59, 63, 0.6)) drop-shadow(0 0 50px rgba(255, 59, 63, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 25px rgba(255, 59, 63, 0.5));
    }
}

@keyframes diagonalFlowSmooth {
    0% {
        transform: skew(-20deg) translateX(-200px) translateY(0px);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    50% {
        transform: skew(-20deg) translateX(100vw) translateY(-20px);
        opacity: 0.7;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: skew(-20deg) translateX(200vw) translateY(0px);
        opacity: 0;
    }
}

@keyframes btnPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 59, 63, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(255, 59, 63, 0.6), 0 0 50px rgba(255, 59, 63, 0.2);
    }
}

@keyframes heroBgPulse {
    0%, 100% {
        background-size: 100% 100%;
        filter: brightness(1);
    }
    50% {
        background-size: 110% 110%;
        filter: brightness(1.1);
    }
}

@keyframes textGlowSmooth {
    0% {
        text-shadow: 0 0 8px rgba(255, 59, 63, 0.3);
        color: #cccccc;
    }
    33% {
        text-shadow: 0 0 15px rgba(255, 59, 63, 0.5), 0 0 25px rgba(255, 59, 63, 0.2);
        color: #eeeeee;
    }
    66% {
        text-shadow: 0 0 12px rgba(255, 59, 63, 0.4), 0 0 20px rgba(255, 59, 63, 0.3);
        color: #ffffff;
    }
    100% {
        text-shadow: 0 0 8px rgba(255, 59, 63, 0.3);
        color: #cccccc;
    }
}

@keyframes shapeFloat1 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes shapeFloat2 {
    0%, 100% {
        transform: rotate(45deg) translateY(0px);
    }
    50% {
        transform: rotate(50deg) translateY(-15px);
    }
}

@keyframes shapeFloat3 {
    0%, 100% {
        transform: translateX(-50%) translateY(0px) scale(1);
    }
    50% {
        transform: translateX(-50%) translateY(-10px) scale(1.1);
    }
}

@keyframes sectionDiagonal {
    0%, 100% {
        transform: skew(-20deg) translateX(-50%);
        opacity: 0.3;
    }
    50% {
        transform: skew(-20deg) translateX(20%);
        opacity: 0.6;
    }
}

@keyframes sectionDiagonalReverse {
    0%, 100% {
        transform: skew(20deg) translateX(50%);
        opacity: 0.3;
    }
    50% {
        transform: skew(20deg) translateX(-20%);
        opacity: 0.6;
    }
}





/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 2rem;
        padding-top: 3rem;
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-shop {
        margin-left: 0;
        margin-top: 10px;
    }

    /* Hero Mobile Optimizations */
    .hero {
        min-height: 100vh;
        padding: 80px 0 40px;
        background-size: cover;
        background-position: center;
    }

    .hero-container {
        padding: 0 15px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-logo-container {
        margin-bottom: 2rem;
    }

    .hero-logo-img {
        height: 180px;
        max-width: 90%;
    }

    .hero-logo-statico {
        height: 160px;
        max-width: 85%;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

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

    .hero-description {
        margin-bottom: 2rem;
    }

    .hero-description p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-parent-brand {
        margin: 1rem 0;
        flex-wrap: wrap;
    }

    .hero-parent-brand-text {
        font-size: 0.8rem;
    }

    .hero-parent-brand-logo {
        height: 25px;
    }

    .hero-cta {
        margin-top: 1.5rem;
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 25px;
        font-size: 1rem;
        margin-left: 0;
    }

    /* Hero animations on mobile - keep them active */
    .hero-logo-img {
        animation: heroFloatSmooth 3s ease-in-out infinite,
                   heroGlowContinuous 2s ease-in-out infinite;
    }

    .about-main {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 0 15px;
    }

    .about-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .about-visual {
        height: 250px;
        margin: 0 auto;
    }

    .visual-elements {
        width: 200px;
        height: 200px;
    }

    .about-logo-img {
        height: 120px;
        max-width: 90%;
    }

    .about-parent-brand {
        margin: 1rem 0;
    }

    .about-parent-brand-text {
        font-size: 0.85rem;
    }

    .about-parent-brand-logo {
        height: 25px;
    }

    .about-description {
        margin-bottom: 2rem;
    }

    .about-description p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .contact-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
    }

    .service-card {
        min-height: auto;
        padding: 35px 25px;
    }

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

    section {
        padding: 40px 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .container {
        padding: 0 15px;
    }
}

/* Extra small devices (phones in portrait mode) */
@media (max-width: 480px) {
    .hero-logo-img {
        height: 140px;
        max-width: 80%;
    }

    .hero-logo-statico {
        height: 120px;
        max-width: 75%;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
    }

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

    .hero-description p {
        font-size: 0.9rem;
    }

    .hero-parent-brand-text {
        font-size: 0.75rem;
    }

    .hero-parent-brand-logo {
        height: 20px;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
        max-width: 250px;
    }

    .nav-logo .logo-img {
        height: 35px;
    }

    .navbar {
        padding: 0.5rem 0;
    }

    .nav-container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 10px;
    }

    section {
        padding: 30px 0;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-visual {
        height: 200px;
    }

    .visual-elements {
        width: 160px;
        height: 160px;
    }

    .about-logo-img {
        height: 100px;
        max-width: 85%;
    }

    .about-parent-brand-text {
        font-size: 0.75rem;
    }

    .about-parent-brand-logo {
        height: 20px;
    }

    .about-description p {
        font-size: 0.9rem;
    }

    h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-logo-img {
        height: 150px;
    }

    .hero-description p {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    h2 {
        font-size: 1.8rem;
    }
}

/* Cookie Banner & Management */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-top: 2px solid #ff3b3f;
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
}

.cookie-text p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #ff3b3f, #ff5555);
    color: white;
}

.cookie-btn-accept:hover {
    background: linear-gradient(135deg, #ff5555, #ff3b3f);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 59, 63, 0.3);
}

.cookie-btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cookie-btn-reject:hover {
    background: #ffffff;
    color: #0a0a0a;
}

.cookie-btn-customize {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-customize:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Cookie Preferences Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
}

.cookie-modal-content {
    position: relative;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 1px solid rgba(255, 59, 63, 0.3);
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 10003;
    backdrop-filter: none;
    filter: none;
    opacity: 1;
}

.cookie-modal-header {
    padding: 25px 30px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: none;
    filter: none;
    opacity: 1;
}

.cookie-modal-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin: 0;
    font-family: 'Orbitron', sans-serif;
}

.cookie-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-close:hover {
    background: rgba(255, 59, 63, 0.2);
    color: #ff3b3f;
}

.cookie-modal-body {
    padding: 20px 30px;
    backdrop-filter: none;
    filter: none;
    opacity: 1;
}

.cookie-modal-body p {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cookie-toggles {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-toggle-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-toggle-info h4 {
    color: #ffffff;
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.cookie-toggle-info p {
    color: #cccccc;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Toggle Switch */
.toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #555555;
    transition: 0.3s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.toggle input:checked + .toggle-slider {
    background-color: #ff3b3f;
}

.toggle input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.toggle input:disabled + .toggle-slider {
    background-color: #ff3b3f;
    opacity: 0.7;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 15px 30px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    backdrop-filter: none;
    filter: none;
    opacity: 1;
}

.cookie-btn-primary {
    background: linear-gradient(135deg, #ff3b3f, #ff5555);
    color: white;
}

.cookie-btn-primary:hover {
    background: linear-gradient(135deg, #ff5555, #ff3b3f);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 59, 63, 0.3);
}

.cookie-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-secondary:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Responsive for Cookies */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .cookie-modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 20px;
    }
    
    .cookie-toggle-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
}
