/* Base Styles */
:root {
    --primary: #0a1a30;
    --primary-dark: #051022;
    --secondary: #000000;
    --accent: #ffd700;
    --accent-light: #ffea00;
    --text: #ffffff;
    --text-secondary: #cccccc;
    --gradient: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    --card-bg: rgba(255, 255, 255, 0.05);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background-color: var(--secondary);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    position: relative;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-gold {
    background: var(--gradient);
    color: var(--primary-dark);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold::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: 0.5s;
    z-index: -1;
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--accent);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: var(--gradient);
    bottom: -10px;
    left: 25%;
    border-radius: 3px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Background Elements */
.bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.1;
}

.circle-1 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    top: -100px;
    left: -100px;
    animation: float 8s ease-in-out infinite;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: #00ffff;
    bottom: -50px;
    right: -50px;
    animation: float 10s ease-in-out infinite reverse;
}

.circle-3 {
    width: 200px;
    height: 200px;
    background: #ff00ff;
    top: 50%;
    right: 20%;
    animation: float 6s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(50px, 50px);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 26, 48, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 10px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 40px;
    margin-right: 10px;
    transition: var(--transition);
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    transition: var(--transition);
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-list li {
    margin-left: 25px;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text);
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    background: url('../images/hero-bg-desktop.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.hero-content h1 span {
    color: var(--accent);
    position: relative;
}

.hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(255, 215, 0, 0.3);
    z-index: -1;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    cursor: pointer;
}

.scroll-down span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
    transform: rotate(45deg);
    margin: -10px;
    animation: scrollDown 2s infinite;
}

.scroll-down span:nth-child(2) {
    animation-delay: -0.2s;
}

.scroll-down span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}

/* Stats Section */
.stats {
    background: var(--primary-dark);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary-dark);
}

.stat-content h3 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.stat-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Trial Section */
.trial {
    background: url('../images/trial-bg-desktop.jpg') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
}

.trial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 26, 48, 0.9);
}

.trial .container {
    position: relative;
    z-index: 1;
}

.trial-card {
    display: flex;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trial-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trial-content h2 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text);
    margin: 20px 0;
    position: relative;
    display: inline-block;
}

.price::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    opacity: 0.3;
    border-radius: 5px;
}

.trial-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.features {
    list-style: none;
    margin: 30px 0;
}

.features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.features i {
    color: var(--accent);
    margin-right: 10px;
    font-size: 1.2rem;
}

.trial-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.2);
}

.trial-image img {
    max-width: 100%;
    height: auto;
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* How It Works Section */
.how-it-works {
    background: url('../images/how-it-works-bg-desktop.jpg') no-repeat center center/cover;
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 16, 34, 0.9);
}

.how-it-works .container {
    position: relative;
    z-index: 1;
}

.steps-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.step-line {
    position: absolute;
    top: 0;
    left: 50px;
    width: 4px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.step-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient);
    animation: fillLine 2s forwards;
}

@keyframes fillLine {
    to {
        height: 100%;
    }
}

.steps {
    position: relative;
    z-index: 2;
}

.step {
    display: flex;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.step.animate {
    opacity: 1;
    transform: translateY(0);
}

.step-numbers {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-right: 30px;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--gradient);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.step-content {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    flex-grow: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-content h3 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.step-content p {
    color: var(--text-secondary);
}

/* Pricing Section */
.pricing {
    background: var(--primary);
    position: relative;
}

.device-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-btn {
    padding: 12px 25px;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--text);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.tab-btn:hover {
    background: rgba(255, 215, 0, 0.1);
}

.tab-btn.active {
    background: var(--gradient);
    color: var(--primary-dark);
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.pricing-item {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pricing-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), transparent);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.pricing-item:hover::before {
    opacity: 1;
}

.pricing-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.pricing-item h3 {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 20px 0;
    color: var(--text);
}

.price span {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-item .btn {
    width: 100%;
}

/* Channels Section */
.channels {
    background: url('../images/channels-bg-desktop.jpg') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
}

.channels::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.channels .container {
    position: relative;
    z-index: 1;
}

.channels-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.channel-track {
    display: flex;
    gap: 20px;
    width: calc(250px * 10);
    animation: scrollChannels 30s linear infinite;
}

.channel-item {
    width: 250px;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.channel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.channel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(100%);
    transition: var(--transition);
}

.channel-item:hover .channel-overlay {
    transform: translateY(0);
}

.channel-item:hover img {
    transform: scale(1.1);
}

.channel-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.channel-overlay span {
    font-size: 0.9rem;
    color: var(--accent);
}

@keyframes scrollChannels {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 5 - 20px * 5));
    }
}

/* Testimonials Section */
.testimonials {
    background: url('../images/testimonials-bg-desktop.jpg') no-repeat center center/cover;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 26, 48, 0.9);
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    width: calc(350px * 8);
    animation: scrollTestimonials 40s linear infinite;
}

