/* 
===================
Table of Contents
===================
1. Reset & Base Styles
2. Typography
3. Layout & Containers
4. Header & Navigation
5. Hero Section
6. Crypto Ticker
7. Investment Popup
8. About Section
9. Plans Section
10. Features Section
11. Chart Section
12. Payment Methods
13. Testimonials
14. FAQ Section
15. CTA Section
16. Contact Section
17. Footer
18. Utility Classes
19. Animations
20. Media Queries
*/

/*===================
1. Reset & Base Styles
=====================*/
:root {
    /* Main Colors */
    --primary-color: #00d395;
    --primary-light: #33eab4;
    --primary-dark: #00a777;
    --secondary-color: #2c3e50;
    --secondary-light: #3d5166;
    --secondary-dark: #1a2530;
    
    /* Background Colors */
    --bg-dark: #0a0e17;
    --bg-darker: #070b12;
    --bg-medium: #131b29;
    --bg-light: #1c2635;
    
    /* Text Colors */
    --text-white: #ffffff;
    --text-light: #e0e0e0;
    --text-muted: #9ca3af;
    --text-dark: #4b5563;
    
    /* Success & Error Colors */
    --success: #00d395;
    --error: #ff3b6b;
    --warning: #ffaf3a;
    --info: #3a95ff;
    
    /* Other Variables */
    --card-border-radius: 12px;
    --button-border-radius: 8px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--text-light);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

button {
    cursor: pointer;
    background: none;
    border: none;
}

/*===================
2. Typography
=====================*/
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-white);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 5.2rem;
}

h2 {
    font-size: 4.2rem;
}

h3 {
    font-size: 2.8rem;
}

h4 {
    font-size: 2.2rem;
}

h5 {
    font-size: 1.8rem;
}

h6 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 2rem;
}

.text-gradient {
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*===================
3. Layout & Containers
=====================*/
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 10rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-title {
    position: relative;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 8rem;
    height: 0.4rem;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2rem;
}

.section-subtitle {
    font-size: 1.8rem;
    color: var(--text-muted);
    max-width: 60rem;
    margin: 0 auto;
}

/*===================
4. Header & Navigation
=====================*/
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(10, 14, 23, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header.sticky {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: rgba(10, 14, 23, 0.95);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 8rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-white);
}

.logo-text span {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 3rem;
    height: 2.1rem;
    cursor: pointer;
    z-index: 1010;
    position: relative;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 0.3rem;
    background-color: var(--text-white);
    border-radius: 0.3rem;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(0.9rem) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-0.9rem) rotate(-45deg);
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    align-items: center;
}

.nav-link {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text-light);
    padding: 0.8rem 1.5rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0.2rem;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    bottom: 0.4rem;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--transition);
    border-radius: 2rem;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

.nav-button {
    margin-left: 1rem;
}

.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--button-border-radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: -1;
    transition: var(--transition);
}

