Ran a command
Ran a command
/* ==========================================================================
PROSNAPGROW - MAIN STYLESHEET (rebuilt to match live HTML structure)
========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* --------------------------------------------------------------------------

DESIGN TOKENS
-------------------------------------------------------------------------- */
:root {
--bg-dark-start: 
#0a0a1a;
--bg-dark-mid: 
#1a0a2e;
--bg-dark-end: 
#0a0a1a;
--primary-neon: 
#FFFC00;
--primary-neon-glow: rgba(255, 252, 0, 0.35);
--primary-neon-hover: 
#e6e300;

--secondary-blue: 
#2E7DFF;
--secondary-blue-glow: rgba(46, 125, 255, 0.4);

--accent-purple: 
#7000FF;
--success-green: 
#00E676;
--success-green-glow: rgba(0, 230, 118, 0.4);
--danger-red: 
#FF3D71;

--glass-bg: rgba(255, 255, 255, 0.05);
--glass-bg-hover: rgba(255, 255, 255, 0.08);
--glass-blur: blur(20px);
--glass-border: 1px solid rgba(255, 255, 255, 0.1);
--glass-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);

--font-main: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
--text-white: 
#ffffff;
--text-body: rgba(255, 255, 255, 0.7);
--text-muted: rgba(255, 255, 255, 0.5);

--radius-sm: 8px;
--radius-md: 16px;
--radius-lg: 24px;
--radius-full: 9999px;

--transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
--transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);

--max-width: 1280px;
}

