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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

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

#logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a73e8;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

#logo::before {
    content: '⚡';
    font-size: 1.2rem;
}

#logo span {
    background: linear-gradient(135deg, #1a73e8, #1557b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

#nav-links {
    display: flex;
    gap: 2rem;
}

#nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

#nav-links a:hover {
    color: #1a73e8;
}

/* Hamburger Menu */
#hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 5px;
}

#hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    position: relative;
    overflow: hidden;
    min-height: 800px; /* Ensure minimum height for proper spacing */
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(26, 115, 232, 0.2) 0%, rgba(13, 71, 161, 0.4) 100%);
}

#hero-content {
    max-width: 800px;
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
    margin: 80px auto;  /* Added margin-bottom */
}

.hero-badge {
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
}

#hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

#hero-subtitle {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

#hero-highlight {
    display: inline-block;
    background: rgba(26, 115, 232, 0.1);
    color: #1a73e8;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
    border: 1px solid rgba(26, 115, 232, 0.2);
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

#cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
}

#cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.4);
}

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

#cta-button:hover i {
    transform: translateX(5px);
}

#cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: white;
    color: #1a73e8;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 2px solid rgba(26, 115, 232, 0.2);
}

#cta-secondary:hover {
    background: rgba(26, 115, 232, 0.1);
    transform: translateY(-2px);
}

#cta-secondary i {
    font-size: 0.8rem;
    padding: 0.4rem;
    background: rgba(26, 115, 232, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

#cta-secondary:hover i {
    background: rgba(26, 115, 232, 0.2);
}

.hero-trust {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(26, 115, 232, 0.1);
}

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

.trust-item i {
    color: #1a73e8;
    font-size: 1.1rem;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px); /* Increased float distance */
    }
}

/* Section Styles */
#section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a73e8;
    position: relative;
}

#section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1a73e8, #1557b0);
    border-radius: 3px;
}

/* Scroll Reveal Animations */
#about p, #services-grid > div, #faq-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

#about p.show, #services-grid > div.show, #faq-item.show {
    opacity: 1;
    transform: translateY(0);
}

#services-grid > div:nth-child(2) {
    transition-delay: 0.2s;
}

#services-grid > div:nth-child(3) {
    transition-delay: 0.4s;
}

#about {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

#about p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.1);
    border: 1px solid rgba(26, 115, 232, 0.1);
    transform: translateY(0);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#about p:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 115, 232, 0.15);
}

#about p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1a73e8, #1557b0);
}

/* Services Section Enhancement */
#services {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

#services::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.1) 0%, rgba(13, 71, 161, 0.1) 100%);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    z-index: 0;
}

#services::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.05) 0%, rgba(13, 71, 161, 0.05) 100%);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    z-index: 0;
}

#services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

#services-grid > div {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.1);
    border: 1px solid rgba(26, 115, 232, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#services-grid > div:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(26, 115, 232, 0.15);
}

#services-grid > div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.05) 0%, rgba(13, 71, 161, 0.05) 100%);
    clip-path: circle(60% at 0% 0%);
    transition: all 0.4s ease;
}

#services-grid > div:hover::before {
    clip-path: circle(130% at 0% 0%);
}

#services-grid h3 {
    color: #1a73e8;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

#services-grid h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #1a73e8, #1557b0);
    transition: width 0.3s ease;
}

#services-grid > div:hover h3::after {
    width: 100%;
}

#services-grid p {
    color: #555;
    line-height: 2;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

/* Roadmap Section */
#roadmap {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 5rem 2rem;
    margin: 2rem auto;
    position: relative;
    overflow: hidden;
}

#roadmap::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 50% 50%, rgba(26, 115, 232, 0.03) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.2;
    }
}

#roadmap-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

#roadmap-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

#roadmap-step {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(26, 115, 232, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

#roadmap-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
                rgba(26, 115, 232, 0.1) 0%, 
                transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

#roadmap-step:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 25px rgba(26, 115, 232, 0.15);
}

#roadmap-step:hover::before {
    opacity: 1;
}

#roadmap-step:active {
    transform: scale(0.98);
}

#roadmap-step h3 {
    color: #1a73e8;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 0.8rem;
    transition: all 0.3s ease;
}

#roadmap-step h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #1a73e8, transparent);
    transition: width 0.3s ease;
}

#roadmap-step:hover h3::after {
    width: 100%;
}

#step-content ul {
    list-style: none;
    padding: 0;
}

#step-content li {
    margin-bottom: 1.2rem;
    padding-left: 2rem;
    position: relative;
    color: #555;
    transition: all 0.3s ease;
    opacity: 0.9;
}

#step-content li::before {
    content: "→";
    color: #1a73e8;
    position: absolute;
    left: 0;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

