/* ==========AJIT ELECTRICALS - MASTER STYLESHEET Version: 2.0 | Kothrud, Pune========================= */
/* CSS Variables */
:root {
  --primary: #1565C0;
  --primary-dark: #0D47A1;
  --primary-light: #1976D2;
  --accent: #FF6F00;
  --accent-light: #FFA000;
  --dark: #0D1B2A;
  --dark2: #1A1A2E;
  --text: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  --bg-light: #F5F7FA;
  --bg-white: #FFFFFF;
  --border: #E0E0E0;
  --border-light: #F0F0F0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.20);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: all 0.3s ease;
  --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-heading: 'Segoe UI', system-ui, sans-serif;
}
/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--accent);
}
ul {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--dark2);
  line-height: 1.3;
  font-weight: 700;
}

/* ========== UTILITIES ========== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-sm {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-primary {
  color: var(--primary);
}

.text-accent {
  color: var(--accent);
}

.text-white {
  color: #fff;
}

.bg-primary {
  background: var(--primary);
}

.bg-accent {
  background: var(--accent);
}

.bg-dark {
  background: var(--dark);
}

.bg-light {
  background: var(--bg-light);
}

.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.align-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-1 {
  gap: 8px;
}

.gap-2 {
  gap: 16px;
}

.gap-3 {
  gap: 24px;
}

.gap-4 {
  gap: 32px;
}

.mt-1 {
  margin-top: 8px;
}

.mt-2 {
  margin-top: 16px;
}

.mt-3 {
  margin-top: 24px;
}

.mt-4 {
  margin-top: 32px;
}

.mb-1 {
  margin-bottom: 8px;
}

.mb-2 {
  margin-bottom: 16px;
}

.mb-3 {
  margin-bottom: 24px;
}

.mb-4 {
  margin-bottom: 32px;
}

.py-2 {
  padding: 16px 0;
}

.py-3 {
  padding: 24px 0;
}

.py-4 {
  padding: 32px 0;
}

.py-5 {
  padding: 48px 0;
}

.py-6 {
  padding: 64px 0;
}

.py-7 {
  padding: 80px 0;
}

.py-8 {
  padding: 96px 0;
}

.w-100 {
  width: 100%;
}

.hidden {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.rounded {
  border-radius: var(--radius-md);
}

.shadow {
  box-shadow: var(--shadow-md);
}

.overflow-hidden {
  overflow: hidden;
}

.position-relative {
  position: relative;
}

.img-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* ========== GRID SYSTEM ========== */
.grid {
  display: grid;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.grid-6 {
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

/* ========== SECTION STYLES ========== */
.section {
  padding: 80px 0;
}

.section-sm {
  padding: 56px 0;
}

.section-lg {
  padding: 112px 0;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 48px;
}

.section-tag {
  display: inline-block;
  background: rgba(21, 101, 192, 0.1);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.divider {
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 4px;
  margin: 16px auto;
}

.divider-left {
  margin: 16px 0;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-lg {
  padding: 15px 36px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(21, 101, 192, 0.35);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-accent:hover {
  background: #E65100;
  border-color: #E65100;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 111, 0, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

.btn-white:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ========== TOP BAR ========== */
.topbar {
  background: var(--dark2);
  color: #ccc;
  padding: 8px 0;
  font-size: 0.82rem;
}

.topbar a {
  color: #ccc;
}

.topbar a:hover {
  color: var(--accent-light);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-item svg {
  opacity: 0.7;
  flex-shrink: 0;
}

/* ========== HEADER / NAVIGATION ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 72px;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 52px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.1;
}

.logo-tagline {
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 24px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark2);
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}

.nav-item:hover .nav-link svg {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 100;
  padding: 8px 0;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 0.87rem;
  color: var(--text);
  font-weight: 500;
}

.dropdown a:hover {
  background: var(--bg-light);
  color: var(--primary);
  padding-left: 26px;
}

.dropdown a::before {
  content: '⚡';
  font-size: 0.75rem;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 8px;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark2);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 71, 161, 0.92) 0%, rgba(13, 27, 42, 0.75) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 111, 0, 0.2);
  border: 1px solid rgba(255, 111, 0, 0.5);
  color: #FFCC02;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.2;
}

.hero h1 span {
  color: var(--accent-light);
}

.hero p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-light);
  display: block;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-cards {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 1;
  display: flex;
  gap: 16px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  color: #fff;
  text-align: center;
  min-width: 110px;
}

.hero-card-icon {
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.hero-card-label {
  font-size: 0.78rem;
  opacity: 0.85;
}

/* ========== MARQUEE / TICKER ========== */
.ticker-wrap {
  background: var(--accent);
  padding: 10px 0;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}

.ticker-inner:hover {
  animation-play-state: paused;
}

.ticker-item {
  padding: 0 40px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ticker-item::after {
  content: '⚡';
  opacity: 0.7;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ========== STATS BAR ========== */
.stats-bar {
  background: var(--primary-dark);
  padding: 32px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  text-align: center;
  color: #fff;
  padding: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item:last-child {
  border: none;
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent-light);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 6px;
}

.stat-sublabel {
  font-size: 0.75rem;
  opacity: 0.6;
}

/* ========== PRODUCT CATEGORIES ========== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.product-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--bg-light);
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.08);
}

.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
}

.product-card-body {
  padding: 18px;
}

.product-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark2);
}

.product-card-desc {
  font-size: 0.83rem;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.5;
}

.product-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-card-brands {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.product-card-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-card-link:hover {
  color: var(--accent);
}

/* ========== FEATURED PRODUCTS ========== */
.featured-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 32px;
}

.featured-product.reverse {
  direction: rtl;
}

.featured-product.reverse>* {
  direction: ltr;
}

.featured-product-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 300px;
}

.featured-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-product-tag {
  display: inline-block;
  background: rgba(255, 111, 0, 0.1);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.featured-product h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.featured-product p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text);
}

.feature-item::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: rgba(21, 101, 192, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ========== BRANDS SECTION ========== */
.brands-section {
  background: var(--bg-light);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: center;
}

.brand-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  aspect-ratio: 1.6;
}

.brand-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.brand-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-light);
  text-align: center;
}

.brand-card:hover .brand-name {
  color: var(--primary);
}

/* ========== WHY CHOOSE US ========== */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-us-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.why-us-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.why-us-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.why-us-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #fff;
}

.why-us-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.why-us-desc {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--dark));
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: #FFD700;
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.testimonial-role {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ========== BLOG CARDS ========== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--bg-light);
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

.blog-card-body {
  padding: 22px;
}

.blog-card-category {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(21, 101, 192, 0.08);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.blog-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-title a {
  color: var(--dark2);
}

.blog-card-title a:hover {
  color: var(--primary);
}

.blog-card-excerpt {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
}

.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #1976D2 100%);
  padding: 60px 0;
  text-align: center;
  /*position: relative;*/
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M50 50c0-5.5 4.5-10 10-10s10 4.5 10 10-4.5 10-10 10S50 55.5 50 50z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
  font-size: 0.84rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.45);
}

.breadcrumb .current {
  color: var(--accent-light);
  font-weight: 600;
}

/* ========== FAQ SECTION ========== */
.faq-accordion,
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

/* Critical button reset so FAQ works as full-width clickable row */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark2);
  background: #fff;
  user-select: none;
  gap: 16px;
  font-family: inherit;
}

