/* ============================================================
   Mohin Service Center — Design System (style.css)
   Author: Built with Antigravity AI
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Variables ── */
:root {
  /* Brand Colors */
  --clr-violet:      #7c3aed;
  --clr-violet-dark: #5b21b6;
  --clr-violet-light:#a78bfa;
  --clr-cyan:        #06b6d4;
  --clr-cyan-dark:   #0891b2;
  --clr-cyan-light:  #67e8f9;
  --clr-pink:        #ec4899;

  /* Gradient */
  --grad-brand:      linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
  --grad-brand-rev:  linear-gradient(135deg, #06b6d4 0%, #7c3aed 100%);
  --grad-hero:       linear-gradient(135deg, #0f0a2e 0%, #0a1628 50%, #071a20 100%);
  --grad-card:       linear-gradient(145deg, rgba(124,58,237,0.08) 0%, rgba(6,182,212,0.08) 100%);

  /* Neutral Colors */
  --clr-bg:          #f8f7ff;
  --clr-surface:     #ffffff;
  --clr-surface-2:   #f1effe;
  --clr-border:      #e4e0f5;
  --clr-text:        #1e1b4b;
  --clr-text-muted:  #6b7280;
  --clr-text-light:  #f8fafc;

  /* Dark Mode Colors */
  --clr-dark-bg:        #0a0715;
  --clr-dark-surface:   #130f2a;
  --clr-dark-surface-2: #1c1640;
  --clr-dark-border:    #2d2650;
  --clr-dark-text:      #e2e8f0;
  --clr-dark-muted:     #94a3b8;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(124,58,237,0.08), 0 1px 2px rgba(124,58,237,0.05);
  --shadow-md:   0 4px 20px rgba(124,58,237,0.12), 0 2px 8px rgba(124,58,237,0.06);
  --shadow-lg:   0 10px 40px rgba(124,58,237,0.18), 0 4px 16px rgba(124,58,237,0.1);
  --shadow-glow: 0 0 30px rgba(124,58,237,0.3);
  --shadow-cyan: 0 0 30px rgba(6,182,212,0.3);

  /* Spacing */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  40px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* Radius */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  /* Typography */
  --font-bn:   'Hind Siliguri', sans-serif;
  --font-en:   'Outfit', sans-serif;

  /* Transitions */
  --transition-fast: all 0.2s ease;
  --transition-med:  all 0.35s ease;
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --container-max: 1200px;
  --nav-height:    72px;
}

/* Dark Mode */
[data-theme="dark"] {
  --clr-bg:       var(--clr-dark-bg);
  --clr-surface:  var(--clr-dark-surface);
  --clr-surface-2:var(--clr-dark-surface-2);
  --clr-border:   var(--clr-dark-border);
  --clr-text:     var(--clr-dark-text);
  --clr-text-muted: var(--clr-dark-muted);
}

/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--clr-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--grad-brand);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--clr-violet-dark);
}

/* Text Selection */
::selection {
  background: var(--clr-cyan);
  color: white;
}

/* Pre-loader */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--clr-bg);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(124,58,237,0.1);
  border-top-color: var(--clr-violet);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

body {
  font-family: var(--font-bn);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-en);
  font-weight: 700;
  line-height: 1.25;
  color: var(--clr-text);
}

.font-bn { font-family: var(--font-bn); }
.font-en { font-family: var(--font-en); }

/* ── Layout Utilities ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-3xl) 0;
}

.section--sm {
  padding: var(--space-2xl) 0;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--space-lg); }

/* ── Section Heading ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-violet);
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.2);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: var(--space-md);
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 17px;
  color: var(--clr-text-muted);
  max-width: 600px;
  font-family: var(--font-bn);
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-header .section-label,
.section-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
  display: block;
  text-align: center;
}

.section-header .section-label {
  display: inline-flex;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-bn);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-med);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-brand);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  background: transparent;
  color: var(--clr-violet);
  border-color: var(--clr-violet);
}

.btn-outline:hover {
  background: var(--clr-violet);
  color: white;
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(124,58,237,0.08);
  color: var(--clr-violet);
  border-color: rgba(124,58,237,0.2);
}

.btn-ghost:hover {
  background: rgba(124,58,237,0.15);
  transform: translateY(-2px);
}

.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 17px; }

/* ── Cards ── */
.card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-med);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(124,58,237,0.3);
}