#roadmap-step:hover #step-content li {
    opacity: 1;
    transform: translateX(5px);
}

#roadmap-step:hover #step-content li::before {
    transform: translateX(5px);
}

/* Staggered animation for list items */
#step-content li:nth-child(1) { transition-delay: 0.1s; }
#step-content li:nth-child(2) { transition-delay: 0.2s; }
#step-content li:nth-child(3) { transition-delay: 0.3s; }
#step-content li:nth-child(4) { transition-delay: 0.4s; }

#affiliate-link {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

#affiliate-link:hover {
    color: #1557b0;
    text-decoration: underline;
}

#roadmap-cta {
    text-align: center;
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

#roadmap-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

#roadmap-cta:hover::before {
    opacity: 1;
}

#roadmap-cta h3 {
    color: #1a73e8;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

#roadmap-cta p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

#roadmap-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #1a73e8;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, background 0.3s;
}

#roadmap-button:hover {
    transform: translateY(-2px);
    background: #1557b0;
}

/* Pricing Section */
#pricing {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.promo-banner {
    background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
    color: white;
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto 3rem;
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.15);
}

.promo-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item i {
    color: #1a73e8;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a73e8;
    display: block;
    margin: 0.5rem 0;
}

.stat-text {
    color: #666;
    font-size: 1rem;
}

#pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
}

#price-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(26, 115, 232, 0.15);
}

.price-header {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(to bottom, rgba(26, 115, 232, 0.05), transparent);
    border-bottom: 1px solid rgba(26, 115, 232, 0.1);
}

.price-header h3 {
    color: #1a73e8;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price-tag {
    margin: 1.5rem 0;
}

.original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

.current-price {
    color: #1a73e8;
    font-size: 2.5rem;
    font-weight: 700;
}

.price-description {
    color: #666;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.price-features {
    padding: 2rem;
    flex-grow: 1;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #555;
}

.price-features i {
    color: #1a73e8;
    font-size: 1rem;
}

.price-footer {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(to top, rgba(26, 115, 232, 0.05), transparent);
    border-top: 1px solid rgba(26, 115, 232, 0.1);
}

.social-proof {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.price-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #1a73e8;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.price-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
}

.price-button.featured {
    background: linear-gradient(135deg, #1a73e8, #1557b0);
}

.price-button.urgent {
    background: linear-gradient(135deg, #ff6b6b, #ee5253);
}

.featured-card {
    border: 2px solid #1a73e8;
    transform: scale(1.02);
}

.popular-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #1a73e8;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-footer {
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 0 1rem;
}

.guarantee-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.guarantee-item i {
    font-size: 1.5rem;
    color: #1a73e8;
}

.guarantee-item h4 {
    color: #333;
    margin-bottom: 0.3rem;
}

.guarantee-item p {
    color: #666;
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

.payment-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    transition: all 0.3s ease;
}

.payment-icon:hover {
    color: #1a73e8;
    transform: translateY(-2px);
}

.payment-icon i {
    font-size: 2rem;
}

.payment-icon span {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Payment method icons hover effects */
.payment-icon {
    transition: transform 0.3s ease, color 0.3s ease;
}

.payment-icon:hover {
    transform: translateY(-3px);
}

/* Visa */
.fa-cc-visa:hover {
    color: #1A1F71;  /* Visa blue */
}

/* Mastercard */
.fa-cc-mastercard:hover {
    color: #EB001B;  /* Mastercard red */
}

/* PayPal */
.fa-cc-paypal:hover {
    color: #003087;  /* PayPal blue */
}

/* Apple Pay */
.fa-apple-pay:hover {
    color: #000000;  /* Apple black */
}

/* Google Pay */
.fa-google-pay:hover {
    color: #4285F4;  /* Google blue */
}

@media (max-width: 768px) {
    .pricing-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    #pricing-cards {
        gap: 1.5rem;
    }
    
    .price-header {
        padding: 1.5rem;
    }
    
    .price-features {
        padding: 1.5rem;
    }
    
    .price-footer {
        padding: 1.5rem;
    }
    
    .guarantee-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .payment-methods {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .payment-icon i {
        font-size: 1.8rem;
    }
    
    .payment-icon span {
        font-size: 0.75rem;
    }
}

/* FAQ Section Enhancement */
#faq {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

#faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

#faq-item {
    margin-bottom: 1.5rem;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    background: white;
    box-shadow: 0 5px 20px rgba(26, 115, 232, 0.08);
    transition: all 0.3s ease;
}

#faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.12);
}

#faq-question {
    padding: 1.5rem;
    background: white;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

#faq-question:hover {
    color: #1a73e8;
    border-left: 4px solid #1a73e8;
}