.faq-question:hover {
  color: var(--primary);
}

/* Auto-generated + icon if no .faq-icon child present */
.faq-question::after {
  content: '+';
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: rgba(21, 101, 192, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 300;
  transition: var(--transition);
  line-height: 1;
}

.faq-item.active .faq-question::after {
  background: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}

/* Manual icon (for pages that include .faq-icon span) */
.faq-icon {
  width: 28px;
  height: 28px;
  background: rgba(21, 101, 192, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 300;
}

.faq-item.active .faq-icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p,
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
  margin-top: -1px;
}

.faq-item.active .faq-answer {
  max-height: 600px;
}

.faq-item.active {
  border-color: var(--primary);
}

/* ========== CONTACT SECTION ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  height: 100%;
}

.contact-info-title {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 8px;
}

.contact-info-subtitle {
  opacity: 0.8;
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.contact-detail-info label {
  display: block;
  font-size: 0.75rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-detail-info a,
.contact-detail-info p {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}

.contact-detail-info a:hover {
  color: var(--accent-light);
}

.contact-social {
  display: flex;
  gap: 10px;
  margin-top: 32px;
}

.contact-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  transition: var(--transition);
}

.contact-social a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}

.contact-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-title {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 0.87rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--dark2);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg-white);
  transition: var(--transition);
  font-family: var(--font-main);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
}

.form-control::placeholder {
  color: var(--text-muted);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  cursor: pointer;
}

/* ========== MAP SECTION ========== */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
}

