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


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

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

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23ff006e" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ff006e" stop-opacity="0"/></radialGradient></defs><rect width="100%" height="100%" fill="url(%23a)"/></svg>') center/cover;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 110, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
}

/* Animated Background Elements */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 0, 110, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 0, 110, 0.1) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 0, 110, 0.05) 50%, transparent 70%);
    animation: backgroundShift 12s ease-in-out infinite;
    z-index: 1;
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 255, 255, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(odd) {
    background: rgba(255, 0, 110, 0.6);
    animation-duration: 8s;
}

.particle:nth-child(3n) {
    animation-duration: 10s;
    animation-delay: -2s;
}

.particle:nth-child(5n) {
    animation-duration: 7s;
    animation-delay: -4s;
}

/* Animated Grid Lines */
.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    animation: gridPulse 4s ease-in-out infinite;
}

.grid-line.horizontal {
    width: 100%;
    height: 1px;
    top: 25%;
    animation-delay: 0s;
}

.grid-line.horizontal:nth-child(2) {
    top: 50%;
    animation-delay: 1s;
}

.grid-line.horizontal:nth-child(3) {
    top: 75%;
    animation-delay: 2s;
}

.grid-line.vertical {
    height: 100%;
    width: 1px;
    left: 25%;
    animation-delay: 0.5s;
}

.grid-line.vertical:nth-child(5) {
    left: 50%;
    animation-delay: 1.5s;
}

.grid-line.vertical:nth-child(6) {
    left: 75%;
    animation-delay: 2.5s;
}

/* Keyframe Animations */
@keyframes backgroundPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes backgroundShift {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    25% {
        transform: translateX(-10px) translateY(-5px) rotate(1deg);
    }
    50% {
        transform: translateX(10px) translateY(5px) rotate(-1deg);
    }
    75% {
        transform: translateX(-5px) translateY(10px) rotate(0.5deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 1;
    }
    50% {
        transform: translateY(-40px) translateX(-5px);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-20px) translateX(-10px);
        opacity: 1;
    }
}

