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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #111827;
  background: #fff;
  line-height: 1.6;
  font-size: 15px;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }

.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
}
.section-header p {
  color: #6B7280;
  font-size: 15px;
  max-width: 520px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all .18s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: #1D4ED8;
  color: #fff;
  border-color: #1D4ED8;
}
.btn-primary:hover { background: #1E40AF; border-color: #1E40AF; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(29,78,216,.28); }
.btn-outline {
  background: transparent;
  color: #111827;
  border-color: #D1D5DB;
}
.btn-outline:hover { border-color: #9CA3AF; background: #F9FAFB; }
.btn-dark { background: #111827; color: #fff; border-color: #111827; }
.btn-dark:hover { background: #1F2937; }
.btn-lg { padding: 13px 26px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; padding: 14px; font-size: 15px; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #E5E7EB;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.navbar-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: #1D4ED8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}
.logo-tagline {
  font-size: 9px;
  font-weight: 600;
  color: #9CA3AF;
  letter-spacing: .06em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  transition: color .15s;
}
.nav-links a:hover { color: #1D4ED8; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 8px 12px;
  min-width: 200px;
}
.search-bar input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 13px;
  color: #374151;
  width: 100%;
}
.search-bar input::placeholder { color: #9CA3AF; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #374151;
  border-radius: 2px;
  transition: .3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #E5E7EB;
  padding: 12px 24px;
  gap: 4px;
}
.mobile-menu a {
  display: block;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: #374151;
  border-bottom: 1px solid #F3F4F6;
}
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #F8FAFF 0%, #EEF4FF 100%);
  padding: 72px 0 64px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  color: #1D4ED8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: #1D4ED8;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: .4; }
}
.hero-content h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.18;
  color: #111827;
  margin-bottom: 20px;
}
.text-blue { color: #1D4ED8; }
.hero-sub {
  font-size: 16px;
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 460px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.trust-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
}

/* Hero Image Grid */
.hero-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 200px;
  gap: 12px;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,.12);
}
.hero-tl { grid-column: 1; grid-row: 1; }
.hero-tr { grid-column: 2; grid-row: 1; }
.hero-b  { grid-column: 1 / -1; grid-row: 2; }

/* ===== CATEGORIES ===== */
.categories-section { background: #fff; }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.category-card {
  background: #F9FAFB;
  border: 1.5px solid #E5E7EB;
  border-radius: 14px;
  padding: 24px 16px 20px;
  text-align: center;
  cursor: pointer;
  transition: all .2s ease;
}
.category-card:hover {
  border-color: #BFDBFE;
  background: #EFF6FF;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(29,78,216,.1);
}
.cat-icon-wrap {
  width: 56px;
  height: 56px;
  background: #EFF6FF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.category-card h3 {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}
.category-card p {
  font-size: 11px;
  color: #6B7280;
}

/* ===== VALUE PROPS ===== */
.value-props {
  background: #F9FAFB;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  padding: 40px 0;
}
.value-props-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.value-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.value-icon.green { background: #DCFCE7; }
.value-icon.blue  { background: #DBEAFE; }
.value-icon.yellow{ background: #FEF3C7; }
.value-icon.pink  { background: #FCE7F3; }
.value-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}
.value-item p {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.5;
}

/* ===== PRODUCTS ===== */
.products-section { background: #fff; }
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  background: #F3F4F6;
  border: 1.5px solid transparent;
  transition: all .15s;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}
.filter-btn:hover { background: #E5E7EB; }
.filter-btn.active {
  background: #1D4ED8;
  color: #fff;
  border-color: #1D4ED8;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: #fff;
  border: 1.5px solid #E5E7EB;
  border-radius: 14px;
  overflow: hidden;
  transition: all .2s ease;
  position: relative;
}
.product-card:hover {
  border-color: #BFDBFE;
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
  transform: translateY(-3px);
}
.product-img-wrap {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: #F3F4F6;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
}
.badge-new     { background: #1D4ED8; color: #fff; }
.badge-best    { background: #DC2626; color: #fff; }
.badge-popular { background: #7C3AED; color: #fff; }

.product-body {
  padding: 14px 16px 16px;
}
.product-cat {
  font-size: 11px;
  color: #6B7280;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.product-name {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
  line-height: 1.4;
}
.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.spec-chip {
  padding: 3px 9px;
  background: #F3F4F6;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 500;
  color: #374151;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-size: 17px;
  font-weight: 800;
  color: #111827;
}
.product-price .rupee { font-size: 14px; font-weight: 600; }
.enquire-link {
  font-size: 13px;
  font-weight: 600;
  color: #1D4ED8;
  transition: color .15s;
}
.enquire-link:hover { color: #1E40AF; text-decoration: underline; }

.no-results {
  text-align: center;
  padding: 60px 0;
  color: #6B7280;
  font-size: 15px;
}

.cant-find {
  margin-top: 52px;
  background: #F9FAFB;
  border: 1.5px solid #E5E7EB;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}
.cant-find h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.cant-find p { color: #6B7280; margin-bottom: 20px; }

/* ===== CCTV SECTION ===== */
.cctv-section {
  background: #F8FAFF;
  padding: 80px 0;
}
.cctv-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.cctv-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #1D4ED8;
  margin-bottom: 16px;
}
.cctv-content h2 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 16px;
}
.cctv-content > p {
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 28px;
}
.cctv-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}
.cctv-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.cctv-feat-icon {
  width: 38px;
  height: 38px;
  background: #EFF6FF;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cctv-features strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 3px;
}
.cctv-features span {
  font-size: 13px;
  color: #6B7280;
}

/* CCTV Images Grid */
.cctv-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 170px;
  gap: 12px;
}
.cctv-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.cctv-main { grid-column: 1; grid-row: 1 / -1; }
.cctv-tr   { grid-column: 2; grid-row: 1; }
.cctv-br   { grid-column: 2; grid-row: 2; }

/* ===== SERVICES ===== */
.services-section { background: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: #F9FAFB;
  border: 1.5px solid #E5E7EB;
  border-radius: 14px;
  padding: 28px 22px;
  transition: all .2s ease;
}
.service-card:hover {
  border-color: #BFDBFE;
  background: #EFF6FF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29,78,216,.08);
}
.svc-icon {
  width: 48px;
  height: 48px;
  background: #EFF6FF;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 16px;
}
.svc-link {
  font-size: 13px;
  font-weight: 600;
  color: #1D4ED8;
  transition: color .15s;
}
.svc-link:hover { color: #1E40AF; }

/* ===== CONTACT ===== */
.contact-section { background: #F9FAFB; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 8px;
}
.contact-info > p {
  color: #6B7280;
  margin-bottom: 28px;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-icon-wrap {
  width: 36px;
  height: 36px;
  background: #EFF6FF;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 3px;
}
.contact-item span {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.5;
}
.store-photo img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
}

/* Contact Form */
.contact-form-box {
  background: #fff;
  border: 1.5px solid #E5E7EB;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,.05);
}
.contact-form-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: #374151; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  border: 1.5px solid #D1D5DB;
  border-radius: 8px;
  font-size: 14px;
  color: #111827;
  outline: none;
  transition: border-color .15s;
  background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #1D4ED8; box-shadow: 0 0 0 3px rgba(29,78,216,.08); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ===== FOOTER ===== */
.footer { background: #111827; color: #D1D5DB; padding: 60px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: #9CA3AF;
  margin-top: 14px;
  max-width: 260px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo-name { color: #fff !important; }
.footer-logo-tag  { color: #6B7280 !important; }

.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 34px;
  height: 34px;
  background: #1F2937;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #D1D5DB;
  transition: background .15s;
}
.social-btn:hover { background: #374151; }
.whatsapp-social:hover { background: #16A34A; }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: .03em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 13px;
  color: #9CA3AF;
  transition: color .15s;
}
.footer-col ul a:hover { color: #fff; }

.hours-table { display: flex; flex-direction: column; gap: 8px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #9CA3AF;
  padding-bottom: 8px;
  border-bottom: 1px solid #1F2937;
}
.hours-row span:last-child { font-weight: 600; color: #D1D5DB; }
.closed-row span:last-child { color: #EF4444 !important; }

.footer-brands { margin-top: 20px; }
.footer-brands p { font-size: 11px; color: #6B7280; margin-bottom: 8px; }
.brand-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.brand-chips span {
  padding: 3px 9px;
  background: #1F2937;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #9CA3AF;
}

.footer-bottom {
  border-top: 1px solid #1F2937;
  padding: 18px 24px;
  text-align: center;
  font-size: 12px;
  color: #6B7280;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 999;
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}

/* ===== FORM SUCCESS ===== */
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success .success-icon {
  width: 60px;
  height: 60px;
  background: #DCFCE7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.form-success h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: #111827; }
.form-success p  { color: #6B7280; font-size: 14px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .nav-links, .search-bar { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-images { order: -1; grid-template-rows: 180px 160px; }
  .hero-content h1 { font-size: 34px; }
  .cctv-inner { grid-template-columns: 1fr; }
  .cctv-images { order: -1; grid-template-rows: 160px 140px; }
  .contact-inner { grid-template-columns: 1fr; }
  .value-props-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .section { padding: 52px 0; }
  .section-header h2 { font-size: 26px; }
  .hero { padding: 44px 0; }
  .hero-content h1 { font-size: 28px; }
  .hero-images { grid-template-columns: 1fr 1fr; grid-template-rows: 140px 120px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .value-props-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cctv-content h2 { font-size: 26px; }
  .filter-tabs { gap: 6px; }
  .filter-btn { padding: 7px 13px; font-size: 12px; }
  .cant-find { padding: 28px 16px; }
}
