:root {
    --primary-purple: #6366F1;
    --dark-bg: #0F0F23;
    --darker-bg: #1A1A2E;
    --text-white: #ffffff;
    --text-gray: #B8B8B8;
    --gradient-purple: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    --accent-yellow: #F59E0B;
    --accent-red: #EF4444;
    --accent-green: #10B981;
}

/* Light Theme Variables */
[data-theme="light"] {
    --dark-bg: #ffffff;
    --darker-bg: #f8fafc;
    --text-white: #1f2937;
    --text-gray: #374151;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Light theme background */
[data-theme="light"] body::before {
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.2rem 6%;
    background: transparent;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    color: #B8B8B8;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #6366F1;
}

.nav-links li:first-child a {
    color: #6366F1;
}

/* Light theme navigation links */
[data-theme="light"] .nav-links a {
    color: #374151;
}

[data-theme="light"] .nav-links a:hover,
[data-theme="light"] .nav-links a.active {
    color: #6366F1;
}

[data-theme="light"] .nav-links li:first-child a {
    color: #6366F1;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    background: transparent;
    border: 1px solid rgba(184, 184, 184, 0.3);
    color: #B8B8B8;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: #6366F1;
    color: #6366F1;
}

/* Light theme theme toggle */
[data-theme="light"] .theme-toggle {
    border-color: rgba(55, 65, 81, 0.3);
    color: #374151;
}

[data-theme="light"] .theme-toggle:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: #6366F1;
    color: #6366F1;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.login-btn {
    background: transparent;
    color: #B8B8B8;
    border: 1px solid rgba(184, 184, 184, 0.3);
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.login-btn:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: #6366F1;
    color: #6366F1;
}

/* Light theme login button */
[data-theme="light"] .login-btn {
    color: #374151;
    border-color: rgba(55, 65, 81, 0.3);
}

[data-theme="light"] .login-btn:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: #6366F1;
    color: #6366F1;
}

.register-btn {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    color: white;
    border: none;
    padding: 0.7rem 1.8rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    text-decoration: none;
    display: inline-block;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, #5A5FE0 0%, #7C4DFF 100%);
}

/* Hero Section */
.hero {
    padding: 6rem 6% 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-text p {
    color: #9CA3AF;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 90%;
}

.join-maxppi-btn {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.join-maxppi-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.join-maxppi-btn:hover::before {
    left: 100%;
}

.join-maxppi-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.5);
}

.join-maxppi-btn i {
    font-size: 1.2rem;
    animation: rocket 2s ease-in-out infinite;
}

@keyframes rocket {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-person {
    position: relative;
    z-index: 2;
}

.hero-person img {
    width: 420px;
    height: 520px;
    object-fit: contain;
    background: transparent;
    transform: rotate(0deg);
    position: relative;
    z-index: 10;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
    animation: pandaFloat 4s ease-in-out infinite, pandaBounce 3s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-person img:hover {
    animation-play-state: paused;
    transform: scale(1.05) translateY(-10px);
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.4));
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes floatReverse {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(10px) rotate(-5deg); }
}

@keyframes glow {
    0% { box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3); }
    100% { box-shadow: 0 10px 40px rgba(245, 158, 11, 0.6), 0 0 20px rgba(245, 158, 11, 0.4); }
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 20px 50px rgba(99, 102, 241, 0.6), 0 0 30px rgba(99, 102, 241, 0.5);
        transform: scale(1.05);
    }
}

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

@keyframes borderGlow {
    0% { 
        border-color: #6366F1;
        box-shadow: 0 0 0 rgba(99, 102, 241, 0);
    }
    100% { 
        border-color: #8B5CF6;
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
    }
}

@keyframes pandaFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
    }
    25% { 
        transform: translateY(-8px) rotate(1deg);
    }
    50% { 
        transform: translateY(-15px) rotate(0deg);
    }
    75% { 
        transform: translateY(-8px) rotate(-1deg);
    }
}

