:root {
    --bg-black: #05060A;
    --neon-pink: #FF0055;
    --neon-magenta: #FF0075;
    --neon-orange: #FF7700;
    --neon-gold: #FF9900;
    --neon-blue: #00F0FF;
    --text-white: #ffffff;
    --text-gray: #94A3B8;
    --glass-bg: rgba(15, 17, 26, 0.75);
    --glass-border: rgba(255, 0, 85, 0.25);
    --logo-gradient: linear-gradient(135deg, #FF0055 0%, #FF7700 100%);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-black);
    color: var(--text-white);
    overflow-x: hidden;
}

h1, h2, h3, .nav-logo { font-family: 'Space Grotesk', sans-serif; }

/* Custom Cursor Glow tuned to Logo Theme */
.cursor-glow {
    position: fixed; width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(255, 0, 85, 0.18) 0%, rgba(255, 119, 0, 0.08) 50%, transparent 70%);
    border-radius: 50%; pointer-events: none; z-index: 100;
    transform: translate(-50%, -50%); mix-blend-mode: screen;
}

/* Canvases */
#matrix-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -3; opacity: 0.12; }
#ai-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -2; }

/* Dynamic Scanline & Sweep Effect */
.scanline { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; background: linear-gradient(to bottom, transparent 0%, rgba(255, 0, 85, 0.03) 50%, transparent 100%); background-size: 100% 8px; animation: scanmove 8s linear infinite; }
.sweep-line { position: fixed; top: -10%; left: 0; width: 100%; height: 200px; background: linear-gradient(to bottom, transparent, rgba(255, 119, 0, 0.05), transparent); z-index: 1; pointer-events: none; animation: sweep 6s ease-in-out infinite; }
@keyframes scanmove { 0% { background-position: 0 0; } 100% { background-position: 0 100%; } }
@keyframes sweep { 0% { top: -20%; opacity: 0; } 50% { opacity: 1; } 100% { top: 120%; opacity: 0; } }