.btn-primary {
    color: var(--text-white);
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 4px 15px rgba(108, 77, 255, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(108, 77, 255, 0.4);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-login {
    color: var(--text-white);
    background-color: var(--bg-light);
    border: 1px solid var(--bg-light);
}

.btn-login:hover {
    background-color: var(--bg-medium);
    color: var(--primary-light);
}

.btn-register {
    color: var(--text-white);
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 4px 15px rgba(108, 77, 255, 0.3);
}

.btn-register:hover {
    box-shadow: 0 6px 20px rgba(108, 77, 255, 0.4);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-outline {
    color: var(--text-white);
    background: transparent;
    border: 1px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-lg {
    padding: 1.4rem 3rem;
    font-size: 1.8rem;
}

/*===================
5. Hero Section
=====================*/
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, rgba(19, 27, 41, 0.9), rgba(10, 14, 23, 0.95)), url('/api/placeholder/1920/1080') no-repeat center center / cover;
    overflow: hidden;
    padding-top: 8rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(108, 77, 255, 0.1), transparent 70%),
                radial-gradient(circle at 70% 30%, rgba(0, 211, 149, 0.1), transparent 70%);
    z-index: -1;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
}

.hero-content {
    flex: 0 0 50%;
    max-width: 50%;
}

.hero-title {
    font-size: 5.6rem;
    margin-bottom: 2rem;
    line-height: 1.2;
    background: linear-gradient(90deg, var(--text-white), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.8rem;
    margin-bottom: 3.5rem;
    color: var(--text-muted);
}

.hero-cta {
    display: flex;
    gap: 2rem;
}

.hero-image {
    flex: 0 0 45%;
    max-width: 45%;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -2rem;
    right: -2rem;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: var(--card-border-radius);
    z-index: -1;
}

.hero-image img {
    border-radius: var(--card-border-radius);
    box-shadow: var(--box-shadow);
}

/*===================
6. Crypto Ticker
=====================*/
.crypto-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(19, 27, 41, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    overflow: hidden;
    z-index: 2;
}

.ticker-wrapper {
    display: flex;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    display: flex;
    align-items: center;
    padding: 0 3rem;
    flex-shrink: 0;
}

.crypto-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-right: 1rem;
}

.crypto-name {
    font-weight: 600;
    margin-right: 1rem;
    min-width: 8rem;
}

.crypto-price {
    font-weight: 700;
    margin-right: 1rem;
    min-width: 10rem;
}

.crypto-change {
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    min-width: 6rem;
    text-align: center;
}

.crypto-change.positive {
    color: var(--success);
    background-color: rgba(0, 211, 149, 0.1);
}

.crypto-change.negative {
    color: var(--error);
    background-color: rgba(255, 59, 107, 0.1);
}

.crypto-change.neutral {
    color: var(--warning);
    background-color: rgba(255, 175, 58, 0.1);
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/*===================
7. Investment Popup
=====================*/
/* Investment Popup - MOVED TO TOP CENTER */
.investment-popup {
    position: fixed;
    top: 10rem; /* Below the header */
    left: 50%;
    transform: translateX(-50%) translateY(-150%);
    background-color: var(--bg-medium);
    border-radius: var(--card-border-radius);
    padding: 1.5rem 2rem;
    box-shadow: var(--box-shadow);
    z-index: 99;
    display: flex;
    align-items: center;
    opacity: 0;
    animation: popupFadeInTop 1s forwards, popupFadeOutTop 1s forwards 5s;
    min-width: 300px;
    border: 1px solid var(--primary-color);
}

.popup-content {
    display: flex;
    align-items: center;
    width: 100%;
}

.investor-avatar {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1.5rem;
    border: 2px solid var(--primary-color);
}

.investor-name {
    font-weight: 600;
    font-size: 1.6rem;
    color: var(--text-white);
}

.investor-location {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.investor-action {
    font-size: 1.4rem;
}

.highlight-amount {
    color: var(--success);
    font-weight: 700;
}

/* Updated animations for top position */
@keyframes popupFadeInTop {
    0% {
        transform: translateX(-50%) translateY(-150%);
        opacity: 0;
    }
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

@keyframes popupFadeOutTop {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-150%);
        opacity: 0;
    }
}
/*===================
8. About Section
=====================*/
.about {
    background-color: var(--bg-medium);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 70%;
    background: radial-gradient(circle, rgba(108, 77, 255, 0.1), transparent 70%);
    z-index: 0;
}

.about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
}

.about-content {
    flex: 0 0 50%;
    max-width: 50%;
}

.about-image {
    flex: 0 0 45%;
    max-width: 45%;
    position: relative;
}

.about-image img {
    border-radius: var(--card-border-radius);
    box-shadow: var(--box-shadow);
}

.stats-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 4rem;
}

.stat-item {
    flex: 1 0 40%;
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: var(--card-border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.stat-value {
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.6rem;
    color: var(--text-muted);
}

/*===================
9. Plans Section
=====================*/
.plans {
    background-color: var(--bg-dark);
    position: relative;
}

.plans::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(0, 211, 149, 0.1), transparent 70%);
    z-index: 0;
}

