
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

/* Animated background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(45deg, #0a0a0a, #1a1a2e, #16213e, #0a0a0a);
    background-size: 400% 400%;
    animation: gradientWave 15s ease infinite;
}

@keyframes gradientWave {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Geometric shapes background */
.geometric-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.geometric-shape {
    position: absolute;
    opacity: 0.1;
    animation: rotateFloat 20s linear infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    border: 2px solid #ff6b6b;
    border-radius: 50%;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    border: 2px solid #4ecdc4;
    top: 60%;
    right: 20%;
    animation-delay: 5s;
    transform: rotate(45deg);
}

.shape-3 {
    width: 100px;
    height: 100px;
    border: 2px solid #45b7d1;
    border-radius: 50%;
    bottom: 20%;
    left: 50%;
    animation-delay: 10s;
}

.shape-4 {
    width: 180px;
    height: 180px;
    border: 2px solid #ff6b6b;
    top: 30%;
    right: 50%;
    animation-delay: 15s;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

@keyframes rotateFloat {
    0% { transform: rotate(0deg) translateY(0px); }
    25% { transform: rotate(90deg) translateY(-20px); }
    50% { transform: rotate(180deg) translateY(0px); }
    75% { transform: rotate(270deg) translateY(-20px); }
    100% { transform: rotate(360deg) translateY(0px); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header with neon effect */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 107, 107, 0.2);
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 107, 107, 0.5);
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.5); }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #4ecdc4;
    text-shadow: 0 0 10px rgba(78, 205, 196, 0.5);
}

/* Hero with 3D effects */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    perspective: 1000px;
}

.hero-content {
    text-align: center;
    z-index: 2;
    transform-style: preserve-3d;
    animation: heroEntry 1.5s ease-out;
}

@keyframes heroEntry {
    from {
        opacity: 0;
        transform: translateZ(-200px) rotateX(30deg);
    }
    to {
        opacity: 1;
        transform: translateZ(0) rotateX(0deg);
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #ff6b6b);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    animation: textShimmer 4s ease-in-out infinite;
    text-shadow: 0 0 50px rgba(255, 107, 107, 0.3);
}

@keyframes textShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    animation: fadeInDelay 1s ease-out 0.5s both;
}

@keyframes fadeInDelay {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 0.9; transform: translateY(0); }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    position: relative;
    overflow: hidden;
    animation: buttonPulse 2s ease-in-out infinite;
}

.cta-secondary {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: transparent;
    color: #4ecdc4;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    border: 2px solid #4ecdc4;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

@keyframes buttonPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6); }
}

.cta-primary::before,
.cta-secondary::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.6s;
}

.cta-primary:hover::before,
.cta-secondary:hover::before {
    left: 100%;
}

.cta-secondary:hover {
    background: rgba(78, 205, 196, 0.1);
    box-shadow: 0 0 30px rgba(78, 205, 196, 0.4);
}

/* About section with layered effect */
.about {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    backdrop-filter: blur(10px);
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
    animation: breathe 6s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: typewriter 2s steps(20) 1s both;
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

.about-text h3 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: #4ecdc4;
    animation: slideFromLeft 1s ease-out 1.5s both;
}

@keyframes slideFromLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    opacity: 0.9;
    animation: slideFromLeft 1s ease-out 2s both;
}

/* 3D Visual Element */
.about-visual {
    position: relative;
    height: 450px;
    perspective: 1000px;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: rotate3D 20s linear infinite;
}

@keyframes rotate3D {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

.visual-layer {
    position: absolute;
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.2), rgba(78, 205, 196, 0.2));
    border: 1px solid rgba(255, 107, 107, 0.3);
    backdrop-filter: blur(10px);
}