.card-glass {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-lg);
}

[data-theme="dark"] .card-glass {
  background: rgba(19,15,42,0.7);
  border-color: rgba(255,255,255,0.08);
}

/* Gradient border card */
.card-gradient {
  position: relative;
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: var(--transition-med);
}

.card-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1.5px;
  background: var(--grad-brand);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition-med);
}

.card-gradient:hover::before {
  opacity: 1;
}

.card-gradient:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* ── Badges ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
}

.badge-violet { background: rgba(124,58,237,0.1); color: var(--clr-violet); }
.badge-cyan   { background: rgba(6,182,212,0.1);  color: var(--clr-cyan);   }
.badge-green  { background: rgba(16,185,129,0.1); color: #10b981;           }
.badge-red    { background: rgba(239,68,68,0.1);  color: #ef4444;           }

/* ── Icon Box ── */
.icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: var(--space-md);
  flex-shrink: 0;
}

.icon-box-violet { background: rgba(124,58,237,0.12); color: var(--clr-violet); }
.icon-box-cyan   { background: rgba(6,182,212,0.12);  color: var(--clr-cyan);   }
.icon-box-pink   { background: rgba(236,72,153,0.12); color: var(--clr-pink);   }
.icon-box-green  { background: rgba(16,185,129,0.12); color: #10b981;           }

.icon-box-lg {
  width: 72px;
  height: 72px;
  font-size: 30px;
  border-radius: var(--radius-lg);
}

/* ── Gradient Icon Box ── */
.icon-box-gradient {
  background: var(--grad-brand);
  color: white;
  box-shadow: var(--shadow-md);
}

/* ── Divider ── */
.divider {
  width: 60px;
  height: 4px;
  background: var(--grad-brand);
  border-radius: var(--radius-full);
  margin: var(--space-md) auto;
}

/* ── ====================== ── */
/* ── NAVBAR                 ── */
/* ── ====================== ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--nav-height);
  transition: var(--transition-med);
}

#navbar.scrolled {
  background: rgba(10, 7, 21, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(124,58,237,0.2);
}

[data-theme="light"] #navbar.scrolled {
  background: rgba(248, 247, 255, 0.95);
  border-bottom: 1px solid rgba(124,58,237,0.15);
}

.navbar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 20px;
  color: white;
  flex-shrink: 0;
}

[data-theme="light"] .nav-logo { color: var(--clr-text); }

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--grad-brand);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  box-shadow: var(--shadow-md);
}

.nav-logo span { color: var(--clr-cyan-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  font-family: var(--font-bn);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  transition: var(--transition-fast);
  position: relative;
}

[data-theme="light"] .nav-links a {
  color: var(--clr-text-muted);
}

[data-theme="light"] .nav-links a:hover,
[data-theme="light"] .nav-links a.active {
  color: var(--clr-violet);
}

[data-theme="light"] .nav-links a {
  color: var(--clr-text-muted);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-brand);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--clr-cyan-light);
}

[data-theme="light"] .nav-links a:hover,
[data-theme="light"] .nav-links a.active {
  color: var(--clr-violet);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-shrink: 0;
}

#theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition-fast);
  border: 1px solid rgba(255,255,255,0.15);
}

[data-theme="light"] #theme-toggle {
  background: rgba(124,58,237,0.1);
  color: var(--clr-violet);
  border-color: rgba(124,58,237,0.2);
}

#theme-toggle:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(20deg);
}

.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: #25D366;
  color: white;
  font-family: var(--font-bn);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
  box-shadow: 0 2px 12px rgba(37,211,102,0.3);
}

.nav-whatsapp:hover {
  background: #1aab57;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition-fast);
}

[data-theme="light"] .hamburger span { background: var(--clr-text); }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
#mobile-nav {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  width: 100%;
  background: rgba(10, 7, 21, 0.97);
  backdrop-filter: blur(20px);
  padding: var(--space-xl);
  transform: translateY(-100%);
  opacity: 0;
  transition: var(--transition-med);
  z-index: 999;
  border-bottom: 1px solid rgba(124,58,237,0.2);
}

[data-theme="light"] #mobile-nav {
  background: rgba(248,247,255,0.97);
}

#mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
}

#mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

#mobile-nav a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  font-family: var(--font-bn);
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: var(--transition-fast);
  border: 1px solid transparent;
}

[data-theme="light"] #mobile-nav a { color: var(--clr-text); }

#mobile-nav a:hover {
  background: rgba(124,58,237,0.1);
  border-color: rgba(124,58,237,0.2);
  color: var(--clr-violet-light);
}

#mobile-nav .mobile-whatsapp {
  margin-top: var(--space-md);
  display: flex;
  justify-content: center;
}

/* ── ====================== ── */
/* ── HERO SECTION            ── */
/* ── ====================== ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--grad-hero);
}

[data-theme="light"] #hero {
  background: linear-gradient(135deg, #f3f0ff 0%, #e0f2fe 50%, #fdf2f8 100%);
}

/* Animated blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: blobPulse 8s ease-in-out infinite;
  pointer-events: none;
}

.hero-blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.35) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation-delay: 0s;
}

.hero-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(6,182,212,0.3) 0%, transparent 70%);
  bottom: -80px; right: -80px;
  animation-delay: 3s;
}

.hero-blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(236,72,153,0.2) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 6s;
}

@keyframes blobPulse {
  0%, 100% { transform: scale(1) translate(0, 0); }
  33%       { transform: scale(1.1) translate(20px, -20px); }
  66%       { transform: scale(0.95) translate(-15px, 15px); }
}

/* Grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.06) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-lg);
  padding-top: calc(var(--nav-height) + var(--space-3xl));
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-bn);
  font-size: 14px;
  color: var(--clr-violet-light);
  margin-bottom: var(--space-lg);
  backdrop-filter: blur(8px);
}

.hero-eyebrow i { color: var(--clr-cyan); }

.hero-title {
  font-family: var(--font-en);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  color: var(--clr-text);
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 60%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="dark"] .hero-title .gradient-text {
  background: linear-gradient(135deg, #a78bfa 0%, #67e8f9 60%, #f9a8d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-family: var(--font-bn);
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--clr-text-muted);
  max-width: 580px;
  margin-bottom: var(--space-xl);
  line-height: 1.9;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
}

.hero-cta .btn-outline {
  color: var(--clr-text);
  border-color: var(--clr-border);
}

.hero-cta .btn-outline:hover {
  background: var(--clr-surface-2);
}

/* Stats row */
.hero-stats {
  display: flex;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-en);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

[data-theme="dark"] .stat-number {
  background: linear-gradient(135deg, #a78bfa, #67e8f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-family: var(--font-bn);
  font-size: 14px;
  color: var(--clr-text-muted);
}

.stat-divider {
  width: 1px;
  background: var(--clr-border);
  align-self: stretch;
}

/* ── ====================== ── */
/* ── NOTICE BAR              ── */
/* ── ====================== ── */
#notice-bar {
  background: linear-gradient(90deg, #6d28d9 0%, #0891b2 100%);
  color: white;
  padding: 10px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.notice-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.25);
  padding: 8px 18px;
  font-family: var(--font-bn);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  z-index: 2;
}

.notice-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: #67e8f9;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.4); }
}

.notice-ticker-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.notice-ticker-wrapper::before,
.notice-ticker-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 1;
  pointer-events: none;
}

