/*
Theme Name: eShohoz
Theme URI: https://eshohoz.xyz
Author: eShohoz Team
Author URI: https://eshohoz.xyz
Description: A premium Customizer API WordPress theme for e-commerce, electronics, and food landing pages. Optimized for speed and SEO.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: eshohoz
Tags: ecommerce, landing-page, customizer-api, responsive, clean
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --primary: #0084ff;
  --primary-dark: #0059ff;
  --primary-light: #e6f0ff;
  --accent: #00c2ff;
  --dark: #050a15;
  --dark2: #0a1225;
  --dark3: #0f1935;
  --text: #e1e7f5;
  --text-muted: #8fa1c7;
  --text-dark: #0a1225;
  --white: #ffffff;
  --border: rgba(0,132,255,0.18);
  --border-light: rgba(255,255,255,0.08);
  --card-bg: rgba(255,255,255,0.04);
  --success: #22c55e;
  --warning: #f59e0b;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-blue: 0 8px 32px rgba(0,132,255,0.25);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.w-100 { width: 100%; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(5, 10, 21, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s;
}
.navbar.scrolled { background: rgba(5, 10, 21, 0.95); border-bottom: 1px solid var(--border); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1200px; margin: 0 auto;
}
.nav-logo {
  font-size: 20px; font-weight: 700; color: var(--white);
  display: flex; align-items: center; gap: 12px;
}
.footer-logo { margin-bottom: 14px; display: inline-flex !important; }
.nav-logo img {
  height: 38px;
  width: auto;
  display: block;
}
.nav-logo span {
  background: linear-gradient(135deg, var(--white), #54d2ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links li { display: block; }
.nav-links a {
  font-size: 14px; color: var(--text-muted);
  transition: color 0.2s; font-weight: 500;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--primary); color: white !important;
  padding: 10px 22px; border-radius: 8px; font-size: 14px;
  font-weight: 600; transition: all 0.2s; display: flex;
  align-items: center; gap: 8px;
  line-height: 1;
}
.nav-cta i { font-size: 18px; }
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.wa-icon { font-size: 16px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(10px); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 100px 0 60px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,132,255,0.15) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 80% 60%, rgba(84,210,255,0.08) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,132,255,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,132,255,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 80%);
}
.hero-content { position: relative; z-index: 1; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,132,255,0.12); border: 1px solid rgba(0,132,255,0.3);
  padding: 8px 20px; border-radius: 100px; font-size: 12px;
  color: #54d2ff; margin-bottom: 30px; font-weight: 500;
  backdrop-filter: blur(10px);
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(0.8)} }
.hero h1 {
  font-size: clamp(32px, 9vw, 56px); font-weight: 800;
  line-height: 1.1; margin-bottom: 24px; color: var(--white);
  letter-spacing: -0.03em;
  text-shadow: 0 10px 40px rgba(0, 132, 255, 0.25);
}
.hero h1 .highlight {
  background: linear-gradient(135deg, #00c2ff, #54d2ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  display: inline-block;
  padding: 0 10px;
  position: relative;
}
.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(0, 194, 255, 0.15);
  z-index: -1;
  border-radius: 4px;
}
.hero-desc {
  font-size: clamp(16px, 2.5vw, 18px); color: rgba(255,255,255,0.7);
  max-width: 750px; margin: 0 auto 40px; line-height: 1.7;
  font-weight: 400;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 50px; }
.btn-primary {
  background: var(--primary); color: white; padding: 14px 28px;
  border-radius: var(--radius); font-size: 15px; font-weight: 600;
  transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-blue);
  border: none; outline: none; cursor: pointer;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,132,255,0.4); }
.btn-outline {
  background: transparent; color: var(--white); padding: 14px 28px;
  border-radius: var(--radius); font-size: 15px; font-weight: 600;
  border: 1px solid var(--border); transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { background: var(--card-bg); border-color: var(--primary); }
.hero-features {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-feat {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--text-muted);
}
.feat-check { color: var(--success); font-size: 16px; }

/* Stats */
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgb(255 255 255 / 0%);
  border: 1px solid rgb(255 255 255 / 0%); border-radius: var(--radius-lg);
  overflow: hidden; max-width: 700px; margin: 0 auto;
}
.stat-item {
  padding: 24px 16px; text-align: center;
  background: var(--card-bg);
  backdrop-filter: blur(10px);
}
.stat-num {
  font-size: 32px; font-weight: 700; color: var(--white);
  font-variant-numeric: tabular-nums; line-height: 1;
  background: linear-gradient(135deg, var(--white), #54d2ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* ===== MARQUEE ===== */
.marquee-section { padding: 28px 0; overflow: hidden; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); margin-top: 80px; }
.marquee-track { display: flex; gap: 32px; animation: marquee 20s linear infinite; width: max-content; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-item {
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap; font-size: 13px; color: var(--text-muted);
  padding: 6px 16px; border-radius: 100px;
  background: rgba(0,132,255,0.06); border: 1px solid var(--border);
}

/* ===== SECTION SHARED ===== */
section { padding: 80px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--primary);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px;
}
.section-title {
  font-size: clamp(26px, 4vw, 40px); font-weight: 700;
  color: var(--white); margin-bottom: 14px; line-height: 1.25;
}
.section-desc { font-size: 16px; color: var(--text-muted); max-width: 560px; }
.section-head { margin-bottom: 50px; }
.section-head.center { text-align: center; }
.section-head.center .section-desc { margin: 0 auto; }

/* ===== VIDEO SECTION ===== */
.video-section { background: var(--dark2); }
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: stretch; }
.video-placeholder {
  position: relative;
  background: var(--dark3); border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  cursor: pointer; transition: all 0.3s; overflow: hidden;
  min-height: 360px;
}
.video-placeholder.image-only { cursor: default; }
.video-placeholder.image-only:hover { transform: none; border-color: var(--border-light); }
.video-placeholder::before {
  content: ''; position: absolute; inset: 0;
  z-index: 0;
}
.video-placeholder:not(.image-only):hover { border-color: var(--primary); transform: scale(1.01); }
.play-btn {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--primary); display: flex; align-items: center;
  justify-content: center; font-size: 24px; color: white;
  box-shadow: var(--shadow-blue); position: relative; z-index: 1;
  transition: all 0.3s;
}
.play-btn i { margin-left: 4px; }
.video-placeholder:hover .play-btn { transform: scale(1.1); background: white; color: var(--primary); }
.video-info { font-size: 14px; color: var(--text-muted); position: relative; z-index: 1; }
.video-features { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.vf-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border-radius: var(--radius);
  background: var(--card-bg); border: 1px solid var(--border-light);
}
.vf-icon { font-size: 18px; flex-shrink: 0; }
.vf-text { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* ===== FEATURES ===== */
.features-section { background: var(--dark); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat-card {
  background: var(--card-bg); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.feat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.feat-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.feat-card:hover::before { opacity: 1; }
.feat-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(0,132,255,0.12); border: 1px solid rgba(0,132,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--primary); margin-bottom: 18px;
}
.feat-card h3 { font-size: 17px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.feat-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ===== THEMES ===== */
.themes-section { background: var(--dark2); }
.filter-tabs {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px;
  justify-content: center;
}
.filter-btn {
  padding: 7px 16px; border-radius: 8px; font-size: 13px;
  font-weight: 500; cursor: pointer; transition: all 0.2s;
  border: 1px solid var(--border-light); background: transparent;
  color: var(--text-muted); font-family: inherit;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--primary); color: white; border-color: var(--primary);
}
.themes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.theme-card {
  background: var(--dark3); border-radius: var(--radius-lg);
  border: 1px solid var(--border-light); overflow: hidden;
  transition: all 0.3s; cursor: pointer;
}
.theme-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-blue); }
.theme-img {
  aspect-ratio: 16/10; background: var(--dark);
  position: relative; overflow: hidden;
}
.theme-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.theme-card:hover .theme-img img { transform: scale(1.04); }
.theme-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--dark3), var(--dark2));
  display: flex; align-items: center; justify-content: center;
  font-size: 44px; color: var(--primary);
  opacity: 0.6; transition: all 0.3s;
}
.theme-card:hover .theme-img-placeholder { opacity: 1; transform: scale(1.1); }
.theme-card.hidden { display: none; }
.theme-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--accent); color: white;
  font-size: 11px; font-weight: 600; padding: 3px 10px;
  border-radius: 6px;
}
.theme-badge.popular { background: var(--success); }
.theme-cat-badge {
  position: absolute; top: 10px; right: 10px;
  background: rgba(0,0,0,0.6); color: var(--text);
  font-size: 11px; padding: 3px 10px; border-radius: 6px;
  backdrop-filter: blur(8px);
}
.theme-body { padding: 18px; }
.theme-price { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.theme-name { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.theme-features { display: flex; flex-direction: column; gap: 4px; margin-bottom: 14px; }
.theme-feat { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.theme-feat::before { content: '▸'; color: var(--primary); font-size: 10px; flex-shrink: 0; }
.theme-actions { display: flex; gap: 8px; }
.btn-demo {
  flex: 1; padding: 9px; border-radius: 8px; font-size: 13px;
  font-weight: 600; text-align: center; border: 1px solid var(--border);
  color: var(--text-muted); transition: all 0.2s; font-family: inherit;
  background: transparent; cursor: pointer;
}
.btn-demo:hover { border-color: var(--primary); color: var(--primary); }
.btn-buy {
  flex: 1; padding: 9px; border-radius: 8px; font-size: 13px;
  font-weight: 600; text-align: center; background: var(--primary);
  color: white; transition: all 0.2s; cursor: pointer;
  border: none; font-family: inherit;
}
.btn-buy:hover { background: var(--primary-dark); }
.load-more-wrap { text-align: center; margin-top: 40px; }
.btn-load-more {
  padding: 12px 32px; border-radius: var(--radius); border: 1px solid var(--border);
  color: var(--text-muted); font-size: 14px; font-weight: 600;
  background: transparent; cursor: pointer; font-family: inherit;
  transition: all 0.3s;
}
.btn-load-more:hover { border-color: var(--primary); color: var(--primary); }

/* ===== SERVICES ===== */
.services-section { background: var(--dark); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  background: var(--card-bg); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 20px;
  transition: all 0.3s; position: relative;
}
.service-card:hover { border-color: var(--primary); }
.service-card.popular-card { border-color: var(--primary); }
.popular-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: white; font-size: 11px;
  font-weight: 700; padding: 4px 14px; border-radius: 100px;
}
.service-icon {
  font-size: 28px; margin-bottom: 16px;
  color: var(--primary);
  display: block;
}
.service-card h3 { font-size: 19px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.service-price { font-size: 28px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.service-price span { font-size: 14px; font-weight: 400; color: var(--text-muted); }
.service-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; }
.service-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.service-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-muted);
}
.service-list li::before { content: none; }
.btn-service {
  width: 100%; padding: 12px; border-radius: var(--radius); font-size: 14px;
  font-weight: 600; text-align: center; cursor: pointer; border: none;
  font-family: inherit; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-service.primary { background: var(--primary); color: white; }
.btn-service.primary:hover { background: var(--primary-dark); }
.btn-service.outline { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }
.btn-service.outline:hover { border-color: var(--primary); color: var(--primary); }

/* ===== PLUGIN ===== */
.plugin-section { background: var(--dark2); }
.plugin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.plugin-card {
  background: var(--dark3); border-radius: var(--radius-lg);
  border: 1px solid var(--primary); padding: 36px;
  position: relative; overflow: hidden;
  box-shadow: 0 0 40px rgba(0,132,255,0.15);
}
.plugin-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), #54d2ff);
}
.plugin-header { margin-bottom: 24px; }
.plugin-name { font-size: 22px; font-weight: 700; color: var(--white); }
.plugin-tag { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.plugin-price {
  display: flex; align-items: baseline; gap: 8px; margin-bottom: 24px;
}
.plugin-price-main { font-size: 36px; font-weight: 700; color: var(--primary); }
.plugin-price-note { font-size: 13px; color: var(--text-muted); }
.plugin-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plugin-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-muted); padding: 10px 14px;
  background: rgba(0,132,255,0.05); border-radius: 8px;
  border: 1px solid var(--border);
}
.plugin-feat-icon { font-size: 16px; }
.plugin-info { display: flex; flex-direction: column; gap: 20px; }
.plugin-info h2 { font-size: 32px; font-weight: 700; color: var(--white); line-height: 1.3; }
.plugin-info p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }
.plugin-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 8px; }
.benefit-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted);
}
.benefit-check { color: var(--success); font-weight: 700; }