#faq-question::after {
    content: '+';
    font-size: 1.8rem;
    color: #1a73e8;
    transition: all 0.3s ease;
}

#faq-question.active {
    color: #1a73e8;
    border-left: 4px solid #1a73e8;
    background: linear-gradient(90deg, rgba(26, 115, 232, 0.05) 0%, transparent 100%);
}

#faq-question.active::after {
    content: '−';
    transform: rotate(180deg);
}

#faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
    color: #555;
    line-height: 1.8;
}

#faq-answer.active {
    padding: 1.5rem;
    max-height: 1000px;
    border-top: 1px solid rgba(26, 115, 232, 0.1);
}

/* Contact Section */
#contact {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    padding: 5rem 2rem;
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 1200px;
}

#contact #section-title {
    margin-bottom: 1rem;
}

#contact-description {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

#contact-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

#contact-button[href^="https://wa.me"] {
    background: linear-gradient(135deg, #25D366, #1ea952);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: transform 0.3s, box-shadow 0.3s;
    min-width: 220px;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

#contact-button[href^="https://wa.me"]:hover {
    background: linear-gradient(135deg, #1ea952, #25D366);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

#contact-button[href^="https://t.me"] {
    background: linear-gradient(135deg, #0088cc, #0077b3);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: transform 0.3s, box-shadow 0.3s;
    min-width: 220px;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.2);
}

#contact-button[href^="https://t.me"]:hover {
    background: linear-gradient(135deg, #0077b3, #0088cc);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.3);
}

#contact-button[href^="mailto"] {
    background: linear-gradient(135deg, #EA4335, #d62516);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: transform 0.3s, box-shadow 0.3s;
    min-width: 220px;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(234, 67, 53, 0.2);
}

#contact-button[href^="mailto"]:hover {
    background: linear-gradient(135deg, #d62516, #EA4335);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 67, 53, 0.3);
}

#contact-button i {
    font-size: 1.2rem;
}

#contact-note {
    text-align: center;
    color: #666;
    margin-top: 2rem;
    font-size: 0.95rem;
    font-style: italic;
}

/* Footer */
#footer {
    background: #f8f9fa;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 4rem;
}

#footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

/* Footer headings */
#footer h3 {
    color: #1a73e8;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

#footer h3:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #1a73e8;
}

#footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
}

#footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

#footer-links a:hover {
    color: #1a73e8;
}

#social-links {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

#social-icon {
    font-size: 1.6rem;
    color: #666;
    transition: transform 0.3s, color 0.3s, border-color 0.3s, background-color 0.3s;
    padding: 0.5rem;
    border-radius: 50%;
    background: transparent;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #eee;
    text-decoration: none;
}

#social-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

#social-icon:hover {
    transform: translateY(-3px);
}

/* Facebook */
#social-icon[href*="facebook"]:hover {
    color: #ffffff;
    border-color: #1877f2;
    background-color: #1877f2;
}

/* WhatsApp */
#social-icon[href*="wa.me"]:hover {
    color: #ffffff;
    border-color: #25D366;
    background-color: #25D366;
}

/* Telegram */
#social-icon[href*="t.me"]:hover {
    color: #ffffff;
    border-color: #0088cc;
    background-color: #0088cc;
}

#social-icon[href*="instagram"]:hover {
    color: #e4405f;
    border-color: #e4405f;
}

#social-icon[href*="linkedin"]:hover {
    color: #0077b5;
    border-color: #0077b5;
}

#social-icon[href*="youtube"]:hover {
    color: #ff0000;
    border-color: #ff0000;
}

#footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
    text-align: center;
    color: #666;
}

/* Stats Section */
#stats {
    background: white;
    padding: 4rem 2rem;
    margin-top: -4rem;
    position: relative;
    z-index: 10;
    margin-bottom: 2rem;
    overflow: hidden;
}

#stats::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(26, 115, 232, 0.03) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

#stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    background: white;
    padding: 2rem;
    border-radius: 30px;
    box-shadow: 
        0 20px 40px rgba(26, 115, 232, 0.08),
        0 0 0 1px rgba(26, 115, 232, 0.05);
    position: relative;
    z-index: 1;
}

#stat-item {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(26, 115, 232, 0.08);
}

#stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(26, 115, 232, 0.05) 0%, 
        rgba(26, 115, 232, 0) 50%, 
        rgba(26, 115, 232, 0.05) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

#stat-item:hover::before {
    transform: translateX(100%);
}

#stat-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1a73e8, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

#stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(26, 115, 232, 0.1),
        0 0 0 1px rgba(26, 115, 232, 0.1);
}

#stat-item:hover::after {
    opacity: 1;
}

#stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a73e8;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1a73e8, #1557b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

