/* styles.css - Aqua Raya Main Stylesheet */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #05070A;
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    color: #EFF3F8;
    line-height: 1.4;
    scroll-behavior: smooth;
}

.glow-cyan {
    text-shadow: 0 0 8px #0ff, 0 0 2px #0ff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

/* Header Styles */
.site-header {
    background: rgba(5, 7, 10, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0;
}

.glowing-line-container {
    width: 100%;
    overflow: hidden;
}

.glowing-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0ff, #0ff, #0ff, #0ff, transparent);
    animation: glowSlide 3.5s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
}

@keyframes glowSlide {
    0% { transform: translateX(-100%); opacity: 0.3; }
    20% { transform: translateX(0%); opacity: 1; }
    80% { transform: translateX(0%); opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.3; }
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 0 10px 0;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-card {
    background: rgba(0, 255, 255, 0.08);
    border-radius: 60px;
    padding: 5px 18px 5px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(0, 255, 255, 0.5);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    transition: all 0.2s ease;
}

.logo-card:hover {
    box-shadow: 0 0 18px rgba(0, 255, 255, 0.6);
    border-color: #0ff;
    transform: scale(1.01);
}

.logo-img {
    width: 38px;
    height: auto;
    filter: drop-shadow(0 0 5px #0ff);
}

.site-title {
    font-family: 'Space Grotesk', monospace;
    font-size: 1.35rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFFFFF, #0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.3px;
}

.order-btn {
    border: 1.5px solid #0ff;
    background: linear-gradient(95deg, rgba(0, 255, 255, 0.15), rgba(0, 100, 100, 0.3));
    padding: 8px 24px;
    border-radius: 40px;
    color: #0ff;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.2s;
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(4px);
    box-shadow: 0 0 6px rgba(0, 255, 255, 0.3);
}

.order-btn:hover {
    background: #0ff;
    color: #05070A;
    box-shadow: 0 0 14px cyan;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    padding: 50px 0 45px;
    background: radial-gradient(circle at 20% 30%, #0A1118, #020408);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    top: -30%;
    left: -30%;
    background: radial-gradient(circle, rgba(0,255,255,0.06) 0%, rgba(0,0,0,0) 70%);
    animation: slowRotate 22s infinite linear;
    pointer-events: none;
}

@keyframes slowRotate {
    0% { transform: rotate(0deg) scale(1); opacity: 0.4; }
    100% { transform: rotate(360deg) scale(1.2); opacity: 0.2; }
}

.hero-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1.2;
    min-width: 270px;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 255, 255, 0.12);
    border: 1px solid rgba(0, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    padding: 4px 16px;
    border-radius: 60px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #9effff;
    margin-bottom: 16px;
}

.hero-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.9rem;
    line-height: 1.2;
    font-weight: 700;
    background: linear-gradient(125deg, #FFFFFF 20%, #0ff 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 14px;
}

.hero-desc {
    font-size: 0.95rem;
    color: #B9D9F0;
    margin-bottom: 20px;
    max-width: 520px;
}

.btn-primary {
    background: linear-gradient(95deg, #0ff, #0a6c8c);
    border: none;
    padding: 11px 28px;
    border-radius: 48px;
    font-weight: 700;
    color: #05070A;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s;
    font-size: 0.95rem;
    box-shadow: 0 0 10px #0ff6;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px cyan;
    background: linear-gradient(95deg, #3effff, #0b98bf);
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 28px;
    filter: drop-shadow(0 0 15px rgba(0,255,255,0.4));
    border: 1px solid rgba(0,255,255,0.3);
}

/* Sections */
.section {
    padding: 55px 0;
}

.section-dark {
    background: #03070E;
    border-top: 1px solid rgba(0, 255, 255, 0.15);
    border-bottom: 1px solid rgba(0, 255, 255, 0.15);
}

.section-title {
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 600;
    background: linear-gradient(135deg, #E0F2FE, #0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
}

.benefit-card {
    flex: 1;
    min-width: 210px;
    background: rgba(12, 22, 32, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 28px;
    padding: 28px 22px;
    text-align: center;
    border: 1px solid rgba(0, 255, 255, 0.25);
    transition: all 0.2s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #0ff;
    box-shadow: 0 0 20px rgba(0,255,255,0.25);
}

.benefit-icon {
    font-size: 2.4rem;
    filter: drop-shadow(0 0 5px cyan);
    margin-bottom: 14px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.benefit-card p {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Pure Section */
.pure-section {
    background: linear-gradient(145deg, #051016, #010408);
    padding: 50px 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.pure-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: center;
}

.pure-item {
    flex: 1;
    min-width: 220px;
    background: rgba(0, 20, 28, 0.55);
    backdrop-filter: blur(8px);
    border-radius: 32px;
    padding: 32px 20px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    transition: all 0.25s ease;
}

.pure-item:hover {
    transform: translateY(-6px);
    border-color: #0ff;
    box-shadow: 0 0 24px rgba(0,255,255,0.25);
    background: rgba(0, 40, 50, 0.6);
}

.pure-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 8px cyan);
    margin-bottom: 16px;
}

.pure-item h3 {
    font-size: 1.7rem;
    font-family: 'Space Grotesk';
    font-weight: 700;
    background: linear-gradient(135deg, #FFFFFF, #0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
}

.pure-item p {
    font-size: 0.88rem;
    color: #C0E0FF;
    line-height: 1.4;
    max-width: 260px;
    margin: 0 auto;
}

/* Feature Showcase */
.feature-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    align-items: center;
    justify-content: space-between;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 1.8rem;
    font-family: 'Space Grotesk';
    margin-bottom: 14px;
    background: linear-gradient(135deg, #fff, #0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-list {
    list-style: none;
    margin-top: 18px;
}

.feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.neon-check {
    width: 22px;
    height: 22px;
    background: #0ff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-weight: bold;
    box-shadow: 0 0 6px cyan;
    font-size: 0.8rem;
}

.feature-img img {
    width: 100%;
    max-width: 360px;
    border-radius: 28px;
    border: 1px solid cyan;
    box-shadow: 0 0 16px rgba(0,255,255,0.3);
}

/* CTA Banner */
.cta-banner {
    background: rgba(0, 20, 30, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid #0ff;
    border-radius: 40px;
    padding: 38px 30px;
    text-align: center;
    margin: 30px auto 45px;
    box-shadow: 0 0 24px rgba(0,255,255,0.2);
}

.cta-banner h2 {
    font-size: 1.7rem;
    font-family: 'Space Grotesk';
    color: #0ff;
    text-shadow: 0 0 5px cyan;
}

.cta-banner p {
    margin: 12px auto;
    max-width: 550px;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #01060C;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    padding: 42px 0 28px;
}

.footer-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.footer-card {
    flex: 1;
    min-width: 200px;
    background: rgba(12, 22, 32, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    padding: 20px 20px;
    border: 1px solid rgba(0, 255, 255, 0.25);
    transition: all 0.2s ease;
}

.footer-card:hover {
    border-color: rgba(0, 255, 255, 0.6);
    box-shadow: 0 0 12px rgba(0,255,255,0.12);
    transform: translateY(-2px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.card-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 3px cyan);
}

.footer-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0ff;
    text-shadow: 0 0 3px rgba(0,255,255,0.4);
}

.link-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    text-decoration: none;
    color: #CBD5D1;
    transition: 0.2s;
    font-size: 0.85rem;
    padding: 5px 6px;
    border-radius: 10px;
}

.link-item:hover {
    color: #0ff;
    transform: translateX(5px);
    background: rgba(0, 255, 255, 0.05);
}

.link-icon {
    width: 18px;
    height: 18px;
    filter: brightness(0.9);
    transition: 0.2s;
}

.contact-info {
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 255, 255, 0.15);
    color: #9aaeb9;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.copyright {
    text-align: center;
    font-size: 0.75rem;
    border-top: 1px solid rgba(0, 255, 255, 0.15);
    padding-top: 24px;
    opacity: 0.7;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(145deg, #25D366, #128C7E);
    border-radius: 60px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 0 rgba(37,211,102,0.7);
    animation: pulseGreen 2s infinite;
    z-index: 99;
    cursor: pointer;
    transition: transform 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.05);
}

@keyframes pulseGreen {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
    70% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.whatsapp-icon-svg {
    width: 30px;
    height: 30px;
    fill: white;
    display: block;
}

/* Responsive */
@media (max-width: 780px) {
    .container { padding: 0 20px; }
    .hero-content h1 { font-size: 2rem; }
    .header-flex { flex-direction: column; }
    .feature-showcase { flex-direction: column; }
    .footer-cards { flex-direction: column; }
    .hero { padding: 40px 0; }
    .section { padding: 40px 0; }
    .pure-section { padding: 40px 0; }
    .cta-banner { padding: 28px 20px; margin: 20px auto 35px; }
    .pure-item h3 { font-size: 1.4rem; }
}
/* Mission Page Specific Styles */
.mission-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 32px 0;
    justify-content: center;
}

.stat-card {
    background: rgba(0, 255, 255, 0.05);
    border-radius: 24px;
    padding: 24px;
    text-align: center;
    flex: 1;
    min-width: 160px;
    border: 1px solid rgba(0,255,255,0.2);
    transition: all 0.2s ease;
}

.stat-card:hover {
    border-color: #0ff;
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0,255,255,0.15);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0ff;
    font-family: 'Space Grotesk';
}

/* Page Section Styles (if not already in your main CSS) */
.page-section {
    padding: 60px 0 70px;
    background: radial-gradient(circle at 20% 30%, #0A1118, #020408);
    position: relative;
    overflow: hidden;
}

.page-section::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    top: -30%;
    left: -30%;
    background: radial-gradient(circle, rgba(0,255,255,0.05) 0%, rgba(0,0,0,0) 70%);
    animation: slowRotate 22s infinite linear;
    pointer-events: none;
}

.content-card {
    position: relative;
    z-index: 2;
    background: rgba(12, 22, 32, 0.75);
    backdrop-filter: blur(12px);
    border-radius: 36px;
    border: 1px solid rgba(0, 255, 255, 0.35);
    padding: 48px;
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.6), 0 0 24px rgba(0,255,255,0.12);
}

.page-header {
    text-align: center;
    margin-bottom: 38px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.25);
    padding-bottom: 22px;
}

.page-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4rem;
    background: linear-gradient(135deg, #FFFFFF, #0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
}

.page-header p {
    color: #7ea3b3;
    font-size: 0.9rem;
}

.content-block {
    margin-bottom: 28px;
}

.content-block h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: #0ff;
    text-shadow: 0 0 3px rgba(0,255,255,0.3);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-block p, .content-block li {
    color: #CBD5D1;
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.content-block ul {
    padding-left: 28px;
    margin: 12px 0;
}

.content-block li {
    margin-bottom: 8px;
}

.highlight-neon {
    color: #0ff;
    font-weight: 500;
    text-shadow: 0 0 2px rgba(0,255,255,0.4);
}

/* Footer Styles (if not already in your main CSS) */
.footer {
    background: #01060C;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    padding: 42px 0 28px;
}

.footer-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.footer-card {
    flex: 1;
    min-width: 200px;
    background: rgba(12, 22, 32, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    padding: 20px;
    border: 1px solid rgba(0, 255, 255, 0.25);
    transition: all 0.2s ease;
}

.footer-card:hover {
    border-color: rgba(0, 255, 255, 0.6);
    box-shadow: 0 0 12px rgba(0,255,255,0.12);
    transform: translateY(-2px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.card-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 3px cyan);
}

.footer-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0ff;
    text-shadow: 0 0 3px rgba(0,255,255,0.4);
}

.link-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    text-decoration: none;
    color: #CBD5D1;
    transition: 0.2s;
    font-size: 0.85rem;
    padding: 5px 6px;
    border-radius: 10px;
}

.link-item:hover {
    color: #0ff;
    transform: translateX(5px);
    background: rgba(0, 255, 255, 0.05);
}

.link-icon {
    width: 18px;
    height: 18px;
    filter: brightness(0.9);
}

.contact-info {
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 255, 255, 0.15);
    color: #9aaeb9;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.copyright {
    text-align: center;
    font-size: 0.75rem;
    border-top: 1px solid rgba(0, 255, 255, 0.15);
    padding-top: 24px;
    opacity: 0.7;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(145deg, #25D366, #128C7E);
    border-radius: 60px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 0 rgba(37,211,102,0.7);
    animation: pulseGreen 2s infinite;
    z-index: 99;
    cursor: pointer;
    transition: transform 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.05);
}

@keyframes pulseGreen {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
    70% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.whatsapp-icon-svg {
    width: 30px;
    height: 30px;
    fill: white;
    display: block;
}

/* Responsive */
@media (max-width: 780px) {
    .container { padding: 0 20px; }
    .header-flex { flex-direction: column; }
    .content-card { padding: 28px; }
    .page-header h1 { font-size: 1.8rem; }
    .content-block h2 { font-size: 1.3rem; }
    .footer-cards { flex-direction: column; }
    .page-section { padding: 45px 0; }
}
/* Privacy Policy Page Specific Styles */
.privacy-section {
    padding: 60px 0 70px;
    background: radial-gradient(circle at 20% 30%, #0A1118, #020408);
    position: relative;
    overflow: hidden;
}

.privacy-section::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    top: -30%;
    left: -30%;
    background: radial-gradient(circle, rgba(0,255,255,0.05) 0%, rgba(0,0,0,0) 70%);
    animation: slowRotate 22s infinite linear;
    pointer-events: none;
}

.privacy-card {
    position: relative;
    z-index: 2;
    background: rgba(12, 22, 32, 0.75);
    backdrop-filter: blur(12px);
    border-radius: 36px;
    border: 1px solid rgba(0, 255, 255, 0.35);
    padding: 48px;
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.6), 0 0 24px rgba(0,255,255,0.12);
}

.privacy-header {
    text-align: center;
    margin-bottom: 38px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.25);
    padding-bottom: 22px;
}

.privacy-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4rem;
    background: linear-gradient(135deg, #FFFFFF, #0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
}

.privacy-header .last-updated {
    color: #7ea3b3;
    font-size: 0.85rem;
}

.policy-block {
    margin-bottom: 28px;
}

.policy-block h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: #0ff;
    text-shadow: 0 0 3px rgba(0,255,255,0.3);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-block p, .policy-block li {
    color: #CBD5D1;
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.policy-block ul {
    padding-left: 28px;
    margin: 12px 0;
}

.policy-block li {
    margin-bottom: 6px;
}

.contact-info-block {
    background: rgba(0, 255, 255, 0.05);
    border-left: 3px solid #0ff;
    padding: 18px 22px;
    border-radius: 20px;
    margin-top: 20px;
}

/* Responsive for Privacy Page */
@media (max-width: 780px) {
    .privacy-card { padding: 28px; }
    .privacy-header h1 { font-size: 1.8rem; }
    .policy-block h2 { font-size: 1.3rem; }
    .privacy-section { padding: 45px 0; }
}
/* styles.css - Aqua Raya Main Stylesheet */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #05070A;
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    color: #EFF3F8;
    line-height: 1.4;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

html {
    overflow-y: auto;
    scroll-behavior: smooth;
}

.glow-cyan {
    text-shadow: 0 0 8px #0ff, 0 0 2px #0ff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

/* Header Styles */
.site-header {
    background: rgba(5, 7, 10, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0;
}

.glowing-line-container {
    width: 100%;
    overflow: hidden;
}

.glowing-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0ff, #0ff, #0ff, #0ff, transparent);
    animation: glowSlide 3.5s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
}

@keyframes glowSlide {
    0% { transform: translateX(-100%); opacity: 0.3; }
    20% { transform: translateX(0%); opacity: 1; }
    80% { transform: translateX(0%); opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.3; }
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 0 10px 0;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-card {
    background: rgba(0, 255, 255, 0.08);
    border-radius: 60px;
    padding: 5px 18px 5px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(0, 255, 255, 0.5);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    transition: all 0.2s ease;
}

.logo-card:hover {
    box-shadow: 0 0 18px rgba(0, 255, 255, 0.6);
    border-color: #0ff;
    transform: scale(1.01);
}

.logo-img {
    width: 38px;
    height: auto;
    filter: drop-shadow(0 0 5px #0ff);
}

.site-title {
    font-family: 'Space Grotesk', monospace;
    font-size: 1.35rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFFFFF, #0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.3px;
}

/* GLOWING HOME BUTTON - FIXED */
.home-glow-btn {
    border: 1.5px solid #0ff;
    background: linear-gradient(95deg, rgba(0, 255, 255, 0.25), rgba(0, 150, 150, 0.5));
    padding: 8px 28px;
    border-radius: 40px;
    color: #0ff;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.25s;
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(4px);
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.6);
    letter-spacing: 0.5px;
    text-shadow: 0 0 4px rgba(0, 255, 255, 0.5);
}

.home-glow-btn:hover {
    background: #0ff;
    color: #05070A;
    box-shadow: 0 0 22px cyan, 0 0 35px rgba(0, 255, 255, 0.8);
    transform: translateY(-2px);
    text-shadow: none;
}

/* Order Button - for main page */
.order-btn {
    border: 1.5px solid #0ff;
    background: linear-gradient(95deg, rgba(0, 255, 255, 0.15), rgba(0, 100, 100, 0.3));
    padding: 8px 24px;
    border-radius: 40px;
    color: #0ff;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.2s;
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(4px);
    box-shadow: 0 0 6px rgba(0, 255, 255, 0.3);
}

.order-btn:hover {
    background: #0ff;
    color: #05070A;
    box-shadow: 0 0 14px cyan;
    transform: translateY(-1px);
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Hero Section */
.hero {
    padding: 50px 0 45px;
    background: radial-gradient(circle at 20% 30%, #0A1118, #020408);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    top: -30%;
    left: -30%;
    background: radial-gradient(circle, rgba(0,255,255,0.06) 0%, rgba(0,0,0,0) 70%);
    animation: slowRotate 22s infinite linear;
    pointer-events: none;
}

@keyframes slowRotate {
    0% { transform: rotate(0deg) scale(1); opacity: 0.4; }
    100% { transform: rotate(360deg) scale(1.2); opacity: 0.2; }
}

.hero-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1.2;
    min-width: 270px;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 255, 255, 0.12);
    border: 1px solid rgba(0, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    padding: 4px 16px;
    border-radius: 60px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #9effff;
    margin-bottom: 16px;
}

.hero-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.9rem;
    line-height: 1.2;
    font-weight: 700;
    background: linear-gradient(125deg, #FFFFFF 20%, #0ff 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 14px;
}

.hero-desc {
    font-size: 0.95rem;
    color: #B9D9F0;
    margin-bottom: 20px;
    max-width: 520px;
}

.btn-primary {
    background: linear-gradient(95deg, #0ff, #0a6c8c);
    border: none;
    padding: 11px 28px;
    border-radius: 48px;
    font-weight: 700;
    color: #05070A;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s;
    font-size: 0.95rem;
    box-shadow: 0 0 10px #0ff6;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px cyan;
    background: linear-gradient(95deg, #3effff, #0b98bf);
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 28px;
    filter: drop-shadow(0 0 15px rgba(0,255,255,0.4));
    border: 1px solid rgba(0,255,255,0.3);
}

/* Sections */
.section {
    padding: 55px 0;
}

.section-dark {
    background: #03070E;
    border-top: 1px solid rgba(0, 255, 255, 0.15);
    border-bottom: 1px solid rgba(0, 255, 255, 0.15);
}

.section-title {
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 600;
    background: linear-gradient(135deg, #E0F2FE, #0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
}

.benefit-card {
    flex: 1;
    min-width: 210px;
    background: rgba(12, 22, 32, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 28px;
    padding: 28px 22px;
    text-align: center;
    border: 1px solid rgba(0, 255, 255, 0.25);
    transition: all 0.2s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #0ff;
    box-shadow: 0 0 20px rgba(0,255,255,0.25);
}

.benefit-icon {
    font-size: 2.4rem;
    filter: drop-shadow(0 0 5px cyan);
    margin-bottom: 14px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.benefit-card p {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Pure Section */
.pure-section {
    background: linear-gradient(145deg, #051016, #010408);
    padding: 50px 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.pure-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: center;
}

.pure-item {
    flex: 1;
    min-width: 220px;
    background: rgba(0, 20, 28, 0.55);
    backdrop-filter: blur(8px);
    border-radius: 32px;
    padding: 32px 20px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    transition: all 0.25s ease;
}

.pure-item:hover {
    transform: translateY(-6px);
    border-color: #0ff;
    box-shadow: 0 0 24px rgba(0,255,255,0.25);
    background: rgba(0, 40, 50, 0.6);
}

.pure-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 8px cyan);
    margin-bottom: 16px;
}

.pure-item h3 {
    font-size: 1.7rem;
    font-family: 'Space Grotesk';
    font-weight: 700;
    background: linear-gradient(135deg, #FFFFFF, #0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
}

.pure-item p {
    font-size: 0.88rem;
    color: #C0E0FF;
    line-height: 1.4;
    max-width: 260px;
    margin: 0 auto;
}

/* Feature Showcase */
.feature-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    align-items: center;
    justify-content: space-between;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 1.8rem;
    font-family: 'Space Grotesk';
    margin-bottom: 14px;
    background: linear-gradient(135deg, #fff, #0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-list {
    list-style: none;
    margin-top: 18px;
}

.feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.neon-check {
    width: 22px;
    height: 22px;
    background: #0ff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-weight: bold;
    box-shadow: 0 0 6px cyan;
    font-size: 0.8rem;
}

.feature-img img {
    width: 100%;
    max-width: 360px;
    border-radius: 28px;
    border: 1px solid cyan;
    box-shadow: 0 0 16px rgba(0,255,255,0.3);
}

/* CTA Banner */
.cta-banner {
    background: rgba(0, 20, 30, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid #0ff;
    border-radius: 40px;
    padding: 38px 30px;
    text-align: center;
    margin: 30px auto 45px;
    box-shadow: 0 0 24px rgba(0,255,255,0.2);
}

.cta-banner h2 {
    font-size: 1.7rem;
    font-family: 'Space Grotesk';
    color: #0ff;
    text-shadow: 0 0 5px cyan;
}

.cta-banner p {
    margin: 12px auto;
    max-width: 550px;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #01060C;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    padding: 42px 0 28px;
}

.footer-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.footer-card {
    flex: 1;
    min-width: 200px;
    background: rgba(12, 22, 32, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    padding: 20px;
    border: 1px solid rgba(0, 255, 255, 0.25);
    transition: all 0.2s ease;
}

.footer-card:hover {
    border-color: rgba(0, 255, 255, 0.6);
    box-shadow: 0 0 12px rgba(0,255,255,0.12);
    transform: translateY(-2px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.card-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 3px cyan);
}

.footer-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0ff;
    text-shadow: 0 0 3px rgba(0,255,255,0.4);
}

.link-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    text-decoration: none;
    color: #CBD5D1;
    transition: 0.2s;
    font-size: 0.85rem;
    padding: 5px 6px;
    border-radius: 10px;
}

.link-item:hover {
    color: #0ff;
    transform: translateX(5px);
    background: rgba(0, 255, 255, 0.05);
}

.link-icon {
    width: 18px;
    height: 18px;
    filter: brightness(0.9);
    transition: 0.2s;
}

.contact-info {
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 255, 255, 0.15);
    color: #9aaeb9;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.copyright {
    text-align: center;
    font-size: 0.75rem;
    border-top: 1px solid rgba(0, 255, 255, 0.15);
    padding-top: 24px;
    opacity: 0.7;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(145deg, #25D366, #128C7E);
    border-radius: 60px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 0 rgba(37,211,102,0.7);
    animation: pulseGreen 2s infinite;
    z-index: 99;
    cursor: pointer;
    transition: transform 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.05);
}

@keyframes pulseGreen {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
    70% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.whatsapp-icon-svg {
    width: 30px;
    height: 30px;
    fill: white;
    display: block;
}

/* Page Section (Inner Pages) */
.page-section {
    padding: 60px 0 70px;
    background: radial-gradient(circle at 20% 30%, #0A1118, #020408);
    position: relative;
    overflow: hidden;
}

.page-section::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    top: -30%;
    left: -30%;
    background: radial-gradient(circle, rgba(0,255,255,0.05) 0%, rgba(0,0,0,0) 70%);
    animation: slowRotate 22s infinite linear;
    pointer-events: none;
}

.content-card {
    position: relative;
    z-index: 2;
    background: rgba(12, 22, 32, 0.75);
    backdrop-filter: blur(12px);
    border-radius: 36px;
    border: 1px solid rgba(0, 255, 255, 0.35);
    padding: 48px;
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.6), 0 0 24px rgba(0,255,255,0.12);
}

.page-header {
    text-align: center;
    margin-bottom: 38px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.25);
    padding-bottom: 22px;
}

.page-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4rem;
    background: linear-gradient(135deg, #FFFFFF, #0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
}

.page-header p {
    color: #7ea3b3;
    font-size: 0.9rem;
}

.content-block {
    margin-bottom: 28px;
}

.content-block h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: #0ff;
    text-shadow: 0 0 3px rgba(0,255,255,0.3);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-block p, .content-block li {
    color: #CBD5D1;
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.content-block ul {
    padding-left: 28px;
    margin: 12px 0;
}

.content-block li {
    margin-bottom: 8px;
}

.highlight-neon {
    color: #0ff;
    font-weight: 500;
    text-shadow: 0 0 2px rgba(0,255,255,0.4);
}

/* Quality Grid for Quality Promise Page */
.quality-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 32px 0;
}

.quality-item {
    flex: 1;
    min-width: 200px;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 24px;
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(0,255,255,0.2);
    transition: all 0.2s ease;
}

.quality-item:hover {
    transform: translateY(-5px);
    border-color: #0ff;
    box-shadow: 0 0 20px rgba(0,255,255,0.15);
}

.quality-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 5px cyan);
}

/* Mission Stats */
.mission-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 32px 0;
    justify-content: center;
}

.stat-card {
    background: rgba(0, 255, 255, 0.05);
    border-radius: 24px;
    padding: 24px;
    text-align: center;
    flex: 1;
    min-width: 160px;
    border: 1px solid rgba(0,255,255,0.2);
    transition: all 0.2s ease;
}

.stat-card:hover {
    border-color: #0ff;
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0,255,255,0.15);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0ff;
    font-family: 'Space Grotesk';
}

/* Privacy Page Styles */
.privacy-section {
    padding: 60px 0 70px;
    background: radial-gradient(circle at 20% 30%, #0A1118, #020408);
    position: relative;
    overflow: hidden;
}

.privacy-card {
    position: relative;
    z-index: 2;
    background: rgba(12, 22, 32, 0.75);
    backdrop-filter: blur(12px);
    border-radius: 36px;
    border: 1px solid rgba(0, 255, 255, 0.35);
    padding: 48px;
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.6), 0 0 24px rgba(0,255,255,0.12);
}

.privacy-header {
    text-align: center;
    margin-bottom: 38px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.25);
    padding-bottom: 22px;
}

.privacy-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4rem;
    background: linear-gradient(135deg, #FFFFFF, #0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
}

.privacy-header .last-updated {
    color: #7ea3b3;
    font-size: 0.85rem;
}

.contact-info-block {
    background: rgba(0, 255, 255, 0.05);
    border-left: 3px solid #0ff;
    padding: 18px 22px;
    border-radius: 20px;
    margin-top: 20px;
}

/* Refund Steps */
.refund-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.step {
    flex: 1;
    min-width: 180px;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    border-left: 3px solid #0ff;
}

/* Terms Grid */
.terms-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.term-card {
    flex: 1;
    min-width: 200px;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(0,255,255,0.2);
    transition: all 0.2s;
}

.term-card:hover {
    border-color: #0ff;
    transform: translateY(-3px);
}

.term-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 4px cyan);
}

.term-card h3 {
    color: #0ff;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 780px) {
    .container { padding: 0 20px; }
    .hero-content h1 { font-size: 2rem; }
    .header-flex { flex-direction: column; }
    .feature-showcase { flex-direction: column; }
    .footer-cards { flex-direction: column; }
    .hero { padding: 40px 0; }
    .section { padding: 40px 0; }
    .pure-section { padding: 40px 0; }
    .cta-banner { padding: 28px 20px; margin: 20px auto 35px; }
    .pure-item h3 { font-size: 1.4rem; }
    .content-card { padding: 28px; }
    .page-header h1 { font-size: 1.8rem; }
    .content-block h2 { font-size: 1.3rem; }
    .page-section { padding: 45px 0; }
    .privacy-card { padding: 28px; }
    .privacy-header h1 { font-size: 1.8rem; }
    .quality-grid { flex-direction: column; }
    .mission-stats { flex-direction: column; }
    .refund-steps { flex-direction: column; }
    .terms-grid { flex-direction: column; }
}
/* Refund Policy Page Specific Styles */
.refund-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.step {
    flex: 1;
    min-width: 180px;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    border-left: 3px solid #0ff;
    transition: all 0.2s ease;
}

.step:hover {
    transform: translateY(-3px);
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0,255,255,0.1);
}

.step h3 {
    color: #0ff;
    margin: 8px 0;
    font-size: 1.1rem;
}

.step p {
    font-size: 0.8rem;
    color: #CBD5D1;
}

/* Responsive for Refund Page */
@media (max-width: 780px) {
    .refund-steps {
        flex-direction: column;
    }
}
/* Terms & Conditions Page Specific Styles */
.terms-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.term-card {
    flex: 1;
    min-width: 200px;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(0,255,255,0.2);
    transition: all 0.2s ease;
}

.term-card:hover {
    border-color: #0ff;
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(0,255,255,0.1);
}

.term-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 4px cyan);
}

.term-card h3 {
    color: #0ff;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.term-card p {
    font-size: 0.8rem;
    opacity: 0.9;
    color: #CBD5D1;
}

/* Effective date styling */
.effective-date {
    color: #7ea3b3;
    font-size: 0.85rem;
}

/* Responsive for Terms Page */
@media (max-width: 780px) {
    .terms-grid {
        flex-direction: column;
    }
}
/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0ff, #0088aa);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.8);
}

.scroll-top-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
}