/* ===== CUSTOM ORDER ===== */
.custom-section { background: var(--dark2); }
.custom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: stretch; }
.custom-img {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--dark3); 
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 16px;
  height: 100%;
}
.custom-img-icon { font-size: 64px; color: var(--primary); opacity: 0.8; }
.custom-img-text { font-size: 16px; font-weight: 500; color: var(--white); opacity: 0.9; }
.custom-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.custom-features { display: flex; flex-direction: column; gap: 10px; margin: 24px 0 32px; }
.custom-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--text-muted);
}
.custom-feat::before { content: none; }

/* ===== HOW IT WORKS ===== */
.how-section { background: var(--dark); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 50px; }
.step-card {
  text-align: center; padding: 32px 20px;
  background: var(--card-bg); border-radius: var(--radius-lg);
  border: 1px solid var(--border-light); position: relative;
  transition: all 0.3s;
}
.step-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #54d2ff);
  color: white; font-size: 20px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.step-icon { font-size: 28px; margin-bottom: 12px; }
.step-card h3 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.step-connector {
  position: absolute; right: -13px; top: 50%; transform: translateY(-50%);
  color: var(--primary); font-size: 20px; z-index: 1;
}
.step-card:last-child .step-connector { display: none; }

/* ===== FAQ ===== */
.faq-section { background: var(--dark2); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.faq-item {
  background: var(--card-bg); border: 1px solid var(--border-light);
  border-radius: var(--radius); overflow: hidden; transition: border-color 0.3s;
}
.faq-item.open { border-color: var(--primary); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; cursor: pointer; gap: 12px;
}
.faq-q-text { font-size: 14px; font-weight: 600; color: var(--white); line-height: 1.5; }
.faq-icon { color: var(--primary); font-size: 18px; flex-shrink: 0; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); font-weight: 300; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--white); }
.faq-a { 
  max-height: 0; opacity: 0; overflow: hidden;
  padding: 0 20px; font-size: 14px; color: var(--text-muted); 
  line-height: 1.7; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.open .faq-a { max-height: 500px; opacity: 1; padding: 14px 20px 18px; border-top: 1px solid var(--border-light); }

/* ===== CTA ===== */
.cta-section {
  background: var(--dark); text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,132,255,0.15), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.cta-section h2 { position: relative; font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: var(--white); margin-bottom: 14px; }
.cta-section p { position: relative; font-size: 16px; color: var(--text-muted); margin-bottom: 36px; }
.cta-btns { position: relative; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
footer { background: var(--dark); border-top: 1px solid var(--border-light); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); margin-top: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li { display: flex; align-items: center; }
.footer-col ul li a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; display: flex; align-items: center; gap: 10px; }
.footer-col ul li a i { font-size: 16px; width: 20px; text-align: center; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--border-light); padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }
.payment-badges { display: flex; gap: 8px; align-items: center; }
.pay-badge {
  background: var(--dark3); border: 1px solid var(--border-light);
  border-radius: 6px; padding: 4px 10px; font-size: 11px;
  font-weight: 700; color: var(--text-muted);
}