.testimonial-item {
    width: 350px;
    flex-shrink: 0;
}

.testimonial-content {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rating {
    color: var(--accent);
    margin-bottom: 20px;
}

.rating i {
    margin-right: 3px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.3;
    position: absolute;
}

.testimonial-content p::before {
    top: -15px;
    left: -10px;
}

.testimonial-content p::after {
    bottom: -25px;
    right: -10px;
}

.user {
    display: flex;
    align-items: center;
}

.user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--accent);
}

.user-info h4 {
    color: var(--text);
    margin-bottom: 5px;
}

.user-info span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-350px * 4 - 30px * 4));
    }
}

/* Contact Section */
.contact {
    background: var(--primary-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info {
    display: grid;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--accent);
}

.info-item p {
    color: var(--text-secondary);
}

.contact-form {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    padding-top: 80px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 15px;
}

.footer ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer ul li a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info i {
    margin-right: 10px;
    color: var(--accent);
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.copyright {
    text-align: center;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.2);
    margin-top: 60px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    /* Tablet styles */
    .hero {
        background-image: url('../images/hero-bg-tablet.png'); /*Tablette background*/
    }
    
    .trial {
        background-image: url('../images/trial-bg-tablet.jpg');
    }
    
    .how-it-works {
        background-image: url('../images/how-it-works-bg-tablet.jpg');
    }
    
    .channels {
        background-image: url('../images/channels-bg-tablet.jpg');
    }
    
    .testimonials {
        background-image: url('../images/testimonials-bg-tablet.jpg');
    }
    
    .trial-card {
        flex-direction: column;
    }
    
    .trial-content {
        padding: 40px 30px;
    }
    
    .trial-image {
        padding: 0 30px 30px;
    }
    
    .channel-item {
        width: 220px;
        height: 320px;
    }
    
    .testimonial-item {
        width: 300px;
    }
}

@media (max-width: 768px) {
    /* Mobile styles */
    .hero {
        background-image: url('../images/hero-bg-mobile.png'); /*Mobile background*/
        min-height: 600px;
    }
    
    .trial {
        background-image: url('../images/trial-bg-mobile.jpg');
    }
    
    .how-it-works {
        background-image: url('../images/how-it-works-bg-mobile.jpg');
    }
    
    .channels {
        background-image: url('../images/channels-bg-mobile.jpg');
    }
    
    .testimonials {
        background-image: url('../images/testimonials-bg-mobile.jpg');
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav-list.active {
        left: 0;
    }
    
    .nav-list li {
        margin: 15px 0;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .step-line {
        display: none;
    }
    
    .channel-item {
        width: 200px;
        height: 300px;
    }
    
    .testimonial-item {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
    
    .trial-content h2 {
        font-size: 2rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/*Checkout*/
/* Purchase Page Styles */
.purchase {
    padding: 80px 0;
    background: var(--primary-dark);
}

.purchase-header {
    text-align: center;
    margin-bottom: 50px;
}

.purchase-header h1 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.purchase-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.purchase-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 20px;
}

.form-section h2 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}

.form-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    height: 20px;
    width: 5px;
    background: var(--gradient);
    border-radius: 5px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: block;
    margin-top: 5px;
    font-style: italic;
}

.package-display {
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--accent);
    border-radius: 8px;
    font-weight: 600;
    color: var(--accent);
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.radio-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
    user-select: none;
}

.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-checkmark {
    position: absolute;
    left: 0;
    top: 0;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 2px solid var(--accent);
    border-radius: 50%;
}

.radio-container:hover input ~ .radio-checkmark {
    background-color: rgba(255, 215, 0, 0.1);
}

.radio-container input:checked ~ .radio-checkmark {
    background-color: var(--accent);
}

.radio-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.radio-container input:checked ~ .radio-checkmark:after {
    display: block;
}

.radio-container .radio-checkmark:after {
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-dark);
}

.radio-label {
    margin-left: 8px;
    color: var(--text);
}

.mac-group {
    display: none;
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid var(--accent);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.form-submit {
    text-align: center;
    margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .purchase-form {
        padding: 30px 20px;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .purchase-header h1 {
        font-size: 2rem;
    }
    
    .form-section h2 {
        font-size: 1.3rem;
    }
}

/*About us*/

/* About Page Styles */
.about-hero {
    height: 60vh;
    min-height: 500px;
    background: url('../images/about-hero.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 0;
}

.mission {
    padding: 100px 0;
    background: var(--primary-dark);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: center;
}

.mission-content h2 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 30px;
    position: relative;
}

.mission-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 3px;
    background: var(--gradient);
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.mission-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.mission-stats .stat {
    text-align: center;
}

.mission-stats .counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 5px;
}

.mission-stats span {
    font-size: 1rem;
    color: var(--text-secondary);
}

.mission-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mission-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Timeline Section */
.timeline {
    padding: 100px 0;
    background: url('../images/timeline-bg.jpg') no-repeat center center/cover;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 16, 34, 0.9);
}

.timeline .container {
    position: relative;
    z-index: 1;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.timeline-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient);
    animation: fillLine 2s forwards;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: calc(50% - 40px);
    padding: 20px;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-item:nth-child(odd) {
    margin-right: auto;
    text-align: right;
}

.timeline-item:nth-child(even) {
    margin-left: auto;
    text-align: left;
}

.timeline-date {
    position: absolute;
    top: -25px;
    width: 100px;
    height: 50px;
    background: var(--gradient);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-dark);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.timeline-item:nth-child(odd) .timeline-date {
    right: -120px;
}

.timeline-item:nth-child(even) .timeline-date {
    left: -120px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: var(--primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.social-links {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.7);
    transition: var(--transition);
}

.team-member:hover .social-links {
    bottom: 0;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--text);
    transform: translateY(-5px);
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.member-info p {
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 15px;
}

.member-bio p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Technology Section */
.technology {
    padding: 100px 0;
    background: url('../images/tech-bg.jpg') no-repeat center center/cover;
    position: relative;
}

.technology::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 26, 48, 0.9);
}