/* ========== GALLERY ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 71, 161, 0.6);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.gallery-overlay span {
  color: #fff;
  font-size: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, #FF8F00 100%);
  padding: 72px 0;
  text-align: center;
  /*position: relative;*/
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #fff;
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--dark2);
  color: #aaa;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 44px;
  width: auto;
  filter: brightness(1.2);
}

.footer-logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}

.footer-about {
  font-size: 0.85rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 111, 0, 0.4);
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 4px;
}

.footer-links a::before {
  content: '›';
  color: var(--accent);
  font-size: 1rem;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.84rem;
}

.footer-contact-item svg {
  opacity: 0.6;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: #aaa;
}

.footer-contact-item a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: gap;
  gap: 12px;
  font-size: 0.82rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #888;
}

.footer-bottom-links a:hover {
  color: var(--accent-light);
}

/* ========== FLOATING ELEMENTS ========== */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  color: #fff;
  font-size: 1.6rem;
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 92px;
  z-index: 9999;
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  border: none;
  font-size: 1rem;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* ========== PRODUCT DETAIL PAGE ========== */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.product-detail-img {
  position: sticky;
  top: 100px;
}

.product-detail-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.product-detail-content h1 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.product-detail-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.product-stars {
  color: #FFD700;
  font-size: 1rem;
  letter-spacing: 2px;
}

.product-review-count {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.product-meta-list {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}

.product-meta-item {
  display: flex;
  gap: 16px;
  font-size: 0.9rem;
  padding: 10px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
}

.product-meta-key {
  font-weight: 600;
  color: var(--dark2);
  min-width: 140px;
}

.product-meta-val {
  color: var(--text-light);
}

.product-tabs {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.product-tab {
  padding: 12px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  color: var(--text-light);
}

.product-tab.active {
  color: var(--primary);
  border-color: var(--primary);
}

.product-tab:hover {
  color: var(--primary);
}

/* ========== DEALER CARDS ========== */
.dealer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.dealer-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.dealer-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--primary);
}

.dealer-logo {
  height: 60px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  margin: 0 auto 10px;
}

.dealer-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.dealer-type {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ========== BLOG DETAIL ========== */
.blog-detail {
  max-width: 820px;
  margin: 0 auto;
}

.blog-detail-header {
  margin-bottom: 32px;
}

.blog-detail-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.blog-detail-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-detail-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.3;
  margin-bottom: 16px;
}

.blog-detail-excerpt {
  font-size: 1.05rem;
  color: var(--text-light);
  border-left: 4px solid var(--accent);
  padding-left: 20px;
  font-style: italic;
  margin-bottom: 32px;
}

.blog-detail-img {
  border-radius: var(--radius-lg);
  margin-bottom: 36px;
  overflow: hidden;
}

.blog-detail-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.blog-detail-content {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text);
}

.blog-detail-content h2 {
  font-size: 1.5rem;
  margin: 36px 0 16px;
  color: var(--dark2);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}

.blog-detail-content h3 {
  font-size: 1.2rem;
  margin: 28px 0 12px;
  color: var(--dark2);
}

.blog-detail-content p {
  margin-bottom: 18px;
}

.blog-detail-content ul,
.blog-detail-content ol {
  margin: 16px 0 24px 24px;
}

.blog-detail-content li {
  margin-bottom: 8px;
}

.blog-detail-content strong {
  color: var(--dark2);
}

.blog-detail-content .info-box {
  background: rgba(21, 101, 192, 0.06);
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
}

.blog-detail-content .warning-box {
  background: rgba(255, 111, 0, 0.06);
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
}

.blog-detail-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  margin-bottom: 24px;
}

.sidebar-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-light);
}

.related-post {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}

.related-post:last-child {
  border: none;
  padding-bottom: 0;
}

.related-post-img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-light);
}