#stat-item:hover #stat-number {
    transform: scale(1.1);
}

#stat-label {
    color: #555;
    font-size: 1.2rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 1rem;
    transition: all 0.3s ease;
}

#stat-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #1a73e8, transparent);
    transition: width 0.3s ease;
}

#stat-item:hover #stat-label::after {
    width: 60px;
}

/* Add counter animation */
.animate-number {
    animation: countUp 2s ease-out forwards;
    display: inline-block;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
    #stats-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    #stats {
        padding: 3rem 1rem;
    }

    #stat-item {
        padding: 1.5rem;
    }

    #stat-number {
        font-size: 2.8rem;
    }

    #stat-label {
        font-size: 1.1rem;
    }
}

/* Testimonials Section */
#testimonials {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

#testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

#testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.1);
    transition: transform 0.3s;
    border: 1px solid rgba(26, 115, 232, 0.1);
}

#testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.15);
}

#testimonial-content {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

#testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: rgba(26, 115, 232, 0.1);
    position: absolute;
    top: -1rem;
    left: -1rem;
    font-family: serif;
}

#testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

#author-info {
    flex-grow: 1;
}

#author-name {
    font-weight: 600;
    color: #333;
}

#author-location {
    font-size: 0.9rem;
    color: #666;
}

#rating {
    font-size: 0.9rem;
    color: #ffd700;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

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

    #hamburger {
        display: flex;
    }

    #hero-title {
        font-size: 2.5rem;
    }

    #hero-subtitle {
        font-size: 1.2rem;
        padding: 0 0.5rem;
    }

    #hero-highlight {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }

    #cta-button {
        padding: 0.8rem 2rem;
    }

    #hero-content {
        padding: 2rem;
        margin: 1rem;
        width: 90%;
    }

    #contact {
        padding: 3rem 1rem;
        margin: 1rem;
    }

    #contact-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    #contact-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    #contact-button[href^="https://wa.me"],
    #contact-button[href^="https://t.me"],
    #contact-button[href^="mailto"] {
        width: 100%;
        max-width: 280px;
    }

    #footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    #social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }

    #social-links {
        gap: 1.5rem;
    }

    #price-card {
        padding: 2rem 1.5rem;
    }

    #price-card[class*="custom-card"]:before {
        font-size: 0.7rem;
        padding: 4px 35px;
        top: 15px;
        right: -30px;
    }

    #price-title {
        font-size: 1.3rem;
    }

    #price-amount {
        font-size: 2rem;
    }

    #price-features li {
        font-size: 0.9rem;
    }

    #roadmap-steps {
        grid-template-columns: 1fr;
    }
    
    #roadmap-cta {
        padding: 2rem;
        margin: 3rem 1rem 0;
    }
    
    #roadmap-cta h3 {
        font-size: 1.5rem;
    }

    #testimonials {
        padding: 3rem 1rem;
    }

    #testimonials-container {
        grid-template-columns: 1fr;
        padding: 1rem 0;
    }

    #testimonial-card {
        padding: 1.5rem;
    }

    #testimonial-content {
        font-size: 1rem;
    }

    #about p {
        font-size: 1.1rem;
        padding: 1.5rem;
    }

    #services-grid {
        grid-template-columns: 1fr;
    }

    #services-grid > div {
        padding: 2rem;
    }

    #faq-question {
        padding: 1.2rem;
        font-size: 0.95rem;
    }

    #faq-answer.active {
        padding: 1.2rem;
        font-size: 0.9rem;
    }

    #roadmap-step {
        padding: 2rem;
    }
    
    #roadmap-step h3 {
        font-size: 1.2rem;
    }
    
    #step-content li {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
} 

.trustpilot-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.trustpilot-widget {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.trustpilot-header {
    background: #00b67a;
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trustpilot-logo {
    height: 30px;
}

.rating-stars {
    font-size: 1.8rem;
    color: white;
    letter-spacing: 2px;
}

.rating-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.rating-text strong {
    font-size: 1.2rem;
}

.rating-text span {
    font-size: 0.9rem;
    opacity: 0.9;
}

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

.review-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-stars {
    color: #00b67a;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.reviewer {
    color: #666;
    font-size: 0.9rem;
}

.view-reviews-button {
    display: block;
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    color: #00b67a;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-reviews-button:hover {
    background: #00b67a;
    color: white;
}

@media (max-width: 768px) {
    .trustpilot-header {
        padding: 1.5rem;
        gap: 1rem;
        justify-content: center;
        text-align: center;
    }
    
    .recent-reviews {
        padding: 1.5rem;
        grid-template-columns: 1fr;
    }
    
    .review-card {
        padding: 1.2rem;
    }
} 