.notice-ticker-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, #6d28d9, transparent);
}

.notice-ticker-wrapper::after {
  right: 0;
  background: linear-gradient(-90deg, #0891b2, transparent);
}

.notice-ticker {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  font-family: var(--font-bn);
  font-size: 14px;
  font-weight: 500;
}

.notice-ticker:hover { animation-play-state: paused; }

.notice-ticker span {
  padding: 0 40px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.notice-ticker span::after {
  content: '⬥';
  opacity: 0.5;
}

@keyframes ticker {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* ── ====================== ── */
/* ── SERVICES SECTION        ── */
/* ── ====================== ── */
#services {
  background: var(--clr-bg);
}

.service-main-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.service-card-main {
  position: relative;
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--clr-border);
  overflow: hidden;
  transition: var(--transition-med);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-card);
  opacity: 0;
  transition: var(--transition-med);
}

.service-card-main:hover {
  transform: translateY(-6px);
  border-color: rgba(124,58,237,0.3);
  box-shadow: var(--shadow-lg);
}

.service-card-main:hover::after { opacity: 1; }

.service-card-main .card-corner {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--grad-brand);
  opacity: 0.06;
  transition: var(--transition-slow);
}

.service-card-main:hover .card-corner {
  opacity: 0.12;
  transform: scale(1.3);
}