.related-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-post-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark2);
  line-height: 1.4;
}

.related-post-title a:hover {
  color: var(--primary);
}

.related-post-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

/* ========== ABOUT PAGE ========== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.team-img {
  height: 240px;
  overflow: hidden;
  background: var(--bg-light);
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.team-card:hover .team-img img {
  transform: scale(1.05);
}

.team-body {
  padding: 22px;
}

.team-name {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.83rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}

.team-bio {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.6;
}

.milestone-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.milestone-card {
  text-align: center;
  padding: 32px 20px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.milestone-year {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

.milestone-label {
  font-size: 0.87rem;
  color: var(--text-light);
  margin-top: 6px;
}

/* ========== ABOUT STORY SECTION ========== */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img-stack {
  position: relative;
  height: 480px;
}

.about-img-main {
  width: 82%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.about-img-accent {
  position: absolute;
  bottom: -24px;
  right: 0;
  width: 48%;
  height: 56%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 6px solid #fff;
  box-shadow: var(--shadow-lg);
}

.about-years-badge {
  position: absolute;
  top: 24px;
  right: 4%;
  background: var(--accent);
  color: #fff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.about-years-badge .num {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.about-years-badge .label {
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
}

.value-list {
  display: grid;
  gap: 12px;
}

.value-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
}

.value-icon {
  width: 38px;
  height: 38px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.value-content h4 {
  font-size: 0.9rem;
  margin-bottom: 3px;
}

.value-content p {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ========== LOCAL SEO PAGE ========== */
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.area-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.area-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.area-card h4 {
  font-size: 0.9rem;
  color: var(--dark2);
  margin-bottom: 4px;
}

.area-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.service-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary);
}

.service-feature-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-feature-text h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.service-feature-text p {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ========== BADGES & TAGS ========== */
.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.tag-primary {
  background: rgba(21, 101, 192, 0.1);
  color: var(--primary);
}

.tag-accent {
  background: rgba(255, 111, 0, 0.1);
  color: var(--accent);
}

.tag-success {
  background: rgba(46, 125, 50, 0.1);
  color: #2E7D32;
}

/* ========== NOTIFICATION BANNER ========== */
.notification-banner {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 0.85rem;
  font-weight: 600;
}

.notification-banner a {
  color: #fff;
  text-decoration: underline;
}

/* ========== TABLE STYLES ========== */
.styled-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.styled-table th {
  background: var(--primary);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}

.styled-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text);
}

.styled-table tr:hover td {
  background: var(--bg-light);
}

.styled-table tr:last-child td {
  border: none;
}

/* ========== LOADING ANIMATION ========== */
.lazy-img {
  opacity: 0;
  transition: opacity 0.4s;
}

.lazy-img.loaded {
  opacity: 1;
}

/* ========== SCHEMA INVISIBLE ========== */
script[type="application/ld+json"] {
  display: none;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.animate-fade-up {
  animation: fadeInUp 0.6s ease both;
}

.animate-fade {
  animation: fadeIn 0.6s ease both;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {

  .grid-4,
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-6,
  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dealer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-grid,
  .testimonials-grid,
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-story {
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-detail-sidebar {
    position: static;
  }

  .featured-product {
    grid-template-columns: 1fr;
  }

  .featured-product.reverse {
    direction: ltr;
  }

  .about-img-stack {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 72px);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    overflow-y: auto;
    padding: 16px 0;
    transition: left 0.3s ease;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    gap: 0;
  }

  .nav-menu.open {
    left: 0;
  }

  .nav-link {
    padding: 14px 24px;
    border-bottom: 1px solid var(--border-light);
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 8px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }

  .nav-item.active-mobile .dropdown {
    max-height: 600px;
  }

  .header-cta .btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5,
  .grid-6 {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .products-grid,
  .brands-grid,
  .dealer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid,
  .why-us-grid,
  .testimonials-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .milestone-grid,
  .area-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: 460px;
  }

  .hero-cards {
    display: none;
  }

  .hero-stats {
    gap: 20px;
  }

  .featured-product {
    padding: 24px;
  }

  .about-story {
    grid-template-columns: 1fr;
  }

  .about-img-stack {
    height: 280px;
    margin-bottom: 48px;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-img {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .section,
  .section-sm {
    padding: 56px 0;
  }

  .service-features-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {

  .grid-2,
  .grid-3,
  .grid-4,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .brands-grid,
  .dealer-grid,
  .milestone-grid,
  .area-grid,
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .header-phone {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .about-img-stack {
    height: 240px;
  }

  .contact-info-card {
    padding: 28px 20px;
  }

  .contact-form-card {
    padding: 28px 20px;
  }
}

/* ========== PRINT STYLES ========== */
@media print {

  .topbar,
  .site-header,
  .whatsapp-btn,
  .scroll-top,
  .footer {
    display: none;
  }

  body {
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    padding: 20px 0;
  }
}

/* ── Product Detail Page ── */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0d3b7a 100%);
  color: #fff;
  padding: 5rem 0 3rem;
}

.page-hero h1 {
  font-size: 2.4rem;
  margin: 0.5rem 0 1rem;
}

.page-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 680px;
  margin-bottom: 1.5rem;
}

.page-hero .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  background: transparent;
  padding: 0.65rem 1.4rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}

.page-hero .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
}

.product-detail-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.feature-cards {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--primary);
}