@keyframes pandaBounce {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
    }
    50% { 
        transform: scale(1.02);
        filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.3));
    }
}

.element {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.element.chart {
    background: #F59E0B;
    top: 8%;
    left: -5%;
    transform: rotate(-15deg);
    animation: float 3s ease-in-out infinite, glow 2s ease-in-out infinite alternate;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
    width: 70px;
    height: 70px;
    border-radius: 18px;
}

.element.play {
    background: #6366F1;
    bottom: 25%;
    left: -15%;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    animation: floatReverse 4s ease-in-out infinite, pulse-glow 3s ease-in-out infinite;
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.element.plus {
    background: transparent;
    border: 2px solid #6B7280;
    top: 15%;
    right: -8%;
    color: #6B7280;
    animation: float 2.5s ease-in-out infinite, rotate 8s linear infinite;
    width: 50px;
    height: 50px;
    border-radius: 12px;
}

.element.circle {
    background: transparent;
    border: 3px solid #6366F1;
    border-radius: 50%;
    top: 3%;
    right: 15%;
    width: 50px;
    height: 50px;
    animation: floatReverse 3.5s ease-in-out infinite, borderGlow 2.5s ease-in-out infinite alternate;
}

.inner-circle {
    width: 15px;
    height: 15px;
    background: var(--primary-purple);
    border-radius: 50%;
}

/* Why MaxPPI Section */
.why-maxppi {
    padding: 3rem 4%;
    position: relative;
    overflow: hidden;
}

.why-maxppi::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: -1;
}

.why-content {
    text-align: left;
    margin-bottom: 3rem;
}

.why-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.why-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.video-section {
    position: relative;
}

.video-thumbnail {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Services Section */
.services {
    padding: 4rem 4%;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: -1;
}

.services::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: -1;
}

.services-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.play-icon, .close-icon {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--text-gray);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 1.2rem;
}

.services-header h2 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Light theme service cards */
[data-theme="light"] .service-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
}

.service-icon.development {
    background: var(--primary-purple);
    color: white;
}

.service-icon.ui-ux {
    background: var(--accent-red);
    color: white;
}

.service-icon.graphic {
    background: var(--accent-yellow);
    color: white;
}

.service-icon.motion {
    background: var(--accent-yellow);
    color: white;
}

.service-icon.photo {
    background: var(--primary-purple);
    color: white;
}

.service-icon.dashboard {
    background: #10B981;
    color: white;
}

.service-icon.tracking {
    background: #8B5CF6;
    color: white;
}

.service-icon.rates {
    background: #F59E0B;
    color: white;
}