/* ===== MODAL ===== */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--dark2); border-radius: var(--radius-lg);
  border: 1px solid var(--border-light); padding: 32px;
  max-width: 560px; width: 100%; position: relative;
  max-height: 90vh; overflow-y: auto;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--dark3); border: none; color: var(--text-muted);
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
  font-size: 18px; display: flex; align-items: center; justify-content: center;
  font-family: inherit;
}
.modal-close:hover { color: var(--white); }
.modal h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.pkg-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 20px; }
.pkg-tab {
  padding: 12px 8px; border-radius: 10px; cursor: pointer;
  border: 1px solid var(--border-light); background: transparent;
  text-align: center; font-family: inherit; transition: all 0.2s;
}
.pkg-tab.active { border-color: var(--primary); background: rgba(0,132,255,0.1); }
.pkg-tab-name { font-size: 12px; font-weight: 600; color: var(--white); }
.pkg-tab-price { font-size: 16px; font-weight: 700; color: var(--primary); margin-top: 2px; }
.payment-info {
  background: rgba(0,132,255,0.06); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px; margin-bottom: 20px;
}
.payment-info h4 { font-size: 14px; font-weight: 600; color: var(--warning); margin-bottom: 8px; }
.payment-info ol { padding-left: 16px; display: flex; flex-direction: column; gap: 4px; }
.payment-info li { font-size: 13px; color: var(--text-muted); }
.payment-number { font-weight: 700; color: var(--white); font-size: 15px; }
.order-form { display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 500; color: var(--text-muted); }
.form-group input, .form-group textarea {
  background: var(--dark3); border: 1px solid var(--border-light);
  border-radius: 8px; padding: 11px 14px; font-size: 14px;
  color: var(--white); font-family: inherit; outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-note { font-size: 12px; color: var(--text-muted); }
.btn-submit {
  width: auto; min-width: 180px; padding: 14px 40px; border-radius: var(--radius); background: var(--primary);
  color: white; font-size: 15px; font-weight: 600; border: none;
  cursor: pointer; font-family: inherit; transition: all 0.3s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 20px auto 0;
}
.btn-submit:hover { background: var(--primary-dark); }
.form-privacy { font-size: 11px; color: var(--text-muted); text-align: center; margin-top: 4px; }

.copy-btn {
  background: rgba(0,132,255,0.1);
  border: none;
  color: var(--primary);
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 14px;
  margin-left: 8px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}
.copy-btn:hover {
  background: var(--primary);
  color: white;
}

/* ===== VIDEO MODAL ===== */
.video-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 3000;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(15px);
  align-items: center; justify-content: center; padding: 24px;
}
.video-modal-overlay.active { display: flex; }
.video-modal-content {
  width: 100%; max-width: 1000px; position: relative;
  animation: modalScale 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modalScale { from { opacity: 0; transform: scale(0.9) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.video-modal-close {
  position: absolute; top: -45px; right: 0;
  background: transparent; border: none; color: var(--text-muted);
  font-size: 32px; cursor: pointer; transition: color 0.2s;
}
.video-modal-close:hover { color: var(--white); }
.video-responsive-container {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  border-radius: 20px; box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  background: #000; border: 1px solid var(--border-light);
}
.video-responsive-container iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}

/* ===== MOBILE NAV ===== */
.mobile-menu {
  position: fixed; top: 65px; left: 0; right: 0;
  background: rgba(10, 18, 37, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  z-index: 999; padding: 0 24px; 
  display: flex; flex-direction: column;
  max-height: 0; opacity: 0; visibility: hidden;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(-20px);
}
.mobile-menu.open { 
  max-height: 100vh; opacity: 1; visibility: visible;
  padding: 24px;
  transform: translateY(0);
}
.mobile-nav-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.mobile-nav-list li { border-bottom: 1px solid var(--border-light); padding-bottom: 12px; }
.mobile-nav-list li:last-child { border-bottom: none; padding-bottom: 0; }
.mobile-menu a { 
  font-size: 16px; color: var(--text-muted); font-weight: 500;
  transition: color 0.2s; display: block;
}
.mobile-menu a:hover { color: var(--white); }
.mobile-cta a { color: var(--primary) !important; font-weight: 700; display: flex; align-items: center; gap: 8px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta { padding: 8px 12px; font-size: 13px; }
  .nav-cta span { display: none; }
  .nav-right { gap: 10px; }
  .nav-inner { padding: 12px 20px; }
  .video-grid, .plugin-grid, .custom-grid, .footer-grid { grid-template-columns: 1fr; }
  .features-grid, .themes-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .step-connector { display: none; }
}
@media (max-width: 640px) {
  .features-grid, .themes-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .step-card { padding: 20px 12px; }
  .step-card h3 { font-size: 14px; }
  .step-card p { font-size: 11px; }
  .step-num { width: 36px; height: 36px; font-size: 16px; margin-bottom: 12px; }
  .step-icon { font-size: 20px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .plugin-benefits { grid-template-columns: 1fr; }
  .pkg-tabs { grid-template-columns: 1fr; }
  .hero h1 .highlight::after { display: none; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate { opacity: 0; }
.animate.visible { animation: fadeInUp 0.6s ease forwards; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* ===== LIVE CHAT WIDGET ===== */
.chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  font-family: 'Hind Siliguri', sans-serif;
}

.chat-trigger {
  background: #25d366;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-trigger:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

.chat-trigger i {
  font-size: 20px;
}

.chat-popup {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  overflow: hidden;
  display: none;
  flex-direction: column;
  animation: chatSlideUp 0.4s ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.chat-popup.active {
  display: flex;
}

@keyframes chatSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-header {
  background: var(--primary);
  padding: 20px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-title {
  font-size: 18px;
  font-weight: 700;
}

.chat-close {
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: 0.3s;
}

.chat-close:hover {
  background: rgba(255,255,255,0.4);
}

.chat-body {
  padding: 24px;
}

.chat-body p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.chat-avatars {
  display: flex;
  margin-bottom: 24px;
}

.chat-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--card-bg);
  margin-right: -12px;
  object-fit: cover;
}

.chat-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
}

.wa-btn {
  background: #25d366;
  color: white;
}

.wa-btn:hover {
  background: #1eb956;
}

.call-btn {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--white);
}

.call-btn:hover {
  background: var(--border-light);
}

@media (max-width: 480px) {
  .chat-widget {
    bottom: 15px;
    right: 15px;
  }
  .chat-trigger {
    padding: 10px 18px;
    font-size: 14px;
  }
  .chat-popup {
    width: calc(100vw - 30px);
    bottom: 70px;
    right: 0;
  }
  .chat-header {
    padding: 15px;
  }
  .chat-body {
    padding: 20px;
  }
  .chat-btn {
    padding: 10px;
    font-size: 14px;
  }
  .hero-badge {
    padding: 6px 14px;
    font-size: 11px;
    margin-bottom: 20px;
  }
  .hero-btns, .cta-btns {
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 30px;
  }
  .hero-btns .btn-primary, 
  .hero-btns .btn-outline,
  .cta-btns .btn-primary,
  .cta-btns .btn-outline {
    padding: 12px 10px;
    font-size: 12px;
    flex: 1;
    justify-content: center;
    white-space: nowrap;
    gap: 5px;
  }
  .hero-btns .btn-primary i,
  .hero-btns .btn-outline i,
  .cta-btns .btn-primary i,
  .cta-btns .btn-outline i {
    font-size: 14px;
  }
  .chat-actions {
    flex-direction: row;
    gap: 8px;
  }
  .chat-btn {
    padding: 10px 5px;
    font-size: 12px;
    flex: 1;
    white-space: nowrap;
  }
  .hero-features {
    gap: 10px 20px;
    margin-bottom: 30px;
  }
  .hero-feat {
    font-size: 12px;
  }
}