.service-card-main .card-body { position: relative; z-index: 1; }

.service-card-main h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--clr-text);
  font-family: var(--font-bn);
}

.service-card-main p {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-violet);
  font-family: var(--font-en);
  transition: var(--transition-fast);
}

.service-card-main:hover .service-arrow {
  gap: 10px;
  color: var(--clr-cyan);
}

/* Quick Link Cards */
.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.quick-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  transition: var(--transition-med);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.quick-card:hover {
  transform: translateY(-4px);
  border-color: rgba(6,182,212,0.4);
  box-shadow: 0 8px 24px rgba(6,182,212,0.12);
  background: rgba(6,182,212,0.04);
}

.quick-card .quick-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(6,182,212,0.1);
  color: var(--clr-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: var(--transition-med);
}

.quick-card:hover .quick-icon {
  background: var(--grad-brand);
  color: white;
  box-shadow: var(--shadow-md);
}

.quick-card span {
  font-family: var(--font-bn);
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-text);
  line-height: 1.4;
  text-align: center;
}

/* ── ====================== ── */
/* ── TOOLS SECTION           ── */
/* ── ====================== ── */
#tools {
  background: var(--clr-surface-2);
}

[data-theme="dark"] #tools {
  background: var(--clr-dark-surface);
}

.tools-tab-nav {
  display: flex;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .tools-tab-nav {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.tab-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-bn);
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-text-muted);
  background: transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.tab-btn.active {
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  color: white;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.tab-btn:not(.active):hover {
  background: rgba(124, 58, 237, 0.1);
  color: var(--clr-text);
}

.tool-panel { display: none; }
.tool-panel.active { display: block; }

.tool-box-wrap {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.tool-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--clr-border);
}

.tool-title {
  font-family: var(--font-bn);
  font-size: 20px;
  font-weight: 700;
  color: var(--clr-text);
}

.tool-desc {
  font-size: 14px;
  color: var(--clr-text-muted);
  font-family: var(--font-bn);
}

/* Image Resizer Layout */
.resizer-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.form-label {
  display: block;
  font-family: var(--font-bn);
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: var(--space-sm);
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  background: var(--clr-surface);
  color: var(--clr-text);
  font-size: 14px;
  font-family: var(--font-bn);
  transition: var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--clr-violet);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
}

.form-group { margin-bottom: var(--space-lg); }

.upload-zone {
  border: 2px dashed rgba(124,58,237, 0.4);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  background: rgba(124,58,237, 0.02);
}