.technology .container {
    position: relative;
    z-index: 1;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tech-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.tech-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary-dark);
}

.tech-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.tech-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* About CTA Section */
.about-cta {
    padding: 100px 0;
    background: url('../images/about-cta-bg.jpg') no-repeat center center/cover;
    position: relative;
    text-align: center;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.about-cta .container {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .timeline-line {
        left: 40px;
    }
    
    .timeline-item {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        text-align: left !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-date,
    .timeline-item:nth-child(even) .timeline-date {
        left: -120px;
        right: auto;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-image {
        order: -1;
    }
}

@media (max-width: 480px) {
    .about-hero {
        min-height: 400px;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .mission-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* Reseller Page Styles */
.reseller-hero {
    height: 70vh;
    min-height: 600px;
    background: url('../images/reseller-hero.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 0;
}

.reseller-hero .hero-content h1 span {
    color: var(--accent);
    position: relative;
}

.reseller-hero .hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(255, 215, 0, 0.3);
    z-index: -1;
}

/* Reseller Benefits */
.reseller-benefits {
    padding: 100px 0;
    background: var(--primary-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary-dark);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.benefit-wave {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
}

.benefit-card:hover .benefit-wave {
    opacity: 0.3;
}

/* Credits System */
.credits-system {
    padding: 100px 0;
    background: url('../images/credits-bg.jpg') no-repeat center center/cover;
    position: relative;
}

.credits-system::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 26, 48, 0.9);
}

.credits-system .container {
    position: relative;
    z-index: 1;
}

.credits-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.credits-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.credits-content h2 {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.credits-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.credits-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.credit-row {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.credit-row:last-child {
    border-bottom: none;
}

.credit-value {
    font-weight: 700;
    color: var(--accent);
    width: 100px;
}

.credit-equals {
    margin: 0 15px;
    color: var(--text-secondary);
}

.credit-desc {
    flex: 1;
    color: var(--text);
}

.credit-example {
    background: rgba(255, 215, 0, 0.1);
    border-left: 3px solid var(--accent);
    padding: 15px;
    border-radius: 0 5px 5px 0;
}

.credit-example h4 {
    color: var(--accent);
    margin-bottom: 10px;
}

.credit-example p {
    margin-bottom: 0;
    color: var(--text-secondary);
}

/* Reseller Plans */
.reseller-plans {
    padding: 100px 0;
    background: var(--primary);
}

.plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.plan-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.plan-card.featured {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.plan-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 5px 30px;
    font-weight: 700;
    transform: rotate(45deg);
    font-size: 0.8rem;
}

.plan-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text);
}

.plan-credits {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 600;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 20px 0;
    color: var(--text);
    position: relative;
    display: inline-block;
}

.plan-price::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    opacity: 0.3;
    border-radius: 5px;
}

.plan-features ul {
    list-style: none;
    margin: 30px 0;
}

.plan-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.plan-features i {
    color: var(--accent);
}

.plan-bubble {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    z-index: -1;
    transition: var(--transition);
    transform: scale(0);
}

.plan-bubble.bubble-1 {
    top: -30px;
    right: -30px;
}

.plan-bubble.bubble-2 {
    bottom: -30px;
    left: -30px;
}

.plan-card:hover .plan-bubble {
    transform: scale(1);
}

.all-features {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.all-features h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--accent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--accent);
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item span {
    color: var(--text);
    font-weight: 500;
}

/* Reseller Testimonials */
.reseller-testimonials {
    padding: 100px 0;
    background: url('../images/reseller-testimonials-bg.jpg') no-repeat center center/cover;
    position: relative;
}

.reseller-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 26, 48, 0.9);
}

.reseller-testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    width: calc(350px * 6);
}

.testimonial-item {
    width: 350px;
    flex-shrink: 0;
}

.testimonial-content {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* FAQ Section */
.reseller-faq {
    padding: 100px 0;
    background: var(--primary-dark);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--text);
}

