:root {
    --bg-color: #05050A;
    --surface-color: rgba(15, 15, 25, 0.7);
    --accent-blue: #00f0ff;
    --accent-purple: #8a2be2;
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    position: relative;
}

/* Animated Background Particles / Gradient */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: 
        radial-gradient(circle at 15% 50%, rgba(138, 43, 226, 0.12), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(0, 240, 255, 0.12), transparent 25%),
        linear-gradient(to bottom, #05050A, #0a0a15);
    animation: bgShift 15s ease-in-out infinite alternate;
}

@keyframes bgShift {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

/* Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 5, 10, 0.85);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--accent-blue);
    -webkit-text-fill-color: var(--accent-blue);
    text-shadow: 0 0 10px var(--accent-blue);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    position: relative;
}

nav a:hover {
    color: var(--accent-blue);
    text-shadow: 0 0 10px rgba(0,240,255,0.5);
}

/* Buttons & Glow */
.btn {
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-purple));
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(45deg, var(--accent-purple), var(--accent-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 30px;
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover {
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.6), 0 0 15px rgba(138, 43, 226, 0.6);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--accent-purple);
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.2) inset;
}

.btn-outline:hover {
    background: rgba(138, 43, 226, 0.1);
    border-color: var(--accent-blue);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4) inset, 0 0 20px rgba(0, 240, 255, 0.4);
}

/* Sections */
section {
    padding: 100px 10vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Hero */
.hero {
    text-align: center;
    position: relative;
    min-height: 100vh;
    margin-top: 50px;
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.5rem;
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0,240,255,0.3);
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

/* Trust Badges - Row under hero */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 30px 0;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    margin-top: auto;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #ddd;
}

.trust-badge i {
    color: var(--accent-blue);
    font-size: 1.5rem;
}

/* Glass Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 35px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
    opacity: 0;
    transition: 0.5s;
    z-index: -1;
    pointer-events: none;
}

.glass-card:hover::before {
    opacity: 1;
    transform: rotate(45deg);
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5), 0 0 15px rgba(0, 240, 255, 0.1);
    border-color: rgba(138, 43, 226, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    align-self: center;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    bottom: -15px;
    left: 25%;
    box-shadow: 0 0 10px var(--accent-purple);
    border-radius: 5px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.vision-mission {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vm-card {
    background: rgba(0, 240, 255, 0.05);
    border-left: 4px solid var(--accent-blue);
    padding: 20px;
    border-radius: 0 10px 10px 0;
}

.vm-card h4 { margin-bottom: 10px; color: #fff; }

.experience-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(45deg, rgba(138,43,226,0.2), rgba(0,240,255,0.2));
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
    margin-top: 20px;
}

.experience-badge i { font-size: 2rem; color: var(--accent-blue); }
.experience-badge span { font-weight: bold; font-size: 1.2rem; }

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-category {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
}

.service-icon {
    font-size: 3rem;
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.service-list {
    list-style: none;
    color: var(--text-muted);
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.service-list li i {
    color: var(--accent-blue);
    font-size: 0.8rem;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.pricing-card {
    text-align: center;
    border-top: 5px solid var(--accent-purple);
}

.pricing-card.featured {
    border-top: 5px solid var(--accent-blue);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.15);
}

.pricing-card.featured:hover { transform: scale(1.05) translateY(-10px); }

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 20px 0;
    text-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.price span { font-size: 1rem; color: var(--text-muted); font-weight: normal; }

/* Stats Section */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-num {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--accent-blue), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: 0.3s;
}

.faq-question:hover { background: rgba(255,255,255,0.05); color: var(--accent-blue); }

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

.faq-item.active .faq-question i { transform: rotate(180deg); }

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--surface-color);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(138, 43, 226, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--accent-purple);
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.contact-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    background: rgba(0,0,0,0.4);
    border-radius: 15px;
}

/* Footer */
footer {
    background: #020205;
    padding: 70px 10vw 20px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--accent-blue);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a {
    color: white;
    background: rgba(255,255,255,0.05);
    width: 45px; height: 45px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-icons a:hover {
    background: var(--accent-purple);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.5);
    border-color: var(--accent-purple);
}

.copyright {
    text-align: center;
    color: var(--text-muted);
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
}

/* Policy Modal */
.modal {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #0a0a15;
    width: 90%;
    max-width: 600px;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--accent-purple);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 20px; right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: 0.3s;
}

.close-btn:hover { color: #fff; }

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

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

/* Responsive */
@media (max-width: 992px) {
    .about-content, .contact-container, .footer-content { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    header { padding: 20px; flex-direction: column; gap: 15px; }
    nav ul { flex-wrap: wrap; justify-content: center; gap: 15px; }
    .hero-btns { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 300px; }
    .trust-badges { gap: 20px; }
    section { padding: 80px 5vw; }
}

.brand-logo {
    height: 48px;
    object-fit: contain;
}

/* Floating WA Button & Popup */
.floating-wa-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.floating-wa {
    background-color: #25D366;
    color: #FFF;
    font-size: 35px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    outline: none;
}

.floating-wa:hover {
    transform: translateY(-3px) scale(1.05);
    background-color: #20b858;
    color: #FFF;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.floating-wa i {
    transition: transform 0.35s ease;
}

.floating-wa-wrapper.open .floating-wa i {
    transform: rotate(90deg);
}

/* WA Popup Menu */
.wa-popup {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.95);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.floating-wa-wrapper.open .wa-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.wa-popup-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(15, 15, 25, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.wa-popup-item:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: #25D366;
    transform: translateX(-5px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.wa-popup-item i {
    font-size: 1.2rem;
    color: #25D366;
    width: 22px;
    text-align: center;
}