.upload-zone:hover {
  border-color: var(--clr-cyan);
  background: rgba(6,182,212, 0.05);
  box-shadow: 0 0 20px rgba(6,182,212, 0.1) inset;
}

.upload-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.upload-zone i {
  font-size: 36px;
  color: var(--clr-violet);
  margin-bottom: var(--space-sm);
  transition: transform 0.3s ease;
}

.upload-zone:hover i {
  transform: translateY(-5px);
  color: var(--clr-cyan);
}

.upload-zone p {
  font-family: var(--font-bn);
  font-size: 14px;
  color: var(--clr-text-muted);
  pointer-events: none;
}

.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--clr-border);
  outline: none;
  cursor: pointer;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--grad-brand);
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.preview-box {
  background: var(--clr-surface-2);
  border: 1px dashed var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  min-height: 250px;
  height: calc(100% - 32px); /* Fill the column minus label height */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.preview-box:hover {
  border-color: var(--clr-primary);
  background: var(--clr-surface);
}

.preview-box img {
  max-width: 100%;
  max-height: 350px; /* Allow much bigger image preview */
  height: auto;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.preview-info {
  margin-top: var(--space-md);
  display: flex;
  gap: var(--space-md);
  font-size: 13px;
  font-family: var(--font-en);
}

.info-chip {
  background: rgba(124,58,237,0.1);
  color: var(--clr-violet);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 12px;
}

.pdf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.pdf-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .pdf-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.pdf-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(6,182,212,0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.pdf-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124,58,237,0.4);
  box-shadow: 0 20px 40px rgba(124,58,237,0.15);
}

.pdf-card:hover::before { opacity: 1; }

.pdf-card > * { position: relative; z-index: 1; }

.pdf-preview-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  text-align: left;
  max-height: 120px;
  overflow-y: auto;
  border-radius: var(--radius-sm);
}

.pdf-preview-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(124,58,237,0.05);
  border: 1px solid rgba(124,58,237,0.1);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--clr-text);
  transition: var(--transition-fast);
}

.pdf-preview-item:hover {
  background: rgba(124,58,237,0.1);
}

.pdf-preview-item i {
  color: var(--clr-violet);
  font-size: 16px;
}

.pdf-preview-item .file-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  font-weight: 500;
}