@keyframes gridPulse {
    0%, 100% {
        opacity: 0.1;
        transform: scaleX(0);
    }
    50% {
        opacity: 0.3;
        transform: scaleX(1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    transition: transform 0.1s ease-out;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #00ffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button {
    background: linear-gradient(135deg, #ff006e 0%, #00ffff 100%);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 1s ease-out 0.6s both;
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
    position: relative;
    overflow: hidden;
    width: auto;
    min-width: 200px;
}

.cta-button.extending {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    animation: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1 !important;
    visibility: visible !important;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.4);
}

.cta-button.extending:hover {
    transform: translateX(-50%) translateY(-3px);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateY(3px);
}

.button-text {
    transition: opacity 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.button-menu {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 24px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.cta-button.extending .button-menu {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.menu-item {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 12px;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.button-icon {
    transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Hero Buttons Container */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.trial-button {
    background: transparent;
    border: 2px solid #00ffff;
    padding: 18px 40px;
    border-radius: 50px;
    color: #00ffff;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.trial-button:hover {
    background: #00ffff;
    color: #0a0a0a;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.4);
}

.trial-button i {
    transition: transform 0.3s ease;
}

.trial-button:hover i {
    transform: scale(1.1);
}

/* Section Styles */
.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #ffffff 0%, #00ffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Sticky Menu */
.sticky-menu-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    justify-content: center;
}

.sticky-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 12px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.sticky-menu-item {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.sticky-menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.sticky-menu-item.active {
    background: linear-gradient(135deg, #ff006e 0%, #00ffff 100%);
    color: white;
}

/* Products Section */
.products-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}


.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    padding: 20px 15px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 0, 110, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 0, 110, 0.05) 0%, transparent 50%);
    opacity: 0.3;
    animation: cardBackgroundPulse 4s ease-in-out infinite;
    z-index: -1;
    border-radius: 20px;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 0, 110, 0.05) 50%, transparent 70%);
    animation: cardBackgroundShift 6s ease-in-out infinite;
    z-index: -1;
    border-radius: 20px;
}

.product-card:hover::before {
    opacity: 0.6;
    animation-duration: 2s;
}

.product-card:hover::after {
    animation-duration: 3s;
}

.product-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
    border-color: #00ffff;
}

.product-card.featured {
    border-color: #00ffff;
    background: linear-gradient(145deg, #2a2a2a 0%, #3a3a3a 100%);
}

.product-card.featured:hover {
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

/* Selection Indicator */
.selection-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #00ffff, #ff006e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 255, 255, 0.3);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

/* Selected State */
.product-card.active {
    border-color: #00ffff !important;
    background: linear-gradient(145deg, #1a2a2a 0%, #2a3a3a 100%) !important;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.4);
}

.product-card.active::before {
    opacity: 0.8 !important;
    animation-duration: 2s;
}

.product-card.active::after {
    animation-duration: 3s;
}

.product-card.active .card-image img {
    transform: scale(1.1);
}

.product-card.active .selection-indicator {
    opacity: 1;
    transform: scale(1);
}

/* Selected state for featured card */
.product-card.featured.active {
    border-color: #00ffff !important;
    background: linear-gradient(145deg, #2a2a2a 0%, #3a3a3a 100%) !important;
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.4);
}

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

.card-image {
    width: 100%;
    height: 150px;
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .card-image img {
    transform: scale(1.05);
}

.product-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.product-card p {
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 0;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-features span {
    background: rgba(0, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #00ffff;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff006e, #ff4081);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Pack Features Section */
.pack-features-section {
    margin: 30px 0;
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
}

.pack-features-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #00ffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pack-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.pack-feature-item {
    background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 12px;
    padding: 15px 12px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: featureSlideIn 0.5s ease-out forwards;
}

.pack-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(255, 0, 110, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pack-feature-item:hover::before {
    opacity: 1;
}

.pack-feature-item:hover {
    transform: translateY(-5px);
    border-color: #00ffff;
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.2);
}

.pack-feature-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
    display: block;
}

.pack-feature-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

/* Staggered animation for features */
.pack-feature-item:nth-child(1) { animation-delay: 0.1s; }
.pack-feature-item:nth-child(2) { animation-delay: 0.2s; }
.pack-feature-item:nth-child(3) { animation-delay: 0.3s; }
.pack-feature-item:nth-child(4) { animation-delay: 0.4s; }
.pack-feature-item:nth-child(5) { animation-delay: 0.5s; }
.pack-feature-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes featureSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardBackgroundPulse {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.05);
    }
}

@keyframes cardBackgroundShift {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    25% {
        transform: translateX(-5px) translateY(-3px) rotate(1deg);
    }
    50% {
        transform: translateX(5px) translateY(3px) rotate(-1deg);
    }
    75% {
        transform: translateX(-3px) translateY(5px) rotate(0.5deg);
    }
}

/* Pricing Section */
.pricing-section {
    margin-top: 30px;
}


.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pricing-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    border-color: #00ffff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.2);
}

.pricing-card.featured {
    border-color: #ff006e;
    background: linear-gradient(145deg, #2a1a2a 0%, #3a2a3a 100%);
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.device-type {
    font-size: 0.9rem;
    color: #00ffff;
    margin-bottom: 15px;
    font-weight: 500;
}

.savings {
    background: linear-gradient(135deg, #ff006e, #ff4081);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    margin-left: 8px;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    color: #00ffff;
    margin-bottom: 10px;
}

.pricing-card .period {
    color: #cccccc;
    margin-bottom: 30px;
}

.pricing-card .features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-card .features li {
    padding: 8px 0;
    color: #cccccc;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card .features li:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    background: linear-gradient(135deg, #ff006e 0%, #00ffff 100%);
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.pricing-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 0, 110, 0.3);
}

/* Trending Section */
.trending-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}

.trending-carousel {
    overflow: hidden;
    position: relative;
    margin-bottom: 5px;
}

.trending-carousel:last-child {
    margin-bottom: 0;
}

.carousel-track {
    display: flex;
    gap: 30px;
    width: max-content;
    opacity: 1;
    visibility: visible;
    min-height: 300px;
}

/* First Carousel - Moves Left */
.carousel-1 .carousel-track {
    animation: scrollLeft 30s linear infinite;
}

/* Second Carousel - Moves Right */
.carousel-2 .carousel-track {
    animation: scrollRight 35s linear infinite;
}

/* Third Carousel - Moves Left */
.carousel-3 .carousel-track {
    animation: scrollLeft 40s linear infinite;
}

.carousel-item {
    flex-shrink: 0;
    width: 200px;
    text-align: center;
    opacity: 1;
    visibility: visible;
}

.carousel-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
    opacity: 1;
    visibility: visible;
}

.carousel-item:hover img {
    transform: scale(1.05);
}

/* Loading Placeholder */
.loading-placeholder {
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #00ffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Left Movement Animation */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Right Movement Animation */
@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* FAQ Section */
.faq-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.faq-item {
    background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
}

.faq-question i {
    color: #00ffff;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: #cccccc;
    line-height: 1.6;
}

/* Reviews Section */
.reviews-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.review-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: #00ffff;
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.1);
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.review-card p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 25px;
    font-style: italic;
}

.reviewer strong {
    color: #ffffff;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.reviewer span {
    color: #00ffff;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #00ffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p {
    color: #cccccc;
    margin-bottom: 10px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00ffff;
}

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

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

/* WhatsApp Chat Button */
.whatsapp-chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-chat-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    background: linear-gradient(45deg, #128C7E, #25D366);
}

.whatsapp-chat-button i {
    font-size: 24px;
}

.chat-text {
    white-space: nowrap;
}

@keyframes pulse-whatsapp {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .whatsapp-chat-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .whatsapp-chat-button i {
        font-size: 20px;
    }
    
    .chat-text {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    /* Sticky Menu Responsive */
    .sticky-menu {
        gap: 16px;
        padding: 10px 20px;
    }
    
    .sticky-menu-item {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    
    .product-card {
        padding: 15px 10px;
        height: 200px;
    }
    
    .product-card h3 {
        display: none;
    }
    
    .product-card p {
        display: none;
    }
    
    .card-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .card-features {
        gap: 8px;
    }
    
    .pack-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .pack-feature-item {
        padding: 12px 8px;
    }
    
    .pack-feature-icon {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }
    
    .pack-feature-text {
        font-size: 0.8rem;
    }
    
    .featured-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
        top: 15px;
        right: 15px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .carousel-track {
        animation-duration: 20s;
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
    }
    
    .carousel-1 .carousel-track {
        animation-duration: 25s;
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
    }
    
    .carousel-2 .carousel-track {
        animation-duration: 30s;
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
    }
    
    .carousel-3 .carousel-track {
        animation-duration: 35s;
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
    }
    
    .carousel-item {
        width: 150px;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .carousel-item img {
        height: 225px;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .loading-placeholder {
        min-height: 225px;
    }
    
    .loading-spinner {
        width: 30px;
        height: 30px;
    }
    
    .trending-carousel {
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .product-card {
        padding: 10px 8px;
        height: 180px;
    }
    
    .product-card h3 {
        display: none;
    }
    
    .product-card p {
        display: none;
    }
    
    .card-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .card-features {
        gap: 6px;
    }
    
    .card-features span {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .pack-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .pack-feature-item {
        padding: 10px 6px;
    }
    
    .pack-feature-icon {
        font-size: 1.3rem;
        margin-bottom: 5px;
    }
    
    .pack-feature-text {
        font-size: 0.7rem;
    }
    
    .featured-badge {
        font-size: 0.6rem;
        padding: 4px 8px;
        top: 10px;
        right: 10px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 10px;
    }
    
    .pricing-card {
        padding: 20px 15px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
    }
}

/* Free Trial Modal */
.trial-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.trial-modal.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 1px solid #3a3a3a;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.modal-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff006e, #00ffff);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
}

.modal-icon i {
    color: white;
    font-size: 1.5rem;
}

.modal-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.modal-header p {
    color: #cccccc;
    font-size: 1rem;
}

.close-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: #3a3a3a;
    border: 1px solid #4a4a4a;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: #4a4a4a;
    border-color: #00ffff;
    transform: scale(1.1);
}

.close-btn i {
    color: #cccccc;
    font-size: 1.2rem;
}

.trial-form .form-group {
    margin-bottom: 20px;
}

.trial-form label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.trial-form input,
.trial-form select {
    width: 100%;
    padding: 15px;
    border: 2px solid #3a3a3a;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #2a2a2a;
    color: #ffffff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.trial-form input:focus,
.trial-form select:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.1);
}

.trial-form input::placeholder {
    color: #999999;
}

.select-wrapper {
    position: relative;
}

.select-wrapper i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #cccccc;
    pointer-events: none;
}

.trial-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff006e, #00ffff);
    color: #ffffff;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.trial-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.4);
}

.disclaimer {
    font-size: 0.9rem;
    color: #cccccc;
    text-align: center;
    margin: 0;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Mobile Modal Styles */
@media (max-width: 768px) {
    .modal-content {
        padding: 25px;
        margin: 20px;
    }
    
    .modal-header h2 {
        font-size: 1.6rem;
    }
    
    .modal-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #ff006e, #00ffff);
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(255, 0, 110, 0.3);
    }
    
    .modal-icon i {
        font-size: 1.2rem;
    }
    
    .trial-form input,
    .trial-form select {
        padding: 12px;
    }
    
    .trial-btn {
        padding: 15px;
        font-size: 1.1rem;
    }
    
}