.faq-question i {
    color: var(--accent);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    display: none;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Reseller CTA */
.reseller-cta {
    padding: 100px 0;
    background: url('../images/reseller-cta-bg.jpg') no-repeat center center/cover;
    position: relative;
    text-align: center;
}

.reseller-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.reseller-cta .container {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .credits-container {
        grid-template-columns: 1fr;
    }
    
    .credits-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto 40px;
    }
}

@media (max-width: 768px) {
    .reseller-hero {
        min-height: 500px;
    }
    
    .plan-card.featured {
        transform: scale(1);
    }
    
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .reseller-hero h1 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}

/* FAQ Page Styles */
.faq-hero {
    height: 60vh;
    min-height: 500px;
    background: url('../images/faq-hero.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 0;
}

.faq-hero .hero-content h1 span {
    color: var(--accent);
    position: relative;
}

.faq-hero .hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(255, 215, 0, 0.3);
    z-index: -1;
}

.search-box {
    display: flex;
    max-width: 600px;
    margin: 30px auto 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.search-box:hover {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.search-box input {
    flex: 1;
    padding: 15px 25px;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 1rem;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-box input:focus {
    outline: none;
}

.search-box button {
    width: 60px;
    background: var(--accent);
    color: var(--primary-dark);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    background: var(--accent-light);
}

/* FAQ Categories */
.faq-categories {
    padding: 80px 0;
    background: var(--primary-dark);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.category-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card.active {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.category-card.active::before {
    transform: scaleX(1);
}

.category-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--accent);
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background: var(--gradient);
    color: var(--primary-dark);
    transform: translateY(-5px);
}

.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text);
}

.category-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* FAQ Interactive Cards */
.faq-interactive {
    padding: 80px 0;
    background: var(--primary);
}

.faq-cards-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-card {
    background: var(--card-bg);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-card.active {
    border-color: var(--accent);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.1);
}

.card-header {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-card.active .card-header {
    background: rgba(255, 215, 0, 0.05);
}

.card-header h3 {
    font-size: 1.2rem;
    color: var(--text);
    margin-right: 20px;
}

.card-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-card.active .card-icon {
    background: var(--accent);
    color: var(--primary-dark);
}

.card-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 25px;
}

.faq-card.active .card-content {
    padding: 0 25px 25px;
    max-height: 500px;
}

.card-content p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.card-wave {
    height: 2px;
    background: var(--gradient);
    width: 0;
    transition: var(--transition);
}

.faq-card.active .card-wave {
    width: 100%;
}

.highlight {
    background: rgba(255, 215, 0, 0.3);
    padding: 0 3px;
    border-radius: 3px;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    border: 1px dashed var(--accent);
}

.faq-cta p {
    color: var(--text);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Visual Guide Section */
.visual-guide {
    padding: 80px 0;
    background: var(--primary-dark);
}

.guide-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.guide-track {
    display: flex;
    gap: 20px;
    width: calc(300px * 6);
}

.guide-item {
    width: 300px;
    flex-shrink: 0;
}

.guide-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
}

.guide-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.guide-item:hover .guide-image img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-dark);
    transition: var(--transition);
    opacity: 0;
}

.guide-item:hover .play-button {
    opacity: 1;
}

.guide-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text);
}

.guide-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .faq-hero {
        min-height: 400px;
    }
    
    .faq-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .guide-track {
        width: calc(250px * 6);
    }
    
    .guide-item {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .card-header h3 {
        font-size: 1rem;
    }
    
    .faq-cta p {
        font-size: 1rem;
    }
}

/* Tutorials Page Styles */
.tutorials-hero {
    height: 60vh;
    min-height: 500px;
    background: url('../images/tutorials-hero.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 0;
}

.tutorials-hero .hero-content h1 span {
    color: var(--accent);
    position: relative;
}

.tutorials-hero .hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(255, 215, 0, 0.3);
    z-index: -1;
}

.search-box {
    display: flex;
    max-width: 600px;
    margin: 30px auto 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.search-box:hover {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.search-box input {
    flex: 1;
    padding: 15px 25px;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 1rem;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-box input:focus {
    outline: none;
}

.search-box button {
    width: 60px;
    background: var(--accent);
    color: var(--primary-dark);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    background: var(--accent-light);
}

/* Device Categories */
.device-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: center;
}

.category-btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.category-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--accent);
}

.category-btn.active {
    background: var(--gradient);
    color: var(--primary-dark);
    font-weight: 600;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Devices Grid */
.devices-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.device-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.device-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.device-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.device-card:hover .device-image img {
    transform: scale(1.1);
}

.device-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.device-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--text);
}

.device-overlay p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.device-info {
    padding: 20px;
    text-align: center;
}

.device-info .btn {
    width: 100%;
}

.device-wave {
    height: 2px;
    background: var(--gradient);
    width: 0;
    transition: var(--transition);
}