.visual-layer:nth-child(1) { transform: translate(-50%, -50%) rotateY(0deg) translateZ(100px); }
.visual-layer:nth-child(2) { transform: translate(-50%, -50%) rotateY(60deg) translateZ(100px); }
.visual-layer:nth-child(3) { transform: translate(-50%, -50%) rotateY(120deg) translateZ(100px); }
.visual-layer:nth-child(4) { transform: translate(-50%, -50%) rotateY(180deg) translateZ(100px); }
.visual-layer:nth-child(5) { transform: translate(-50%, -50%) rotateY(240deg) translateZ(100px); }
.visual-layer:nth-child(6) { transform: translate(-50%, -50%) rotateY(300deg) translateZ(100px); }

/* Features with card flip effect */
.features {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
}

.features h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleEntry 1s ease-out;
}

@keyframes titleEntry {
    from { opacity: 0; transform: translateY(-50px) scale(0.8); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    perspective: 1000px;
    height: 280px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.feature-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-back {
    transform: rotateY(180deg);
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    animation: iconSpin 3s ease-in-out infinite;
}

@keyframes iconSpin {
    0%, 100% { transform: rotateZ(0deg) scale(1); }
    50% { transform: rotateZ(180deg) scale(1.1); }
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #4ecdc4;
}

.feature-card p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Pricing with glassmorphism */
.pricing {
    padding: 6rem 0;
    background: linear-gradient(135deg, #16213e, #1a1a2e);
    position: relative;
}

.pricing-container {
    position: relative;
    z-index: 2;
}

.pricing h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card {
    max-width: 550px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid transparent;
    border-radius: 30px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    position: relative;
    backdrop-filter: blur(25px);
    animation: cardLevitate 4s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes cardLevitate {
    0%, 100% { transform: translateY(0px) rotateX(0deg); }
    50% { transform: translateY(-15px) rotateX(5deg); }
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #ff6b6b);
    background-size: 400% 400%;
    border-radius: 30px;
    z-index: -1;
    animation: borderFlow 6s ease infinite;
}

@keyframes borderFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(135deg, rgba(16, 33, 62, 0.95), rgba(26, 26, 46, 0.95));
    border-radius: 28px;
    z-index: -1;
}

.price-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    animation: badgeGlow 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 107, 0.5); }
    50% { box-shadow: 0 0 30px rgba(78, 205, 196, 0.7); }
}

.price-display {
    margin: 2rem 0;
}

.old-price {
    font-size: 2.2rem;
    color: #ff6b6b;
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 0.5rem;
    animation: fadeStrike 1.5s ease-in;
}

@keyframes fadeStrike {
    0% { text-decoration: none; opacity: 1; }
    100% { text-decoration: line-through; opacity: 0.7; }
}

.new-price {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    animation: priceShine 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 107, 107, 0.3);
}

@keyframes priceShine {
    0%, 100% { background-position: 0% 50%; transform: scale(1); }
    50% { background-position: 100% 50%; transform: scale(1.05); }
}

.pricing-features {
    list-style: none;
    margin: 2.5rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.8rem 0;
    position: relative;
    padding-left: 2.5rem;
    opacity: 0;
    animation: featureSlide 0.6s ease forwards;
    font-size: 1.1rem;
}

.pricing-features li:nth-child(1) { animation-delay: 0.2s; }
.pricing-features li:nth-child(2) { animation-delay: 0.4s; }
.pricing-features li:nth-child(3) { animation-delay: 0.6s; }
.pricing-features li:nth-child(4) { animation-delay: 0.8s; }
.pricing-features li:nth-child(5) { animation-delay: 1s; }

@keyframes featureSlide {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.pricing-features li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-size: 1.3rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.payment-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.paypal-btn {
    background: linear-gradient(45deg, #0070ba, #003087);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(0, 112, 186, 0.4);
    position: relative;
    overflow: hidden;
}

.crypto-btn {
    background: linear-gradient(45deg, #f7931a, #ff6b6b);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(247, 147, 26, 0.4);
    position: relative;
    overflow: hidden;
}

.paypal-btn::before,
.crypto-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.paypal-btn:hover::before,
.crypto-btn:hover::before {
    left: 100%;
}

.paypal-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 112, 186, 0.6);
}

.crypto-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(247, 147, 26, 0.6);
}