.pdf-card-icon {
  font-size: 42px;
  margin-bottom: var(--space-sm);
  background: -webkit-linear-gradient(135deg, #7c3aed, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  transition: transform 0.4s ease;
}

.pdf-card:hover .pdf-card-icon {
  transform: scale(1.1) rotate(5deg);
}

.pdf-card h4 {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: var(--space-sm);
  color: var(--clr-text);
  letter-spacing: -0.5px;
}

.pdf-card p {
  font-family: var(--font-bn);
  font-size: 13px;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.5;
}

.pdf-card .btn-primary {
  background: linear-gradient(135deg, #7c3aed, #06b6d4) !important;
  border: none;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pdf-card .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

.pdf-card .btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  transition: all 0.6s ease;
}

.pdf-card .btn-primary:hover::after {
  left: 150%;
}

.progress-bar-wrap {
  width: 100%;
  height: 6px;
  background: var(--clr-border);
  border-radius: 3px;
  overflow: hidden;
  margin: var(--space-md) 0;
  display: none;
}

.progress-bar {
  height: 100%;
  background: var(--grad-brand);
  border-radius: 3px;
  transition: width 0.3s ease;
  width: 0%;
}

.status-msg {
  font-family: var(--font-bn);
  font-size: 13px;
  font-weight: 600;
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  text-align: center;
  display: none;
}

.status-msg.success { background: rgba(16,185,129,0.1); color: #10b981; display: block; }
.status-msg.error   { background: rgba(239,68,68,0.1);  color: #ef4444; display: block; }
.status-msg.loading { background: rgba(124,58,237,0.1); color: var(--clr-violet); display: block; }

/* ── ====================== ── */
/* ── BLOG SECTION            ── */
/* ── ====================== ── */
#blog { background: var(--clr-bg); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.blog-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-med);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(124,58,237,0.25);
}

.blog-card-thumb {
  height: 180px;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-date {
  font-size: 12px;
  color: var(--clr-text-muted);
  font-family: var(--font-en);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-card-title {
  font-family: var(--font-bn);
  font-size: 17px;
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1.5;
  margin-bottom: var(--space-sm);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.blog-card-snippet {
  font-family: var(--font-bn);
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  border-top: 1px solid var(--clr-border);
}

.blog-read-btn {
  font-family: var(--font-bn);
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-violet);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition-fast);
}

.blog-card:hover .blog-read-btn {
  gap: 8px;
  color: var(--clr-cyan);
}

/* Blog Modal */
#blog-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
}

#blog-modal.open { display: flex; }

.modal-box {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 680px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border: 1px solid var(--clr-border);
  overflow: hidden;
}

.modal-header {
  padding: var(--space-xl);
  border-bottom: 1px solid var(--clr-border);
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.modal-header h2 {
  font-family: var(--font-bn);
  font-size: 20px;
  color: var(--clr-text);
  flex: 1;
  line-height: 1.5;
}

.modal-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--clr-surface-2);
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: var(--transition-fast);
  cursor: pointer;
}

.modal-close:hover {
  background: rgba(239,68,68,0.1);
  color: #ef4444;
}

.modal-body {
  padding: var(--space-xl);
  overflow-y: auto;
  flex: 1;
  font-family: var(--font-bn);
  font-size: 15px;
  line-height: 1.9;
  color: var(--clr-text);
}

.modal-body img {
  max-width: 100%;
  border-radius: var(--radius-md);
  margin: var(--space-md) 0;
}

/* ── ====================== ── */
/* ── ABOUT SECTION           ── */
/* ── ====================== ── */
#about {
  background: var(--clr-surface-2);
}

[data-theme="dark"] #about { background: var(--clr-dark-surface); }

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-text .section-label { display: inline-flex; }
.about-text .section-title { text-align: left; }

.about-text p {
  font-family: var(--font-bn);
  font-size: 16px;
  line-height: 1.9;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-lg);
  text-align: justify;
}

.trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--clr-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
}

.trust-badge i {
  font-size: 20px;
  color: var(--clr-violet);
}

.trust-badge span {
  font-family: var(--font-bn);
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-text);
}

/* Founder card */
.founder-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.founder-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 120px;
  background: var(--grad-brand);
  opacity: 0.08;
}

.founder-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: white;
  margin: 0 auto var(--space-lg);
  position: relative;
  box-shadow: 0 0 0 4px var(--clr-surface), 0 0 0 8px rgba(124,58,237,0.2);
}

.founder-name {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 4px;
}

.founder-role {
  font-family: var(--font-bn);
  font-size: 14px;
  color: var(--clr-violet);
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.founder-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--clr-border);
}

.founder-stat-num {
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 800;
  color: var(--clr-violet);
}

.founder-stat-lbl {
  font-family: var(--font-bn);
  font-size: 12px;
  color: var(--clr-text-muted);
}

/* ── ====================== ── */
/* ── CONTACT SECTION         ── */
/* ── ====================== ── */
#contact { background: var(--clr-bg); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 700px;
  margin: 0 auto;
  gap: var(--space-2xl);
  align-items: center;
}

.contact-info-card {
  background: var(--grad-hero);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(124,58,237,0.2);
}

.contact-info-card::after {
  content: '';
  position: absolute;
  bottom: -30px; left: -30px;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: rgba(6,182,212,0.15);
}

.contact-info-card h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: var(--space-sm);
  color: white;
}

.contact-info-card .sub {
  font-family: var(--font-bn);
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.15);
}