.device-card:hover .device-wave {
    width: 100%;
}

.highlight {
    background: rgba(255, 215, 0, 0.3);
    padding: 0 3px;
    border-radius: 3px;
}

/* Video Tutorials */
.video-tutorials {
    padding: 80px 0;
    background: var(--primary-dark);
}

.videos-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.video-thumbnail {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-dark);
    transition: var(--transition);
    opacity: 0;
}

.video-card:hover .play-button {
    opacity: 1;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--text);
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.8rem;
}

.video-card h3 {
    font-size: 1.2rem;
    margin: 15px 20px 5px;
    color: var(--text);
}

.video-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0 20px 20px;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* Support CTA */
.support-cta {
    padding: 80px 0;
    background: url('../images/support-bg.jpg') no-repeat center center/cover;
    position: relative;
    text-align: center;
}

.support-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 26, 48, 0.8);
}

.support-cta .container {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tutorials-hero {
        min-height: 400px;
    }
    
    .tutorials-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .devices-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .videos-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .devices-container {
        grid-template-columns: 1fr;
    }
    
    .category-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

/* Contact Page Specific Styles */
.contact-hero {
    height: 60vh;
    min-height: 500px;
    background: url('../images/contact-hero.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    text-align: center;
}

.contact-wave {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('../images/wave-contact.svg') no-repeat center bottom;
    background-size: cover;
    z-index: 1;
    animation: waveAnimation 8s linear infinite;
}

@keyframes waveAnimation {
    0% { background-position-x: 0; }
    100% { background-position-x: 1000px; }
}

/* Contact Channels */
.contact-channels {
    padding: 100px 0;
    background: var(--primary-dark);
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.channel-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.channel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.channel-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--accent);
    position: relative;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    border-radius: 50%;
    animation: pulseContact 2s infinite;
    opacity: 0;
}

@keyframes pulseContact {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(0.8);
        opacity: 0;
    }
}

.channel-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.channel-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.channel-hours {
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Interactive Form */
.interactive-form {
    padding: 100px 0;
    background: url('../images/form-bg.jpg') no-repeat center center/cover;
    position: relative;
}

.interactive-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 26, 48, 0.9);
}

.interactive-form .container {
    position: relative;
    z-index: 1;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.form-visual {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.visual-element {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px dashed var(--accent);
}

.floating-dots {
    position: absolute;
    width: 100%;
    height: 100%;
}

.dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    filter: blur(1px);
}

.dot-1 {
    top: 20%;
    left: 30%;
    animation: floatDot 5s ease-in-out infinite;
}

.dot-2 {
    top: 60%;
    left: 20%;
    animation: floatDot 7s ease-in-out infinite 1s;
}

.dot-3 {
    top: 40%;
    left: 70%;
    animation: floatDot 6s ease-in-out infinite 0.5s;
}

@keyframes floatDot {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(10px, 15px);
    }
    50% {
        transform: translate(20px, 5px);
    }
    75% {
        transform: translate(5px, 20px);
    }
}

.message-bubble {
    position: absolute;
    bottom: 50px;
    right: 50px;
    width: 200px;
    height: 120px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bubbleFloat 3s ease-in-out infinite;
}

.message-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 30px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid var(--accent-light);
}

@keyframes bubbleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.typing-indicator {
    display: flex;
    gap: 5px;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--primary-dark);
    border-radius: 50%;
    animation: typingAnimation 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.form-content {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.form-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.contact-form {
    display: grid;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffd700'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e") no-repeat;
    background-position: right 0 center;
    background-size: 20px;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 0;
    color: var(--text-secondary);
    transition: var(--transition);
    pointer-events: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--accent);
}

.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:not([value=""]) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    font-size: 0.8rem;
    color: var(--accent);
}

.underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}

.form-group input:focus ~ .underline,
.form-group select:focus ~ .underline,
.form-group textarea:focus ~ .underline {
    width: 100%;
}

.contact-form button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

/* World Map */
.support-centers {
    padding: 100px 0;
    background: var(--primary);
}

.world-map {
    margin-top: 50px;
    position: relative;
    height: 500px;
}

.map-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-base {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.location-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.marker-dot {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.marker-pulse {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--accent);
    border-radius: 50%;
    z-index: 1;
    opacity: 0;
    animation: markerPulse 2s infinite;
}

@keyframes markerPulse {
    0% {
        transform: scale(0.5);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(0.5);
        opacity: 0;
    }
}

.location-info {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--card-bg);
    padding: 15px;
    border-radius: 8px;
    width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.location-info::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--card-bg);
}

.location-marker:hover .location-info {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 15px);
}

/* FAQ Preview */
.faq-preview {
    padding: 100px 0;
    background: var(--primary-dark);
}

.preview-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.preview-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.preview-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.faq-highlights {
    margin: 30px 0;
}

