:root {
    --primary-color: #00d2ff;
    --secondary-color: #9d50bb;
    --bg-dark: #050505;
    --bg-card: rgba(20, 20, 20, 0.7);
    --text-main: #f5f5f5;
    --text-dim: #a0a0a0;
    --accent-gradient: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] {
    --bg-dark: #ffffff;
    --bg-card: rgba(245, 245, 245, 0.8);
    --text-main: #111111;
    --text-dim: #555555;
    --glass-border: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .hero-overlay {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 20%, rgba(255, 255, 255, 0.5) 100%);
}

[data-theme="light"] .pay-img, [data-theme="light"] .pay-logo {
    background: rgba(0, 0, 0, 0.05);
}

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

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

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

/* Typography */
h1, h2, h3 {
    font-weight: 700;
}

span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

#navbar.scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

#navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 400;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links a.active {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .nav-links.mobile-active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        padding: 2rem;
        text-align: center;
        border-bottom: 1px solid var(--glass-border);
    }
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: 2rem;
}

#currencyToggle {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    transition: var(--transition);
}

#currencyToggle:hover {
    border-color: var(--primary-color);
}

#currencyToggle option {
    background: var(--bg-dark);
    color: var(--text-main);
}

.menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 210, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('assets/hero-bg.png') no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(5, 5, 5, 0.9) 20%, rgba(5, 5, 5, 0.4) 100%);
}

.hero-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-dim);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 25px;
    height: 45px;
    border: 2px solid var(--text-dim);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: animateScroll 2s infinite;
}

@keyframes animateScroll {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 20px); }
}

/* Services */
.services {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-dim);
}

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

.service-card {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    background: rgba(30, 30, 30, 0.7);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 210, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* About */
.about {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    filter: grayscale(20%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-dim);
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item h4 {
    font-size: 2rem;
    color: var(--primary-color);
}

.stat-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Custom Payments Section */
.payments {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.payments-container {
    display: flex;
    justify-content: center;
}

.payment-card {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    max-width: 600px;
    width: 100%;
    text-align: center;
    backdrop-filter: blur(10px);
}

.payment-card .icon-box {
    margin: 0 auto 1.5rem;
}

.payment-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.payment-card p {
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.custom-payment-form {
    margin-bottom: 2rem;
    text-align: left;
}

.payment-methods-supported {
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
}

.payment-methods-supported p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--text-dim);
}

.payment-logos-small {
    gap: 0.5rem;
}

.payment-logos-small .pay-logo {
    height: 35px;
    min-width: 45px;
    font-size: 1.2rem;
    padding: 0.2rem 0.6rem;
}

.pay-img {
    height: 45px;
    border-radius: 8px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
    cursor: default;
}

.payment-logos-small .pay-img {
    height: 35px;
    padding: 0.2rem 0.6rem;
}

.pay-img:hover {
    filter: grayscale(0%);
    opacity: 1;
    background: white;
    border-color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Contact */
.contact {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    background: rgba(0, 210, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item h4 {
    font-size: 1.1rem;
}

.info-item p {
    color: var(--text-dim);
}

.contact-form {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
}

.form-group {
    margin-bottom: 1.5rem;
}

input, textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-main);
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

input:focus, textarea:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

/* Footer */
footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.social-links {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-dim);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    margin-top: 1rem;
}

.compliance-links {
    margin-top: 1rem;
}

.compliance-links a {
    color: var(--text-dim);
    font-size: 0.85rem;
    text-decoration: none;
    margin: 0 0.5rem;
    transition: var(--transition);
}

.compliance-links a:hover {
    color: var(--primary-color);
}

/* Payment Logos */
.payment-note {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.payment-note small {
    display: block;
    color: var(--text-dim);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    align-items: center;
}

.pay-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    color: var(--text-dim);
    font-size: 1.8rem;
    transition: var(--transition);
    height: 45px;
    min-width: 60px;
    cursor: default;
}

.pay-logo.text-logo {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pay-logo:hover {
    color: var(--text-main);
    border-color: var(--primary-color);
    background: rgba(0, 210, 255, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.pay-logo.visa:hover { color: #1a1f71; border-color: #1a1f71; background: white; }
.pay-logo.mastercard:hover { color: #eb001b; border-color: #f79e1b; background: white; }
.pay-logo.amex:hover { color: #2e77bc; border-color: #2e77bc; background: white; }
.pay-logo.ezcash:hover { color: #ff5722; border-color: #ff5722; background: rgba(255,87,34,0.1); }
.pay-logo.mcash:hover { color: #e3000f; border-color: #e3000f; background: rgba(227,0,15,0.1); }
.pay-logo.helapay:hover { color: #00d2ff; border-color: #00d2ff; background: rgba(0,210,255,0.1); }
.pay-logo.ipay:hover { color: #004d99; border-color: #004d99; background: rgba(0,77,153,0.1); }

/* Pricing / Detailed Services */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 50px 0;
}

.price-card {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.price-card.popular {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.price-card .plan-name {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.price-card .plan-price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.price-card .plan-price span {
    font-size: 1rem;
    color: var(--text-dim);
    -webkit-text-fill-color: var(--text-dim);
}

.price-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2.5rem;
}

.price-card ul li {
    margin-bottom: 1rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-card ul li i {
    color: #25d366;
}

.price-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-content h1 { font-size: 3.5rem; }
    .about-flex { flex-direction: column; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-btn { display: block; }
    .nav-controls { 
        margin-left: auto; 
        margin-right: 1.5rem; 
    }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-btns { display: flex; flex-direction: column; gap: 1rem; }
    .btn-secondary { margin-left: 0; }
}