/* --------------------------------------------------------------------------
2. RESET & BASE
-------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; color-scheme: dark; }

body {
font-family: var(--font-main);
background: linear-gradient(135deg, var(--bg-dark-start) 0%, var(--bg-dark-mid) 50%, var(--bg-dark-end) 100%);
background-attachment: fixed;
color: var(--text-body);
min-height: 100vh;
line-height: 1.6;
overflow-x: hidden;
position: relative;
}

h1, h2, h3, h4, h5, h6 { color: var(--text-white); font-weight: 900; letter-spacing: -0.03em; line-height: 1.15; }
h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }

a { color: inherit; text-decoration: none; transition: var(--transition-fast); }
button { font-family: inherit; cursor: pointer; border: none; background: none; outline: none; }
img, svg { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.gradient-text {
background: linear-gradient(135deg, 
#ffffff 0%, var(--primary-neon) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

/* --------------------------------------------------------------------------
3. REVEAL ANIMATION (CSS-only, no JS trigger exists for it)
-------------------------------------------------------------------------- */
.reveal {
animation: revealIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes revealIn {
from { opacity: 0; transform: translateY(24px); }
to { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------------------------------
4. BUTTONS & BADGES
-------------------------------------------------------------------------- */
.btn-primary, .btn-secondary {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.6rem;
padding: 0.85rem 1.8rem;
font-weight: 700;
font-size: 1rem;
border-radius: var(--radius-full);
transition: all var(--transition-smooth);
white-space: nowrap;
}
.btn-primary {
background: var(--primary-neon);
color: 
#0a0a1a;
box-shadow: 0 0 20px var(--primary-neon-glow);
}
.btn-primary:hover { background: var(--primary-neon-hover); transform: translateY(-2px); }
.btn-secondary {
background: var(--glass-bg);
backdrop-filter: var(--glass-blur);
-webkit-backdrop-filter: var(--glass-blur);
border: var(--glass-border);
color: var(--text-white);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: var(--secondary-blue); transform: translateY(-2px); }
.btn-card { width: 100%; margin-top: auto; }

.badge-popular, .badge-value {
display: inline-block;
padding: 0.3rem 0.8rem;
font-size: 0.75rem;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.05em;
border-radius: var(--radius-full);
position: absolute;
top: 1rem;
right: 1rem;
}
.badge-popular { background: linear-gradient(135deg, var(--primary-neon) 0%, 
#ff9900 100%); color: 
#0a0a1a; }
.badge-value { background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--accent-purple) 100%); color: var(--text-white); top: 3rem; }

/* --------------------------------------------------------------------------
5. BACKGROUND ORBS
-------------------------------------------------------------------------- */
.bg-orbs { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.35; }
.orb-1 { width: 380px; height: 380px; background: var(--primary-neon); top: 5%; left: -8%; }
.orb-2 { width: 420px; height: 420px; background: var(--secondary-blue); bottom: 5%; right: -8%; }
.orb-3 { width: 300px; height: 300px; background: var(--accent-purple); top: 45%; left: 40%; }

/* --------------------------------------------------------------------------
6. PROMO BAR
-------------------------------------------------------------------------- */
.promo-bar {
background: linear-gradient(90deg, 
#1b68e0, 
#7000FF, 
#1b68e0);
background-size: 200% 100%;
animation: gradient-shift 6s linear infinite;
color: #fff;
padding: 0.5rem 1rem;
font-size: 0.85rem;
font-weight: 600;
text-align: center;
position: relative;
z-index: 1001;
overflow: hidden;
}
.promo-track { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.5rem; }
.promo-divider { opacity: 0.5; }
@keyframes gradient-shift { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }

/* --------------------------------------------------------------------------
7. NAVBAR
-------------------------------------------------------------------------- */
.navbar {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 1000;
padding: 1.25rem 0;
transition: all var(--transition-smooth);
}
.navbar.scrolled {
padding: 0.8rem 0;
background: rgba(10, 10, 26, 0.9);
backdrop-filter: blur(25px);
-webkit-backdrop-filter: blur(25px);
border-bottom: var(--glass-border);
}
.nav-container {
max-width: var(--max-width);
margin: 0 auto;
padding: 0 1.5rem;
display: flex;
align-items: center;
justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.ghost-logo { width: 40px; height: 40px; flex-shrink: 0; }
.ghost-logo.small { width: 32px; height: 32px; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-size: 1.1rem; font-weight: 900; color: var(--text-white); letter-spacing: -0.02em; }
.logo-sub { font-size: 0.65rem; color: var(--text-muted); letter-spacing: 0.05em; }

.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a { color: var(--text-body); font-weight: 600; font-size: 0.92rem; padding: 0.25rem 0; position: relative; }
.nav-links a.active, .nav-links a:hover { color: var(--primary-neon); }
.nav-links a.nav-login {
background: var(--primary-neon); color: 
#0a0a1a; padding: 0.55rem 1.3rem;
border-radius: var(--radius-full); font-weight: 700;
}
.nav-links a.nav-logout { color: var(--danger-red); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 28px; cursor: pointer; z-index: 1002; background: none; }
.nav-toggle span { display: block; width: 100%; height: 3px; background: var(--text-white); border-radius: 2px; transition: var(--transition-smooth); }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --------------------------------------------------------------------------
8. HERO
-------------------------------------------------------------------------- */
.hero {
position: relative;
min-height: 100vh;
padding: 10rem 1.5rem 5rem;
display: flex;
align-items: center;
justify-content: space-between;
gap: 3rem;
max-width: var(--max-width);
margin: 0 auto;
flex-wrap: wrap;
}
.hero-content { flex: 1 1 480px; position: relative; z-index: 2; }
.hero-badge {
display: inline-flex; align-items: center; gap: 0.5rem;
padding: 0.4rem 1rem;
background: rgba(255, 252, 0, 0.1);
border: 1px solid rgba(255, 252, 0, 0.3);
border-radius: var(--radius-full);
color: var(--primary-neon);
font-size: 0.85rem; font-weight: 700;
margin-bottom: 1.5rem;
}
.hero-title { margin-bottom: 1.5rem; }
.hero-subtitle { font-size: 1.15rem; margin-bottom: 2.5rem; max-width: 560px; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2.5rem; max-width: 560px; }
.stat-box {
background: rgba(255,255,255,0.03); border: var(--glass-border);
padding: 1rem 0.5rem; border-radius: var(--radius-md); text-align: center;
}
.stat-number { display: block; font-size: 1.4rem; font-weight: 900; color: var(--primary-neon); }
.stat-suffix { font-size: 1.1rem; font-weight: 900; color: var(--primary-neon); }
.stat-label { display: block; font-size: 0.68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.25rem; }
.hero-cta { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }

.hero-visual { flex: 1 1 320px; display: flex; justify-content: center; align-items: center; position: relative; z-index: 2; }
.floating-ghost { width: 260px; animation: float-ghost 4s ease-in-out infinite; }
@keyframes float-ghost { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

/* --------------------------------------------------------------------------
9. SHARED SECTION LAYOUT
-------------------------------------------------------------------------- */
.section { padding: 5rem 1.5rem; max-width: var(--max-width); margin: 0 auto; position: relative; z-index: 2; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 3rem auto; }
.section-title { margin-bottom: 0.75rem; }
.section-sub { color: var(--text-body); font-size: 1.05rem; }

/* --------------------------------------------------------------------------
10. SERVICES GRID / CARDS
-------------------------------------------------------------------------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.service-card {
position: relative;
background: var(--glass-bg);
backdrop-filter: var(--glass-blur);
-webkit-backdrop-filter: var(--glass-blur);
border: var(--glass-border);
border-radius: var(--radius-lg);
padding: 2.2rem 1.8rem;
display: flex;
flex-direction: column;
transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.service-card:hover {
border-color: rgba(255, 252, 0, 0.5);
box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px var(--primary-neon-glow);
transform: translateY(-6px);
}
.product-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.product-category-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; color: var(--secondary-blue); margin-bottom: 0.5rem; }
.product-points { font-size: 1.35rem; margin-bottom: 0.5rem; }
.product-price { font-size: 2rem; font-weight: 900; color: var(--primary-neon); margin-bottom: 1.25rem; }
.product-features { margin-bottom: 1.5rem; flex-grow: 1; }
.product-features li { font-size: 0.875rem; color: var(--text-body); margin-bottom: 0.6rem; display: flex; gap: 0.5rem; }

.see-all { text-align: center; margin-top: 3rem; }

/* --------------------------------------------------------------------------
11. HOW IT WORKS
-------------------------------------------------------------------------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.step-card {
background: var(--glass-bg); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
border: var(--glass-border); border-radius: var(--radius-lg);
padding: 2.5rem 1.5rem; text-align: center; transition: var(--transition-smooth);
}
.step-card:hover { transform: translateY(-8px); border-color: var(--secondary-blue); box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 25px var(--secondary-blue-glow); }
.step-number {
width: 52px; height: 52px; border-radius: 50%;
background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--accent-purple) 100%);
color: var(--text-white); font-size: 1.3rem; font-weight: 900;
display: flex; align-items: center; justify-content: center;
margin: 0 auto 1.25rem auto;
}
.step-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.step-card p { font-size: 0.9rem; }

/* --------------------------------------------------------------------------
12. WHY CHOOSE US
-------------------------------------------------------------------------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.why-card {
background: var(--glass-bg); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
border: var(--glass-border); border-radius: var(--radius-lg);
padding: 2rem 1.5rem; text-align: center; transition: var(--transition-smooth);
}
.why-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.25); }
.why-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.why-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.why-card p { font-size: 0.88rem; }

/* --------------------------------------------------------------------------
13. TESTIMONIAL
-------------------------------------------------------------------------- */
.testimonial-card {
max-width: 700px; margin: 0 auto; text-align: center;
background: var(--glass-bg); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
border: var(--glass-border); border-radius: var(--radius-lg); padding: 3rem 2rem;
}
.quote-mark { font-size: 3rem; color: var(--primary-neon); line-height: 1; margin-bottom: 1rem; }
.testimonial-text { font-size: 1.15rem; color: var(--text-white); margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { font-size: 0.9rem; color: var(--text-muted); font-weight: 700; }
.verified { color: var(--success-green); font-size: 0.78rem; margin-left: 0.5rem; }

/* --------------------------------------------------------------------------
14. NEW SERVICES BANNER
-------------------------------------------------------------------------- */
.new-services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.new-service-card {
background: var(--glass-bg); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
border: var(--glass-border); border-radius: var(--radius-md);
padding: 1.75rem 1rem; text-align: center; transition: var(--transition-smooth);
display: flex; flex-direction: column; gap: 0.4rem;
}
.new-service-card:hover { transform: translateY(-6px); border-color: var(--primary-neon); }
.ns-icon { font-size: 1.8rem; }
.ns-name { color: var(--text-white); font-weight: 700; font-size: 0.95rem; }
.ns-price { color: var(--primary-neon); font-size: 0.85rem; font-weight: 700; }

/* --------------------------------------------------------------------------
15. FOOTER
-------------------------------------------------------------------------- */
.footer { background: rgba(5,5,15,0.95); border-top: var(--glass-border); padding: 4rem 1.5rem 2rem; margin-top: 4rem; position: relative; z-index: 2; }
.footer-container { max-width: var(--max-width); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 3rem; justify-content: space-between; }
.footer-brand { display: flex; align-items: flex-start; gap: 0.75rem; max-width: 320px; }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; margin-top: 0.4rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 2.5rem; }
.footer-col h4 { font-size: 0.85rem; color: var(--text-white); margin-bottom: 1rem; letter-spacing: 0.05em; }
.footer-col a { display: block; color: var(--text-body); font-size: 0.88rem; margin-bottom: 0.65rem; }
.footer-col a:hover { color: var(--primary-neon); }
.footer-bottom { max-width: var(--max-width); margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; font-size: 0.85rem; color: var(--text-muted); }

/* --------------------------------------------------------------------------
16. WHATSAPP FLOAT
-------------------------------------------------------------------------- */
.whatsapp-float {
position: fixed; bottom: 2rem; left: 2rem; width: 58px; height: 58px;
background: 
#25D366; color: #fff; border-radius: 50%;
display: flex; align-items: center; justify-content: center;
box-shadow: 0 10px 25px rgba(37,211,102,0.4);
z-index: 999; transition: transform var(--transition-smooth);
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-pulse {
position: absolute; inset: 0; border-radius: 50%;
border: 2px solid 
#25D366; animation: pulse-ring 2s infinite ease-out; pointer-events: none;
}
@keyframes pulse-ring { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.6); opacity: 0; } }

/* --------------------------------------------------------------------------
17. FAQ / FILTERS (used on faq.php / services.php)
-------------------------------------------------------------------------- */
.filter-btn {
padding: 0.6rem 1.3rem; border-radius: var(--radius-full);
background: var(--glass-bg); border: var(--glass-border);
color: var(--text-body); font-weight: 600; font-size: 0.88rem;
}
.filter-btn.active { background: var(--primary-neon); color: 
#0a0a1a; border-color: var(--primary-neon); }

.faq-question {
background: var(--glass-bg); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
border: var(--glass-border); border-radius: var(--radius-md);
padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: space-between;
cursor: pointer; font-weight: 700; color: var(--text-white); margin-bottom: 0.75rem;
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--transition-smooth); font-size: 0.92rem; color: var(--text-body); }
.faq-answer.open { padding: 0.75rem 0.25rem 1rem; }
.faq-icon.open { transform: rotate(180deg); }

/* --------------------------------------------------------------------------
18. RESPONSIVE
-------------------------------------------------------------------------- */
@media (max-width: 1024px) {
.services-grid, .steps-grid, .why-grid, .new-services-grid { grid-template-columns: repeat(2, 1fr); }
.hero-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
.hero { flex-direction: column; text-align: center; padding-top: 9rem; }
.hero-cta { justify-content: center; }
.hero-stats { margin-left: auto; margin-right: auto; }
.services-grid, .steps-grid, .why-grid, .new-services-grid { grid-template-columns: 1fr; }

.nav-toggle { display: flex; }
.nav-links {
position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100vh;
background: rgba(10,10,26,0.98); backdrop-filter: blur(30px);
flex-direction: column; justify-content: center; align-items: center; gap: 2rem;
transition: right var(--transition-smooth); z-index: 1001;
}
.nav-links.open { right: 0; }

.footer-container { flex-direction: column; }
.whatsapp-float { bottom: 1.5rem; left: 1.5rem; width: 50px; height: 50px; }
}\n\n/* Quantity service controls */\n.quantity-box{margin:18px 0;padding:18px;border:1px solid rgba(255,255,255,.12);border-radius:16px;background:rgba(255,255,255,.04);box-shadow:0 12px 30px rgba(0,0,0,.18)}\n.quantity-box label{display:block;margin-bottom:8px;font-weight:700;letter-spacing:.08em}\n.quantity-control{display:flex;align-items:center;gap:8px}\n.quantity-control input{flex:1;text-align:center;font-size:20px;font-weight:800;min-width:0}\n.qty-btn{width:46px;height:46px;border:0;border-radius:12px;background:linear-gradient(135deg,#6d28d9,#8b5cf6);color:#fff;font-size:28px;font-weight:800;cursor:pointer;box-shadow:0 8px 18px rgba(109,40,217,.35)}\n.quantity-box small{display:block;margin-top:8px;opacity:.75}\n.quantity-price-hint{margin-top:8px;color:#ffd43b;font-size:13px;font-weight:700}\n