.countdown {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: #ff6b6b;
    animation: urgentPulse 1.5s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

@keyframes urgentPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}


/* Footer */
footer {
    background: linear-gradient(135deg, #0a0a0a, #16213e);
    padding: 4rem 0 2rem;
    position: relative;
    border-top: 1px solid rgba(255, 107, 107, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: #4ecdc4;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    animation: footerGlow 3s ease-in-out infinite;
}
#footer-socials{
    display: flex;
    justify-content: flex-start;
    column-gap: 20px;
}
#footer-socials i {
    font-size: 25px;
}
@keyframes footerGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(78, 205, 196, 0.3); }
    50% { text-shadow: 0 0 20px rgba(78, 205, 196, 0.6); }
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    opacity: 1;
    color: #4ecdc4;
    transform: translateX(5px);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.6;
}

.demo-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.demo-button {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.demo-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
}

/* Modal Overlay */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

/* Modal Container */
.modal-container {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    border: 2px solid #4ecdc4;
    box-shadow: 0 0 50px rgba(78, 205, 196, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal-overlay.show .modal-container {
    transform: scale(1);
}

/* Close Button */
.close-button {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #ff6b6b;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-button:hover {
    color: #ffffff;
    transform: rotate(90deg);
}

/* Modal Content */
.modal-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-subtitle {
    text-align: center;
    color: #ffffff;
    opacity: 0.8;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: #4ecdc4;
    font-weight: bold;
    font-size: 1.1rem;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(78, 205, 196, 0.3);
    border-radius: 50px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
    outline: none;
    border-color: #4ecdc4;
    box-shadow: 0 0 20px rgba(78, 205, 196, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.form-input.error {
    border-color: #ff6b6b;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
}

.error-message {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 5px;
    display: none;
}

/* Submit Button */
.submit-button {
    width: 100%;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    border: none;
    padding: 18px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    position: relative;
    overflow: hidden;
}

.submit-button::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.6s;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Loading Animation */
.loading {
    display: none;
    text-align: center;
    margin-top: 20px;
}

.spinner {
    border: 3px solid rgba(78, 205, 196, 0.3);
    border-top: 3px solid #4ecdc4;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    color: #4ecdc4;
    font-size: 1.1rem;
    margin-top: 20px;
}

/* Demo Info */
.demo-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-info h3 {
    color: #4ecdc4;
    margin-bottom: 10px;
}

.demo-info p {
    opacity: 0.8;
    line-height: 1.6;
}
/* Stats section with modern glassmorphism effect */
.stats {
padding: 5rem 0;
background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(26, 26, 46, 0.9));
position: relative;
overflow: hidden;
}

.stats::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: 
radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.08) 0%, transparent 50%),
radial-gradient(circle at 80% 50%, rgba(78, 205, 196, 0.08) 0%, transparent 50%);
animation: statsBreath 8s ease-in-out infinite;
z-index: 1;
}

@keyframes statsBreath {
0%, 100% { opacity: 0.3; transform: scale(1); }
50% { opacity: 0.6; transform: scale(1.05); }
}

.stats-content {
position: relative;
z-index: 2;
text-align: center;
max-width: 900px;
margin: 0 auto;
}

/* Stats badge with floating animation */
.stats-badge {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(20px);
border: 2px solid transparent;
border-radius: 25px;
padding: 2.5rem 2rem;
margin-bottom: 2rem;
position: relative;
display: flex;
align-items: center;
gap: 1.5rem;
text-align: left;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
animation: badgeFloat 6s ease-in-out infinite;
transition: all 0.4s ease;
}

@keyframes badgeFloat {
0%, 100% { transform: translateY(0px) rotateX(0deg); }
50% { transform: translateY(-10px) rotateX(2deg); }
}

.stats-badge::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #ff6b6b);
background-size: 400% 400%;
border-radius: 25px;
z-index: -1;
animation: badgeBorderFlow 8s ease infinite;
opacity: 0.8;
}

@keyframes badgeBorderFlow {
0%, 100% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
}

