:root{
--primary: #ff0000;
--secondary: #0066ff;
--dark: #0a0a0a;
--light: #ffffff;
--gray: #ffffff;
--text: #333333;
--gradient: linear-gradient(135deg, #0066ff, #00ccff);
--gradient-alt: linear-gradient(135deg, #ff0066, #ff6600);
}

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


*{
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}


/* Performance optimizations */
.floating-cards,
.hero-visual,
.portfolio-item,
.service-card,
.meteor,
.meteor-core,
.star{
will-change: transform;
transform: translateZ(0); /* Force hardware acceleration */
}

/* Optimize animations for better performance */
@keyframes meteorFall {
    0% { 
        transform: translateX(var(--startX)) translateY(var(--startY)) 
                   rotate(var(--angle)) rotateZ(var(--initialRotation)); 
        opacity: 0; 
    }
    10% { 
        transform: translateX(calc(var(--startX) + ((var(--endX) - var(--startX)) * 0.1))) 
                   translateY(calc(var(--startY) + ((var(--endY) - var(--startY)) * 0.1))) 
                   rotate(var(--angle)) rotateZ(calc(var(--initialRotation) + ((var(--finalRotation) - var(--initialRotation)) * 0.1))); 
        opacity: 1; 
    }
    90% { 
        transform: translateX(calc(var(--startX) + ((var(--endX) - var(--startX)) * 0.9))) 
                   translateY(calc(var(--startY) + ((var(--endY) - var(--startY)) * 0.9))) 
                   rotate(var(--angle)) rotateZ(calc(var(--initialRotation) + ((var(--finalRotation) - var(--initialRotation)) * 0.9))); 
        opacity: 1; 
    }
    100% { 
        transform: translateX(var(--endX)) translateY(var(--endY)) 
                   rotate(var(--angle)) rotateZ(var(--finalRotation)); 
        opacity: 0; 
    }
}

/* Reduce paint operations */
.meteor {
    contain: layout style paint;
    backface-visibility: hidden;
}

.star {
    contain: layout style paint;
    will-change: opacity;
}



@media (prefers-reduced-motion: reduce){
*,
*::before,
*::after{
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
}


@media (max-width: 768px){
.float-card{
animation: none !important;
transform: none !important;
}

.floating-cards{
animation: none !important;
}

.containerPulse{
animation: none !important;
}
}


@media (max-width: 480px){
.hero-text h1,
.hero-text p,
.hero-buttons{
animation: none !important;
opacity: 1 !important;
transform: none !important;
}

.service-card,
.testimonial-card,
.portfolio-item{
animation: none !important;
opacity: 1 !important;
transform: none !important;
}

.testimonials{
padding: 2rem 3%;
}

.testimonial-card{
min-width: auto;
max-width: none;
width: 100%;
padding: 1.25rem;
border-radius: 15px;
}

.testimonial-text{
font-size: 0.9rem;
line-height: 1.5;
}

.testimonial-text::before{
font-size: 2rem;
top: -0.6rem;
left: -0.2rem;
}

.testimonial-author{
font-size: 0.8rem;
}

.testimonial-author::before{
width: 25px;
margin-bottom: 0.4rem;
}

.testimonial-controls{
margin-top: 1rem;
gap: 0.8rem;
}

.testimonial-nav{
width: 30px;
height: 30px;
font-size: 0.7rem;
}

.indicator{
width: 6px;
height: 6px;
}

.testimonial-rating{
font-size: 0.7rem;
}
}

body{
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--text);
overflow-x: hidden;
background: #000000;
position: relative;
}


.space-container{
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: #000000;
background-size: 100% 100%;
z-index: -10;
pointer-events: none;
}

.stars{
position: absolute;
width: 100%;
height: 100%;
pointer-events: none;
}

.meteors{
position: absolute;
width: 100%;
height: 100%;
pointer-events: none;
z-index: -5;
}

.star{
position: absolute;
background: white;
border-radius: 50%;
opacity: 0.8;
animation: twinkle 6s infinite ease-in-out;
}

.star.small{
width: 2px;
height: 2px;
}

.star.medium{
width: 3px;
height: 3px;
box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

.star.large{
width: 4px;
height: 4px;
box-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
}

@keyframes twinkle{
0%{opacity: 0.3; transform: scale(1)}
25%{opacity: 0.6; transform: scale(1.05)}
50%{opacity: 1; transform: scale(1.1)}
75%{opacity: 0.6; transform: scale(1.05)}
100%{opacity: 0.3; transform: scale(1)}
}

.nebula{
position: absolute;
border-radius: 50%;
filter: blur(20px);
opacity: 0.3;
animation: float 20s infinite ease-in-out;
}

.nebula1{
width: 200px;
height: 200px;
background: radial-gradient(circle, rgba(255, 100, 150, 0.3) 0%, transparent 70%);
top: 20%;
left: 10%;
animation-delay: 0s;
}

.nebula2{
width: 300px;
height: 300px;
background: radial-gradient(circle, rgba(100, 150, 255, 0.2) 0%, transparent 70%);
top: 60%;
right: 15%;
animation-delay: -7s;
}

.nebula3{
width: 150px;
height: 150px;
background: radial-gradient(circle, rgba(150, 255, 100, 0.25) 0%, transparent 70%);
top: 10%;
right: 30%;
animation-delay: -14s;
}

@keyframes float{
0%, 100%{transform: translateY(0) rotate(0deg)}
25%{transform: translateY(-20px) rotate(90deg)}
50%{transform: translateY(10px) rotate(180deg)}
75%{transform: translateY(-10px) rotate(270deg)}
}


.meteor{
position: absolute;
width: 6px;
height: 12px;
background: transparent;
border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
z-index: 0;
pointer-events: none;
transform: rotate(45deg);
}


.meteor-core {
    position: relative;
    width: 4px;
    height: 8px;
    background: radial-gradient(ellipse at center, #ffffff 0%, #ff6b35 30%, #ff4500 60%, #8b0000 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: 
        0 0 4px #ffffff,
        0 0 8px #ff6b35,
        0 0 12px #ff4500,
        0 0 16px #ff4500,
        0 0 20px #8b0000,
        inset 0 0 4px rgba(255, 255, 255, 0.8);
    z-index: 1;
    transform: rotate(45deg);
    animation: meteorCorePulse 2s ease-in-out infinite;
}

@keyframes meteorCorePulse {
    0% {
        transform: rotate(45deg) scale(1);
        box-shadow: 
            0 0 4px #ffffff,
            0 0 8px #ff6b35,
            0 0 12px #ff4500,
            0 0 16px #ff4500,
            0 0 20px #8b0000;
    }
    50% {
        transform: rotate(45deg) scale(1.1);
        box-shadow: 
            0 0 6px #ffffff,
            0 0 12px #ff6b35,
            0 0 18px #ff4500,
            0 0 24px #ff4500,
            0 0 30px #8b0000;
    }
    100% {
        transform: rotate(45deg) scale(1);
        box-shadow: 
            0 0 4px #ffffff,
            0 0 8px #ff6b35,
            0 0 12px #ff4500,
            0 0 16px #ff4500,
            0 0 20px #8b0000;
    }
}

/* Desktop meteor trails - More realistic */
.meteor::before{
content: '';
position: absolute;
top: 50%;
left: -80px;
width: 80px;
height: 3px;
background: linear-gradient(to right, 
    transparent 0%, 
    rgba(255, 107, 53, 0.1) 20%,
    rgba(255, 69, 0, 0.3) 40%,
    rgba(255, 255, 255, 0.6) 60%,
    rgba(255, 255, 255, 0.8) 80%,
    rgba(255, 255, 255, 0.9) 100%
);
transform: translateY(-50%) rotate(var(--angle));
transform-origin: right center;
z-index: 0;
border-radius: 2px;
box-shadow: 0 0 4px rgba(255, 69, 0, 0.5);
animation: trailFlicker 2s ease-out infinite;
}

.meteor::after{
content: '';
position: absolute;
top: 50%;
left: -50px;
width: 50px;
height: 2px;
background: linear-gradient(to right, 
    transparent 0%, 
    rgba(255, 69, 0, 0.2) 30%,
    rgba(255, 255, 255, 0.4) 60%,
    rgba(255, 255, 255, 0.7) 100%
);
transform: translateY(-50%) rotate(45deg);
z-index: 0;
border-radius: 1px;
box-shadow: 0 0 2px rgba(255, 69, 0, 0.3);
}


.meteor.large{
width: 10px; 
height: 20px;
border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.meteor.large .meteor-core{
width: 6px;
height: 12px;
background: radial-gradient(ellipse at center, #ffffff 0%, #ff6b35 25%, #ff4500 50%, #8b0000 75%, #4a0000 100%);
border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
box-shadow: 
    0 0 6px #ffffff,
    0 0 12px #ff6b35,
    0 0 18px #ff4500,
    0 0 24px #ff4500,
    0 0 30px #8b0000,
    0 0 36px #4a0000,
    inset 0 0 6px rgba(255, 255, 255, 0.9);
transform: rotate(45deg);
}

.meteor.small{
width: 3px; 
height: 6px;
border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.meteor.small .meteor-core{
width: 2px;
height: 4px;
background: radial-gradient(ellipse at center, #ffffff 0%, #ff6b35 40%, #ff4500 80%, #8b0000 100%);
border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
box-shadow: 
    0 0 2px #ffffff,
    0 0 4px #ff6b35,
    0 0 6px #ff4500,
    0 0 8px #8b0000,
    inset 0 0 2px rgba(255, 255, 255, 0.8);
transform: rotate(45deg);
}



@keyframes meteorFall {
    0% {
        transform: translateX(-100px) translateY(-100px) rotate(45deg) scale(0.8);
        opacity: 0;
    }
    5% {
        opacity: 0.3;
        transform: translateX(calc(-100px + 5vw)) translateY(calc(-100px + 5vh)) rotate(45deg) scale(0.85);
    }
    10% {
        opacity: 1;
        transform: translateX(calc(-100px + 12vw)) translateY(calc(-100px + 15vh)) rotate(45deg) scale(0.9);
    }
    30% {
        transform: translateX(calc(-100px + 35vw)) translateY(calc(-100px + 40vh)) rotate(46deg) scale(1.1);
    }
    50% {
        transform: translateX(calc(-100px + 60vw)) translateY(calc(-100px + 65vh)) rotate(44deg) scale(1);
    }
    70% {
        transform: translateX(calc(-100px + 80vw)) translateY(calc(-100px + 85vh)) rotate(45deg) scale(0.95);
    }
    90% {
        opacity: 1;
        transform: translateX(calc(-100px + 95vw)) translateY(calc(-100px + 95vh)) rotate(45deg) scale(0.9);
    }
    100% {
        transform: translateX(100vw) translateY(100vh) rotate(45deg) scale(0.8);
        opacity: 0;
    }
}

@keyframes meteorFallDiagonal {
    0% {
        transform: translateX(-150px) translateY(-150px) rotate(30deg) scale(0.8);
        opacity: 0;
    }
    5% {
        opacity: 0.3;
        transform: translateX(calc(-150px + 6vw)) translateY(calc(-150px + 4vh)) rotate(32deg) scale(0.85);
    }
    10% {
        opacity: 1;
        transform: translateX(calc(-150px + 15vw)) translateY(calc(-150px + 12vh)) rotate(31deg) scale(0.9);
    }
    30% {
        transform: translateX(calc(-150px + 38vw)) translateY(calc(-150px + 35vh)) rotate(29deg) scale(1.1);
    }
    50% {
        transform: translateX(calc(-150px + 62vw)) translateY(calc(-150px + 60vh)) rotate(31deg) scale(1);
    }
    70% {
        transform: translateX(calc(-150px + 82vw)) translateY(calc(-150px + 80vh)) rotate(30deg) scale(0.95);
    }
    90% {
        opacity: 1;
        transform: translateX(calc(-150px + 95vw)) translateY(calc(-150px + 95vh)) rotate(29deg) scale(0.9);
    }
    100% {
        transform: translateX(100vw) translateY(100vh) rotate(30deg) scale(0.8);
        opacity: 0;
    }
}

@keyframes meteorFallSteep {
    0% {
        transform: translateX(-80px) translateY(-200px) rotate(60deg) scale(0.8);
        opacity: 0;
    }
    5% {
        opacity: 0.3;
        transform: translateX(calc(-80px + 3vw)) translateY(calc(-200px + 8vh)) rotate(62deg) scale(0.85);
    }
    10% {
        opacity: 1;
        transform: translateX(calc(-80px + 8vw)) translateY(calc(-200px + 18vh)) rotate(61deg) scale(0.9);
    }
    30% {
        transform: translateX(calc(-80px + 25vw)) translateY(calc(-200px + 45vh)) rotate(59deg) scale(1.1);
    }
    50% {
        transform: translateX(calc(-80px + 45vw)) translateY(calc(-200px + 70vh)) rotate(61deg) scale(1);
    }
    70% {
        transform: translateX(calc(-80px + 65vw)) translateY(calc(-200px + 88vh)) rotate(60deg) scale(0.95);
    }
    90% {
        opacity: 1;
        transform: translateX(calc(-80px + 85vw)) translateY(calc(-200px + 95vh)) rotate(59deg) scale(0.9);
    }
    100% {
        transform: translateX(100vw) translateY(100vh) rotate(60deg) scale(0.8);
        opacity: 0;
    }
}


.meteor-particle{
position: absolute;
width: 1px;
height: 1px;
background: rgba(255, 255, 255, 0.8);
border-radius: 50%;
pointer-events: none;
z-index: -5;
}

@keyframes particleTrail{
0%{
transform: translateX(0) translateY(0) scale(1);
opacity: 1;
}
100%{
transform: translateX(20px) translateY(20px) scale(0);
opacity: 0;
}
}


@media (max-width: 768px){
.meteor{
width: 4px; 
height: 8px;
border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.meteor-core{
width: 3px; 
height: 6px; 
background: radial-gradient(ellipse at center, #ffffff 0%, #ff6b35 30%, #ff4500 60%, #8b0000 100%);
border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
box-shadow: 
    0 0 3px #ffffff,
    0 0 6px #ff6b35,
    0 0 9px #ff4500,
    0 0 12px #8b0000,
    inset 0 0 3px rgba(255, 255, 255, 0.8);
transform: rotate(45deg);
}

.meteor::before{
width: 40px;
height: 2px;
background: linear-gradient(to right, 
    transparent 0%, 
    rgba(255, 69, 0, 0.2) 30%,
    rgba(255, 255, 255, 0.5) 70%,
    rgba(255, 255, 255, 0.8) 100%
);
transform: translateY(-50%) rotate(45deg);
border-radius: 1px;
box-shadow: 0 0 2px rgba(255, 69, 0, 0.4);
}

.meteor::after{
width: 25px;
height: 1px;
background: linear-gradient(to right, 
    transparent 0%, 
    rgba(255, 69, 0, 0.3) 50%,
    rgba(255, 255, 255, 0.6) 100%
);
transform: translateY(-50%) rotate(45deg);
border-radius: 1px;
box-shadow: 0 0 1px rgba(255, 69, 0, 0.3);
}

.meteor.large{
width: 8px; 
height: 16px;
border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.meteor.large .meteor-core{
width: 5px; 
height: 10px; 
background: radial-gradient(ellipse at center, #ffffff 0%, #ff6b35 25%, #ff4500 50%, #8b0000 75%, #4a0000 100%);
border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
box-shadow: 
    0 0 4px #ffffff,
    0 0 8px #ff6b35,
    0 0 12px #ff4500,
    0 0 16px #8b0000,
    0 0 20px #4a0000,
    inset 0 0 4px rgba(255, 255, 255, 0.9);
transform: rotate(45deg);
}

.meteor.small{
width: 2px; 
height: 4px;
border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.meteor.small .meteor-core{
width: 1px; 
height: 2px; 
background: radial-gradient(ellipse at center, #ffffff 0%, #ff6b35 50%, #ff4500 100%);
border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
box-shadow: 
    0 0 1px #ffffff,
    0 0 2px #ff6b35,
    0 0 3px #ff4500,
    inset 0 0 1px rgba(255, 255, 255, 0.8);
transform: rotate(45deg);
}
}


.meteor, .meteor-particle{
will-change: transform, opacity;
transform: translateZ(0);
backface-visibility: hidden;
}

/* Additional realistic meteor effects */
.meteor::before {
    animation: meteorTrail 2s ease-out infinite;
}

.meteor::after {
    animation: meteorTrail 2s ease-out infinite 0.1s;
}

@keyframes trailFlicker {
    0% {
        opacity: 0.3;
        transform: translateY(-50%) rotate(var(--angle)) scaleX(0.8);
    }
    25% {
        opacity: 1;
        transform: translateY(-50%) rotate(calc(var(--angle) + 2deg)) scaleX(1.2);
    }
    50% {
        opacity: 0.6;
        transform: translateY(-50%) rotate(var(--angle)) scaleX(0.9);
    }
    75% {
        opacity: 0.8;
        transform: translateY(-50%) rotate(calc(var(--angle) - 2deg)) scaleX(1.1);
    }
    100% {
        opacity: 0.3;
        transform: translateY(-50%) rotate(var(--angle)) scaleX(0.8);
    }
}

/* Meteor core pulsing effect */
.meteor-core {
    animation: meteorPulse 1.5s ease-in-out infinite;
}

@keyframes meteorPulse {
    0%, 100% {
        box-shadow: 
            0 0 4px #ffffff,
            0 0 8px #ff6b35,
            0 0 12px #ff4500,
            0 0 16px #ff4500,
            0 0 20px #8b0000,
            inset 0 0 4px rgba(255, 255, 255, 0.8);
    }
    50% {
        box-shadow: 
            0 0 6px #ffffff,
            0 0 12px #ff6b35,
            0 0 18px #ff4500,
            0 0 24px #ff4500,
            0 0 30px #8b0000,
            inset 0 0 6px rgba(255, 255, 255, 1);
    }
}




@media (max-width: 768px){
body{
padding-top: 80px;
}
}


.confirmation-container{
display: none;
background: rgba(255, 255, 255, 0.95);
border-radius: 20px;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
padding: 2rem;
text-align: center;
margin-top: 1rem;
max-width: 500px;
margin-left: auto;
margin-right: auto;
animation: fadeIn 0.6s ease-out, slideUp 0.6s ease-out;
}

.confirmation-icon{
font-size: 4rem;
color: #28a745;
margin-bottom: 1rem;
}

.confirmation-message h3{
font-size: 2rem;
margin-bottom: 1rem;
color: var(--dark);
}

.confirmation-message p{
font-size: 1.1rem;
color: var(--text);
margin-bottom: 2rem;
}

.btn-back{
background: var(--gradient);
color: var(--light);
border: none;
padding: 0.8rem 1.5rem;
border-radius: 25px;
font-size: 1rem;
cursor: pointer;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-back:hover{
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

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

@keyframes slideUp{
from{
transform: translateY(20px);
}
to{
transform: translateY(0);
}
}


.header{
position: fixed;
top: 0;
width: 100%;
background: rgba(10, 10, 10, 0.95);
backdrop-filter: blur(20px);
z-index: 1000;
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
animation: slideDown 0.5s ease-out;
}

@keyframes slideDown{
from{
opacity: 0;
transform: translateY(-100%);
}
to{
opacity: 1;
transform: translateY(0);
}
}

.nav{
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 5%;
max-width: 1400px;
margin: 0 auto;
}

.logo{
display: flex;
align-items: center;
gap: 1rem;
color: var(--light);
font-size: 1.5rem;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 1px;
}

.logo-image{
width: 40px;
height: 40px;
object-fit: contain;
}

.nav-links{
display: flex;
list-style: none;
gap: 2rem;
}

.nav-links a{
color: var(--light);
text-decoration: none;
transition: all 0.3s ease;
position: relative;
font-weight: 500;
}

.nav-links a:hover{
color: var(--primary);
}

.nav-links a::after{
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(--gradient);
transition: width 0.3s ease;
}

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

.hero{
height: 100vh;
background: transparent;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
z-index: 2;
}

#particles-js, #meteors-canvas{
position: absolute;
width: 100%;
height: 100%;
z-index: 0;
top: 0;
left: 0;
}



.hero-content{
max-width: 1400px;
margin: 0 auto;
padding: 0 5%;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
position: relative;
z-index: 3;
}

.hero-text h1{
font-size: 3.5rem;
color: var(--light);
margin-bottom: 1rem;
line-height: 1.2;
animation: fadeInUp 1s ease-out;
position: relative;
z-index: 4;
}

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

.hero-text .highlight{
background: var(--gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero-text p{
font-size: 1.3rem;
color: #cccccc;
margin-bottom: 2rem;
animation: fadeInUp 1s ease-out 0.3s both;
position: relative;
z-index: 4;
}

.hero-buttons{
display: flex;
gap: 1rem;
animation: fadeInUp 1s ease-out 0.6s both;
position: relative;
z-index: 4;
}

.btn-primary{
background: var(--gradient);
color: var(--light);
padding: 1rem 2rem;
border-radius: 30px;
text-decoration: none;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

@media (max-width: 768px){
.btn-primary{
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
}


.btn-primary:hover{
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

.btn-secondary{
background: transparent;
color: var(--light);
padding: 1rem 2rem;
border: 2px solid var(--primary);
border-radius: 30px;
text-decoration: none;
transition: all 0.3s ease;
}

.btn-secondary:hover{
background: var(--primary);
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(0, 102, 255, 0.2);
}

.hero-visual{
position: relative;
animation: fadeIn 1.5s ease-out;
z-index: 4;
display: flex;
align-items: center;
justify-content: center;
}

.hero-image{
max-width: 100%;
height: auto;
border-radius: 15px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image:hover{
transform: translateY(-10px);
box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

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

.floating-cards{
position: relative;
height: 500px;
padding: 20px;
z-index: 4;
animation: containerPulse 25s ease-in-out infinite;
}

@keyframes containerPulse{
0%, 100%{
transform: scale(1) rotate(0deg);
}
25%{
transform: scale(1.01) rotate(0.2deg);
}
50%{
transform: scale(1.02) rotate(-0.1deg);
}
75%{
transform: scale(1.005) rotate(0.3deg);
}
}

.float-card{
position: absolute;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(20px);
border-radius: 20px;
padding: 1.5rem;
color: var(--light);
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
width: 120px;
height: 120px;
z-index: 5;
cursor: pointer;
animation-fill-mode: both;
}

.float-card i{
margin-bottom: 0.5rem;
font-size: 1.5rem;
transition: all 0.4s ease;
}

.float-card h4{
font-size: 0.9rem;
margin-bottom: 0.3rem;
transition: color 0.3s ease;
}

.float-card p{
font-size: 0.7rem;
opacity: 0.8;
transition: opacity 0.3s ease;
}

.float-card:hover h4,
.float-card:hover p{
color: #ffffff;
opacity: 1;
}


.float-card:nth-child(1){
top: 60px;
left: 10px;
animation:
float1 7.3s ease-in-out infinite,
drift1 11.7s linear infinite,
rotate1 13.2s ease-in-out infinite,
pulse1 5.8s ease-in-out infinite,
glow 6.2s ease-in-out infinite;
}

.float-card:nth-child(2){
top: 100px;
left: 50%;
transform: translateX(-50%);
animation:
float2 5.9s ease-in-out infinite,
drift2 14.3s linear infinite,
rotate2 9.1s ease-in-out infinite,
glow 4.7s ease-in-out infinite;
z-index: 0;
}

.float-card:nth-child(3){
top: 60%;
left: -20px;
transform: translateY(-50%);
animation:
float3 6.8s ease-in-out infinite,
drift3 8.9s linear infinite,
rotate3 12.4s ease-in-out infinite,
wiggle1 3.2s ease-in-out infinite,
glow 7.1s ease-in-out infinite;
}

.float-card:nth-child(4){
top: 50%;
right: -20px;
transform: translateY(-50%);
animation:
float4 8.4s ease-in-out infinite,
drift4 12.1s linear infinite,
rotate4 7.6s ease-in-out infinite,
glow 5.9s ease-in-out infinite;
}

.float-card:nth-child(5){
bottom: 20px;
left: 50%;
transform: translateX(-50%);
animation:
float5 4.7s ease-in-out infinite,
drift5 10.3s linear infinite,
rotate5 11.8s ease-in-out infinite,
wiggle2 4.1s ease-in-out infinite,
glow 5.3s ease-in-out infinite;
}


@keyframes float1{
0%{transform: translateY(0px) translateX(0px)}
15%{transform: translateY(-18px) translateX(3px)}
30%{transform: translateY(-8px) translateX(-2px)}
45%{transform: translateY(-25px) translateX(5px)}
60%{transform: translateY(-12px) translateX(-1px)}
75%{transform: translateY(-30px) translateX(2px)}
90%{transform: translateY(-5px) translateX(-3px)}
100%{transform: translateY(0px) translateX(0px)}
}

@keyframes float2{
0%{transform: translateX(-50%) translateY(0px)}
12%{transform: translateX(-50%) translateY(-22px)}
25%{transform: translateX(-50%) translateY(-7px)}
40%{transform: translateX(-50%) translateY(-35px)}
55%{transform: translateX(-50%) translateY(-15px)}
70%{transform: translateX(-50%) translateY(-28px)}
85%{transform: translateX(-50%) translateY(-3px)}
100%{transform: translateX(-50%) translateY(0px)}
}

@keyframes float3{
0%{transform: translateY(-50%) translateX(0px)}
20%{transform: translateY(-50%) translateX(-15px)}
35%{transform: translateY(-50%) translateX(8px)}
50%{transform: translateY(-50%) translateX(-22px)}
65%{transform: translateY(-50%) translateX(12px)}
80%{transform: translateY(-50%) translateX(-8px)}
100%{transform: translateY(-50%) translateX(0px)}
}

@keyframes float4{
0%{transform: translateY(-50%) translateX(0px)}
18%{transform: translateY(-50%) translateX(-12px) translateY(-58%)}
33%{transform: translateY(-50%) translateX(7px) translateY(-45%)}
48%{transform: translateY(-50%) translateX(-20px) translateY(-42%)}
63%{transform: translateY(-50%) translateX(15px) translateY(-55%)}
78%{transform: translateY(-50%) translateX(-5px) translateY(-48%)}
100%{transform: translateY(-50%) translateX(0px)}
}

@keyframes float5{
0%{transform: translateX(-50%) translateY(0px)}
25%{transform: translateX(-50%) translateY(-28px)}
45%{transform: translateX(-50%) translateY(-10px)}
65%{transform: translateX(-50%) translateY(-32px)}
85%{transform: translateX(-50%) translateY(-6px)}
100%{transform: translateX(-50%) translateY(0px)}
}


@keyframes drift1{
0%{transform: translateX(0px)}
20%{transform: translateX(12px)}
40%{transform: translateX(-8px)}
60%{transform: translateX(15px)}
80%{transform: translateX(-5px)}
100%{transform: translateX(0px)}
}

@keyframes drift2{
0%{transform: translateX(-50%)}
15%{transform: translateX(calc(-50% + 10px))}
30%{transform: translateX(calc(-50% - 7px))}
45%{transform: translateX(calc(-50% + 14px))}
60%{transform: translateX(calc(-50% - 11px))}
75%{transform: translateX(calc(-50% + 6px))}
90%{transform: translateX(calc(-50% - 3px))}
100%{transform: translateX(-50%)}
}

@keyframes drift3{
0%{transform: translateY(-50%) translateX(0px)}
25%{transform: translateY(-50%) translateX(10px)}
50%{transform: translateY(-50%) translateX(-12px)}
75%{transform: translateY(-50%) translateX(8px)}
100%{transform: translateY(-50%) translateX(0px)}
}

@keyframes drift4{
0%{transform: translateY(-50%) translateX(0px)}
30%{transform: translateY(-50%) translateX(-9px)}
60%{transform: translateY(-50%) translateX(13px)}
100%{transform: translateY(-50%) translateX(0px)}
}

@keyframes drift5{
0%{transform: translateX(-50%) translateX(0px)}
35%{transform: translateX(-50%) translateX(-14px)}
70%{transform: translateX(-50%) translateX(11px)}
100%{transform: translateX(-50%) translateX(0px)}
}


@keyframes rotate1{
0%, 100%{transform: rotate(0deg)}
25%{transform: rotate(2deg)}
50%{transform: rotate(-1deg)}
75%{transform: rotate(3deg)}
}

@keyframes rotate2{
0%, 100%{transform: translateX(-50%) rotate(0deg)}
20%{transform: translateX(-50%) rotate(-2deg)}
40%{transform: translateX(-50%) rotate(1deg)}
60%{transform: translateX(-50%) rotate(-3deg)}
80%{transform: translateX(-50%) rotate(2deg)}
}

@keyframes rotate3{
0%, 100%{transform: translateY(-50%) rotate(0deg)}
33%{transform: translateY(-50%) rotate(2deg)}
66%{transform: translateY(-50%) rotate(-2deg)}
}

@keyframes rotate4{
0%, 100%{transform: translateY(-50%) rotate(0deg)}
30%{transform: translateY(-50%) rotate(-1deg)}
60%{transform: translateY(-50%) rotate(3deg)}
}

@keyframes rotate5{
0%, 100%{transform: translateX(-50%) rotate(0deg)}
40%{transform: translateX(-50%) rotate(2deg)}
80%{transform: translateX(-50%) rotate(-1deg)}
}


@keyframes pulse1{
0%, 100%{transform: scale(1)}
50%{transform: scale(1.03)}
}

@keyframes wiggle1{
0%, 100%{transform: translateY(-50%) skew(0deg)}
25%{transform: translateY(-50%) skew(1deg)}
75%{transform: translateY(-50%) skew(-1deg)}
}

@keyframes wiggle2{
0%, 100%{transform: translateX(-50%) skew(0deg)}
33%{transform: translateX(-50%) skew(-1deg)}
66%{transform: translateX(-50%) skew(1deg)}
}


@keyframes glow{
0%, 100%{
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
filter: brightness(1);
}
20%{
box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3), 0 0 20px rgba(0, 102, 255, 0.1);
filter: brightness(1.1);
}
40%{
box-shadow: 0 10px 30px rgba(255, 0, 102, 0.3), 0 0 25px rgba(255, 0, 102, 0.15);
filter: brightness(1.05);
}
60%{
box-shadow: 0 10px 30px rgba(0, 204, 255, 0.25), 0 0 15px rgba(0, 204, 255, 0.1);
filter: brightness(1.08);
}
80%{
box-shadow: 0 10px 30px rgba(102, 255, 102, 0.25), 0 0 20px rgba(102, 255, 102, 0.1);
filter: brightness(1.06);
}
}

.floating-cards{
position: relative;
height: 500px;
animation: breathe 20s ease-in-out infinite;
}

@keyframes breathe{
0%, 100%{transform: scale(1)}
50%{transform: scale(1.02)}
}


.services{
padding: 5rem 5%;
background: transparent;
color: var(--light);
position: relative;
overflow: hidden;
}


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

.services .section-title h2{
color: var(--light);
}

.services .section-title p{
color: #cccccc;
}

.service-card{
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.2);
color: var(--light);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card h3{
color: var(--light);
}

.service-features li{
color: #cccccc;
}

.service-features li::before{
color: var(--primary);
}

.about{
padding: 5rem 5%;
background: transparent;
color: var(--light);
}

.about-content{
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}

.about-text h2{
font-size: 2.5rem;
margin-bottom: 2rem;
}

.about-text .highlight{
background: var(--gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.stats-grid{
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
}

.stat-item{
text-align: center;
padding: 1.5rem;
background: rgba(255, 255, 255, 0.1);
border-radius: 15px;
backdrop-filter: blur(20px);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover{
transform: scale(1.05);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stat-number{
font-size: 2.5rem;
font-weight: bold;
background: var(--gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}


.testimonials{
padding: 5rem 5%;
background: transparent;
color: var(--light);
position: relative;
overflow: hidden;
min-height: 400px;
}


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

.testimonials .section-title h2{
color: var(--light);
}

.testimonials .section-title p{
color: #cccccc;
}

.testimonial-card{
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.2);
color: var(--light);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-text{
color: #cccccc;
}

.testimonial-author{
color: var(--light);
}


.faq{
padding: 5rem 5%;
background: transparent;
color: var(--light);
position: relative;
overflow: hidden;
}


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

.faq .section-title h2{
color: var(--light);
}

.faq .section-title p{
color: #cccccc;
}

.faq-item{
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.2);
color: var(--light);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-question{
color: var(--light);
}

.faq-answer{
color: #cccccc;
}

.contact{
padding: 5rem 5%;
background: var(--light);
}

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

.space-animation-container{
height: 500px;
}

.space-text h3{
font-size: 1.3rem;
}

.space-text p{
font-size: 0.9rem;
}

.contact-form-container{
display: flex;
flex-direction: column;
}

.contact-form{
background: var(--gray);
padding: 2rem;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.adventure{
padding: 5rem 5%;
background: transparent;
color: var(--light);
position: relative;
overflow: hidden;
z-index: 1;
}

.adventure-content{
display: flex;
align-items: center;
justify-content: center;
min-height: 400px;
text-align: center;
}


.space-content{
position: relative;
width: 100%;
height: 100%;
z-index: 2;
}





.space-text{
text-align: center;
color: white;
width: 100%;
max-width: 500px;
}

.space-text h3{
font-size: 1.8rem;
font-weight: 700;
margin-bottom: 0.8rem;
text-shadow:
0 0 10px rgba(255, 255, 255, 0.8),
0 0 20px rgba(255, 255, 255, 0.4),
0 2px 4px rgba(0, 0, 0, 0.3);
animation: textGlow 4s ease-in-out infinite;
color: #ffffff;
letter-spacing: 0.5px;
}

.space-text p{
font-size: 1.1rem;
font-weight: 500;
opacity: 0.95;
text-shadow:
0 0 8px rgba(255, 255, 255, 0.7),
0 2px 4px rgba(0, 0, 0, 0.2);
margin-bottom: 1.5rem;
color: #ffffff;
}


.space-features{
display: flex;
justify-content: center;
gap: 2rem;
margin-bottom: 2rem;
flex-wrap: wrap;
}

.space-feature{
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem;
padding: 1rem;
background: rgba(255, 255, 255, 0.1);
border-radius: 15px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
transition: all 0.3s ease;
animation: featureFloat 6s ease-in-out infinite;
}

.space-feature:nth-child(1){animation-delay: 0s}
.space-feature:nth-child(2){animation-delay: 2s}
.space-feature:nth-child(3){animation-delay: 4s}

.space-feature:hover{
transform: translateY(-5px);
background: rgba(255, 255, 255, 0.15);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.space-feature i{
font-size: 1.5rem;
color: var(--primary);
text-shadow: 0 0 10px rgba(0, 102, 255, 0.5);
}

.space-feature span{
font-size: 1rem;
font-weight: 700;
color: #ffffff;
text-shadow:
0 0 8px rgba(255, 255, 255, 0.8),
0 2px 4px rgba(0, 0, 0, 0.3);
letter-spacing: 0.3px;
}


.space-cta{
text-align: center;
}

.space-cta p{
font-size: 1.2rem;
font-weight: 600;
margin-bottom: 1.5rem;
color: #ffffff;
text-shadow:
0 0 10px rgba(255, 255, 255, 0.8),
0 2px 4px rgba(0, 0, 0, 0.2);
letter-spacing: 0.2px;
}


.space-stats{
display: flex;
justify-content: center;
gap: 2rem;
flex-wrap: wrap;
}

.space-stat{
display: flex;
flex-direction: column;
align-items: center;
gap: 0.3rem;
padding: 0.8rem 1.2rem;
background: rgba(0, 102, 255, 0.2);
border-radius: 12px;
border: 1px solid rgba(0, 102, 255, 0.3);
transition: all 0.3s ease;
animation: statPulse 4s ease-in-out infinite;
}

.space-stat:nth-child(1){animation-delay: 0s}
.space-stat:nth-child(2){animation-delay: 1.3s}
.space-stat:nth-child(3){animation-delay: 2.6s}

.space-stat:hover{
transform: scale(1.05);
background: rgba(0, 102, 255, 0.3);
box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

.space-stat .stat-number{
font-size: 1.4rem;
font-weight: 800;
color: #ffffff;
text-shadow:
0 0 15px rgba(0, 102, 255, 0.8),
0 0 30px rgba(0, 102, 255, 0.4),
0 2px 4px rgba(0, 0, 0, 0.3);
}

.space-stat .stat-label{
font-size: 0.85rem;
font-weight: 600;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 0.8px;
text-shadow:
0 0 8px rgba(255, 255, 255, 0.7),
0 2px 4px rgba(0, 0, 0, 0.2);
}





@keyframes textGlow{
0%, 100%{
text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
50%{
text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(100, 100, 255, 0.5);
}
}

@keyframes featureFloat{
0%, 100%{
transform: translateY(0px);
}
50%{
transform: translateY(-8px);
}
}

@keyframes statPulse{
0%, 100%{
transform: scale(1);
box-shadow: 0 0 0 rgba(0, 102, 255, 0.3);
}
50%{
transform: scale(1.02);
box-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
}
}

.form-group{
margin-bottom: 1.5rem;
}

.form-group label{
display: block;
margin-bottom: 0.5rem;
font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select{
width: 100%;
padding: 1rem;
border: none;
border-radius: 10px;
background: var(--light);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
outline: none;
box-shadow: 0 2px 20px rgba(0, 102, 255, 0.2);
}

.submit-btn{
background: var(--gradient);
color: var(--light);
padding: 1rem 2rem;
border: none;
border-radius: 25px;
cursor: pointer;
transition: all 0.3s ease;
width: 100%;
box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.submit-btn:hover{
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}


.footer{
background: rgba(10, 10, 10, 0.9);
backdrop-filter: blur(20px);
color: var(--light);
position: relative;
overflow: hidden;
z-index: 2;
padding: 3rem 0 1rem;
overflow-x: hidden;
}


.footer .container{
max-width: 100%;
margin: 0;
padding: 0 1.5rem;
}



.footer-content{
position: relative;
z-index: 2;
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
gap: 2rem;
margin-bottom: 2rem;
max-width: 1400px;
margin-left: auto;
margin-right: auto;
padding: 0;
width: 100%;
box-sizing: border-box;
}


@media (min-width: 1400px){
.footer-content{
grid-template-columns: 2.5fr 1fr 1fr 1fr 1.5fr;
gap: 3rem;
max-width: 1600px;
}

.footer-section h3{
font-size: 1.4rem;
margin-bottom: 1.5rem;
}

.footer-section p{
font-size: 1.1rem;
line-height: 1.7;
}

.footer-logo h3{
font-size: 1.8rem;
}

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

.social-link{
width: 45px;
height: 45px;
}

.social-link i{
font-size: 1.3rem;
}

.footer-section ul li a{
font-size: 1.05rem;
}

.contact-item{
font-size: 1.05rem;
}

.newsletter-input-group input{
padding: 1rem 1.2rem;
font-size: 1rem;
}

.newsletter-btn{
padding: 1rem 1.5rem;
font-size: 1rem;
}
}

@media (min-width: 1200px) and (max-width: 1399px){
.footer-content{
grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
gap: 2.5rem;
max-width: 1400px;
}

.footer-section h3{
font-size: 1.3rem;
margin-bottom: 1.3rem;
}

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

.footer-logo h3{
font-size: 1.6rem;
}

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

.social-link{
width: 42px;
height: 42px;
}

.social-link i{
font-size: 1.25rem;
}

.footer-section ul li a{
font-size: 1rem;
}

.contact-item{
font-size: 1rem;
}

.newsletter-input-group input{
padding: 0.9rem 1.1rem;
font-size: 0.95rem;
}

.newsletter-btn{
padding: 0.9rem 1.3rem;
font-size: 0.95rem;
}
}

@media (min-width: 992px) and (max-width: 1199px){
.footer-content{
grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
gap: 2rem;
max-width: 1200px;
}

.footer-section h3{
font-size: 1.2rem;
margin-bottom: 1.2rem;
}

.footer-section p{
font-size: 0.95rem;
line-height: 1.6;
}

.footer-logo h3{
font-size: 1.5rem;
}

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

.social-link{
width: 40px;
height: 40px;
}

.social-link i{
font-size: 1.2rem;
}

.footer-section ul li a{
font-size: 0.95rem;
}

.contact-item{
font-size: 0.95rem;
}

.newsletter-input-group input{
padding: 0.8rem 1rem;
font-size: 0.9rem;
}

.newsletter-btn{
padding: 0.8rem 1.2rem;
font-size: 0.9rem;
}
}

@media (min-width: 768px) and (max-width: 991px){
.footer-content{
grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
gap: 1.8rem;
max-width: 1000px;
}

.footer-section h3{
font-size: 1.1rem;
margin-bottom: 1.1rem;
}

.footer-section p{
font-size: 0.9rem;
line-height: 1.6;
}

.footer-logo h3{
font-size: 1.4rem;
}

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

.social-link{
width: 38px;
height: 38px;
}

.social-link i{
font-size: 1.1rem;
}

.footer-section ul li a{
font-size: 0.9rem;
}

.contact-item{
font-size: 0.9rem;
}

.newsletter-input-group input{
padding: 0.7rem 0.9rem;
font-size: 0.85rem;
}

.newsletter-btn{
padding: 0.7rem 1.1rem;
font-size: 0.85rem;
}
}


.footer-section:first-child{
grid-column: 1;
}

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

.footer-logo-img{
width: 40px;
height: 40px;
object-fit: contain;
}

.footer-logo h3{
color: var(--light);
font-size: 1.5rem;
margin: 0;
}

.footer-section p{
color: #cccccc;
line-height: 1.6;
margin-bottom: 1.5rem;
}


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

.social-link{
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
color: var(--light);
text-decoration: none;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.social-link::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;
}

.social-link:hover::before{
left: 100%;
}

.social-link:hover{
background: var(--primary);
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.social-link i{
font-size: 1.2rem;
z-index: 1;
position: relative;
}


.footer-section h3{
color: var(--light);
font-size: 1.2rem;
margin-bottom: 1rem;
position: relative;
}

.footer-section h3::after{
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 30px;
height: 2px;
background: var(--primary);
transition: width 0.3s ease;
}

.footer-section:hover h3::after{
width: 50px;
}

.footer-section ul{
list-style: none;
padding: 0;
margin: 0;
}

.footer-section ul li{
padding: 0.5rem 0;
transition: transform 0.3s ease;
margin-bottom: 0.2rem;
}

.footer-section ul li:hover{
transform: translateX(5px);
}

.footer-section ul li a{
color: #cccccc;
text-decoration: none;
transition: color 0.3s ease;
display: flex;
align-items: center;
gap: 0.5rem;
}

.footer-section ul li a::before{
content: '→';
color: var(--primary);
opacity: 0;
transition: opacity 0.3s ease;
}

.footer-section ul li a:hover::before{
opacity: 1;
}

.footer-section ul li a:hover{
color: var(--primary);
}


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

.contact-item{
display: flex;
align-items: center;
gap: 0.8rem;
color: #cccccc;
transition: color 0.3s ease;
min-width: 0;
flex-wrap: nowrap;
flex-direction: row;
}

.contact-item span{
word-break: break-all;
overflow-wrap: break-word;
hyphens: none;
white-space: normal;
display: inline;
margin-right: 1rem;
}


@media (min-width: 769px){
.contact-item{
flex-direction: row !important;
flex-wrap: nowrap !important;
align-items: center !important;
}

.contact-item span{
white-space: normal !important;
display: inline !important;
word-break: break-all !important;
overflow-wrap: break-word !important;
}


.footer .container{
padding-right: 4rem !important;
}
}

.contact-item:hover{
color: var(--primary);
}

.contact-item i{
color: var(--primary);
font-size: 1.1rem;
width: 20px;
text-align: center;
}


.newsletter-section{
grid-column: 5;
}

.newsletter-form{
margin: 1rem 0;
}

.newsletter-input-group{
display: flex;
gap: 0.5rem;
margin-bottom: 1rem;
}

.newsletter-input-group input{
flex: 1;
padding: 0.8rem 1.2rem 0.8rem 1.5rem;
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 5px;
background: rgba(255, 255, 255, 0.1);
color: var(--light);
font-size: 0.9rem;
transition: all 0.3s ease;
min-width: 0;
box-sizing: border-box;
}

.newsletter-input-group input:focus{
outline: none;
border-color: var(--primary);
background: rgba(255, 255, 255, 0.15);
}

.newsletter-input-group input::placeholder{
color: #cccccc;
}

.newsletter-btn{
padding: 0.8rem 1rem;
background: var(--primary);
border: none;
border-radius: 5px;
color: white;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
}

.newsletter-btn:hover{
background: #0056b3;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.newsletter-btn i{
font-size: 1rem;
}


.trust-indicators{
display: flex;
gap: 1rem;
margin-top: 1rem;
}

.trust-item{
display: flex;
align-items: center;
gap: 0.5rem;
color: #cccccc;
font-size: 0.9rem;
}

.trust-item i{
color: #4CAF50;
font-size: 1rem;
}


.footer-bottom{
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: 1.5rem;
margin-top: 2rem;
width: 100%;
}

.footer-bottom-content{
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}

.footer-bottom p{
color: #cccccc;
margin: 0;
}

.footer-bottom-links{
display: flex;
gap: 2rem;
}

.footer-bottom-links a{
color: #cccccc !important;
text-decoration: none !important;
font-size: 0.9rem !important;
transition: all 0.3s ease !important;
cursor: pointer !important;
padding: 0.5rem 1rem !important;
border-radius: 4px !important;
background: rgba(255, 255, 255, 0.05) !important;
display: inline-block !important;
position: relative !important;
z-index: 10 !important;
pointer-events: auto !important;
}

.footer-bottom-links a:hover{
color: var(--primary) !important;
background: rgba(255, 255, 255, 0.1) !important;
transform: translateY(-1px) !important;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}


@media (max-width: 1200px){
.footer .container{
padding: 0 1.5rem;
}

.footer-content{
grid-template-columns: 1fr 1fr 1fr;
gap: 2rem;
padding: 0;
}

.footer-section:first-child{
grid-column: 1 / -1;
grid-row: 1;
}

.newsletter-section{
grid-column: 1 / -1;
grid-row: 4;
}
}

@media (max-width: 768px){
.footer{
padding: 2rem 0 1rem;
}

.footer .container{
padding: 0 1.5rem;
}

.footer-content{
grid-template-columns: 1fr;
gap: 2.5rem;
text-align: center;
padding: 0;
}

.footer-section:first-child{
grid-column: 1;
grid-row: auto;
}

.newsletter-section{
grid-column: 1;
grid-row: auto;
}

.footer-logo{
justify-content: center;
margin-bottom: 1.5rem;
}

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

.footer-logo h3{
font-size: 1.8rem;
}

.footer-section p{
margin-bottom: 2rem;
font-size: 0.95rem;
line-height: 1.7;
}

.social-links{
justify-content: center;
gap: 1.2rem;
margin-top: 1.5rem;
}

.social-link{
width: 45px;
height: 45px;
}

.social-link i{
font-size: 1.3rem;
}

.footer-section h3{
font-size: 1.3rem;
margin-bottom: 1.5rem;
}

.footer-section ul{
margin-bottom: 1rem;
}

.footer-section ul li{
margin-bottom: 0.8rem;
padding: 0.3rem 0;
}

.footer-section ul li a{
font-size: 0.95rem;
justify-content: center;
}

.contact-info{
align-items: center;
gap: 1.2rem;
}

.contact-item{
justify-content: center;
margin-bottom: 1rem;
font-size: 0.95rem;
}

.contact-item i{
font-size: 1.2rem;
width: 25px;
}

.newsletter-input-group{
flex-direction: column;
gap: 1rem;
margin-bottom: 1.5rem;
}

.newsletter-input-group input{
padding: 1rem 1.2rem;
font-size: 1rem;
border-radius: 8px;
box-sizing: border-box;
}

.newsletter-btn{
width: 100%;
padding: 1rem;
font-size: 1rem;
border-radius: 8px;
}

.newsletter-btn i{
font-size: 1.2rem;
}

.trust-indicators{
justify-content: center;
gap: 2rem;
margin-top: 1.5rem;
}

.trust-item{
font-size: 0.9rem;
}

.trust-item i{
font-size: 1.1rem;
margin-right: 0.5rem;
}

.footer-bottom{
margin-top: 2rem;
padding-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content{
flex-direction: column;
text-align: center;
gap: 1.5rem;
}

.footer-bottom p{
font-size: 0.9rem;
margin: 0;
}

.footer-bottom-links{
justify-content: center;
flex-wrap: wrap;
gap: 1.5rem;
}

.footer-bottom-links a{
font-size: 0.9rem;
padding: 0.5rem 1rem;
border-radius: 5px;
background: rgba(255, 255, 255, 0.05);
transition: all 0.3s ease;
cursor: pointer;
}

.footer-bottom-links a:hover{
background: rgba(255, 255, 255, 0.1);
transform: translateY(-2px);
}
}

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

.footer-content{
gap: 2rem;
padding: 0;
}

.footer-section h3{
font-size: 1.2rem;
margin-bottom: 1.2rem;
}

.footer-logo h3{
font-size: 1.6rem;
}

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

.social-links{
gap: 1rem;
}

.social-link{
width: 40px;
height: 40px;
}

.social-link i{
font-size: 1.1rem;
}

.footer-section p{
font-size: 0.9rem;
line-height: 1.6;
}

.footer-section ul li a{
font-size: 0.9rem;
}

.contact-item{
font-size: 0.9rem;
margin-bottom: 0.8rem;
}

.contact-item i{
font-size: 1.1rem;
width: 20px;
}

.newsletter-input-group input{
padding: 0.9rem 1.2rem;
font-size: 0.95rem;
box-sizing: border-box;
}

.newsletter-btn{
padding: 0.9rem;
font-size: 0.95rem;
}

.trust-indicators{
gap: 1.5rem;
}

.trust-item{
font-size: 0.85rem;
}

.footer-bottom-links{
gap: 1rem;
}

.footer-bottom-links a{
font-size: 0.85rem;
padding: 0.4rem 0.8rem;
cursor: pointer;
}
}

@media (max-width: 360px){
.footer .container{
padding: 0 1.2rem;
}

.footer-content{
gap: 1.5rem;
}

.footer-logo h3{
font-size: 1.4rem;
}

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

.social-links{
gap: 0.8rem;
}

.social-link{
width: 35px;
height: 35px;
}

.social-link i{
font-size: 1rem;
}

.footer-section h3{
font-size: 1.1rem;
}

.footer-section p{
font-size: 0.85rem;
}

.footer-section ul li a{
font-size: 0.85rem;
}

.contact-item{
font-size: 0.85rem;
}

.newsletter-input-group input{
padding: 0.8rem 1.1rem;
font-size: 0.9rem;
box-sizing: border-box;
}

.newsletter-btn{
padding: 0.8rem;
font-size: 0.9rem;
}

.trust-indicators{
gap: 1rem;
}

.trust-item{
font-size: 0.8rem;
}

.footer-bottom-links{
gap: 0.8rem;
}

.footer-bottom-links a{
font-size: 0.8rem;
padding: 0.3rem 0.6rem;
cursor: pointer;
}
}

.contact-item{
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 1rem;
}

.contact-icon{
color: white;
font-size: 1.2rem;
margin-right: 10px;
}

.mobile-menu {
    display: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 100;
}

.burger-icon {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--light);
    position: relative;
    transition: background-color 0.3s ease;
}

.burger-icon::before,
.burger-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--light);
    transition: transform 0.3s ease;
}

.burger-icon::before {
    transform: translateY(-8px);
}

.burger-icon::after {
    transform: translateY(8px);
}

/* X animation when menu is active */
.mobile-menu.active .burger-icon {
    background-color: transparent;
}

.mobile-menu.active .burger-icon::before {
    transform: rotate(45deg);
}

.mobile-menu.active .burger-icon::after {
    transform: rotate(-45deg);
}

.loading-indicator{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.9);
z-index: 1000;
}

.loading-spinner{
border: 4px solid rgba(0, 0, 0, 0.1);
border-radius: 50%;
border-top: 4px solid var(--primary);
width: 40px;
height: 40px;
animation: spin 1s linear infinite;
margin-bottom: 1rem;
}

@keyframes spin{
0%{transform: rotate(0deg)}
100%{transform: rotate(360deg)}
}

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

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

@media (max-width: 768px){
.header{
position: fixed;
}

.nav{
flex-direction: row;
justify-content: space-between;
align-items: center;
padding: 1rem;
}

.nav-links{
display: none;
flex-direction: column;
width: 100%;
position: absolute;
top: 100%;
left: 0;
background: rgba(10, 10, 10, 0.95);
backdrop-filter: blur(20px);
padding: 1rem;
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.nav-links.active{
display: flex;
}

.nav-links a{
padding: 0.5rem 0;
}

.mobile-menu{
display: block;
}

.hero-content{
grid-template-columns: 1fr;
text-align: center;
padding: 2rem;
}

.hero-text h1{
font-size: 2rem;
}

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

.hero-buttons{
flex-direction: column;
align-items: center;
}

.btn-primary,
.btn-secondary{
width: 100%;
margin-bottom: 1rem;
}

.hero-visual{
display: none;
}

.about-content,
.contact-content{
grid-template-columns: 1fr;
}

.services,
.about,
.contact,
.testimonials{
padding: 3rem 3%;
}

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

.testimonial-carousel{
padding: 1rem 0;
overflow: hidden !important;
height: auto !important;
min-height: 300px;
position: relative;
width: 100% !important;
}

.testimonial-grid{
display: flex !important;
flex-direction: row !important;
gap: 0 !important;
width: 100% !important;
opacity: 1 !important;
visibility: visible !important;
transition: transform 0.4s ease-in-out !important;
transform: translateX(0) !important;
will-change: transform !important;
}

.testimonial-card{
display: block !important;
opacity: 1 !important;
visibility: visible !important;
width: 100% !important;
min-width: 100% !important;
max-width: 100% !important;
margin: 0 !important;
padding: 1.5rem !important;
background: rgba(255, 255, 255, 0.1) !important;
backdrop-filter: blur(20px) !important;
border: 1px solid rgba(255, 255, 255, 0.2) !important;
border-radius: 20px !important;
color: var(--light) !important;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
flex-shrink: 0 !important;
}


.testimonial-controls{
display: flex !important;
justify-content: center !important;
align-items: center !important;
gap: 1rem !important;
margin-top: 1.5rem !important;
}

.testimonial-nav{
display: flex !important;
width: 40px !important;
height: 40px !important;
background: rgba(255, 255, 255, 0.1) !important;
border: 1px solid rgba(255, 255, 255, 0.2) !important;
border-radius: 50% !important;
justify-content: center !important;
align-items: center !important;
color: var(--light) !important;
cursor: pointer !important;
transition: all 0.3s ease !important;
backdrop-filter: blur(10px) !important;
}

.testimonial-nav:hover{
background: rgba(255, 255, 255, 0.2) !important;
transform: scale(1.1) !important;
}

.testimonial-nav:disabled{
opacity: 0.5 !important;
cursor: not-allowed !important;
}

.testimonial-indicators{
display: flex !important;
gap: 0.5rem !important;
justify-content: center !important;
}

.indicator{
display: block !important;
width: 10px !important;
height: 10px !important;
border-radius: 50% !important;
background: rgba(255, 255, 255, 0.3) !important;
cursor: pointer !important;
transition: all 0.3s ease !important;
}

.indicator.active{
background: var(--primary) !important;
transform: scale(1.2) !important;
}

.testimonial-card{
min-width: auto !important;
max-width: none;
width: 100% !important;
margin: 0 auto;
padding: 1.5rem;
display: block !important;
opacity: 1 !important;
visibility: visible !important;
}

.testimonial-text{
font-size: 0.95rem;
margin-bottom: 1rem;
}

.testimonial-text::before{
font-size: 2.5rem;
top: -0.8rem;
left: -0.3rem;
}

.testimonial-author{
font-size: 0.85rem;
}

.testimonial-controls{
margin-top: 1.5rem;
gap: 1rem;
}

.testimonial-nav{
width: 35px;
height: 35px;
font-size: 0.8rem;
}

.indicator{
width: 8px;
height: 8px;
}

.portfolio-filters{
gap: 0.5rem;
margin-bottom: 2rem;
}

.filter-btn{
padding: 0.6rem 1rem;
font-size: 0.8rem;
}

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

.portfolio-cta{
padding: 2rem 1rem;
}

.portfolio-cta h3{
font-size: 1.5rem;
}
}


.floating-contact{
position: fixed;
bottom: 20px;
right: 20px;
z-index: 1000;
display: flex;
flex-direction: column;
gap: 15px;
animation: fadeInSlide 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


.contact-btn{
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
color: white;
font-size: 24px;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
position: relative;
overflow: hidden;
transform: scale(1);
}


.contact-btn::before{
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 50%;
background: inherit;
transform: scale(0);
transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
z-index: -1;
}


.contact-btn::after{
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
border-radius: 50%;
background: rgba(255, 255, 255, 0.3);
transform: translate(-50%, -50%);
transition: all 0.5s ease-out;
}

.contact-btn:hover::before{
transform: scale(1.2);
}

.contact-btn:active::after{
width: 120%;
height: 120%;
opacity: 0;
transition: all 0.3s ease-out;
}


.whatsapp-btn{
background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
position: relative;
}

.whatsapp-btn:hover{
transform: translateY(-5px) scale(1.08);
box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.whatsapp-btn:hover svg{
animation: phoneRing 0.8s ease-in-out infinite;
}


.email-btn{
background: linear-gradient(135deg, #EA4335 0%, #FBBC04 100%);
position: relative;
}

.email-btn:hover{
transform: translateY(-5px) scale(1.08);
box-shadow: 0 15px 35px rgba(234, 67, 53, 0.4);
background: linear-gradient(135deg, #FBBC04 0%, #EA4335 100%);
}

.email-btn:hover svg{
animation: mailFly 1s ease-in-out infinite;
}


@keyframes float{
0%, 100%{
transform: translateY(0px);
}
50%{
transform: translateY(-8px);
}
}

.contact-btn{
animation: float 3s ease-in-out infinite;
}

.email-btn{
animation-delay: -1.5s;
}


@keyframes fadeInSlide{
0%{
opacity: 0;
transform: translateX(100px) scale(0.8);
}
100%{
opacity: 1;
transform: translateX(0) scale(1);
}
}


@keyframes phoneRing{
0%, 100%{
transform: rotate(0deg);
}
25%{
transform: rotate(-10deg);
}
75%{
transform: rotate(10deg);
}
}


@keyframes mailFly{
0%, 100%{
transform: translateY(0px) rotate(0deg);
}
25%{
transform: translateY(-3px) rotate(-5deg);
}
50%{
transform: translateY(-6px) rotate(0deg);
}
75%{
transform: translateY(-3px) rotate(5deg);
}
}


.contact-btn .tooltip{
position: absolute;
right: 75px;
top: 50%;
transform: translateY(-50%) translateX(10px);
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 12px 16px;
border-radius: 25px;
font-size: 13px;
font-weight: 600;
white-space: nowrap;
opacity: 0;
visibility: hidden;
transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
font-family: 'Arial', sans-serif;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
border: 2px solid rgba(255, 255, 255, 0.1);
}

.contact-btn .tooltip::before{
content: '';
position: absolute;
left: 100%;
top: 50%;
transform: translateY(-50%);
border: 8px solid transparent;
border-left-color: #667eea;
}

.contact-btn:hover .tooltip{
opacity: 1;
visibility: visible;
transform: translateY(-50%) translateX(0px);
}


.contact-btn{
position: relative;
}

.contact-btn::before{
content: '';
position: absolute;
top: -3px;
left: -3px;
right: -3px;
bottom: -3px;
border-radius: 50%;
background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
z-index: -2;
animation: borderGlow 2s linear infinite;
opacity: 0;
transition: opacity 0.3s ease;
}

.contact-btn:hover::before{
opacity: 1;
}

@keyframes borderGlow{
0%{
transform: rotate(0deg);
}
100%{
transform: rotate(360deg);
}
}


.floating-contact:hover .contact-btn:not(:hover){
transform: scale(0.95);
opacity: 0.7;
}


@media (max-width: 768px){
.floating-contact{
bottom: 15px;
right: 15px;
}

.contact-btn{
width: 55px;
height: 55px;
font-size: 22px;
}

.contact-btn .tooltip{
display: none;
}

.contact-btn:hover{
transform: scale(1.1);
}

.floating-contact:hover .contact-btn:not(:hover){
transform: scale(1);
opacity: 1;
}
}


.portfolio{
padding: 5rem 0;
background: var(--gray);
position: relative;
overflow: hidden;
}



.portfolio-filters{
display: flex;
justify-content: center;
gap: 1rem;
margin-bottom: 3rem;
flex-wrap: wrap;
position: relative;
z-index: 2;
}

.filter-btn{
background: var(--light);
border: 2px solid var(--primary);
color: var(--primary);
padding: 0.8rem 1.5rem;
border-radius: 25px;
cursor: pointer;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
font-weight: 500;
font-size: 0.9rem;
position: relative;
overflow: hidden;
transform: translateY(0);
}

.filter-btn::before{
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
transition: left 0.5s;
}

.filter-btn:hover::before{
left: 100%;
}

.filter-btn:hover,
.filter-btn.active{
background: var(--primary);
color: var(--light);
transform: translateY(-3px) scale(1.05);
box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

.filter-btn:active{
transform: translateY(-1px) scale(1.02);
}

.portfolio-grid{
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 2rem;
margin-bottom: 3rem;
position: relative;
z-index: 2;
}

.portfolio-item{
background: var(--light);
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12), 0 0 30px 0 rgba(0,102,255,0.06);
transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
opacity: 0;
transform: translateY(50px) scale(0.94);
position: relative;
}

.portfolio-item.visible{
opacity: 1;
transform: translateY(0) scale(1);
animation: portfolioFadeIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}


.portfolio-item:nth-child(even),
.portfolio-item:nth-child(1),
.portfolio-item:nth-child(2),
.portfolio-item:nth-child(3),
.portfolio-item:nth-child(4),
.portfolio-item:nth-child(5),
.portfolio-item:nth-child(6),
.portfolio-item:nth-child(7),
.portfolio-item:nth-child(8){
animation: none;
animation-delay: 0s;
}

.portfolio-item:hover{
transform: translateY(-15px) scale(1.04);
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.portfolio-item:hover .portfolio-image img{
transform: scale(1.10) rotate(2deg);
filter: brightness(1.08);
}

.portfolio-item:hover .portfolio-overlay, .portfolio-item:hover .portfolio-links, .portfolio-item .portfolio-links, .portfolio-overlay{display: none !important; opacity: 0 !important}

.portfolio-image{
position: relative;
overflow: hidden;
height: 250px;
z-index: 2;
}

.portfolio-image img{
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
filter: brightness(0.9);
}

.portfolio-overlay{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(0, 102, 255, 0.95), rgba(255, 0, 102, 0.95));
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
backdrop-filter: blur(5px);
}

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

.portfolio-links{
display: flex;
gap: 1rem;
transform: translateY(20px);
transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-links{
transform: translateY(0);
}

.portfolio-link{
width: 55px;
height: 55px;
background: var(--light);
color: var(--primary);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
transform: translateY(30px) scale(0.8);
opacity: 0;
position: relative;
overflow: hidden;
}

.portfolio-link::before{
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
background: var(--primary);
border-radius: 50%;
transition: all 0.3s ease;
transform: translate(-50%, -50%);
}

.portfolio-link:hover::before{
width: 100%;
height: 100%;
}

.portfolio-item:hover .portfolio-link{
transform: translateY(0) scale(1);
opacity: 1;
}

.portfolio-link:hover{
color: var(--light);
transform: scale(1.1) rotate(5deg);
box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
}

.portfolio-link i{
position: relative;
z-index: 2;
transition: transform 0.3s ease;
}

.portfolio-link:hover i{
transform: scale(1.2);
}

.portfolio-link:nth-child(1){
transition-delay: 0.1s;
}

.portfolio-link:nth-child(2){
transition-delay: 0.2s;
}

.portfolio-info{
padding: 1.5rem;
position: relative;
z-index: 2;
background: var(--light);
}

.portfolio-info h3{
font-size: 1.3rem;
margin-bottom: 0.5rem;
color: var(--dark);
transition: color 0.3s ease;
}

.portfolio-item:hover .portfolio-info h3{
color: var(--primary);
}

.portfolio-info p{
color: var(--text);
margin-bottom: 1rem;
line-height: 1.6;
transition: color 0.3s ease;
}

.portfolio-tags{
display: flex;
gap: 0.5rem;
flex-wrap: wrap;
}

.tag{
background: var(--gradient);
color: var(--light);
padding: 0.3rem 0.8rem;
border-radius: 15px;
font-size: 0.8rem;
font-weight: 500;
transition: all 0.3s ease;
transform: translateY(0);
position: relative;
overflow: hidden;
}

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

.tag:hover::before{
left: 100%;
}

.tag:hover{
transform: translateY(-2px) scale(1.05);
box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.portfolio-cta{
text-align: center;
background: var(--light);
padding: 3rem;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
position: relative;
z-index: 2;
overflow: hidden;
animation: ctaFloat 8s ease-in-out infinite;
}

@keyframes ctaFloat{
0%, 100%{transform: translateY(0px)}
50%{transform: translateY(-5px)}
}

.portfolio-cta::before{
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(255, 0, 102, 0.05));
opacity: 0;
transition: opacity 0.3s ease;
}

.portfolio-cta:hover::before{
opacity: 1;
}

.portfolio-cta h3{
font-size: 2rem;
margin-bottom: 1rem;
color: var(--dark);
position: relative;
z-index: 2;
}

.portfolio-cta p{
font-size: 1.1rem;
color: var(--text);
margin-bottom: 2rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
position: relative;
z-index: 2;
}

.portfolio-cta .btn-primary{
position: relative;
z-index: 2;
animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse{
0%, 100%{transform: scale(1)}
50%{transform: scale(1.05)}
}


@keyframes portfolioFadeIn{
0%{
opacity: 0;
transform: translateY(50px) scale(0.9);
}
100%{
opacity: 1;
transform: translateY(0) scale(1);
}
}


.filter-btn{
animation: filterBtnFloat 4s ease-in-out infinite;
}

.filter-btn:nth-child(1){animation-delay: 0s}
.filter-btn:nth-child(2){animation-delay: 0.5s}
.filter-btn:nth-child(3){animation-delay: 1s}
.filter-btn:nth-child(4){animation-delay: 1.5s}
.filter-btn:nth-child(5){animation-delay: 2s}
.filter-btn:nth-child(6){animation-delay: 2.5s}

@keyframes filterBtnFloat{
0%, 100%{transform: translateY(0px)}
50%{transform: translateY(-3px)}
}




.container{
max-width: 1400px;
margin: 0 auto;
}

.section-title{
text-align: center;
margin-bottom: 3rem;
}

.section-title h2{
font-size: 2.5rem;
margin-bottom: 1rem;
position: relative;
display: inline-block;
}

.section-title h2::after{
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 50px;
height: 3px;
background: var(--gradient);
border-radius: 3px;
}

.section-title p{
font-size: 1.2rem;
color: #666;
}


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

.service-card{
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.2);
color: var(--light);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
padding: 2rem;
border-radius: 20px;
transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
position: relative;
overflow: hidden;
}



.service-card:hover{
transform: translateY(-10px) scale(1.02);
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-icon{
width: 60px;
height: 60px;
background: var(--gradient);
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1rem;
transition: transform 0.3s ease;
}

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

.service-icon i{
font-size: 1.5rem;
color: var(--light);
}

.service-card h3{
font-size: 1.5rem;
margin-bottom: 1rem;
text-align: center;
color: var(--light);
}

.service-features{
list-style: none;
margin-top: 1rem;
}

.service-features li{
padding: 0.3rem 0;
color: #cccccc;
transition: transform 0.3s ease;
}

.service-card:hover .service-features li{
transform: translateX(10px);
}

.service-features li::before{
content: '✓';
color: var(--primary);
margin-right: 0.5rem;
}


.contact{
padding: 5rem 5%;
background: transparent;
color: var(--light);
position: relative;
overflow: hidden;
}

.contact::before{
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at 35% 65%, rgba(0, 102, 255, 0.08) 0%, transparent 50%),
radial-gradient(circle at 65% 35%, rgba(255, 0, 102, 0.08) 0%, transparent 50%);
animation: gradientShift 16s ease infinite;
z-index: 1;
}

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

.contact .section-title h2{
color: var(--light);
}

.contact .section-title p{
color: #cccccc;
}

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

.contact-form-container{
order: 2;
}

.space-animation-container{
order: 1;
}

.contact-form{
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.2);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
padding: 2rem;
border-radius: 20px;
}

.form-group{
margin-bottom: 1.5rem;
}

.form-group label{
display: block;
margin-bottom: 0.5rem;
color: var(--light);
font-weight: 500;
}

.form-group input,
.form-group textarea{
width: 100%;
padding: 1rem;
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: 10px;
background: rgba(255, 255, 255, 0.1);
color: var(--light);
backdrop-filter: blur(10px);
transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus{
outline: none;
border-color: var(--primary);
box-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder{
color: #cccccc;
}

.submit-btn{
background: var(--gradient);
color: var(--light);
padding: 1rem 2rem;
border: none;
border-radius: 30px;
cursor: pointer;
font-size: 1rem;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.submit-btn:hover{
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}


.testimonial-carousel{
position: relative;
overflow: hidden;
padding: 2rem 0;
margin: 0 auto;
max-width: 100%;
}


.testimonial-card{
display: block !important;
opacity: 1 !important;
visibility: visible !important;
}

.testimonial-grid{
display: flex;
transition: transform 0.6s ease-in-out;
gap: 2rem;
align-items: stretch;
width: 100%;
transform: translateX(0);
}

.testimonial-card{
min-width: 300px;
max-width: 400px;
flex-shrink: 0;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.2);
color: var(--light);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
padding: 2rem;
border-radius: 20px;
text-align: center;
position: relative;
overflow: hidden;
transition: all 0.3s ease;
}

.testimonial-card::before{
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(255, 0, 102, 0.1) 100%);
opacity: 0;
transition: opacity 0.3s ease;
z-index: -1;
}

.testimonial-card:hover::before{
opacity: 1;
}

.testimonial-card:hover{
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
border-color: rgba(255, 255, 255, 0.3);
}

.testimonial-text{
font-style: italic;
margin-bottom: 1.5rem;
color: #cccccc;
line-height: 1.6;
font-size: 1rem;
position: relative;
}

.testimonial-text::before{
content: '"';
font-size: 3rem;
color: rgba(0, 102, 255, 0.3);
position: absolute;
top: -1rem;
left: -0.5rem;
font-family: serif;
}

.testimonial-author{
font-weight: bold;
color: var(--light);
font-size: 0.9rem;
opacity: 0.9;
position: relative;
}

.testimonial-content{
display: flex;
flex-direction: column;
height: 100%;
justify-content: space-between;
}

.testimonial-author{
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem;
}

.testimonial-author p{
margin: 0;
font-weight: bold;
color: var(--light);
font-size: 0.9rem;
opacity: 0.9;
}

.testimonial-rating{
display: flex;
gap: 0.2rem;
color: #FFD700;
font-size: 0.8rem;
}

.testimonial-rating i{

}


.testimonial-controls{
display: flex;
justify-content: center;
align-items: center;
gap: 2rem;
margin-top: 2rem;
width: 100%;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

.testimonial-nav{
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
color: var(--light);
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.3s ease;
backdrop-filter: blur(10px);
}

.testimonial-nav:hover{
background: rgba(255, 255, 255, 0.2);
transform: scale(1.1);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.testimonial-nav:disabled{
opacity: 0.5;
cursor: not-allowed;
transform: none;
}

.testimonial-indicators{
display: flex;
gap: 0.5rem;
}

.indicator{
width: 10px;
height: 10px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.3);
cursor: pointer;
transition: all 0.3s ease;
}

.indicator.active{
background: var(--primary);
transform: scale(1.2);
}

.indicator:hover{
background: rgba(255, 255, 255, 0.5);
}



.faq-item{
margin-bottom: 1rem;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.2);
color: var(--light);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
padding: 1.5rem;
border-radius: 10px;
transition: box-shadow 0.3s ease;
}

.faq-item:hover{
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.faq-question{
font-weight: bold;
margin-bottom: 0.5rem;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
color: var(--light);
}

.faq-answer{
display: none;
padding-top: 0.5rem;
animation: fadeIn 0.5s ease-out;
color: #cccccc;
}

.faq-item.active .faq-answer{
display: block;
}


.footer-content{
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
position: relative;
z-index: 2;
padding: 3rem 5% 1rem;
}


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


.services,
.about,
.portfolio,
.testimonials,
.faq,
.contact{
position: relative;
overflow: hidden;
z-index: 1;
}




.service-card,
.testimonial-card,
.faq-item,
.contact-form,
.portfolio-item{
position: relative;
overflow: hidden;
}




.btn-primary,
.submit-btn{
position: relative;
overflow: hidden;
}


.section-title h2{
position: relative;
}




.service-card,
.testimonial-card,
.faq-item{
animation: subtleFloat 6s ease-in-out infinite;
}

@keyframes subtleFloat{
0%, 100%{
transform: translateY(0px);
}
50%{
transform: translateY(-5px);
}
}


.service-card:nth-child(1){animation-delay: 0s}
.service-card:nth-child(2){animation-delay: 0.5s}
.service-card:nth-child(3){animation-delay: 1s}
.service-card:nth-child(4){animation-delay: 1.5s}
.service-card:nth-child(5){animation-delay: 2s}

.testimonial-card:nth-child(1){animation-delay: 0s}
.testimonial-card:nth-child(2){animation-delay: 0.3s}
.testimonial-card:nth-child(3){animation-delay: 0.6s}
.testimonial-card:nth-child(4){animation-delay: 0.9s}
.testimonial-card:nth-child(5){animation-delay: 1.2s}


.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
box-shadow: 0 0 20px rgba(0, 102, 255, 0.3), 0 0 40px rgba(0, 102, 255, 0.1);
border-color: var(--primary);
}


.filter-btn{
position: relative;
overflow: hidden;
}


.stat-item{
position: relative;
overflow: hidden;
}






@media (max-width: 768px){

.service-card,
.testimonial-card,
.faq-item{
animation: none;
}


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

.contact-form-container{
order: 1;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
margin: 0 auto;
padding: 0 1rem;
}

.contact-form{
width: 100%;
max-width: 400px;
margin: 0 auto;
}

.contact-info-container{
order: 2;
}

.space-text h3{
font-size: 1.4rem;
font-weight: 700;
}

.space-text p{
font-size: 1rem;
font-weight: 500;
}

.planet-1{
width: 60px;
height: 60px;
}

.planet-2{
width: 45px;
height: 45px;
}

.planet-3{
width: 30px;
height: 30px;
}


.space-features{
gap: 1rem;
margin-bottom: 1.5rem;
}

.space-feature{
padding: 0.8rem;
font-size: 0.8rem;
}

.space-feature i{
font-size: 1.2rem;
}

.space-feature span{
font-size: 0.9rem;
font-weight: 700;
}

.space-cta p{
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 1rem;
}

.space-stats{
gap: 1rem;
}

.space-stat{
padding: 0.6rem 1rem;
}

.space-stat .stat-number{
font-size: 1.2rem;
font-weight: 800;
}

.space-stat .stat-label{
font-size: 0.75rem;
font-weight: 600;
}
}



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

.contact-info-grid{
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
}


@media (max-width: 1200px){
.contact-info-grid{
grid-template-columns: 1fr;
}
}

.contact-info-card{
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 15px;
padding: 1.5rem;
display: flex;
align-items: flex-start;
gap: 1rem;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
min-height: 80px;
}



.contact-info-card:hover{
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
border-color: rgba(0, 102, 255, 0.5);
}

.contact-icon-wrapper{
width: 50px;
height: 50px;
background: var(--gradient);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
position: relative;
overflow: hidden;
}

.contact-icon-wrapper::before{
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
transform: translateX(-100%);
transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-icon-wrapper::before{
transform: translateX(100%);
}

.contact-icon-wrapper i{
color: var(--light);
font-size: 1.2rem;
z-index: 1;
}

.contact-details h4{
color: var(--light);
font-size: 1.1rem;
margin-bottom: 0.5rem;
font-weight: 600;
}

.contact-details{
flex: 1;
min-width: 0;
}

.contact-details p{
color: var(--light);
font-size: 1rem;
margin-bottom: 0.3rem;
font-weight: 500;
word-break: break-all;
overflow-wrap: break-word;
hyphens: none;
}

.contact-note{
color: rgba(255, 255, 255, 0.7);
font-size: 0.85rem;
font-style: italic;
}


.social-contact-section{
background: rgba(255, 255, 255, 0.05);
border-radius: 15px;
padding: 2rem;
border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-contact-section h4{
color: var(--light);
font-size: 1.3rem;
margin-bottom: 1.5rem;
text-align: center;
font-weight: 600;
}

.social-links-grid{
display: grid;
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
gap: 1rem;
}


.social-contact-section .social-links-grid{
display: flex;
flex-wrap: wrap;
gap: 0.8rem;
justify-content: center;
}

.social-link{
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem;
padding: 1rem;
background: rgba(255, 255, 255, 0.1);
border-radius: 12px;
text-decoration: none;
color: var(--light);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}


.social-contact-section .social-link{
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
gap: 0.8rem;
padding: 0.8rem 1.2rem;
background: transparent;
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 8px;
min-width: auto;
width: auto;
}



.social-link:hover{
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}


.social-contact-section .social-link:hover{
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
border-color: rgba(0, 102, 255, 0.5);
}

.social-link i{
font-size: 1.5rem;
transition: transform 0.3s ease;
}

.social-link:hover i{
transform: scale(1.2);
}

.social-link span{
font-size: 0.9rem;
font-weight: 500;
}


.social-contact-section .social-link span{
display: none;
}


.social-contact-section .social-link i{
font-size: 1.5rem;
margin: 0;
}


.social-link.facebook:hover{
box-shadow: 0 8px 25px rgba(66, 103, 178, 0.4);
}

.social-link.instagram:hover{
box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

.social-link.linkedin:hover{
box-shadow: 0 8px 25px rgba(0, 119, 181, 0.4);
}

.social-link.twitter:hover{
box-shadow: 0 8px 25px rgba(29, 161, 242, 0.4);
}

.social-link.whatsapp:hover{
box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}


.quick-contact-cta{
background: rgba(0, 102, 255, 0.1);
border: 2px solid rgba(0, 102, 255, 0.3);
border-radius: 20px;
padding: 2rem;
text-align: center;
position: relative;
overflow: hidden;
}



.quick-contact-cta h4{
color: var(--light);
font-size: 1.4rem;
margin-bottom: 1rem;
font-weight: 600;
}

.quick-contact-cta p{
color: rgba(255, 255, 255, 0.8);
font-size: 1rem;
margin-bottom: 2rem;
line-height: 1.6;
}

.quick-contact-buttons{
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}

.quick-btn{
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.8rem 1.5rem;
border-radius: 25px;
text-decoration: none;
color: var(--light);
font-weight: 500;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}



.quick-btn:hover{
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn{
background: #25D366;
}

.whatsapp-btn:hover{
background: #128C7E;
box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.call-btn{
background: var(--gradient);
}

.call-btn:hover{
box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

.quick-btn i{
font-size: 1.1rem;
}


@media (max-width: 1024px){
.contact-content{
grid-template-columns: 1fr;
gap: 2rem;
}

.contact-info-grid{
grid-template-columns: 1fr;
}

.social-links-grid{
grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}


.social-contact-section .social-links-grid{
gap: 0.6rem;
}

.social-contact-section .social-link{
padding: 0.6rem 1rem;
}

.quick-contact-buttons{
flex-direction: column;
align-items: center;
}

.quick-btn{
width: 100%;
max-width: 250px;
justify-content: center;
}
}



@media (max-width: 768px){
.contact-info-card{
padding: 1rem;
}

.contact-icon-wrapper{
width: 40px;
height: 40px;
}

.contact-icon-wrapper i{
font-size: 1rem;
}

.contact-details h4{
font-size: 1rem;
}

.contact-details p{
font-size: 0.9rem;
}

.social-contact-section{
padding: 1.5rem;
}

.social-links-grid{
grid-template-columns: repeat(2, 1fr);
}


.social-contact-section .social-links-grid{
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
justify-content: center;
}

.social-contact-section .social-link{
padding: 0.5rem 0.8rem;
min-width: auto;
width: auto;
}

.social-contact-section .social-link i{
font-size: 1.3rem;
}

.quick-contact-cta{
padding: 1.5rem;
}

.quick-contact-cta h4{
font-size: 1.2rem;
}

.quick-contact-cta p{
font-size: 0.9rem;
}
}


.contact-info-card{
animation: slideInFromRight 0.6s ease-out;
}

.contact-info-card:nth-child(1){animation-delay: 0.1s}
.contact-info-card:nth-child(2){animation-delay: 0.2s}
.contact-info-card:nth-child(3){animation-delay: 0.3s}
.contact-info-card:nth-child(4){animation-delay: 0.4s}

@keyframes slideInFromRight{
from{
opacity: 0;
transform: translateX(30px);
}
to{
opacity: 1;
transform: translateX(0);
}
}


.social-link{
animation: fadeInUp 0.6s ease-out;
}

.social-link:nth-child(1){animation-delay: 0.1s}
.social-link:nth-child(2){animation-delay: 0.2s}
.social-link:nth-child(3){animation-delay: 0.3s}
.social-link:nth-child(4){animation-delay: 0.4s}
.social-link:nth-child(5){animation-delay: 0.5s}


.quick-contact-cta{
animation: fadeInUp 0.6s ease-out;
animation-delay: 0.6s;
animation-fill-mode: both;
}


.legal-content{
padding: 120px 0 80px;
min-height: 100vh;
background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
color: #ffffff;
}

.legal-header{
text-align: center;
margin-bottom: 60px;
padding: 40px 0;
background: rgba(255, 255, 255, 0.05);
border-radius: 15px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-header h1{
font-size: 3rem;
margin-bottom: 20px;
background: linear-gradient(45deg, #00d4ff, #ff6b6b);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.last-updated{
color: #888;
font-style: italic;
font-size: 0.9rem;
}

.legal-section{
margin-bottom: 40px;
padding: 30px;
background: rgba(255, 255, 255, 0.03);
border-radius: 15px;
border: 1px solid rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.legal-section:hover{
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.legal-section h2{
color: #00d4ff;
font-size: 1.8rem;
margin-bottom: 20px;
border-bottom: 2px solid rgba(0, 212, 255, 0.3);
padding-bottom: 10px;
}

.legal-section h3{
color: #ff6b6b;
font-size: 1.3rem;
margin: 25px 0 15px;
}

.legal-section p{
line-height: 1.8;
margin-bottom: 15px;
color: #e0e0e0;
}

.legal-section ul{
margin: 15px 0;
padding-left: 20px;
}

.legal-section li{
margin-bottom: 8px;
line-height: 1.6;
color: #e0e0e0;
}

.legal-section a{
color: #00d4ff;
text-decoration: none;
transition: color 0.3s ease;
}

.legal-section a:hover{
color: #ff6b6b;
text-decoration: underline;
}

.company-info{
background: rgba(0, 212, 255, 0.1);
padding: 20px;
border-radius: 10px;
border-left: 4px solid #00d4ff;
}

.company-info p{
margin-bottom: 10px;
color: #ffffff;
}

.company-info strong{
color: #00d4ff;
}

.contact-info{
background: rgba(255, 107, 107, 0.1);
padding: 20px;
border-radius: 10px;
border-left: 4px solid #ff6b6b;
}

.contact-info p{
margin-bottom: 10px;
color: #ffffff;
}

.contact-info strong{
color: #ff6b6b;
}


@media (max-width: 768px){
.legal-content{
padding: 100px 20px 60px;
}

.legal-header h1{
font-size: 2.2rem;
}

.legal-section{
padding: 20px;
margin-bottom: 30px;
}

.legal-section h2{
font-size: 1.5rem;
}

.legal-section h3{
font-size: 1.1rem;
}
}

@media (max-width: 480px){
.legal-header h1{
font-size: 1.8rem;
}

.legal-section{
padding: 15px;
}

.legal-section h2{
font-size: 1.3rem;
}
}


@media (max-width: 768px){
.testimonial-carousel{
padding: 1rem 0;
overflow: hidden !important;
height: auto !important;
min-height: 350px;
position: relative;
width: 100% !important;
touch-action: pan-y pinch-zoom;
background: rgba(255, 255, 255, 0.05);
border-radius: 20px;
border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-grid{
display: flex !important;
flex-direction: row !important;
gap: 0 !important;
width: 100% !important;
opacity: 1 !important;
visibility: visible !important;
transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
transform: translateX(0) !important;
will-change: transform !important;
touch-action: pan-x;
user-select: none;
position: relative !important;
min-height: 300px !important;

min-width: 500% !important;

transform-style: preserve-3d !important;
backface-visibility: hidden !important;
perspective: 1000px !important;
}

.testimonial-card{
display: block !important;
opacity: 1 !important;
visibility: visible !important;
width: 100% !important;
min-width: 100% !important;
max-width: 100% !important;
margin: 0 !important;
padding: 1.5rem !important;
background: rgba(255, 255, 255, 0.1) !important;
backdrop-filter: blur(20px) !important;
border: 1px solid rgba(255, 255, 255, 0.2) !important;
border-radius: 20px !important;
color: var(--light) !important;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
flex-shrink: 0 !important;
flex-grow: 0 !important;
transform: scale(1) !important;
transition: all 0.3s ease !important;
position: relative !important;
overflow: hidden !important;
box-sizing: border-box !important;
height: auto !important;
min-height: 250px !important;

flex-basis: 100% !important;

transform-style: preserve-3d !important;
backface-visibility: hidden !important;
}

.testimonial-card:hover{
transform: scale(1.02) !important;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4) !important;
}

.testimonial-card::before{
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(255, 0, 102, 0.1) 100%);
opacity: 0;
transition: opacity 0.3s ease;
z-index: -1;
}

.testimonial-card:hover::before{
opacity: 1;
}


.testimonial-controls{
display: flex !important;
justify-content: center !important;
align-items: center !important;
gap: 1rem !important;
margin-top: 1.5rem !important;
padding: 0 1rem !important;
}

.testimonial-nav{
display: flex !important;
width: 45px !important;
height: 45px !important;
background: rgba(255, 255, 255, 0.15) !important;
border: 1px solid rgba(255, 255, 255, 0.3) !important;
border-radius: 50% !important;
justify-content: center !important;
align-items: center !important;
color: var(--light) !important;
cursor: pointer !important;
transition: all 0.3s ease !important;
backdrop-filter: blur(10px) !important;
font-size: 1rem !important;
touch-action: manipulation !important;
-webkit-tap-highlight-color: transparent !important;
}

.testimonial-nav:hover,
.testimonial-nav:active{
background: rgba(255, 255, 255, 0.25) !important;
transform: scale(1.1) !important;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
}

.testimonial-nav:disabled{
opacity: 0.5 !important;
cursor: not-allowed !important;
transform: none !important;
}

.testimonial-indicators{
display: flex !important;
gap: 0.6rem !important;
justify-content: center !important;
align-items: center !important;
}

.indicator{
display: block !important;
width: 12px !important;
height: 12px !important;
border-radius: 50% !important;
background: rgba(255, 255, 255, 0.3) !important;
cursor: pointer !important;
transition: all 0.3s ease !important;
touch-action: manipulation !important;
-webkit-tap-highlight-color: transparent !important;
}

.indicator.active{
background: var(--primary) !important;
transform: scale(1.3) !important;
box-shadow: 0 0 10px rgba(0, 102, 255, 0.5) !important;
}

.indicator:hover{
background: rgba(255, 255, 255, 0.5) !important;
transform: scale(1.1) !important;
}

.testimonial-text{
font-size: 0.95rem !important;
margin-bottom: 1rem !important;
line-height: 1.6 !important;
text-align: center !important;
}

.testimonial-text::before{
font-size: 2.5rem !important;
top: -0.8rem !important;
left: -0.3rem !important;
}

.testimonial-author{
font-size: 0.85rem !important;
text-align: center !important;
}

.testimonial-rating{
margin-top: 0.5rem !important;
justify-content: center !important;
}


.testimonial-card.swipe-left{
animation: swipeLeft 0.3s ease-out;
}

.testimonial-card.swipe-right{
animation: swipeRight 0.3s ease-out;
}

@keyframes swipeLeft{
0%{
transform: translateX(0) scale(1);
opacity: 1;
}
50%{
transform: translateX(-20px) scale(0.95);
opacity: 0.8;
}
100%{
transform: translateX(-100%) scale(0.9);
opacity: 0;
}
}

@keyframes swipeRight{
0%{
transform: translateX(0) scale(1);
opacity: 1;
}
50%{
transform: translateX(20px) scale(0.95);
opacity: 0.8;
}
100%{
transform: translateX(100%) scale(0.9);
opacity: 0;
}
}


.testimonial-card.entering{
animation: cardEnter 0.5s ease-out;
}

@keyframes cardEnter{
0%{
transform: translateY(20px) scale(0.9);
opacity: 0;
}
100%{
transform: translateY(0) scale(1);
opacity: 1;
}
}


.testimonial-card:active{
transform: scale(0.98) !important;
transition: transform 0.1s ease !important;
}


.testimonial-carousel{
position: relative;
overflow: hidden;
border-radius: 20px;
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
}


.testimonial-progress{
position: absolute;
bottom: 0;
left: 0;
height: 3px;
background: rgba(255, 255, 255, 0.2);
width: 100%;
border-radius: 0 0 20px 20px;
overflow: hidden;
}

.testimonial-progress-bar{
height: 100%;
background: linear-gradient(90deg, var(--primary), rgba(255, 0, 102, 0.8));
width: 0%;
transition: width 0.3s ease;
border-radius: 0 0 20px 20px;
}
}


.simple-testimonial-carousel{
position: relative;
width: 100%;
max-width: 800px;
margin: 0 auto;
overflow: hidden;
padding: 2rem 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

.testimonial-slides{
position: relative;
width: 100%;
height: auto;
min-height: 300px;
display: flex;
justify-content: center;
align-items: center;
}

.testimonial-slide{
position: absolute;
top: 0;
left: 0;
width: 100%;
opacity: 0;
visibility: hidden;
transition: all 0.5s ease-in-out;
transform: translateX(100%);
will-change: transform, opacity;
}

.testimonial-slide.active{
opacity: 1;
visibility: visible;
transform: translateX(0);
position: relative;
z-index: 2;
}

.testimonial-slide.prev{
transform: translateX(-100%);
z-index: 1;
}

.testimonial-card{
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 20px;
padding: 2rem;
color: var(--light);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
text-align: center;
position: relative;
overflow: hidden;
width: 100%;
max-width: 600px;
margin: 0 auto;
}

.testimonial-card::before{
content: '"';
position: absolute;
top: -10px;
left: 20px;
font-size: 4rem;
color: var(--primary);
opacity: 0.3;
font-family: serif;
}

.testimonial-text{
font-size: 1.1rem;
line-height: 1.6;
margin-bottom: 1.5rem;
font-style: italic;
}

.testimonial-author{
margin-top: 1.5rem;
}

.testimonial-author p{
font-weight: 600;
margin-bottom: 0.5rem;
color: var(--primary);
}

.testimonial-rating{
display: flex;
justify-content: center;
gap: 0.3rem;
margin-top: 0.5rem;
}

.testimonial-rating i{
color: #ffd700;
font-size: 1rem;
}

.testimonial-controls{
display: flex;
justify-content: center;
align-items: center;
gap: 2rem;
margin-top: 2rem;
width: 100%;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

.testimonial-nav{
width: 50px;
height: 50px;
background: rgba(255, 255, 255, 0.15);
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
color: var(--light);
cursor: pointer;
transition: all 0.3s ease;
backdrop-filter: blur(10px);
}

.testimonial-nav:hover{
background: rgba(255, 255, 255, 0.25);
transform: scale(1.1);
}

.testimonial-nav:disabled{
opacity: 0.5;
cursor: not-allowed;
}

.testimonial-indicators{
display: flex;
gap: 0.8rem;
}

.indicator{
width: 12px;
height: 12px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.3);
cursor: pointer;
transition: all 0.3s ease;
}

.indicator.active{
background: var(--primary);
transform: scale(1.3);
box-shadow: 0 0 10px rgba(0, 102, 255, 0.5);
}

.indicator:hover{
background: rgba(255, 255, 255, 0.5);
transform: scale(1.1);
}


@media (max-width: 768px){
.simple-testimonial-carousel{
padding: 1rem 0;
}

.testimonial-card{
padding: 1.5rem;
margin: 0 1rem;
}

.testimonial-text{
font-size: 1rem;
}

.testimonial-controls{
gap: 1rem;
margin-top: 1.5rem;
}

.testimonial-nav{
width: 45px;
height: 45px;
}

.indicator{
width: 10px;
height: 10px;
}
}


@keyframes slideIn{
from{
opacity: 0;
transform: translateX(100%);
}
to{
opacity: 1;
transform: translateX(0);
}
}

@keyframes slideOut{
from{
opacity: 1;
transform: translateX(0);
}
to{
opacity: 0;
transform: translateX(-100%);
}
}

.testimonial-slide.sliding-in{
animation: slideIn 0.5s ease-in-out;
}

.testimonial-slide.sliding-out{
animation: slideOut 0.5s ease-in-out;
}


.testimonial-carousel, .testimonial-grid{
display: none !important;
width: 0 !important;
height: 0 !important;
overflow: hidden !important;
opacity: 0 !important;
pointer-events: none !important;
position: absolute !important;
}

@media (max-width: 768px){
.footer-logo h3::after{
display: none !important;
}
}

.mobile-menu i{
transition: all 0.3s ease;
}

.mobile-menu:hover{
transform: scale(1.1);
}

#global-meteors-canvas{
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
z-index: -1;
pointer-events: none;
}


body{margin: 0; font-family: Arial, sans-serif}
.header{position: fixed; top: 0; width: 100%; z-index: 1000; background: rgba(0,0,0,0.9)}
.hero{min-height: 100vh; display: flex; align-items: center}
.fade-in{opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease}
.fade-in.visible{opacity: 1; transform: translateY(0)}


#scroll-progress-bar{
position: absolute;
left: 0;
bottom: 0;
height: 4px;
width: 0;
background: red;
z-index: 20;
transition: width 0.2s cubic-bezier(0.4,0,0.2,1);
pointer-events: none;
}
.nav{
position: relative;
z-index: 21;
}