.feature-card p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.brand-tag {
  background: var(--primary);
  color: #fff;
  border-radius: 100px;
  padding: 0.4rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, #0d3b7a 0%, var(--primary) 100%);
  color: #fff;
}

.cta-content {
  text-align: center;
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.cta-content p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 680px;
  margin: 0 auto 1.5rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  background: transparent;
  padding: 0.65rem 1.4rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ── Blog Layout ── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 900px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
}

.blog-detail-content h2 {
  color: var(--primary);
  margin: 2rem 0 0.75rem;
  font-size: 1.5rem;
}

.blog-detail-content h3 {
  color: #333;
  margin: 1.5rem 0 0.5rem;
  font-size: 1.2rem;
}

.blog-detail-content p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.blog-detail-content ul,
.blog-detail-content ol {
  padding-left: 1.5rem;
  color: #444;
  line-height: 1.9;
  margin-bottom: 1rem;
}

.blog-detail-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.blog-detail-content table th {
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1rem;
  text-align: left;
}

.blog-detail-content table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border);
}

.blog-detail-content table tr:nth-child(even) td {
  background: #f5f7fa;
}

.blog-detail-content .tip-box {
  background: #e3f2fd;
  border-left: 4px solid var(--primary);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  color: #1a237e;
}

.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.sidebar-card h3 {
  font-size: 1rem;
  color: var(--primary);
  margin: 0 0 1rem;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.5rem;
}

.sidebar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-card ul li {
  padding: 0.4rem 0;
  border-bottom: 1px solid #eee;
}

.sidebar-card ul li:last-child {
  border: none;
}

.sidebar-card ul li a {
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
}

.sidebar-card ul li a:hover {
  color: var(--primary);
}

.blog-meta {
  color: #666;
  font-size: 0.9rem;
  margin: 0.5rem 0 1.5rem;
}

.blog-meta span {
  margin-right: 1rem;
}

/* ── Products Overview Grid ── */
.products-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.product-overview-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}

.product-overview-card:hover {
  box-shadow: 0 8px 24px rgba(21, 101, 192, 0.15);
  transform: translateY(-3px);
}

.product-overview-card .prod-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.product-overview-card h3 {
  font-size: 1.05rem;
  color: var(--primary);
  margin: 0 0 0.4rem;
}

.product-overview-card p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

/* ── Gallery Grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* ── Dealers Grid ── */
.dealers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.dealer-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
}

.dealer-card h3 {
  font-size: 1rem;
  color: var(--primary);
  margin: 0.5rem 0 0.25rem;
}

.dealer-card p {
  font-size: 0.82rem;
  color: #666;
  margin: 0;
}