.stats-badge::after {
content: '';
position: absolute;
top: 2px;
left: 2px;
right: 2px;
bottom: 2px;
background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(26, 26, 46, 0.95));
border-radius: 23px;
z-index: -1;
}

.stats-badge:hover {
transform: translateY(-5px) scale(1.02);
box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

/* Badge icon with pulse effect */
.badge-icon {
min-width: 80px;
height: 80px;
background: linear-gradient(45deg, #4ecdc4, #45b7d1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 2.5rem;
animation: iconPulse 3s ease-in-out infinite;
box-shadow: 0 0 30px rgba(78, 205, 196, 0.4);
position: relative;
}

@keyframes iconPulse {
0%, 100% { 
transform: scale(1); 
box-shadow: 0 0 30px rgba(78, 205, 196, 0.4);
}
50% { 
transform: scale(1.1); 
box-shadow: 0 0 50px rgba(78, 205, 196, 0.7);
}
}

.badge-icon::before {
content: '';
position: absolute;
top: -5px;
left: -5px;
right: -5px;
bottom: -5px;
background: linear-gradient(45deg, #4ecdc4, #45b7d1, #4ecdc4);
border-radius: 50%;
z-index: -1;
animation: iconHalo 4s linear infinite;
opacity: 0.3;
}

@keyframes iconHalo {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}

/* Badge text styling */
.badge-text {
flex: 1;
font-size: 1.3rem;
line-height: 1.6;
color: #ffffff;
opacity: 0.95;
}

.highlight-number {
background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
font-weight: 900;
font-size: 1.4rem;
position: relative;
animation: numberGlow 3s ease-in-out infinite;
}

@keyframes numberGlow {
0%, 100% { filter: brightness(1); }
50% { filter: brightness(1.3); }
}

.highlight-brand {
background: linear-gradient(45deg, #4ecdc4, #45b7d1);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 1px;
position: relative;
}

.highlight-brand::after {
content: '';
position: absolute;
bottom: -2px;
left: 0;
right: 0;
height: 2px;
background: linear-gradient(45deg, #4ecdc4, #45b7d1);
border-radius: 1px;
animation: underlineGlow 2s ease-in-out infinite;
}

@keyframes underlineGlow {
0%, 100% { opacity: 0.5; transform: scaleX(1); }
50% { opacity: 1; transform: scaleX(1.1); }
}

/* Stats description */
.stats-description {
font-size: 1.2rem;
line-height: 1.8;
color: #ffffff;
opacity: 0.9;
background: rgba(255, 255, 255, 0.03);
padding: 1.8rem 2.5rem;
border-radius: 20px;
border: 1px solid rgba(255, 255, 255, 0.1);
backdrop-filter: blur(15px);
position: relative;
animation: descriptionEntry 1s ease-out 0.5s both;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

@keyframes descriptionEntry {
from { 
opacity: 0; 
transform: translateY(30px) scale(0.95); 
}
to { 
opacity: 1; 
transform: translateY(0) scale(1); 
}
}

.stats-description::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(45deg, rgba(255, 107, 107, 0.05), rgba(78, 205, 196, 0.05));
border-radius: 20px;
opacity: 0;
transition: opacity 0.3s ease;
}

.stats-description:hover::before {
opacity: 1;
}

.highlight-tech {
background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
background-size: 200% 200%;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
font-weight: 700;
animation: techShimmer 4s ease-in-out infinite;
position: relative;
}

@keyframes techShimmer {
0%, 100% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
}

/* Floating particles effect */
.stats::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: 
radial-gradient(2px 2px at 20px 30px, rgba(78, 205, 196, 0.3), transparent),
radial-gradient(2px 2px at 40px 70px, rgba(255, 107, 107, 0.3), transparent),
radial-gradient(1px 1px at 90px 40px, rgba(69, 183, 209, 0.3), transparent),
radial-gradient(1px 1px at 130px 80px, rgba(78, 205, 196, 0.3), transparent);
background-size: 200px 150px;
animation: particlesFloat 15s linear infinite;
z-index: 1;
pointer-events: none;
}

@keyframes particlesFloat {
0% { transform: translateY(0px) translateX(0px); }
100% { transform: translateY(-100px) translateX(50px); }
}

/* Responsive design */
@media (max-width: 768px) {
.stats {
padding: 3rem 0;
}

.stats-badge {
flex-direction: column;
text-align: center;
padding: 2rem 1.5rem;
gap: 1rem;
}

.badge-icon {
min-width: 60px;
height: 60px;
font-size: 2rem;
}

.badge-text {
font-size: 1.1rem;
}

.highlight-number {
font-size: 1.2rem;
}

.stats-description {
font-size: 1rem;
padding: 1.5rem;
margin: 0 1rem;
}
}

@media (max-width: 480px) {
.stats-badge {
margin: 0 1rem 2rem;
padding: 1.5rem;
}

.badge-text {
font-size: 1rem;
}

.stats-description {
font-size: 0.95rem;
padding: 1.2rem;
}
}
/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }


    .visual-container {
        animation-duration: 30s;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animation */
.loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    z-index: 9999;
    animation: loadingProgress 2s ease-out forwards;
}

@keyframes loadingProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}
/*Success modal*/
/* Success Modal Styles */
.success-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.4s ease;
    /* Dodano za proper scrolling */
    overflow-y: auto;
    padding: 20px 0;
}

.success-modal-overlay.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    /* Promenjeno za bolje centriranje */
    min-height: 100vh;
}