.faq-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 15px;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.faq-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-left-color: var(--accent);
}

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text);
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.preview-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .form-container {
        grid-template-columns: 1fr;
    }
    
    .form-visual {
        min-height: 300px;
        order: -1;
    }
    
    .preview-container {
        grid-template-columns: 1fr;
    }
    
    .preview-image {
        order: -1;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 400px;
    }
    
    .channels-grid {
        grid-template-columns: 1fr;
    }
    
    .world-map {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .form-content {
        padding: 30px 20px;
    }
    
    .faq-item {
        padding: 15px;
    }
}

/* Special Offer Page Styles */
.offer-hero {
    height: 80vh;
    min-height: 700px;
    background: url('../images/offer-hero.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 0;
    text-align: center;
}

.offer-hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.offer-hero h1 span {
    color: var(--accent);
    position: relative;
}

.offer-hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(255, 215, 0, 0.3);
    z-index: -1;
}

.offer-hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.offer-badge {
    background: var(--gradient);
    color: var(--primary-dark);
    padding: 10px 25px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 20px;
    transform: rotate(-5deg);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.offer-badge::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, 
        rgba(255,255,255,0.1) 0%, 
        rgba(255,255,255,0) 50%, 
        rgba(255,255,255,0.1) 100%);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.countdown-item {
    text-align: center;
    position: relative;
}

.countdown-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.countdown-number::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    animation: pulseBorder 2s infinite;
    z-index: -1;
}