/* ── Blog Listing Cards ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-list-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.blog-list-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.blog-list-card-body {
  padding: 1.25rem;
}

.blog-list-card-body .tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-list-card-body h3 {
  font-size: 1.05rem;
  margin: 0.4rem 0 0.6rem;
}

.blog-list-card-body h3 a {
  text-decoration: none;
  color: #1a1a2e;
}

.blog-list-card-body h3 a:hover {
  color: var(--primary);
}

.blog-list-card-body p {
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 0.75rem;
}

.blog-list-card-body .read-more {
  font-size: 0.88rem;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

/* ── Local SEO page ── */
.local-area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.local-area-tag {
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ── 404 Page ── */
.error-page {
  text-align: center;
  padding: 6rem 1rem;
}

.error-page h1 {
  font-size: 6rem;
  color: var(--primary);
  margin: 0;
  line-height: 1;
}

.error-page h2 {
  font-size: 1.8rem;
  margin: 0.5rem 0 1rem;
}

.error-page p {
  color: #666;
  max-width: 480px;
  margin: 0 auto 2rem;
}

/* Blog tag in hero */
.blog-tag-hero {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

/* ── Product Image Gallery ── */
.prod-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 640px) {
  .prod-gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .prod-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Dealer Card with Logo ── */
.dealer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem 1rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.dealer-card:hover {
  box-shadow: 0 6px 20px rgba(21, 101, 192, 0.12);
  transform: translateY(-3px);
}

.dealer-card h3 {
  font-size: 0.95rem;
  color: var(--primary);
  margin: 0.4rem 0 0.2rem;
  text-align: center;
}

.dealer-card p {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
  text-align: center;
}
/* =====MOBILE NAVIGATION FIX================= */
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
    width: 100%;
  }
  body.menu-open {
    overflow: hidden;
  }
  .topbar {
    display: none;
  }
  .site-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 999999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  }
  .header-inner {
    height: 72px;
    padding: 0 16px;
    position: relative;
    z-index: 999999;
  }
  .logo-img {
    height: 42px;
    max-width: 180px;
    object-fit: contain;
  }
  .header-phone,
  .header-cta .btn {
    display: none;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 6px;
    z-index: 1000001;
    position: relative;
  }
  .hamburger span {
    width: 28px;
    height: 3px;
    background: #111;
    border-radius: 10px;
    transition: 0.3s ease;
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav-menu {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 72px);
    background: #fff;
    overflow-y: auto;
    overflow-x: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transition: 0.35s ease;
    z-index: 999998;
    padding: 0;
    gap: 0;
  }
  .nav-menu.open {
    left: 0;
  }
  .nav-item {
    width: 100%;
    border-bottom: 1px solid #eee;
  }
  .nav-link {
    width: 100%;
    padding: 16px 22px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #111;
    background: #fff;
  }
  .nav-link::after {
    display: none;
  }
  .nav-link svg {
    width: 15px;
    height: 15px;
    transition: 0.3s ease;
  }
  .nav-item.active-mobile .nav-link svg {
    transform: rotate(180deg);
  }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f7f7f7;
    width: 100%;
    min-width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.35s ease;
    border-radius: 0;
  }
  .nav-item.active-mobile .dropdown {
    max-height: 800px;
  }
  .dropdown a {
    padding: 13px 30px;
    font-size: 14px;
    border-bottom: 1px solid #eaeaea;
    color: #444;
    background: #f7f7f7;
  }
  .dropdown a:last-child {
    border-bottom: none;
  }
  .dropdown a:hover {
    background: #efefef;
    padding-left: 35px;
  }
  .scroll-top {
    right: 85px;
    bottom: 20px;
  }
  .whatsapp-btn {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 16px;
  }
  .container,
  .container-sm {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Fix Get Quote & Call Now buttons */
.page-hero .btn,
.page-hero a.btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    z-index: 10;
    pointer-events: auto !important;
}

/* Get Quote Button */
.page-hero .btn-accent {
    background: #ff6f00;
    color: #fff !important;
    border: 2px solid #ff6f00;
}

.page-hero .btn-accent:hover {
    background: #e65100;
    border-color: #e65100;
}

/* Call Now Button */
.page-hero .btn-outline-light {
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,0.8);
}

.page-hero .btn-outline-light:hover {
    background: rgba(255,255,255,0.15);
}

/* Fix overlay blocking click */
.page-hero::before {
    pointer-events: none;
}

/* Button spacing */
.page-hero .btn + .btn {
    margin-left: 15px;
}

/* Mobile */
@media (max-width:768px){

    .page-hero .btn,
    .page-hero a.btn{
        width:100%;
        margin-left:0 !important;
        margin-top:12px;
    }
}