.success-modal-container {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 20px;
    padding: 30px 25px;
    /* Uklonjena fiksna max-height, dodana fleksibilna */
    max-width: 450px;
    width: 85%;
    /* Dodano da se container prilagodi sadržaju */
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    text-align: center;
    position: relative;
    border: 2px solid #4ecdc4;
    box-shadow: 0 0 40px rgba(78, 205, 196, 0.4);
    transform: scale(0.7) translateY(50px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: successBounce 0.8s ease-out forwards;
    /* Dodano za proper scrolling */
    margin: auto;
}

@keyframes successBounce {
    0% {
        transform: scale(0.3) translateY(100px) rotateX(30deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.05) translateY(-10px) rotateX(0deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) translateY(0) rotateX(0deg);
        opacity: 1;
    }
}

.success-modal-overlay.show .success-modal-container {
    transform: scale(1) translateY(0);
}

/* Success Icon - smanjeno da se bolje uklopi */
.success-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    position: relative;
    animation: iconPulse 2s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(78, 205, 196, 0.6);
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(78, 205, 196, 0.6);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 40px rgba(78, 205, 196, 0.8);
    }
}

.success-icon::before {
    content: '✓';
    font-size: 35px;
    font-weight: bold;
    color: white;
    animation: checkmarkDraw 0.5s ease-in-out 0.3s both;
}