.plans-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.plan-card {
    flex: 0 0 calc(25% - 3rem);
    min-width: 280px;
    background-color: var(--bg-medium);
    border-radius: var(--card-border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
    transition: var(--transition);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.plan-card.featured {
    background: linear-gradient(135deg, var(--bg-light), var(--bg-medium));
    border: 1px solid var(--primary-color);
    transform: scale(1.05);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-card.elite {
    background: linear-gradient(135deg, #1a1a3a, #2d2d5a);
    border: 1px solid var(--secondary-color);
}

.plan-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: var(--text-white);
    padding: 0.5rem 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 3rem;
    z-index: 1;
}

.plan-header {
    padding: 3rem 2.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-title {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.plan-price {
    margin-bottom: 1rem;
}

.plan-price .percentage {
    font-size: 4.8rem;
    font-weight: 700;
    color: var(--primary-light);
    display: block;
    line-height: 1.2;
}

.plan-price .period {
    font-size: 1.6rem;
    color: var(--text-muted);
}

.plan-features {
    padding: 3rem 2.5rem;
}

.plan-features ul li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.plan-features ul li:last-child {
    margin-bottom: 0;
}

.plan-features ul li i {
    color: var(--success);
    margin-right: 1rem;
}

.plan-footer {
    padding: 0 2.5rem 3rem;
}

/*===================
10. Features Section
=====================*/
.features {
    background-color: var(--bg-darker);
    position: relative;
}

.features::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(0, 211, 149, 0.05), transparent 70%);
    z-index: 0;
}

.features-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.feature-item {
    flex: 0 0 calc(25% - 3rem);
    min-width: 250px;
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--bg-medium);
    border-radius: var(--card-border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 7rem;
    height: 7rem;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-color);
    background-color: rgba(108, 77, 255, 0.1);
    border-radius: 50%;
}

.feature-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-description {
    font-size: 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/*===================
11. Chart Section
=====================*/
.chart-section {
    background-color: var(--bg-medium);
    position: relative;
}

.chart-wrapper {
    display: flex;
    align-items: stretch;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.chart-container {
    flex: 0 0 65%;
    max-width: 65%;
    background-color: var(--bg-light);
    border-radius: var(--card-border-radius);
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
}

.chart-info {
    flex: 0 0 30%;
    max-width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.chart-tabs {
    display: flex;
    margin-bottom: 3rem;
    background-color: var(--bg-light);
    border-radius: var(--button-border-radius);
    padding: 0.5rem;
}

.chart-tab {
    flex: 1;
    padding: 1rem;
    text-align: center;
    color: var(--text-muted);
    font-weight: 600;
    border-radius: var(--button-border-radius);
    transition: var(--transition);
}

.chart-tab.active {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.chart-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-box {
    background-color: var(--bg-light);
    border-radius: var(--card-border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.stat-title {
    font-size: 1.6rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

/*===================
12. Payment Methods
=====================*/
.payment-methods {
    background-color: var(--bg-dark);
    padding: 8rem 0;
}

.payment-methods-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.payment-method {
    text-align: center;
    transition: var(--transition);
}

.payment-method:hover {
    transform: translateY(-5px);
}

.payment-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.payment-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-light);
}

/*===================
13. Testimonials
=====================*/
.testimonials {
    background-color: var(--bg-darker);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 50%;
    background: radial-gradient(circle, rgba(108, 77, 255, 0.05), transparent 70%);
    z-index: 0;
}

.testimonials-slider {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.testimonial-item {
    background-color: var(--bg-medium);
    padding: 3rem;
    border-radius: var(--card-border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-rating {
    margin-bottom: 2rem;
}

.testimonial-rating i {
    color: var(--warning);
    font-size: 1.8rem;
    margin-right: 0.5rem;
}

.testimonial-text {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 2rem;
    border: 2px solid var(--primary-color);
}

.author-name {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.author-position {
    font-size: 1.4rem;
    color: var(--text-muted);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4rem;
}

.testimonial-arrow {
    width: 4.5rem;
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-medium);
    color: var(--text-white);
    border-radius: 50%;
    font-size: 1.8rem;
    margin: 0 1.5rem;
    transition: var(--transition);
}

.testimonial-arrow:hover {
    background-color: var(--primary-color);
}

.testimonial-dots {
    display: flex;
    align-items: center;
}

.dot {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: var(--bg-light);
    margin: 0 0.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    width: 3rem;
    border-radius: 1.5rem;
    background-color: var(--primary-color);
}

/*===================
14. FAQ Section
=====================*/
.faq {
    background-color: var(--bg-dark);
    position: relative;
}

.faq::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(0, 211, 149, 0.05), transparent 70%);
    z-index: 0;
}

.faq-wrapper {
    position: relative;
    z-index: 1;
    max-width: 80rem;
    margin: 0 auto;
}

.accordion-item {
    background-color: var(--bg-medium);
    border-radius: var(--card-border-radius);
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.accordion-header {
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header:hover {
    background-color: rgba(108, 77, 255, 0.05);
}

.accordion-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
}

.accordion-icon {
    font-size: 1.6rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.accordion-content p {
    padding: 0 3rem 2rem;
    color: var(--text-muted);
}

/*===================
15. CTA Section
=====================*/
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--bg-medium), var(--bg-dark));
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(108, 77, 255, 0.1), transparent 70%),
                radial-gradient(circle at 70% 30%, rgba(0, 211, 149, 0.1), transparent 70%);
}

.cta-wrapper {
    background: linear-gradient(135deg, rgba(108, 77, 255, 0.1), rgba(0, 211, 149, 0.1));
    border-radius: var(--card-border-radius);
    padding: 6rem 4rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content {
    max-width: 70rem;
    margin: 0 auto 4rem;
}

.cta-content h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.cta-content p {
    font-size: 1.8rem;
    color: var(--text-muted);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

/*===================
16. Contact Section
=====================*/
.contact {
    background-color: var(--bg-darker);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 50%;
    background: radial-gradient(circle, rgba(108, 77, 255, 0.05), transparent 70%);
    z-index: 0;
}

.contact-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 5rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    flex: 0 0 40%;
    max-width: 40%;
}

.contact-item {
    display: flex;
    margin-bottom: 4rem;
}

.contact-icon {
    flex: 0 0 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: var(--primary-color);
    background-color: rgba(108, 77, 255, 0.1);
    border-radius: 50%;
    margin-right: 2rem;
}

.contact-details h3 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.contact-details p,
.contact-details a {
    font-size: 1.6rem;
    color: var(--text-muted);
}

.contact-details a:hover {
    color: var(--primary-light);
}

.contact-form-container {
    flex: 0 0 55%;
    max-width: 55%;
}

.contact-form {
    background-color: var(--bg-medium);
    border-radius: var(--card-border-radius);
    padding: 4rem;
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.5rem 2rem;
    background-color: var(--bg-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--button-border-radius);
    color: var(--text-white);
    font-size: 1.6rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(108, 77, 255, 0.2);
}

.contact-form textarea {
    height: 15rem;
    resize: none;
}

/*===================
17. Footer
=====================*/
.footer {
    background-color: var(--bg-dark);
    padding-top: 8rem;
    position: relative;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5rem;
}

.footer-logo {
    flex: 0 0 30%;
    max-width: 30%;
}

.footer-logo p {
    margin-top: 2rem;
    color: var(--text-muted);
}

.footer-links {
    flex: 0 0 65%;
    max-width: 65%;
    display: flex;
    justify-content: space-between;
}

.footer-group h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.footer-group h3::after {
    content: '';
    position: absolute;
    width: 4rem;
    height: 0.3rem;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    bottom: -1rem;
    left: 0;
    border-radius: 2rem;
}

.footer-group ul li {
    margin-bottom: 1.5rem;
}

.footer-group ul li a {
    color: var(--text-muted);
    font-size: 1.6rem;
    transition: var(--transition);
}

.footer-group ul li a:hover {
    color: var(--primary-light);
    padding-left: 0.5rem;
}

.footer-bottom {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.social-links {
    display: flex;
}

.social-link {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-medium);
    color: var(--text-light);
    border-radius: 50%;
    margin-left: 1.5rem;
    font-size: 1.6rem;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

.disclaimer {
    padding: 2rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.disclaimer p {
    font-size: 1.4rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 0;
}

.back-to-top {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    width: 5rem;
    height: 5rem;
    background-color: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(108, 77, 255, 0.3);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    color: var(--text-white);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(108, 77, 255, 0.4);
}

/*===================
18. Utility Classes
=====================*/
.text-gradient {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    color: var(--primary-color);
}

/*===================
19. Preloader
=====================*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader svg {
    width: 10rem;
    height: 10rem;
    transform-origin: center;
    animation: rotate 2s linear infinite;
}

.loader-text {
    margin-top: 2rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

#loader-circle {
    fill: none;
    stroke: url(#gradient);
    stroke-width: 4;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: dash 4s ease-in-out infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 200;
    }
    50% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -200;
    }
}

/*===================
20. Media Queries
=====================*/
@media screen and (max-width: 1200px) {
    html {
        font-size: 56.25%; /* 9px */
    }
    
    .container {
        max-width: 960px;
    }
    
    .feature-item {
        flex: 0 0 calc(33.333% - 3rem);
    }
}

@media screen and (max-width: 992px) {
    html {
        font-size: 50%; /* 8px */
    }
    
    .container {
        max-width: 720px;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 5rem;
    }
    
    .hero-image {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .about-wrapper {
        flex-direction: column;
    }
    
    .about-content, .about-image {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .about-image {
        margin-top: 4rem;
    }
    
    .plan-card {
        flex: 0 0 calc(50% - 3rem);
    }
    
    .feature-item {
        flex: 0 0 calc(50% - 3rem);
    }
    
    .chart-wrapper {
        flex-direction: column;
    }
    
    .chart-container, .chart-info {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .chart-info {
        margin-top: 4rem;
    }
    
    .contact-wrapper {
        flex-direction: column;
    }
    
    .contact-info, .contact-form-container {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .contact-form-container {
        margin-top: 4rem;
    }
    
    .footer-top {
        flex-direction: column;
    }
    
    .footer-logo, .footer-links {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .footer-links {
        margin-top: 4rem;
    }
}

@media screen and (max-width: 768px) {
   html {
        font-size: 50%; /* 8px */
    }
    
    .container {
        max-width: 540px;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1050;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--bg-dark);
        z-index: 1000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        padding: 5rem 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 1.5rem;
        width: 100%;
        text-align: center;
    }
    
    .nav-button {
        margin: 1rem 0;
        width: 80%;
    }
    
    .hero-title {
        font-size: 4.8rem;
    }
    
    .plan-card {
        flex: 0 0 100%;
        margin-bottom: 3rem;
    }
    
    .plan-card.featured {
        transform: scale(1);
    }
    
    .plan-card.featured:hover {
        transform: scale(1) translateY(-10px);
    }
    
    .feature-item {
        flex: 0 0 100%;
    }
    
    .footer-links {
        flex-wrap: wrap;
    }
    
    .footer-group {
        flex: 0 0 100%;
        margin-bottom: 3rem;
    }
    
    .footer-bottom {
        flex-direction: column;
    }
    
    .copyright {
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 576px) {
    html {
        font-size: 50%; /* 8px */
    }
    
    .container {
        width: 100%;
        padding: 0 2rem;
    }
    
    h1 {
        font-size: 4.2rem;
    }
    
    h2 {
        font-size: 3.6rem;
    }
    
    .hero-title {
        font-size: 4.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .testimonial-controls {
        flex-direction: column;
        gap: 2rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 3rem;
    left: 3rem;
    width: 6rem;
    height: 6rem;
    background-color: #25d366; /* WhatsApp green color */
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    z-index: 99;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #1da851; /* Slightly darker green on hover */
    color: var(--text-white);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-tooltip {
    position: absolute;
    top: -4rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-size: 1.4rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0.8rem;
    border-style: solid;
    border-color: var(--bg-dark) transparent transparent transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Adjust for mobile */
@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 5rem;
        height: 5rem;
        font-size: 2.5rem;
        bottom: 2rem;
        left: 2rem;
    }
}

/* Google Translate Button Styles */
.translate-button {
  position: fixed;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  font-size: 1.6rem;
}

.translate-button-inner {
  background-color: var(--bg-medium);
  color: var(--text-white);
  padding: 1.2rem 2rem;
  border-radius: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.translate-button-inner:hover {
  background-color: var(--primary-color);
}

.translate-button i {
  font-size: 1.8rem;
}

.translate-dropdown {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--bg-medium);
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  padding: 2rem;
  min-width: 20rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}

.translate-button:hover .translate-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.translate-dropdown:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px;
  border-style: solid;
  border-color: var(--bg-medium) transparent transparent transparent;
}

.translate-languages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.translate-language {
  color: var(--text-light);
  text-align: center;
  padding: 0.8rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.translate-language:hover {
  background-color: var(--bg-light);
  color: var(--primary-color);
}

.translate-language.active {
  background-color: var(--primary-color);
  color: white;
}

.hidden-translate-element {
  display: none;
}

/* Hide Google Translate elements */
.goog-te-banner-frame,
.goog-te-balloon-frame, 
.goog-te-menu-frame,
.goog-te-menu-value,
.goog-te-gadget {
  display: none !important;
}

@media screen and (max-width: 576px) {
  .translate-button {
    bottom: 2rem;
  }
  
  .translate-languages {
    grid-template-columns: 1fr;
  }
}