/* Header & Navbar Matched to Logo Color Scheme */
header, .navbar {
    position: fixed; width: 100%; top: 0; z-index: 1000;
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    background: rgba(6, 7, 12, 0.88);
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(90deg, rgba(255,0,85,0.4), rgba(255,119,0,0.4), rgba(0,240,255,0.2)) 1;
    padding: 0.9rem 4rem;
    display: flex; justify-content: space-between; align-items: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.nav-logo-img {
    filter: drop-shadow(0 0 12px rgba(255, 0, 85, 0.35));
    transition: transform 0.3s ease, filter 0.3s ease;
}
.nav-logo:hover .nav-logo-img {
    transform: scale(1.04);
    filter: drop-shadow(0 0 18px rgba(255, 119, 0, 0.5));
}

nav ul { list-style: none; display: flex; gap: 2.2rem; }
nav a {
    color: var(--text-gray); text-decoration: none; font-size: 0.9rem; font-weight: 600; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 0.5px;
}
nav a:hover, nav a.active {
    color: #FFF;
    text-shadow: 0 0 10px rgba(255, 0, 85, 0.8), 0 0 20px rgba(255, 119, 0, 0.5);
}
nav a.active::after {
    content: ''; display: block; height: 2px; background: var(--logo-gradient); border-radius: 2px; margin-top: 4px; box-shadow: 0 0 10px #FF0055;
}

.btn-login {
    padding: 0.6rem 1.4rem; border: 1px solid rgba(255, 0, 85, 0.5); background: rgba(255, 0, 85, 0.08); color: #FFF; border-radius: 6px; cursor: pointer; transition: 0.3s; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.85rem; text-decoration: none;
}
.btn-login:hover {
    background: var(--logo-gradient); color: #FFF; box-shadow: 0 0 20px rgba(255, 0, 85, 0.5); border-color: transparent;
}

/* Gradient Text matching Logo */
.gradient-text {
    background: linear-gradient(90deg, #FF0055 0%, #FF7700 50%, #FF0075 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero-wrapper { min-height: 100vh; padding-top: 130px; display: flex; justify-content: center; align-items: center; perspective: 1000px; z-index: 2; }
.hero { text-align: center; padding: 0 2rem; transition: transform 0.2s ease-out; transform-style: preserve-3d; }
.hero-tag {
    background: rgba(255, 0, 85, 0.1); border: 1px solid rgba(255, 119, 0, 0.4); color: #FF7700; padding: 0.5rem 1.3rem; border-radius: 20px; font-size: 0.8rem; margin-bottom: 2rem; display: inline-block; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; box-shadow: 0 0 15px rgba(255, 0, 85, 0.15);
}
.hero h1 { font-size: 4.2rem; line-height: 1.15; margin-bottom: 1.5rem; color: #fff; text-shadow: 0 0 35px rgba(0, 0, 0, 0.9); }
.hero p { font-size: 1.15rem; color: var(--text-gray); max-width: 780px; margin: 0 auto 3rem; line-height: 1.65; }
.hero-btns { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }

.btn-primary {
    background: var(--logo-gradient); color: #FFF; box-shadow: 0 0 25px rgba(255, 0, 85, 0.4); border: none; padding: 1rem 2.4rem; text-decoration: none; font-weight: 700; border-radius: 6px; transition: all 0.3s ease; display: inline-block; cursor: pointer; font-family: 'Space Grotesk', sans-serif;
}
.btn-primary:hover {
    transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255, 119, 0, 0.6); color: #FFF;
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.2); color: var(--text-white); backdrop-filter: blur(5px); padding: 1rem 2.2rem; text-decoration: none; font-weight: 700; border-radius: 6px; transition: 0.3s; display: inline-block; cursor: pointer; font-family: 'Space Grotesk', sans-serif;
}
.btn-secondary:hover {
    border-color: #FF0055; color: #FF0055; box-shadow: 0 0 20px rgba(255, 0, 85, 0.3);
}

/* 3D AI Hologram Avatar in Logo Colors */
.hologram-container { margin-top: 3rem; perspective: 1000px; position: relative; width: 160px; height: 160px; display: flex; justify-content: center; align-items: center; margin-left: auto; margin-right: auto; }
.holo-rings { position: absolute; width: 100%; height: 100%; border: 1px solid rgba(255, 0, 85, 0.6); border-radius: 50%; box-shadow: 0 0 25px rgba(255, 0, 85, 0.3); animation: spin 8s linear infinite; }
.holo-rings:nth-child(3) { width: 70%; height: 70%; border-color: rgba(255, 119, 0, 0.6); animation: spin 6s linear infinite reverse; }
.holo-rings:nth-child(4) { width: 40%; height: 40%; border-color: rgba(0, 240, 255, 0.6); animation: spin 4s linear infinite; }
.ai-core { width: 48px; height: 48px; background: radial-gradient(circle, #FF0055, #FF7700, transparent); filter: blur(3px); animation: pulse-glow 2s ease-in-out infinite alternate; position: absolute; }
@keyframes spin { 0% { transform: rotateX(70deg) rotateZ(0deg); } 100% { transform: rotateX(70deg) rotateZ(360deg); } }
@keyframes pulse-glow { 0% { opacity: 0.4; transform: scale(0.9); } 100% { opacity: 1; transform: scale(1.25); } }

/* Content Sections */
section.content-section { padding: 6rem 4rem; position: relative; z-index: 2; max-width: 1300px; margin: 0 auto; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 1rem; color: var(--text-white); }
.section-title span { color: #FF7700; }
.section-subtitle { text-align: center; color: var(--text-gray); max-width: 750px; margin: 0 auto 3.5rem; font-size: 1.05rem; }

.tabs-container { display: flex; justify-content: center; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap; }
.tab-btn { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.15); color: var(--text-gray); padding: 0.8rem 1.6rem; border-radius: 6px; cursor: pointer; transition: 0.3s; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.9rem; }
.tab-btn.active, .tab-btn:hover { background: rgba(255, 0, 85, 0.15); border-color: #FF0055; color: #FF0055; box-shadow: 0 0 20px rgba(255, 0, 85, 0.3); }

.grid-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.glass-card { background: rgba(13, 15, 24, 0.75); border: 1px solid rgba(255, 0, 85, 0.2); padding: 2rem; border-radius: 12px; backdrop-filter: blur(14px); transition: all 0.35s ease; box-shadow: 0 10px 30px rgba(0,0,0,0.6); }
.glass-card:hover { border-color: #FF7700; transform: translateY(-6px); box-shadow: 0 0 25px rgba(255, 119, 0, 0.3); }
.glass-card h3 { color: #FF7700; margin-bottom: 1rem; font-size: 1.3rem; }
.glass-card p { color: var(--text-gray); font-size: 0.95rem; line-height: 1.6; }

.product-img { width: 100%; height: 220px; object-fit: cover; border-radius: 8px 8px 0 0; }

.store-filters { display: flex; justify-content: center; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap; }
.filter-btn { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.15); color: var(--text-gray); padding: 0.6rem 1.4rem; border-radius: 20px; cursor: pointer; transition: 0.3s; font-size: 0.9rem; font-weight: 500; }
.filter-btn.active, .filter-btn:hover { background: var(--logo-gradient); color: #FFF; border-color: transparent; box-shadow: 0 0 20px rgba(255, 0, 85, 0.4); font-weight: 700; }

/* Floating Action Buttons */
.fab-container { position: fixed; bottom: 30px; right: 30px; z-index: 9999; display: flex; flex-direction: column; gap: 15px; }
.fab { width: 52px; height: 52px; border-radius: 50%; display: flex; justify-content: center; align-items: center; cursor: pointer; box-shadow: 0px 4px 20px rgba(0,0,0,0.7); transition: transform 0.3s; text-decoration: none; }
.fab:hover { transform: scale(1.12); }
.fab-whatsapp { background: #25D366; } .fab-linkedin { background: #0A66C2; }
.fab-chatbot { background: var(--logo-gradient); position: relative; }
.fab-chatbot::after { content: ''; position: absolute; width: 100%; height: 100%; border-radius: 50%; border: 2px solid #FF0055; animation: ripple 2s infinite; }
@keyframes ripple { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }

/* Chatbot Window */
.chatbot-window { position: fixed; bottom: 100px; right: 30px; width: 360px; height: 480px; background: rgba(7, 9, 19, 0.95); border: 1px solid #FF0055; border-radius: 12px; backdrop-filter: blur(20px); box-shadow: 0 0 35px rgba(255, 0, 85, 0.25); z-index: 9998; display: none; flex-direction: column; overflow: hidden; }
.chat-header { background: rgba(255, 0, 85, 0.1); padding: 16px; border-bottom: 1px solid rgba(255, 0, 85, 0.2); }
.chat-header h4 { margin: 0; font-family: 'Space Grotesk', sans-serif; color: #FF7700; font-size: 1.15rem; }
.chat-header span { font-size: 0.75rem; color: var(--text-gray); }
.chat-body { flex: 1; padding: 16px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }
.chat-msg { max-width: 82%; padding: 10px 15px; border-radius: 16px; font-size: 0.9rem; line-height: 1.4; }
.bot-msg { background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.12); color: var(--text-white); align-self: flex-start; border-bottom-left-radius: 2px; }
.user-msg { background: var(--logo-gradient); color: #FFF; align-self: flex-end; border-bottom-right-radius: 2px; font-weight: 600; }
.chat-input-area { padding: 14px; border-top: 1px solid rgba(255, 255, 255, 0.1); display: flex; gap: 10px; }
.chat-input-area input { flex: 1; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 6px; padding: 10px; color: var(--text-white); outline: none; font-family: 'Inter', sans-serif; }
.chat-input-area button { background: var(--logo-gradient); color: #FFF; border: none; padding: 0 18px; border-radius: 6px; cursor: pointer; font-weight: 700; font-family: 'Space Grotesk', sans-serif; }

/* Mobile Toggle Button */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFF;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Footer Classes */
.footer-container {
  background: #030305;
  border-top: 1px solid rgba(255, 0, 117, 0.25);
  padding: 60px 4rem 30px;
  margin-top: 80px;
  position: relative;
  z-index: 2;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-gray);
  font-size: 0.85rem;
}

/* Global Responsive Layout Fixes for Mobile Devices (iPhone & Android) */
@media (max-width: 992px) {
  header, .navbar { padding: 0.8rem 2rem; }
  .hero h1 { font-size: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-container { padding: 50px 2rem 24px; }
}

@media (max-width: 768px) {
  .mobile-toggle { display: flex; }
  header, .navbar { padding: 0.8rem 1.2rem; justify-content: space-between; }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(2, 3, 7, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 0, 117, 0.3);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
  }

  nav ul.nav-links, nav ul {
    display: flex !important;
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    align-items: flex-start;
  }

  nav.open {
    max-height: 400px;
  }

  .nav-actions { margin-left: auto; }
  .btn-primary.trigger-quote-modal { padding: 0.5rem 1rem; font-size: 0.8rem; }

  .hero-wrapper { padding-top: 100px; min-height: auto; }
  .hero h1 { font-size: 2.2rem; line-height: 1.2; word-break: break-word; }
  .hero p { font-size: 0.98rem; margin-bottom: 2rem; }
  .hero-btns { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; gap: 12px; }
  .hero-btns .btn { width: 100%; justify-content: center; }

  section.content-section { padding: 3.5rem 1.2rem; }
  .section-title { font-size: 1.8rem; }
  .grid-container { grid-template-columns: 1fr; gap: 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-container { padding: 40px 1.2rem 20px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }

  .chatbot-window { width: calc(100vw - 32px); right: 16px; bottom: 84px; height: 420px; }
  .fab-container { bottom: 20px; right: 16px; gap: 10px; }
  .fab { width: 44px; height: 44px; }
}

@media (max-width: 480px) {
  body, html { overflow-x: hidden; }
  .hero h1 { font-size: 1.85rem; }
  .btn-login { display: none; }
}