@keyframes checkmarkDraw {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Confetti Animation - ograničeno na kontejner */
.confetti {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ff6b6b;
    animation: confettiFall 3s linear infinite;
    /* Ograničeno na kontejner */
    top: 0;
}

.confetti:nth-child(1) { left: 10%; animation-delay: 0s; background: #ff6b6b; }
.confetti:nth-child(2) { left: 20%; animation-delay: 0.2s; background: #4ecdc4; }
.confetti:nth-child(3) { left: 30%; animation-delay: 0.4s; background: #45b7d1; }
.confetti:nth-child(4) { left: 40%; animation-delay: 0.6s; background: #ff6b6b; }
.confetti:nth-child(5) { left: 50%; animation-delay: 0.8s; background: #4ecdc4; }
.confetti:nth-child(6) { left: 60%; animation-delay: 1s; background: #45b7d1; }
.confetti:nth-child(7) { left: 70%; animation-delay: 1.2s; background: #ff6b6b; }
.confetti:nth-child(8) { left: 80%; animation-delay: 1.4s; background: #4ecdc4; }
.confetti:nth-child(9) { left: 90%; animation-delay: 1.6s; background: #45b7d1; }

@keyframes confettiFall {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(300px) rotate(720deg);
        opacity: 0;
    }
}

/* Modal Content - kompaktniji */
.success-title {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 2s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.success-subtitle {
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 15px;
    opacity: 0.9;
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

/* Payment Details - kompaktniji */
.payment-details {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px;
    margin: 12px 0;
    border: 1px solid rgba(78, 205, 196, 0.3);
    animation: slideInUp 0.6s ease-out 0.7s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.payment-details h3 {
    color: #4ecdc4;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.payment-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    text-align: left;
}

.payment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-item:last-child {
    border-bottom: none;
}

.payment-label {
    color: #ffffff;
    opacity: 0.8;
    font-size: 0.75rem;
}

.payment-value {
    color: #4ecdc4;
    font-weight: bold;
    font-size: 0.75rem;
}

/* Next Steps - kompaktniji */
.next-steps {
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    border-radius: 12px;
    padding: 12px;
    margin: 12px 0;
    border: 1px solid rgba(255, 107, 107, 0.3);
    animation: slideInUp 0.6s ease-out 0.9s both;
}

.next-steps h3 {
    color: #ff6b6b;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.steps-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.steps-list li {
    padding: 4px 0;
    position: relative;
    padding-left: 20px;
    color: #ffffff;
    opacity: 0.9;
    animation: stepFadeIn 0.4s ease-out forwards;
    font-size: 0.85rem;
    line-height: 1.4;
}

.steps-list li:nth-child(1) { animation-delay: 1.1s; opacity: 0; }

@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateX(-15px);
    }
    to {
        opacity: 0.9;
        transform: translateX(0);
    }
}

.steps-list li::before {
    content: '📧';
    position: absolute;
    left: 0;
    animation: stepIconBounce 0.6s ease-out forwards;
}

@keyframes stepIconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Action Buttons - kompaktniji */
.action-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 15px;
    animation: slideInUp 0.6s ease-out 1.7s both;
}

.primary-action {
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(78, 205, 196, 0.4);
    position: relative;
    overflow: hidden;
}

.secondary-action {
    background: transparent;
    color: #4ecdc4;
    border: 2px solid #4ecdc4;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.primary-action::before,
.secondary-action::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.6s;
}

.primary-action:hover::before,
.secondary-action:hover::before {
    left: 100%;
}

.primary-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(78, 205, 196, 0.6);
}

.secondary-action:hover {
    background: rgba(78, 205, 196, 0.1);
    transform: translateY(-2px);
}

/* Close Button */
.close-success-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-success-btn:hover {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    transform: rotate(90deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .success-modal-overlay {
        padding: 10px;
    }
    
    .success-modal-container {
        padding: 20px 15px;
        margin: 10px;
        max-width: 95%;
        width: 95%;
    }

    .success-title {
        font-size: 1.4rem;
    }

    .success-subtitle {
        font-size: 0.85rem;
    }

    .payment-info {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
        gap: 6px;
    }

    .primary-action, .secondary-action {
        font-size: 0.75rem;
        padding: 8px 14px;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
    }
    
    .success-icon::before {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .success-modal-container {
        padding: 15px 10px;
        max-width: 98%;
        width: 98%;
    }
    
    .success-title {
        font-size: 1.2rem;
    }
    
    .success-subtitle {
        font-size: 0.8rem;
    }
    
    .payment-details, .next-steps {
        margin: 8px 0;
        padding: 10px;
    }
    
    .steps-list li {
        font-size: 0.8rem;
    }
}
    .faq {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a, #16213e);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(69, 183, 209, 0.05) 0%, transparent 50%);
    animation: faqBreathe 8s ease-in-out infinite;
}

@keyframes faqBreathe {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.faq-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: faqTitleShimmer 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 107, 107, 0.3);
}

@keyframes faqTitleShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.faq-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.8;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 0.8;
        transform: translateY(0);
    }
}

/* Accordion Styles */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: faqItemSlide 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }
.faq-item:nth-child(7) { animation-delay: 0.7s; }
.faq-item:nth-child(8) { animation-delay: 0.8s; }

@keyframes faqItemSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item.active {
    border-color: rgba(78, 205, 196, 0.5);
    box-shadow: 0 0 30px rgba(78, 205, 196, 0.2);
    transform: translateY(-5px);
}

.faq-item.active::before {
    opacity: 0.3;
}

/* Question Header */
.faq-question {
    padding: 1.8rem 2.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.question-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    margin-right: 1rem;
}

.faq-item.active .question-text {
    color: #4ecdc4;
}

/* Icon Styles */
.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: #ffffff;
    transition: all 0.3s ease;
}

.faq-icon::before {
    width: 16px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
}

.faq-item.active .faq-icon::after {
    opacity: 0;
}

/* Answer Styles */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 1;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.answer-content {
    padding: 1.5rem 2.5rem 2rem 2.5rem;
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.7;
    font-size: 1.05rem;
    transform: translateY(-20px);
    transition: transform 0.3s ease 0.2s;
    margin-top: 0.5rem;
}

.faq-item.active .answer-content {
    transform: translateY(0);
}

/* Special styling for certain answers */
.answer-content strong {
    color: #4ecdc4;
    font-weight: 600;
}

.answer-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.answer-content li {
    margin-bottom: 0.5rem;
    position: relative;
}

.answer-content li::marker {
    color: #ff6b6b;
}

/* Floating Elements */
.faq-floating-element {
    position: absolute;
    pointer-events: none;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-1 {
    top: 10%;
    left: 5%;
    width: 80px;
    height: 80px;
    border: 2px solid #ff6b6b;
    border-radius: 50%;
    animation-delay: 0s;
}

.floating-2 {
    top: 60%;
    right: 10%;
    width: 60px;
    height: 60px;
    border: 2px solid #4ecdc4;
    transform: rotate(45deg);
    animation-delay: 2s;
}

.floating-3 {
    bottom: 20%;
    left: 15%;
    width: 100px;
    height: 100px;
    border: 2px solid #45b7d1;
    border-radius: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

/* CTA Section at bottom of FAQ */
.faq-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(78, 205, 196, 0.3);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    animation: ctaPulse 3s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(78, 205, 196, 0.2); }
    50% { box-shadow: 0 0 40px rgba(78, 205, 196, 0.4); }
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    animation: ctaShimmer 4s ease-in-out infinite;
}

@keyframes ctaShimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.faq-cta-content {
    position: relative;
    z-index: 2;
}

.faq-cta h3 {
    font-size: 1.8rem;
    color: #4ecdc4;
    margin-bottom: 1rem;
    animation: ctaTextGlow 2s ease-in-out infinite;
}

@keyframes ctaTextGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(78, 205, 196, 0.3); }
    50% { text-shadow: 0 0 30px rgba(78, 205, 196, 0.6); }
}

.faq-cta p {
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.faq-cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    position: relative;
    overflow: hidden;
}

.faq-cta-button::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.6s;
}

.faq-cta-button:hover::before {
    left: 100%;
}

.faq-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq h2 {
        font-size: 2.2rem;
    }

    .faq-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .faq-question {
        padding: 1.5rem 1.5rem;
    }

    .question-text {
        font-size: 1.1rem;
    }

    .answer-content {
        padding: 1.2rem 1.5rem 1.5rem 1.5rem;
        font-size: 1rem;
        margin-top: 0.3rem;
    }

    .faq-icon {
        width: 40px;
        height: 40px;
    }

    .faq-icon::before {
        width: 12px;
    }

    .faq-icon::after {
        height: 12px;
    }

    .faq-cta {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }

    .faq-cta h3 {
        font-size: 1.5rem;
    }

    .faq-cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .faq h2 {
        font-size: 2.2rem;
    }

    .faq-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .faq-question {
        padding: 1.5rem 1.5rem;
    }

    .question-text {
        font-size: 1.1rem;
    }

    .answer-content {
        padding: 0 1.5rem 1.5rem 1.5rem;
        font-size: 1rem;
    }

    .faq-icon {
        width: 40px;
        height: 40px;
    }

    .faq-icon::before {
        width: 12px;
    }

    .faq-icon::after {
        height: 12px;
    }

    .faq-cta {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }

    .faq-cta h3 {
        font-size: 1.5rem;
    }

    .faq-cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}
      .testimonials {
            padding: 80px 0;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            overflow: hidden;
            position: relative;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .testimonials h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #fff;
            margin-bottom: 60px;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .testimonials-wrapper {
            position: relative;
        }

        .testimonials-slider {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease;
        }

        /* Desktop - automatski slider */
        @media (min-width: 769px) {
            .testimonials-slider {
                animation: slideTestimonials 20s linear infinite;
            }

            .testimonials-slider:hover {
                animation-play-state: paused;
            }
        }

        .testimonial {
            width: 350px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
            flex-shrink: 0;
            user-select: none; /* Sprečava selekciju teksta tokom swipe */
        }

        .testimonial:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(78, 205, 196, 0.3);
            box-shadow: 0 20px 40px rgba(78, 205, 196, 0.1);
        }

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            color: white;
            margin: 0 auto 20px;
        }

        .stars {
            color: #ffd700;
            font-size: 20px;
            margin-bottom: 20px;
        }

        .testimonial p {
            color: #e0e0e0;
            font-style: italic;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .testimonial h4 {
            color: #4ecdc4;
            font-size: 18px;
            margin: 0;
        }

        /* Slider kontrole za tablet i mobile */
        .slider-controls {
            display: none;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 40px;
        }

        .slider-nav {
            background: rgba(78, 205, 196, 0.2);
            border: 2px solid #4ecdc4;
            color: #4ecdc4;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 18px;
        }

        .slider-nav:hover {
            background: #4ecdc4;
            color: #000;
            transform: scale(1.1);
        }

        .slider-nav:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        .slider-nav:disabled:hover {
            background: rgba(78, 205, 196, 0.2);
            color: #4ecdc4;
        }

        .slider-dots {
            display: flex;
            gap: 10px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(78, 205, 196, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: #4ecdc4;
            transform: scale(1.2);
        }

        /* Tablet i mobile responsive */
        @media (max-width: 768px) {
            .testimonials-slider {
                animation: none !important;
                transition: transform 0.5s ease;
            }

            .slider-controls {
                display: flex;
            }

            .testimonials h2 {
                font-size: 2rem;
                margin-bottom: 40px;
            }

            .container {
                padding: 0 15px;
            }
        }

        /* Tablet - 2 testimonijala */
        @media (max-width: 768px) and (min-width: 631px) {
            .testimonial {
                min-width: calc(50% - 15px);
                max-width: calc(50% - 15px);
                flex-shrink: 0;
            }
            
            .testimonials-wrapper {
                overflow: hidden; /* Sakrij testimonijale van kontejnera */
            }
        }

        /* Mobile - 1 testimonijal */
        @media (max-width: 630px) {
            .testimonial {
                min-width: 100%;
                max-width: 100%;
                flex-shrink: 0;
                padding: 20px;
            }

            .testimonials {
                padding: 60px 0;
            }

            .testimonials h2 {
                font-size: 1.8rem;
            }

            .container {
                padding: 0 20px;
            }
            
            .testimonials-wrapper {
                overflow: hidden;
            }
        }

        @keyframes slideTestimonials {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* Fade in animacija */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
@media (max-width: 768px) {
    .success-modal-container {
        padding: 25px 20px;
        margin: 20px;
        max-width: 90%;
        max-height: 75vh;
    }

    .success-title {
        font-size: 1.6rem;
    }

    .success-subtitle {
        font-size: 0.9rem;
    }

    .payment-info {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .primary-action, .secondary-action {
        font-size: 0.85rem;
        padding: 10px 16px;
    }
}