/* ===== VARIABLES ===== */
:root {
  --bg: #050a15;
  --bg-card: rgba(10, 20, 40, 0.7);
  --bg-card-solid: #0a1525;
  --bg-footer: #030711;
  --cyan: #00b4d8;
  --cyan-light: #00d4ff;
  --cyan-dark: #0077b6;
  --text: #e0e7ef;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  --border: rgba(0, 180, 216, 0.15);
  --border-subtle: rgba(55, 65, 81, 0.4);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --shadow-cyan: 0 0 20px rgba(0,180,216,0.3), 0 0 60px rgba(0,180,216,0.1);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', 'Poppins', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul { list-style: none; }
input, textarea { font: inherit; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0a0f1e; }
::-webkit-scrollbar-thumb { background: #1a3a5c; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--cyan); }

/* ===== UTILITIES ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.gradient-text {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark), var(--cyan-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,180,216,0.3), transparent);
  max-width: 80%; margin: 0 auto 80px;
}
.section-header { margin-bottom: 48px; }
.section-header-center { text-align: center; }
.section-tag { color: var(--cyan); font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 12px; }
.section-title { font-family: var(--font-heading); font-size: clamp(28px,4vw,40px); font-weight: 700; color: #fff; margin-bottom: 16px; }
.section-desc { color: var(--text-muted); font-size: 17px; max-width: 640px; }
.section-header-center .section-desc { margin: 0 auto; }
.bg-orb { position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none; }
.bg-orb-right { top: 0; right: 0; width: 384px; height: 384px; background: rgba(0,180,216,0.03); }
.bg-orb-left { bottom: 0; left: 0; width: 320px; height: 320px; background: rgba(0,119,182,0.05); }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: var(--cyan); color: #fff;
  border-radius: var(--radius-xs); font-weight: 600; font-size: 15px;
  transition: background 0.3s, box-shadow 0.3s;
}
.btn-primary:hover { background: #00a0c0; box-shadow: 0 8px 24px rgba(0,180,216,0.25); }
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: transparent; color: var(--cyan-light);
  border: 1px solid rgba(0,180,216,0.3); border-radius: var(--radius-xs);
  font-weight: 600; font-size: 15px; transition: all 0.3s;
}
.btn-outline:hover { background: rgba(0,180,216,0.1); border-color: rgba(0,180,216,0.5); }
.btn-outline-sm {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 32px; background: var(--bg-card-solid);
  border: 1px solid rgba(0,180,216,0.25); color: var(--cyan-light);
  border-radius: var(--radius-xs); font-size: 14px; font-weight: 500;
  transition: all 0.3s;
}
.btn-outline-sm:hover { background: rgba(0,180,216,0.1); border-color: rgba(0,180,216,0.4); }
.btn-full { width: 100%; justify-content: center; }

/* ===== ANIMATIONS ===== */
.anim-up, .anim-left, .anim-right { opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease; }
.anim-up { transform: translateY(40px); }
.anim-left { transform: translateX(-50px); }
.anim-right { transform: translateX(50px); }
.anim-up.visible, .anim-left.visible, .anim-right.visible { opacity: 1; transform: translate(0); }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes floatDelay { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes scrollBrands { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.float-anim { animation: float 5s ease-in-out infinite; }
.float-anim-delay { animation: floatDelay 6s ease-in-out infinite; }
.pulse-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan-light); animation: pulse 2s infinite; }

/* ===== TOP BAR ===== */
.top-bar { background: linear-gradient(90deg, #001a2e, #002a42); padding: 8px 0; font-size: 13px; position: relative; z-index: 60; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left { display: flex; align-items: center; gap: 16px; color: #d1d5db; }
.top-phone { display: flex; align-items: center; gap: 6px; font-weight: 500; transition: color 0.3s; }
.top-phone:hover { color: var(--cyan-light); }
.top-sep { color: #6b7280; }
.top-location { display: flex; align-items: center; gap: 6px; }
.top-bar-right { display: flex; align-items: center; gap: 8px; color: #9ca3af; }
.top-since { font-size: 13px; }
.btn-whatsapp-sm {
  padding: 4px 12px; background: rgba(22,163,74,0.2); color: #4ade80;
  border: 1px solid rgba(22,163,74,0.3); border-radius: 999px;
  font-size: 12px; font-weight: 500; transition: background 0.3s;
}
.btn-whatsapp-sm:hover { background: rgba(22,163,74,0.3); }

/* ===== HEADER ===== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(5,10,21,0.8); backdrop-filter: blur(12px);
  transition: all 0.5s;
}
.header.scrolled {
  background: rgba(5,10,21,0.95); backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0,180,216,0.05);
  border-bottom: 1px solid rgba(0,180,216,0.1);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 24px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 40px; height: 40px; border-radius: var(--radius-xs);
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  display: flex; align-items: center; justify-content: center;
  transition: box-shadow 0.3s;
}
.logo:hover .logo-icon { box-shadow: 0 4px 16px rgba(0,180,216,0.3); }
.logo-text { display: flex; flex-direction: column; }
.logo-title { font-family: var(--font-heading); font-size: 17px; font-weight: 700; color: #fff; line-height: 1.2; }
.logo-sub { font-size: 10px; color: var(--cyan); letter-spacing: 2px; text-transform: uppercase; }
.nav-desktop { display: flex; gap: 4px; }
.nav-desktop a {
  padding: 8px 16px; font-size: 14px; font-weight: 500; color: #d1d5db;
  position: relative; transition: color 0.3s;
}
.nav-desktop a::after {
  content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px;
  background: var(--cyan-light); transition: all 0.3s; transform: translateX(-50%);
}
.nav-desktop a:hover { color: var(--cyan-light); }
.nav-desktop a:hover::after { width: 60%; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.btn-call-header {
  display: flex; align-items: center; gap: 8px; padding: 10px 20px;
  background: rgba(0,180,216,0.1); border: 1px solid rgba(0,180,216,0.3);
  color: var(--cyan-light); border-radius: var(--radius-xs);
  font-size: 14px; font-weight: 500; transition: all 0.3s;
}
.btn-call-header:hover { background: rgba(0,180,216,0.2); border-color: rgba(0,180,216,0.5); }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: #d1d5db; border-radius: 2px; transition: all 0.3s; }
.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.nav-mobile {
  display: none; flex-direction: column; gap: 4px; padding: 16px;
  border-top: 1px solid rgba(0,180,216,0.1);
  background: rgba(5,10,21,0.98); backdrop-filter: blur(20px);
}
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 12px 16px; color: #d1d5db; font-weight: 500; border-radius: var(--radius-xs); transition: all 0.3s; }
.nav-mobile a:hover { color: var(--cyan-light); background: rgba(0,180,216,0.05); }
.mobile-call-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 8px; padding: 12px; background: rgba(0,180,216,0.1);
  border: 1px solid rgba(0,180,216,0.3); color: var(--cyan-light);
  border-radius: var(--radius-xs); font-weight: 500;
}

/* ===== HERO ===== */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; padding: 80px 0 40px; }
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,180,216,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0,180,216,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-orb { position: absolute; border-radius: 50%; }
.hero-orb-1 { top: 80px; left: 40px; width: 288px; height: 288px; background: rgba(0,180,216,0.05); filter: blur(100px); animation: pulse 4s infinite; }
.hero-orb-2 { bottom: 80px; right: 40px; width: 384px; height: 384px; background: rgba(0,119,182,0.05); filter: blur(120px); animation: pulse 4s infinite 2s; }
.hero-inner { position: relative; z-index: 10; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; width: 100%; }
.hero-content { perspective: 1000px; }
.hero-slide { display: none; }
.hero-slide.active { display: block; animation: fadeSlideIn 0.7s ease-out; }
@keyframes fadeSlideIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 999px;
  background: rgba(0,180,216,0.1); border: 1px solid rgba(0,180,216,0.2);
  color: var(--cyan-light); font-size: 14px; font-weight: 500; margin-bottom: 24px;
}
.hero-title { font-family: var(--font-heading); font-size: clamp(36px,5vw,60px); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 20px; }
.hero-subtitle { font-size: clamp(18px,2.5vw,24px); color: rgba(0,212,255,0.8); font-weight: 500; margin-bottom: 12px; }
.hero-desc { color: var(--text-muted); font-size: 17px; line-height: 1.7; margin-bottom: 32px; max-width: 540px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 24px; }
.hero-trust span { display: flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: 14px; }

.hero-image-wrap { position: relative; perspective: 1000px; }
.hero-img-container {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(0,180,216,0.2);
  box-shadow: 0 20px 60px rgba(0,180,216,0.1);
}
.hero-img { width: 100%; height: 480px; object-fit: cover; display: none; position: absolute; top: 0; left: 0; }
.hero-img.active { display: block; position: relative; animation: fadeImg 0.7s ease; }
@keyframes fadeImg { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
.hero-img-overlay-bottom { position: absolute; bottom: 0; left: 0; right: 0; height: 50%; background: linear-gradient(to top, var(--bg), transparent); }
.hero-img-overlay-left { position: absolute; inset: 0; background: linear-gradient(to right, rgba(5,10,21,0.3), transparent); }
.hero-float-card {
  position: absolute; z-index: 5;
  background: var(--bg-card); backdrop-filter: blur(12px);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 12px 20px; display: flex; align-items: center; gap: 12px;
}
.float-card-bottom { bottom: -16px; left: -16px; animation: float 4s ease-in-out infinite; }
.float-card-top { top: -16px; right: -16px; flex-direction: column; text-align: center; animation: floatDelay 5s ease-in-out infinite; }
.float-dot-wrap { width: 40px; height: 40px; border-radius: 50%; background: rgba(34,197,94,0.2); display: flex; align-items: center; justify-content: center; }
.float-dot { width: 12px; height: 12px; border-radius: 50%; background: #4ade80; animation: pulse 2s infinite; }
.float-title { color: #fff; font-weight: 600; font-size: 14px; }
.float-sub { color: var(--text-muted); font-size: 12px; }
.float-big { color: var(--cyan-light); font-weight: 700; font-size: 28px; }
.hero-dots { display: flex; justify-content: center; gap: 12px; margin-top: 48px; position: relative; z-index: 10; }
.hero-dot { width: 8px; height: 8px; border-radius: 999px; background: #4b5563; transition: all 0.5s; }
.hero-dot.active { width: 40px; background: var(--cyan-light); }

/* ===== BRANDS ===== */
.brands { padding: 48px 0; border-top: 1px solid rgba(0,180,216,0.1); border-bottom: 1px solid rgba(0,180,216,0.1); background: rgba(5,10,21,0.8); }
.brands-label { text-align: center; font-size: 13px; color: #6b7280; text-transform: uppercase; letter-spacing: 3px; font-weight: 500; margin-bottom: 24px; }
.brands-track-wrap { position: relative; overflow: hidden; }
.brands-fade-left, .brands-fade-right { position: absolute; top: 0; bottom: 0; width: 128px; z-index: 5; pointer-events: none; }
.brands-fade-left { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.brands-fade-right { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.brands-track { display: flex; width: max-content; animation: scrollBrands 30s linear infinite; }
.brands-track:hover { animation-play-state: paused; }
.brand-item {
  flex-shrink: 0; margin: 0 32px;
  padding: 12px 24px; border-radius: var(--radius-xs);
  border: 1px solid var(--border-subtle); background: rgba(10,15,30,0.5);
  transition: all 0.3s;
}
.brand-item:hover { border-color: rgba(0,180,216,0.3); background: rgba(10,21,37,1); }
.brand-item span { font-size: 17px; font-weight: 700; letter-spacing: 2px; opacity: 0.5; transition: opacity 0.3s; }
.brand-item:hover span { opacity: 1; }

/* ===== PRODUCTS ===== */
.products { padding: 80px 0; position: relative; }
.product-tabs { display: flex; gap: 12px; margin-bottom: 40px; }
.product-tab {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-xs);
  font-size: 14px; font-weight: 600; transition: all 0.3s;
  background: var(--bg-card-solid); color: var(--text-muted);
  border: 1px solid var(--border-subtle);
}
.product-tab:hover { border-color: rgba(0,180,216,0.3); color: var(--cyan-light); }
.product-tab.active { background: var(--cyan); color: #fff; border-color: var(--cyan); box-shadow: 0 4px 16px rgba(0,180,216,0.2); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card {
  background: var(--bg-card); backdrop-filter: blur(12px);
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: all 0.5s;
}
.product-card:hover { border-color: rgba(0,180,216,0.4); box-shadow: 0 12px 40px rgba(0,180,216,0.1); transform: translateY(-8px); }
.product-card-top { position: relative; padding: 20px 20px 12px; }
.product-discount { position: absolute; top: 12px; right: 12px; padding: 3px 10px; border-radius: 999px; background: rgba(239,68,68,0.2); color: #f87171; border: 1px solid rgba(239,68,68,0.3); font-size: 12px; font-weight: 700; }
.product-icon-area {
  height: 144px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #0a1525, #0d1a30);
  border: 1px solid rgba(55,65,81,0.3);
}
.product-icon-area svg { opacity: 0.4; transition: opacity 0.5s; }
.product-card:hover .product-icon-area svg { opacity: 0.7; }
.product-card-body { padding: 0 20px 20px; }
.product-series { font-size: 11px; color: var(--cyan); text-transform: uppercase; letter-spacing: 2px; font-weight: 500; margin-bottom: 4px; }
.product-name { color: #fff; font-weight: 600; font-size: 14px; line-height: 1.4; margin-bottom: 4px; min-height: 40px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-model { color: #6b7280; font-size: 12px; margin-bottom: 12px; }
.product-price { display: flex; align-items: flex-end; gap: 8px; margin-bottom: 16px; }
.product-price-sale { color: var(--cyan-light); font-size: 20px; font-weight: 700; }
.product-price-mrp { color: #6b7280; font-size: 14px; text-decoration: line-through; }
.product-features { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.product-feat { font-size: 10px; padding: 2px 8px; border-radius: 999px; background: rgba(0,180,216,0.08); color: var(--text-muted); border: 1px solid var(--border-subtle); }
.product-actions { display: flex; gap: 8px; }
.product-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px; border-radius: var(--radius-xs); font-size: 12px; font-weight: 600; transition: all 0.3s;
}
.product-btn-details { background: rgba(0,180,216,0.1); border: 1px solid rgba(0,180,216,0.25); color: var(--cyan-light); }
.product-btn-details:hover { background: rgba(0,180,216,0.2); }
.product-btn-enquire { background: var(--cyan); color: #fff; }
.product-btn-enquire:hover { background: #00a0c0; }
.product-more { text-align: center; margin-top: 40px; }

/* ===== SERVICES ===== */
.services { padding: 80px 0; position: relative; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  padding: 28px; border-radius: var(--radius); position: relative; overflow: hidden;
  background: var(--bg-card); backdrop-filter: blur(12px); border: 1px solid var(--border);
  transition: all 0.5s;
}
.service-card:hover { border-color: rgba(0,180,216,0.4); box-shadow: 0 12px 40px rgba(0,180,216,0.1); transform: translateY(-8px); }
.service-card-glow {
  position: absolute; top: -80px; right: -80px; width: 160px; height: 160px;
  border-radius: 50%; background: transparent; filter: blur(60px);
  transition: background 0.7s;
}
.service-card:hover .service-card-glow { background: rgba(0,180,216,0.05); }
.service-icon {
  width: 56px; height: 56px; border-radius: var(--radius-sm);
  background: rgba(0,180,216,0.1); border: 1px solid rgba(0,180,216,0.2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  transition: all 0.5s;
}
.service-card:hover .service-icon { background: rgba(0,180,216,0.2); border-color: rgba(0,180,216,0.4); }
.service-card h3 { color: #fff; font-family: var(--font-heading); font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.service-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
.service-link { display: inline-flex; align-items: center; gap: 6px; color: var(--cyan-light); font-size: 14px; font-weight: 500; transition: gap 0.3s; }
.service-card:hover .service-link { gap: 12px; }
.services-cta {
  margin-top: 64px; padding: 32px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.services-cta h3 { color: #fff; font-family: var(--font-heading); font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.services-cta > div p { color: var(--text-muted); font-size: 15px; }

/* ===== ABOUT ===== */
.about { padding: 80px 0; position: relative; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-images { position: relative; }
.about-main-img { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(0,180,216,0.15); }
.about-main-img img { width: 100%; height: 400px; object-fit: cover; }
.about-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--bg), rgba(5,10,21,0.2), transparent); }
.about-float-card {
  position: absolute; bottom: -24px; right: -16px;
  background: var(--bg-card); backdrop-filter: blur(12px); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; display: flex; align-items: center; gap: 12px;
}
.about-float-icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(0,180,216,0.15); display: flex; align-items: center; justify-content: center; }
.about-small-img {
  position: absolute; top: -24px; left: -16px; width: 144px; height: 144px;
  border-radius: var(--radius-sm); overflow: hidden; border: 2px solid var(--bg);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.about-small-img img { width: 100%; height: 100%; object-fit: cover; }
.about-content .section-tag, .about-content .section-title { text-align: left; }
.about-text { color: var(--text-muted); font-size: 15px; line-height: 1.7; margin-bottom: 16px; }
.about-text strong { color: #fff; }
.about-highlights { margin: 32px 0; display: flex; flex-direction: column; gap: 12px; }
.about-highlights li { display: flex; align-items: flex-start; gap: 12px; color: #d1d5db; font-size: 14px; }
.about-highlights li svg { flex-shrink: 0; margin-top: 2px; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 80px; }
.stat-card { padding: 24px; text-align: center; transition: border-color 0.3s; }
.stat-card:hover { border-color: rgba(0,180,216,0.3); }
.stat-value { font-size: clamp(28px,3.5vw,40px); font-weight: 700; margin-bottom: 4px; }
.stat-label { color: var(--text-muted); font-size: 14px; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 80px 0; position: relative; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  padding: 28px; border-radius: var(--radius);
  background: var(--bg-card); backdrop-filter: blur(12px); border: 1px solid var(--border);
  transition: all 0.5s; height: 100%;
}
.testimonial-card:hover { border-color: rgba(0,180,216,0.3); transform: translateY(-4px); }
.testimonial-quote { color: rgba(0,180,216,0.2); margin-bottom: 16px; }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testimonial-text { color: #d1d5db; font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border-subtle); }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(0,180,216,0.15); display: flex; align-items: center; justify-content: center; }
.testimonial-name { color: #fff; font-weight: 600; font-size: 14px; }
.testimonial-company { color: #6b7280; font-size: 12px; }
.google-rating { display: flex; justify-content: center; margin-top: 48px; }
.rating-card { display: flex; align-items: center; gap: 16px; padding: 16px 32px; }
.stars { display: flex; gap: 4px; }
.rating-value { color: #fff; font-weight: 700; }
.rating-label { color: var(--text-muted); font-size: 12px; }

/* ===== SEO CONTENT ===== */
.seo-content { padding: 80px 0; position: relative; }
.seo-sections { display: flex; flex-direction: column; gap: 48px; }
.seo-card { padding: 32px 40px; display: flex; align-items: flex-start; gap: 20px; }
.seo-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm); flex-shrink: 0;
  background: rgba(0,180,216,0.1); border: 1px solid rgba(0,180,216,0.2);
  display: flex; align-items: center; justify-content: center;
}
.seo-card h3 { color: #fff; font-family: var(--font-heading); font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.seo-card p { color: var(--text-muted); line-height: 1.7; }
.city-section { margin-top: 64px; }
.city-title { font-family: var(--font-heading); font-size: 24px; font-weight: 700; color: #fff; text-align: center; margin-bottom: 24px; }
.city-desc { text-align: center; color: var(--text-muted); max-width: 720px; margin: 0 auto 40px; }
.city-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 16px; }
.city-card { padding: 16px; text-align: center; transition: all 0.3s; cursor: default; }
.city-card:hover { border-color: rgba(0,180,216,0.4); transform: translateY(-4px); }
.city-card svg { margin: 0 auto 8px; opacity: 0.6; transition: opacity 0.3s; }
.city-card:hover svg { opacity: 1; }
.city-name { color: #fff; font-size: 14px; font-weight: 600; }
.city-sub { color: #6b7280; font-size: 10px; margin-top: 2px; }
.seo-keywords { margin-top: 48px; padding: 24px; border-radius: var(--radius-sm); background: rgba(10,15,30,0.5); border: 1px solid var(--border-subtle); }
.seo-keywords p { color: #6b7280; font-size: 12px; line-height: 2; }
.seo-keywords strong { color: var(--text-muted); }

/* ===== CONTACT ===== */
.contact { padding: 80px 0; position: relative; }
.contact-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 32px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card { padding: 20px; display: flex; align-items: flex-start; gap: 16px; transition: border-color 0.3s; }
.contact-card:hover { border-color: rgba(0,180,216,0.3); }
.contact-card-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm); flex-shrink: 0;
  background: rgba(0,180,216,0.1); border: 1px solid rgba(0,180,216,0.2);
  display: flex; align-items: center; justify-content: center;
}
.contact-card-label { color: #6b7280; font-size: 11px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 2px; }
.contact-card a { color: #fff; font-weight: 600; font-size: 14px; transition: color 0.3s; }
.contact-card a:hover { color: var(--cyan-light); }
.contact-card-value { color: #fff; font-weight: 600; font-size: 14px; }
.contact-card-sub { color: #6b7280; font-size: 12px; margin-top: 2px; }
.btn-whatsapp-full {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  width: 100%; padding: 16px;
  background: rgba(22,163,74,0.15); border: 1px solid rgba(22,163,74,0.3);
  color: #4ade80; border-radius: var(--radius-sm); font-weight: 600; transition: background 0.3s;
}
.btn-whatsapp-full:hover { background: rgba(22,163,74,0.25); }
.contact-form-card { padding: 32px; }
.contact-form-card h3 { color: #fff; font-family: var(--font-heading); font-size: 20px; font-weight: 700; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 0; }
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 16px;
  background: var(--bg-card-solid); border: 1px solid var(--border-subtle);
  color: #fff; border-radius: var(--radius-xs); font-size: 14px;
  transition: border-color 0.3s; outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #4b5563; }
.form-group input:focus, .form-group textarea:focus { border-color: rgba(0,180,216,0.5); }
.form-group textarea { resize: none; margin-bottom: 16px; }
.map-wrap { margin-top: 48px; overflow: hidden; }
.map-wrap iframe { display: block; }

/* ===== FOOTER ===== */
.footer { background: var(--bg-footer); border-top: 1px solid var(--border-subtle); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; padding: 64px 0; }
.footer-brand .logo { margin-bottom: 20px; }
.footer-desc { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-contacts { display: flex; flex-direction: column; gap: 10px; }
.footer-contacts a, .footer-contacts span { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 14px; transition: color 0.3s; }
.footer-contacts a:hover { color: var(--cyan-light); }
.footer-links h4, .footer-areas h4 { color: #fff; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a { color: var(--text-muted); font-size: 14px; display: flex; align-items: center; gap: 6px; transition: color 0.3s; }
.footer-links li a::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: rgba(0,180,216,0.5); }
.footer-links li a:hover { color: var(--cyan-light); }
.footer-city-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.footer-city-tags span {
  padding: 6px 12px; font-size: 12px; border-radius: var(--radius-xs);
  background: var(--bg-card-solid); color: var(--text-muted);
  border: 1px solid var(--border-subtle); transition: all 0.3s; cursor: default;
}
.footer-city-tags span:hover { border-color: rgba(0,180,216,0.3); color: var(--cyan-light); }
.footer-areas ul { display: flex; flex-direction: column; gap: 8px; }
.footer-areas li a { color: var(--text-muted); font-size: 14px; display: flex; align-items: center; gap: 6px; transition: color 0.3s; }
.footer-areas li a::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: rgba(0,180,216,0.5); }
.footer-areas li a:hover { color: var(--cyan-light); }
.mt-4 { margin-top: 16px; }
.footer-bottom { border-top: 1px solid var(--border-subtle); }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; }
.footer-bottom p { color: #6b7280; font-size: 12px; }
.footer-bottom-right { display: flex; align-items: center; gap: 16px; }
.footer-bottom-right span { color: #4b5563; font-size: 12px; }
.btn-scroll-top {
  width: 36px; height: 36px; border-radius: var(--radius-xs);
  background: rgba(0,180,216,0.1); border: 1px solid rgba(0,180,216,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan-light); transition: background 0.3s;
}
.btn-scroll-top:hover { background: rgba(0,180,216,0.2); }

/* ===== FIXED BUTTONS ===== */
.fixed-whatsapp {
  position: fixed; bottom: 24px; right: 24px; z-index: 100;
  width: 56px; height: 56px; border-radius: 50%;
  background: #22c55e; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(34,197,94,0.3); transition: all 0.3s;
}
.fixed-whatsapp:hover { background: #16a34a; transform: scale(1.1); }
.fixed-call {
  position: fixed; bottom: 24px; left: 24px; z-index: 100;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--cyan); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,180,216,0.3); transition: all 0.3s;
  display: none;
}
.fixed-call:hover { transform: scale(1.1); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-content { max-width: 500px; width: 100%; padding: 32px; position: relative; max-height: 90vh; overflow-y: auto; }
.modal-close { position: absolute; top: 16px; right: 16px; color: var(--text-muted); font-size: 28px; line-height: 1; transition: color 0.3s; }
.modal-close:hover { color: #fff; }
.modal-title { color: #fff; font-family: var(--font-heading); font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.modal-subtitle { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }
.modal-row { display: flex; justify-content: space-between; align-items: center; padding: 12px; border-radius: var(--radius-xs); background: var(--bg); border: 1px solid var(--border-subtle); margin-bottom: 12px; }
.modal-row-label { color: var(--text-muted); font-size: 14px; }
.modal-row-value { color: #fff; font-weight: 500; font-size: 14px; }
.modal-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.modal-feat { padding: 4px 12px; border-radius: 999px; border: 1px solid rgba(0,180,216,0.3); color: var(--cyan-light); font-size: 12px; }
.modal-price-box { display: flex; align-items: center; justify-content: space-between; padding: 16px; border-radius: var(--radius-xs); background: rgba(0,180,216,0.05); border: 1px solid rgba(0,180,216,0.2); margin-bottom: 16px; }
.modal-price-big { color: var(--cyan-light); font-size: 24px; font-weight: 700; }
.modal-price-mrp { color: #6b7280; font-size: 12px; text-decoration: line-through; }
.modal-save { padding: 4px 12px; border-radius: 999px; background: rgba(239,68,68,0.2); color: #f87171; border: 1px solid rgba(239,68,68,0.3); font-size: 14px; font-weight: 700; }

/* ===== TOAST ===== */
.toast {
  position: fixed; top: 24px; right: 24px; z-index: 300;
  padding: 16px 24px; border-radius: var(--radius-xs);
  background: var(--cyan); color: #fff; font-weight: 600; font-size: 14px;
  box-shadow: 0 8px 24px rgba(0,180,216,0.3);
  transform: translateX(120%); transition: transform 0.4s ease;
}
.toast.show { transform: translateX(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image-wrap { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { max-width: 500px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .city-grid { grid-template-columns: repeat(4, 1fr); }
  .nav-desktop { display: none; }
  .mobile-toggle { display: flex; }
  .btn-call-header { display: none; }
}
@media (max-width: 768px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: repeat(3, 1fr); }
  .services-cta { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .seo-card { flex-direction: column; padding: 24px; }
  .top-sep, .top-location, .top-since { display: none; }
  .product-tabs { flex-wrap: wrap; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
  .fixed-call { display: flex; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 32px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}


/* ===== ADDITIONS: Multi-phones, Directors, Social ===== */
.top-phone-alt { margin-left: 14px; opacity: .85; }
.top-phone-alt::before { content: "/"; margin-right: 10px; color: rgba(255,255,255,0.25); }
a.top-location { cursor: pointer; transition: color .2s; }
a.top-location:hover { color: #00d4ff; }

/* Contact: multi-number card */
.contact-numbers { display: flex; flex-wrap: wrap; gap: 6px 14px; margin-top: 4px; }
.contact-numbers a {
  color: #00d4ff;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  position: relative;
  transition: color .2s;
}
.contact-numbers a:hover { color: #fff; }
.contact-numbers a:not(:last-child)::after {
  content: "·";
  margin-left: 14px;
  color: rgba(255,255,255,0.25);
  font-weight: 400;
}

/* Contact: Follow Us social card */
.contact-card-social .social-icons {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.social-link {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(0, 180, 216, 0.08);
  border: 1px solid rgba(0, 180, 216, 0.25);
  color: #00d4ff;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 180, 216, 0.25);
}
.social-link.social-ig:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  color: #fff;
}
.social-link.social-fb:hover { background: #1877f2; border-color: #1877f2; color: #fff; }
.social-link.social-yt:hover { background: #ff0000; border-color: #ff0000; color: #fff; }

/* Directors block in About */
.directors-block {
  margin: 22px 0 26px;
  padding: 18px 20px;
  border-radius: 14px;
}
.directors-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #00d4ff;
  margin-bottom: 12px;
}
.directors-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.director-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(0, 180, 216, 0.06);
  border: 1px solid rgba(0, 180, 216, 0.18);
  border-radius: 12px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.director-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 180, 216, 0.45);
  background: rgba(0, 180, 216, 0.10);
}
.director-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0,180,216,0.25), rgba(0,180,216,0.05));
  border: 1px solid rgba(0, 180, 216, 0.35);
  flex-shrink: 0;
}
.director-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: #e0e7ef;
  line-height: 1.2;
}
.director-role {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 2px;
  letter-spacing: 0.4px;
}

/* Footer: Directors + Socials */
.footer-directors {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 180, 216, 0.12);
}
.footer-directors-label {
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 4px;
}
.footer-directors-names {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  color: #e0e7ef;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.footer-social-link {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #9ca3af;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.footer-social-link:hover {
  transform: translateY(-3px);
  color: #fff;
  border-color: transparent;
}
.footer-social-link.footer-social-ig:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.footer-social-link.footer-social-fb:hover { background: #1877f2; }
.footer-social-link.footer-social-yt:hover { background: #ff0000; }
.footer-social-link.footer-social-wa:hover { background: #25d366; }

@media (max-width: 640px) {
  .top-phone-alt { display: none; }
  .contact-numbers a { font-size: 14px; }
  .directors-row { grid-template-columns: 1fr; }
}