@keyframes pulseBorder {
    0% { transform: scale(1); opacity: 0.7; }
    70% { transform: scale(1.2); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

.countdown-label {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Offer Banner */
.offer-banner {
    background: var(--primary-dark);
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(255,215,0,0.1);
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px dashed var(--accent);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.banner-content i {
    font-size: 1.5rem;
    color: var(--accent);
}

.banner-content p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.banner-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    filter: blur(1px);
    animation: sparkleFall linear infinite;
}

.sparkle:nth-child(1) {
    top: -10px;
    left: 20%;
    animation-duration: 5s;
}

.sparkle:nth-child(2) {
    top: -10px;
    left: 50%;
    animation-duration: 7s;
    animation-delay: 1s;
}

.sparkle:nth-child(3) {
    top: -10px;
    left: 80%;
    animation-duration: 6s;
    animation-delay: 0.5s;
}

@keyframes sparkleFall {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(100px) rotate(360deg); opacity: 0; }
}

/* Offer Cards */
.offer-cards {
    padding: 100px 0;
    background: var(--primary);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.offer-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.offer-card.featured {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.offer-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
}

.offer-ribbon {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 5px 30px;
    font-weight: 700;
    transform: rotate(45deg);
    font-size: 0.8rem;
    z-index: 2;
}

.offer-header {
    text-align: center;
    margin-bottom: 20px;
}

.offer-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.offer-image {
    position: relative;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-image img {
    max-height: 100%;
    transition: var(--transition);
}

.offer-card:hover .offer-image img {
    transform: scale(1.1);
}

.offer-discount {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.offer-pricing {
    text-align: center;
    margin-bottom: 25px;
}

.original-price {
    font-size: 1.5rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    position: relative;
}

.discounted-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin: 5px 0;
}

.offer-term {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.offer-features {
    list-style: none;
    margin: 30px 0;
}

.offer-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}

.offer-features i {
    color: var(--accent);
}

.offer-bonus {
    background: rgba(255,215,0,0.1);
    padding: 10px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.offer-bonus i {
    color: var(--accent);
}

.offer-bubble {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255,215,0,0.1);
    border-radius: 50%;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

.offer-bubble:nth-child(1) {
    top: -30px;
    right: -30px;
}

.offer-bubble:nth-child(2) {
    bottom: -30px;
    left: -30px;
    animation-delay: 1s;
}

/* Comparison Table */
.offer-comparison {
    padding: 100px 0;
    background: var(--primary-dark);
}

.comparison-table {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: rgba(255,215,0,0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-header > div {
    padding: 20px;
    font-weight: 600;
    text-align: center;
}

.comparison-header .comparison-feature {
    text-align: left;
}

.comparison-header .highlight {
    background: rgba(255,215,0,0.2);
    color: var(--accent);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row > div {
    padding: 15px 20px;
    display: flex;
    align-items: center;
}

.comparison-feature {
    font-weight: 500;
}

.comparison-plan {
    text-align: center;
    justify-content: center;
    flex-direction: column;
}

.comparison-plan.highlight {
    background: rgba(255,215,0,0.05);
}

.original {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.discounted {
    font-weight: 600;
    color: var(--accent);
    font-size: 1.1rem;
}

/* Testimonials */
.offer-testimonials {
    padding: 100px 0;
    background: url('../images/testimonials-bg.jpg') no-repeat center center/cover;
    position: relative;
}

.offer-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 26, 48, 0.9);
}

.offer-testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonial-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    width: calc(350px * 6);
    animation: scrollTestimonials 40s linear infinite;
}

.testimonial-item {
    width: 350px;
    flex-shrink: 0;
}

.testimonial-content {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Final CTA */
.offer-final-cta {
    padding: 100px 0;
    background: url('../images/offer-cta-bg.jpg') no-repeat center center/cover;
    position: relative;
    text-align: center;
}

.offer-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.offer-final-cta .container {
    position: relative;
    z-index: 1;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-secondary);
}

.countdown-small {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.countdown-numbers {
    font-weight: 700;
    color: var(--accent);
}

.countdown-numbers span {
    display: inline-block;
    min-width: 30px;
    text-align: center;
}

.btn.pulse {
    animation: pulse 2s infinite;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .offer-hero h1 {
        font-size: 3rem;
    }
    
    .countdown-number {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .discounted-price {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .offer-hero {
        min-height: 600px;
    }
    
    .offer-hero h1 {
        font-size: 2.5rem;
    }
    
    .countdown {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        width: calc(50% - 10px);
    }
    
    .offer-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-card.featured {
        transform: scale(1);
    }
    
    .comparison-header, .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .offer-hero {
        min-height: 500px;
    }
    
    .offer-hero h1 {
        font-size: 2rem;
    }
    
    .offer-hero p {
        font-size: 1.2rem;
    }
    
    .countdown-item {
        width: calc(50% - 5px);
    }
    
    .countdown-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .comparison-header, .comparison-row {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
        font-size: 0.9rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Tutorial Single Page Styles */
.tutorial-single-hero {
    height: 70vh;
    min-height: 500px;
    background: url('../images/tutorials/firestick/hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 0;
}

.tutorial-single-hero .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.tutorial-single-hero .hero-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.tutorial-single-hero .hero-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.tutorial-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.intro-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.intro-image .image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient);
    color: var(--primary-dark);
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.requirements {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    border-left: 3px solid var(--accent);
}

.requirements ul {
    list-style: none;
    margin-top: 15px;
}

.requirements li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.requirements i {
    color: var(--accent);
}

.step-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.step-card.animate-step {
    opacity: 1;
    transform: translateY(0);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-dark);
    flex-shrink: 0;
    font-size: 1.3rem;
}

.step-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.step-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.step-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-zoom {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: var(--transition);
}

.step-image:hover .image-zoom {
    opacity: 1;
}

.step-notes {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-tip, .step-warning {
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.step-tip {
    background: rgba(255,215,0,0.1);
    border-left: 3px solid var(--accent);
}

.step-warning {
    background: rgba(255,0,0,0.1);
    border-left: 3px solid #ff4757;
}

.step-tip i {
    color: var(--accent);
}

.step-warning i {
    color: #ff4757;
}

.final-steps {
    background: rgba(255,215,0,0.05);
    padding: 30px;
    border-radius: 15px;
    margin: 50px 0;
    border: 1px dashed var(--accent);
}

.final-step {
    margin-bottom: 30px;
}

.final-step:last-child {
    margin-bottom: 0;
}

.app-section {
    margin: 60px 0;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.app-header img {
    height: 50px;
    width: auto;
}

.tutorial-completion {
    margin: 80px 0;
}

.completion-card {
    background: var(--gradient);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    color: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.completion-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.completion-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.completion-actions .btn {
    display: flex;
    align-items: center;
    gap: 10px;
}

.related-tutorials {
    padding: 80px 0;
    background: var(--primary);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.related-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.related-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.related-image {
    height: 200px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.related-card:hover .related-image img {
    transform: scale(1.1);
}

.related-content {
    padding: 25px;
}

.related-content h3 {
    margin-bottom: 10px;
}

.related-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    overflow: auto;
    padding: 20px;
    box-sizing: border-box;
}

.modal-content {
    display: block;
    margin: 0 auto;
    max-width: 90%;
    max-height: 80vh;
    margin-top: 5vh;
}

.modal-caption {
    color: white;
    text-align: center;
    margin: 15px auto;
    max-width: 80%;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.modal-close:hover {
    color: var(--accent);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .tutorial-intro {
        grid-template-columns: 1fr;
    }
    
    .intro-image {
        order: -1;
    }
    
    .step-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tutorial-single-hero {
        min-height: 400px;
    }
    
    .completion-actions {
        flex-direction: column;
    }
    
    .completion-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .step-tip, .step-warning {
        flex-direction: column;
    }
}

/* Channels Logo Carousel */
.channels-logo-carousel {
    padding: 80px 0;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.logos-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.logos-track {
    display: flex;
    gap: 30px;
    width: calc(150px * 18); /* Double the items for seamless loop */
    animation: scrollLogos 30s linear infinite;
}

.logo-item {
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    transition: var(--transition);
    flex-shrink: 0;
}

.logo-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%) brightness(0.8);
    transition: var(--transition);
}

.logo-item:hover img {
    filter: grayscale(0) brightness(1);
    transform: scale(1.1);
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-150px * 9 - 30px * 9)); /* Move by half the width */
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logos-track {
        gap: 20px;
        animation-duration: 20s;
    }
    
    .logo-item {
        width: 120px;
        height: 70px;
    }
    
    @keyframes scrollLogos {
        100% {
            transform: translateX(calc(-120px * 9 - 20px * 9));
        }
    }
}

@media (max-width: 480px) {
    .logos-track {
        gap: 15px;
    }
    
    .logo-item {
        width: 100px;
        height: 60px;
        padding: 10px;
    }
    
    @keyframes scrollLogos {
        100% {
            transform: translateX(calc(-100px * 9 - 15px * 9));
        }
    }
}

/* Floating Social Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    text-decoration: none;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.floating-btn.whatsapp-btn {
    background: #25D366;
    animation-delay: 0.3s;
}

.floating-btn.telegram-btn {
    background: #0088cc;
    animation-delay: 0.6s;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(0);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.floating-btn .tooltip {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.floating-btn .tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid rgba(0, 0, 0, 0.8);
}

.floating-btn:hover .tooltip {
    opacity: 1;
    right: 75px;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.floating-btn.pulse {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .floating-btn .tooltip {
        display: none;
    }
}
/* Thank You Page Styles */
.thank-you-hero {
    height: 70vh;
    min-height: 500px;
    background: url('../images/thank-you-bg.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.thank-you-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.checkmark-circle {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--primary-dark);
    font-size: 3rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.checkmark-circle::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        transparent,
        transparent,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent,
        transparent,
        transparent
    );
    transform: rotate(30deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(30deg); }
    100% { transform: translateX(100%) rotate(30deg); }
}

.thank-you-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('../images/wave-thank-you.svg') no-repeat center bottom;
    background-size: cover;
    z-index: 1;
    animation: waveAnimation 8s linear infinite;
}

/* Next Steps Section */
.next-steps {
    padding: 100px 0;
    background: var(--primary-dark);
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step-card {
    display: flex;
    margin-bottom: 40px;
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-right: 30px;
    flex-shrink: 0;
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.7; }
    70% { transform: scale(1.1); opacity: 0; }
    100% { transform: scale(0.95); opacity: 0; }
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.step-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.step-card:hover .step-icon {
    color: rgba(255, 215, 0, 0.2);
    transform: scale(1.5);
}

/* Action Cards Section */
.action-cards {
    padding: 100px 0;
    background: var(--primary);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.action-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.action-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--accent);
    transition: var(--transition);
}

.action-card:hover .card-icon {
    background: var(--gradient);
    color: var(--primary-dark);
    transform: rotateY(180deg);
}

.action-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.action-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.card-wave {
    height: 2px;
    background: var(--gradient);
    width: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

.action-card:hover .card-wave {
    width: 100%;
}

/* Email Reminder Section */
.email-reminder {
    padding: 80px 0;
    background: url('../images/email-reminder-bg.jpg') no-repeat center center/cover;
    position: relative;
}

.email-reminder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 26, 48, 0.9);
}

.email-reminder .container {
    position: relative;
    z-index: 1;
}

.reminder-content {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    border-radius: 15px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.reminder-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--accent);
    margin-right: 30px;
    flex-shrink: 0;
}

.reminder-text {
    flex: 1;
    text-align: left;
}

.reminder-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.reminder-text p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

/* Instructions Popup */
.instructions-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.instructions-popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--primary-dark);
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border: 1px solid var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.instructions-popup.active .popup-content {
    transform: translateY(0);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.close-popup:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.popup-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.popup-header h3 {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.popup-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--accent);
    margin: 0 auto;
}

.popup-body ul {
    list-style: none;
    margin: 25px 0;
}

.popup-body li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
}

.popup-body i {
    color: var(--accent);
    font-size: 1.2rem;
}

.popup-actions {
    text-align: center;
    margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .thank-you-hero {
        min-height: 400px;
    }
    
    .step-card {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 20px;
    }
    
    .step-icon {
        position: static;
        margin: 20px auto 0;
    }
    
    .reminder-content {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .reminder-icon {
        margin: 0 auto 20px;
    }
}

@media (max-width: 480px) {
    .checkmark-circle {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .thank-you-hero h1 {
        font-size: 2.2rem;
    }
    
    .popup-content {
        padding: 20px;
    }
    
    .popup-header h3 {
        font-size: 1.5rem;
    }
}

.alert {
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 14px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Terms of Service Specific Styles */
.terms-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.terms-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.terms-section h3 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.terms-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.terms-section p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .terms-section h3 {
        font-size: 1.3rem;
    }
    
    .terms-content {
        padding: 0 10px;
    }
}

/* Privacy Policy Specific Styles */
.privacy-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.privacy-section h3 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

.privacy-list {
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
}

.privacy-list li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
}

.privacy-list li i {
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 3px;
}

.privacy-section a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

.privacy-section a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .privacy-section h3 {
        font-size: 1.3rem;
    }
    
    .privacy-content {
        padding: 0 10px;
    }
    
    .privacy-list li {
        padding-left: 25px;
    }
}