.service-icon.support {
    background: var(--accent-red);
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Light theme service card text */
[data-theme="light"] .service-card h3 {
    color: #1f2937;
}

[data-theme="light"] .service-card p {
    color: #4b5563;
}

/* Portfolio Section */
.portfolio {
    padding: 4rem 4%;
    position: relative;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: -25%;
    right: -30%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: -1;
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.portfolio-header h2 {
    font-size: 3rem;
    font-weight: 700;
}

.portfolio-nav {
    display: flex;
    gap: 1rem;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--text-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
    color: white;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.payment-method {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Light theme payment methods */
[data-theme="light"] .payment-method {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.payment-method:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
}

.payment-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.payment-icon.paypal {
    background: #0070BA;
}

.payment-icon.payoneer {
    background: #FF6C37;
}

.payment-icon.wire {
    background: #1F2937;
}

.payment-icon.crypto {
    background: #F7931A;
}

.payment-icon.more-options {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
}

.payment-method h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.payment-method p {
    color: #9CA3AF;
    line-height: 1.6;
}

/* Light theme payment method text */
[data-theme="light"] .payment-method h3 {
    color: #1f2937;
}

[data-theme="light"] .payment-method p {
    color: #4b5563;
}

.payout-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.payout-text {
    color: #6366F1;
    font-weight: 600;
    font-size: 1.1rem;
}

.frequency {
    color: #9CA3AF;
    font-size: 0.9rem;
}

/* Rates Section */
.rates {
    padding: 4rem 4%;
    position: relative;
    overflow: hidden;
}

.rates::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: -1;
}

.rates-header {
    text-align: center;
    margin-bottom: 3rem;
}

.rates-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.rates-header p {
    color: #9CA3AF;
    font-size: 1.2rem;
}

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



.rates-table-container {
    position: relative;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    overflow: hidden;
}



.rates-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
    table-layout: fixed;
}

.rates-table th,
.rates-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rates-table th:nth-child(1),
.rates-table td:nth-child(1) {
    width: 65%;
}

.rates-table th:nth-child(2),
.rates-table td:nth-child(2) {
    width: 35%;
}

.rates-table th {
    background: rgba(99, 102, 241, 0.1);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.rates-table th:nth-child(2) {
    text-align: center;
}

.rates-table td {
    color: #E5E7EB;
}

.rates-table td:nth-child(1) {
    font-size: 1.1rem;
}

.rates-table td:nth-child(2) {
    font-weight: 600;
    color: #10B981;
    text-align: center;
    white-space: nowrap;
}

.rates-table tr:hover {
    background: rgba(99, 102, 241, 0.05);
}

.rates-table .contact-row {
    background: rgba(99, 102, 241, 0.1) !important;
    border-top: 2px solid rgba(99, 102, 241, 0.3);
}

.rates-table .contact-row td {
    width: auto !important;
}

.rates-table .contact-row:hover {
    background: rgba(99, 102, 241, 0.15) !important;
}

.contact-message {
    padding: 2rem 1rem;
}

.contact-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-text {
    flex: 1;
    text-align: left;
}

.contact-text h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: #9CA3AF;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.contact-btn {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.contact-btn i {
    transition: transform 0.3s ease;
}

.contact-btn:hover i {
    transform: translateX(3px);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
    }
}

/* Light theme rates */
[data-theme="light"] .rates-table-container {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .rates-table th {
    background: rgba(99, 102, 241, 0.1);
    color: #1f2937;
}

[data-theme="light"] .rates-table td {
    color: #374151;
}

[data-theme="light"] .rates-table tr:hover {
    background: rgba(99, 102, 241, 0.05);
}

[data-theme="light"] .contact-text h4 {
    color: #1f2937;
}

[data-theme="light"] .contact-text p {
    color: #6b7280;
}

/* Legal Pages */
.legal-page {
    padding: 6rem 4% 3rem;
    min-height: 100vh;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
}

.legal-container h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.last-updated {
    color: #9CA3AF;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #6366F1;
}

.legal-section p {
    color: #E5E7EB;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    color: #E5E7EB;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.back-link {
    color: #6366F1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #8B5CF6;
}

/* Light theme legal pages */
[data-theme="light"] .legal-container {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .legal-container h1 {
    color: #1f2937;
}

[data-theme="light"] .legal-section p,
[data-theme="light"] .legal-section ul,
[data-theme="light"] .legal-section li {
    color: #374151;
}

/* Responsive Design for Rates */
@media (max-width: 1024px) {
    .rates-header h2 {
        font-size: 2.5rem;
    }
    
    .rates-table th,
    .rates-table td {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .rates {
        padding: 3rem 4%;
    }
    
    .rates-header h2 {
        font-size: 2rem;
    }
    
    .rates-table-container {
        padding: 1rem;
        overflow-x: auto;
    }
    
    .rates-table {
        min-width: 500px;
        table-layout: auto;
    }
    
    .rates-table th,
    .rates-table td {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
    
    .rates-table td:nth-child(1) {
        font-size: 0.9rem;
    }
    
    .contact-message {
        padding: 1.5rem 0.8rem;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon i {
        font-size: 1.5rem;
    }
    
    .contact-text h4 {
        font-size: 1.2rem;
    }
    
    .contact-text p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .rates-header h2 {
        font-size: 1.8rem;
    }
    
    .rates-header p {
        font-size: 1rem;
    }
    
    .rates-table-container {
        padding: 0.5rem;
    }
    
    .rates-table th,
    .rates-table td {
        padding: 0.4rem;
        font-size: 0.75rem;
    }
    
    .rates-table td:nth-child(1) {
        font-size: 0.8rem;
    }
    
    .contact-message {
        padding: 1rem 0.6rem;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 1.2rem;
    }
    
    .contact-text h4 {
        font-size: 1rem;
    }
    
    .contact-text p {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .contact-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

/* Contact Section */
.contact {
    padding: 4rem 4%;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(150px);
    pointer-events: none;
    z-index: -1;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-header p {
    color: #9CA3AF;
    font-size: 1.2rem;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.8rem;
    position: relative;
    z-index: 10;
}

/* Light theme contact form */
[data-theme="light"] .contact-form-container {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 0.5rem;
}

.tab-btn {
    flex: 1;
    background: transparent;
    color: #9CA3AF;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: #6366F1;
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Light theme form labels */
[data-theme="light"] .form-group label {
    color: #1f2937;
    font-weight: 600;
}

.form-hint {
    color: #9CA3AF;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    font-style: italic;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

/* Light theme form inputs */
[data-theme="light"] .form-group input,
[data-theme="light"] .form-group select,
[data-theme="light"] .form-group textarea {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #1f2937;
}

[data-theme="light"] .form-group input::placeholder,
[data-theme="light"] .form-group textarea::placeholder {
    color: #9CA3AF;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6366F1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6B7280;
}

.form-group select option {
    background: #1A1A2E;
    color: white;
}

.submit-btn {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.4);
}

/* Footer */
footer {
    padding: 2rem 4%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo .logo-image {
    height: 35px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-white);
}

.footer-copyright p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .theme-toggle {
        display: none;
    }
    
    .nav-right {
        gap: 0.5rem;
    }
    
    .logo-image {
        height: 35px;
        max-width: 120px;
    }
    
    .auth-buttons {
        gap: 0.5rem;
    }
    
    .login-btn, .register-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 1.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-tabs {
        padding: 0.3rem;
    }
    
    .tab-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 4% 2rem;
    }
    
    .nav-right {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .logo-image {
        height: 30px;
        max-width: 100px;
    }
    
    .auth-buttons {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .login-btn, .register-btn {
        width: 100%;
        padding: 0.6rem 1rem;
    }
    
    .hero-person img {
        width: 300px;
        height: 380px;
    }
    
    .services-header {
        flex-direction: column;
        gap: 2rem;
    }
    
    .portfolio-header {
        flex-direction: column;
        gap: 2rem;
    }
} 
/* Support Section Styles */
.support-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .contact-item {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.2);
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.contact-icon.email {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.15) 100%);
    color: #3B82F6;
}

.contact-icon.whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, rgba(16, 185, 129, 0.15) 100%);
    color: #25D366;
}

.contact-icon.telegram {
    background: linear-gradient(135deg, rgba(41, 171, 226, 0.15) 0%, rgba(33, 150, 243, 0.15) 100%);
    color: #29ABE2;
}

.contact-info {
    flex: 1;
}

.contact-info h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.2rem;
}

[data-theme="light"] .contact-info h4 {
    color: #1f2937;
}

.contact-info p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.contact-value {
    font-size: 1.05rem;
    color: #667eea;
    font-weight: 600;
    margin-top: 0.5rem;
    word-break: break-word;
}

.contact-action {
    margin-left: 1rem;
}

.btn-contact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    color: white;
    text-decoration: none;
}

.support-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.support-info-card {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

[data-theme="light"] .support-info-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.support-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.2);
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    color: #6366F1;
}

.support-info-card h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.1rem;
}

[data-theme="light"] .support-info-card h4 {
    color: #1f2937;
}

.support-info-card p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .contact-action {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
    }
    
    .btn-contact {
        width: 100%;
    }
    
    .support-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