.contact-item-text .label {
  font-size: 11px;
  font-family: var(--font-en);
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.contact-item-text .value {
  font-family: var(--font-bn);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

.copy-btn {
  margin-left: 6px;
  font-size: 12px;
  color: var(--clr-cyan-light);
  cursor: pointer;
  transition: var(--transition-fast);
  vertical-align: middle;
}

.copy-btn:hover { color: white; }

.business-hours {
  position: relative;
  z-index: 1;
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hours-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.hours-header span {
  font-family: var(--font-bn);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

#hours-status {
  font-size: 12px;
  font-family: var(--font-en);
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

#hours-status.open   { background: rgba(16,185,129,0.2); color: #34d399; }
#hours-status.closed { background: rgba(239,68,68,0.2);  color: #f87171; }

.hours-list { font-family: var(--font-bn); font-size: 13px; color: rgba(255,255,255,0.6); }
.hours-list div { margin-bottom: 4px; display: flex; justify-content: space-between; }

/* Contact Form */
.contact-form-wrap {
  background: var(--clr-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap h3 {
  font-size: 22px;
  margin-bottom: var(--space-xl);
  font-family: var(--font-bn);
  color: var(--clr-text);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

#contact-success {
  display: none;
  padding: var(--space-lg);
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: var(--radius-md);
  font-family: var(--font-bn);
  color: #10b981;
  text-align: center;
  font-size: 15px;
  margin-top: var(--space-md);
}

/* Map */
.map-wrap {
  margin-top: var(--space-2xl);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border);
}

/* ── ====================== ── */
/* ── FOOTER                  ── */
/* ── ====================== ── */
#footer {
  background: #060412;
  color: rgba(255,255,255,0.7);
  padding: var(--space-3xl) 0 0;
  border-top: 1px solid rgba(124,58,237,0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand .nav-logo {
  margin-bottom: var(--space-lg);
  color: white;
}

.footer-tagline {
  font-family: var(--font-bn);
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-xl);
}

.footer-socials {
  display: flex;
  gap: var(--space-sm);
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition-fast);
}

.social-icon:hover {
  background: var(--grad-brand);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-lg);
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  font-family: var(--font-bn);
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-links a::before {
  content: '';
  width: 6px;
  height: 1px;
  background: var(--clr-violet);
  transition: width 0.3s;
}

.footer-links a:hover {
  color: var(--clr-violet-light);
  padding-left: 4px;
}

.footer-links a:hover::before { width: 12px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-lg) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-en);
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* ── ====================== ── */
/* ── FLOATING CHAT           ── */
/* ── ====================== ── */
#chat-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-sm);
}

.chat-panel {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transform: scale(0.8) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-med);
  transform-origin: bottom right;
}

.chat-panel.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.chat-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  color: white;
  font-family: var(--font-bn);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: var(--transition-fast);
  white-space: nowrap;
}

.chat-link:hover { transform: translateX(-4px); box-shadow: 0 6px 24px rgba(0,0,0,0.3); }
.chat-link.whatsapp  { background: #25D366; }
.chat-link.messenger { background: linear-gradient(135deg, #0066FF, #00E5FF); }

.chat-link img { width: 24px; height: 24px; border-radius: 50%; }

.fab-toggle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-glow);
  transition: var(--transition-med);
  cursor: pointer;
}

.fab-toggle:hover { transform: scale(1.08); }
.fab-toggle.open  { transform: rotate(45deg); }

/* ── ====================== ── */
/* ── BACK TO TOP             ── */
/* ── ====================== ── */
#back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--clr-surface);
  border: 2px solid var(--clr-border);
  color: var(--clr-violet);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-med);
  opacity: 0;
  transform: translateY(10px);
  z-index: 8000;
  pointer-events: none;
  box-shadow: var(--shadow-md);
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

#back-to-top:hover {
  background: var(--grad-brand);
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
}

/* ── ====================== ── */
/* ── SCROLL REVEAL           ── */
/* ── ====================== ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left  { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px);  }
.reveal-left.visible, .reveal-right.visible { transform: translateX(0); opacity: 1; }

/* Delay utilities */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── ====================== ── */
/* ── RESPONSIVE              ── */
/* ── ====================== ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
  .quick-links-grid { grid-template-columns: repeat(2, 1fr); }
  .service-main-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --space-md: 12px;
    --space-lg: 16px;
    --space-xl: 24px;
    --space-2xl: 32px;
    --space-3xl: 48px;
  }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-whatsapp { display: none; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .about-layout   { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .resizer-layout { grid-template-columns: 1fr; gap: var(--space-md); }
  .pdf-grid       { grid-template-columns: 1fr; gap: var(--space-md); }
  .upload-zone    { padding: var(--space-md) var(--space-sm); border-width: 1px; min-height: 80px; display: flex; flex-direction: column; justify-content: center; align-items: center; }
  .upload-zone i  { font-size: 24px !important; margin-bottom: 4px; }
  .upload-zone p  { margin: 0; font-size: 13px; }
  .blog-grid      { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }

  .hero-title { font-size: 28px; line-height: 1.2; }
  .hero-desc { font-size: 14px; margin-bottom: var(--space-lg); }
  .hero-stats { gap: var(--space-md); flex-direction: column; }

  .tools-tab-nav { 
    flex-direction: row; 
    flex-wrap: wrap;
    width: 100%; 
    justify-content: center;
    padding: 4px 0;
    gap: 6px;
    margin-bottom: var(--space-md);
  }
  .tab-btn { 
    flex-shrink: 0; 
    padding: 6px 12px; 
    font-size: 12px; 
    white-space: normal;
    text-align: center;
    gap: 4px;
  }
  
  .tool-box-wrap { padding: var(--space-md); border-radius: var(--radius-md); }
  .tool-header { flex-direction: row; text-align: left; gap: var(--space-sm); margin-bottom: var(--space-md); padding-bottom: 8px; }
  .tool-header .icon-box { width: 36px; height: 36px; font-size: 16px; }
  .tool-title { font-size: 16px; line-height: 1.2; }
  .tool-desc { font-size: 12px; line-height: 1.3; }

  .form-control { padding: 8px 12px; font-size: 13px; }
  .form-group { margin-bottom: var(--space-md); }
  .btn { padding: 10px 16px; font-size: 14px; }

  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--space-sm); }
  .section { padding: var(--space-xl) 0; }
  .hero-cta { flex-direction: column; gap: var(--space-sm); }
  .hero-stats { flex-direction: column; gap: var(--space-md); }
  .stat-divider { display: none; }
  .quick-links-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-sm); }
  .quick-card { padding: var(--space-sm); }
  .quick-card span { font-size: 12px; }
  
  /* FABs adjusted for bottom nav */
  #chat-fab { bottom: 85px; right: 16px; width: 46px; height: 46px; font-size: 20px; }
  #back-to-top { left: 16px; bottom: 85px; width: 40px; height: 40px; }
  .trust-badges { grid-template-columns: 1fr; }
  
  /* Add padding to body so content isn't hidden behind bottom nav */
  body { padding-bottom: 70px; }
}

/* ── ====================== ── */
/* ── MOBILE BOTTOM NAV       ── */
/* ── ====================== ── */
.mobile-bottom-nav {
  display: none; /* Hidden by default on desktop */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--clr-border);
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .mobile-bottom-nav {
  background: rgba(19, 15, 42, 0.85);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 25%;
  height: 100%;
  color: var(--clr-text-muted);
  text-decoration: none;
  font-family: var(--font-bn);
  font-size: 11px;
  gap: 4px;
  transition: all 0.3s ease;
}

.bottom-nav-item i {
  font-size: 20px;
  transition: all 0.3s ease;
}

.bottom-nav-item:hover,
.bottom-nav-item:active {
  color: var(--clr-violet);
}

.bottom-nav-item.active {
  color: var(--clr-violet);
}

.bottom-nav-item.active i {
  transform: translateY(-2px);
}