/* ============================================================
   PLUGHERE — Main Stylesheet
   Theme: Orange + Dark Navy | Font: Poppins
   ============================================================ */

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --orange:     #f97316;
  --orange-dk:  #ea6d0a;
  --orange-lt:  #fde8d4;
  --navy:       #0a1628;
  --navy-2:     #0f2044;
  --navy-3:     #1a3060;
  --slate:      #1e3a5f;
  --white:      #ffffff;
  --off-white:  #f8fafc;
  --text:       #e2e8f0;
  --muted:      #94a3b8;
  --glass:      rgba(255,255,255,0.06);
  --glass-b:    rgba(255,255,255,0.12);
  --shadow-o:   rgba(249,115,22,0.35);
  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --transition: 0.3s ease;
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--navy);
  color: var(--text);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── PAGE LOADER ────────────────────────────────────────────── */
#page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px; transition: opacity 0.5s, visibility 0.5s;
}
#page-loader.hide { opacity: 0; visibility: hidden; }
.loader-logo {
  font-size: 2rem; font-weight: 800;
  color: var(--white); letter-spacing: -1px;
}
.loader-logo span { color: var(--orange); }
.loader-bar {
  width: 220px; height: 4px;
  background: var(--glass-b); border-radius: 2px; overflow: hidden;
}
.loader-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--orange), #fb923c);
  border-radius: 2px;
  animation: loadFill 1.6s ease-in-out forwards;
}
@keyframes loadFill { to { width: 100%; } }

/* ── LOGO IMAGE STYLES ──────────────────────────────────────── */
/* Navbar logo */
.nav-brand {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-img {
  width: 38px; height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(249,115,22,0.4));
  transition: filter 0.3s, transform 0.3s;
}
.nav-brand:hover .nav-logo-img {
  filter: drop-shadow(0 0 10px rgba(249,115,22,0.7));
  transform: rotate(-5deg) scale(1.05);
}
.nav-logo-text {
  font-size: 1.5rem; font-weight: 800; color: var(--white);
  letter-spacing: -0.5px;
}
.nav-logo-text span { color: var(--orange); }

/* Page loader logo */
.loader-logo-img {
  width: 72px; height: 72px;
  object-fit: contain;
  animation: logoPulse 1.2s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 16px rgba(249,115,22,0.5));
}
@keyframes logoPulse {
  from { transform: scale(0.95); filter: drop-shadow(0 0 8px rgba(249,115,22,0.4)); }
  to   { transform: scale(1.05); filter: drop-shadow(0 0 20px rgba(249,115,22,0.8)); }
}

/* Footer logo */
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: 12px;
}
.footer-logo span { color: var(--orange); }
.footer-logo-img {
  width: 36px; height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(249,115,22,0.35));
}


.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  background: rgba(10,22,40,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(249,115,22,0.15);
  transition: background var(--transition);
}
.navbar.scrolled { background: rgba(10,22,40,0.98); }
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
/* nav-brand span handled by .nav-logo-text span above */
.nav-links {
  display: flex; gap: 28px; align-items: center;
}
.nav-links a {
  font-size: 0.87rem; font-weight: 500; color: var(--muted);
  transition: color var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--orange);
  transform: scaleX(0); transition: transform var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--orange); color: #000;
  padding: 9px 22px; border-radius: 8px;
  font-size: 0.87rem; font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none; cursor: pointer; font-family: 'Poppins', sans-serif;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--shadow-o); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
}
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.mobile-menu {
  display: none; position: fixed; top: 70px; left: 0; right: 0;
  background: var(--navy-2); padding: 24px 5%;
  flex-direction: column; gap: 18px;
  border-bottom: 1px solid rgba(249,115,22,0.2);
  z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1rem; font-weight: 500; color: var(--text); }

/* ── SECTION COMMONS ────────────────────────────────────────── */
section { padding: 96px 5%; }
.section-tag {
  display: inline-block; color: var(--orange);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -0.8px; color: var(--white);
}
.section-title span { color: var(--orange); }
.section-sub {
  color: var(--muted); line-height: 1.75;
  max-width: 540px; margin-top: 12px;
}

/* Fade-in on scroll */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif; font-size: 0.92rem; font-weight: 600;
  cursor: pointer; border: none; transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-orange {
  background: var(--orange); color: #000;
}
.btn-orange:hover { box-shadow: 0 8px 30px var(--shadow-o); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 5% 80px;
  position: relative; overflow: hidden;
  /* ── Background Image ── */
  background-image: url('assets/generated/hero-ev-station.dim_1400x700.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Parallax scroll effect */
}
/* Animated particle canvas — sits ON TOP of bg image */
#hero-canvas {
  position: absolute; inset: 0; z-index: 0;
}
/* Dark overlay so text stays readable over the image */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(249,115,22,0.12) 0%, transparent 65%),
    linear-gradient(90deg,  rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.55) 60%, rgba(10,22,40,0.3) 100%),
    linear-gradient(180deg, rgba(10,22,40,0.3) 0%, rgba(10,22,40,0.97) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,0.15); border: 1px solid rgba(249,115,22,0.3);
  border-radius: 100px; padding: 6px 16px;
  font-size: 0.78rem; font-weight: 600; color: var(--orange);
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}
.badge-pulse { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.5);opacity:0.5} }

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -1.5px; color: var(--white);
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero h1 .hl { color: var(--orange); }
.hero-sub {
  font-size: 1.05rem; color: var(--muted);
  line-height: 1.75; margin-top: 18px; max-width: 520px;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-tagline {
  margin-top: 8px; font-size: 1.1rem; color: var(--orange);
  font-weight: 600; animation: fadeUp 0.7s 0.25s ease both;
}
.hero-actions {
  margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}
.hero-stats {
  margin-top: 60px; display: flex; gap: 40px; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.4s ease both;
}
.hero-stat-num {
  font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1;
}
.hero-stat-num span { color: var(--orange); }
.hero-stat-lbl { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }

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

/* ── ABOUT ───────────────────────────────────────────────────── */
.about { background: var(--navy-2); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-visual {
  background: linear-gradient(135deg, var(--navy-3), var(--slate));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(249,115,22,0.15);
  padding: 40px; position: relative; overflow: hidden;
}
.about-visual::before {
  content: '⚡'; font-size: 10rem; position: absolute;
  top: -20px; right: -20px; opacity: 0.04;
}
.counter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.counter-card {
  background: var(--glass); border: 1px solid var(--glass-b);
  border-radius: var(--radius-md); padding: 24px; text-align: center;
  backdrop-filter: blur(8px);
  transition: transform var(--transition), border-color var(--transition);
}
.counter-card:hover { transform: translateY(-4px); border-color: rgba(249,115,22,0.4); }
.counter-num {
  font-size: 2.2rem; font-weight: 800; color: var(--orange); line-height: 1;
}
.counter-lbl { font-size: 0.78rem; color: var(--muted); margin-top: 6px; font-weight: 500; }
.about-text p { color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.about-text ul { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.about-text ul li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; color: var(--text);
}
.about-text ul li::before {
  content: '✓'; color: var(--orange); font-weight: 800;
  background: rgba(249,115,22,0.12); width: 24px; height: 24px;
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ── PRODUCTS ────────────────────────────────────────────────── */
.products { background: var(--navy); }
.products-header { text-align: center; margin-bottom: 52px; }
.products-header .section-sub { margin: 12px auto 0; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.product-card {
  background: linear-gradient(160deg, var(--navy-2), var(--navy-3));
  border: 1px solid rgba(249,115,22,0.12);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(249,115,22,0.4);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 40px rgba(249,115,22,0.06);
}
.product-img {
  height: 180px; background: linear-gradient(135deg, #0f2044, #1a3060);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; position: relative; overflow: hidden;
}
.product-img::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(249,115,22,0.1) 0%, transparent 70%);
}
.product-kw-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--orange); color: #000;
  font-size: 0.72rem; font-weight: 800;
  padding: 4px 10px; border-radius: 6px;
}
.product-body { padding: 22px; }
.product-name { font-weight: 700; font-size: 1rem; color: var(--white); margin-bottom: 6px; }
.product-type { font-size: 0.78rem; color: var(--orange); font-weight: 600; margin-bottom: 14px; }
.product-specs { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.product-specs li {
  font-size: 0.82rem; color: var(--muted);
  display: flex; align-items: center; gap: 8px;
}
.product-specs li::before { content: '•'; color: var(--orange); font-size: 1rem; }
.product-actions { display: flex; gap: 8px; }

/* ── WHY CHOOSE US ───────────────────────────────────────────── */
.why { background: var(--navy-2); }
.why-header { text-align: center; margin-bottom: 52px; }
.why-header .section-sub { margin: 12px auto 0; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.why-card {
  background: var(--glass); border: 1px solid var(--glass-b);
  border-radius: var(--radius-md); padding: 28px;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
  backdrop-filter: blur(10px);
}
.why-card:hover {
  transform: translateY(-6px); border-color: rgba(249,115,22,0.35);
  background: rgba(249,115,22,0.06);
}
.why-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(249,115,22,0.12); border: 1px solid rgba(249,115,22,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 18px;
}
.why-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.why-card p { font-size: 0.83rem; color: var(--muted); line-height: 1.65; }

/* ── SOLUTIONS ───────────────────────────────────────────────── */
.solutions { background: var(--navy); }
.solutions-header { text-align: center; margin-bottom: 52px; }
.solutions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.solution-card {
  background: linear-gradient(145deg, var(--navy-2), var(--navy-3));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md); padding: 28px;
  transition: transform var(--transition), border-color var(--transition);
}
.solution-card:hover { transform: translateY(-6px); border-color: rgba(249,115,22,0.3); }
.sol-icon { font-size: 2rem; margin-bottom: 14px; }
.solution-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.solution-card p { font-size: 0.83rem; color: var(--muted); line-height: 1.65; }

/* ── INDUSTRIES ──────────────────────────────────────────────── */
.industries { background: var(--navy-2); padding: 72px 5%; }
.industries-header { text-align: center; margin-bottom: 40px; }
.industries-track-wrap {
  overflow: hidden; position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
}
.industries-track {
  display: flex; gap: 20px;
  animation: marquee 24s linear infinite;
  width: max-content;
}
.industries-track:hover { animation-play-state: paused; }
.ind-pill {
  display: flex; align-items: center; gap: 12px;
  background: var(--glass); border: 1px solid var(--glass-b);
  border-radius: var(--radius-sm); padding: 14px 22px;
  white-space: nowrap; backdrop-filter: blur(8px);
  transition: border-color var(--transition), background var(--transition);
  cursor: default;
}
.ind-pill:hover { border-color: rgba(249,115,22,0.4); background: rgba(249,115,22,0.08); }
.ind-pill span { font-size: 1.4rem; }
.ind-pill p { font-size: 0.88rem; font-weight: 600; color: var(--text); }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── INSTALLED CHARGERS ──────────────────────────────────────── */
.installed { background: var(--navy); }
.installed-header { text-align: center; margin-bottom: 16px; }
.filter-btns {
  display: flex; gap: 10px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px; border-radius: 100px;
  font-family: 'Poppins', sans-serif; font-size: 0.83rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
  border: 1.5px solid rgba(255,255,255,0.15); background: transparent; color: var(--muted);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--orange); color: #000; border-color: var(--orange);
}
.installed-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 22px; }
.inst-card {
  background: linear-gradient(150deg, var(--navy-2), var(--navy-3));
  border: 1px solid rgba(249,115,22,0.12);
  border-radius: var(--radius-md); overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.inst-card:hover { transform: translateY(-6px); border-color: rgba(249,115,22,0.35); }
.inst-img {
  height: 150px; background: linear-gradient(135deg, #0f2044, #1a3060);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; position: relative;
}
.status-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(34,197,94,0.15); color: #4ade80;
  border: 1px solid rgba(34,197,94,0.3);
  font-size: 0.68rem; font-weight: 700; border-radius: 6px; padding: 3px 10px;
  display: flex; align-items: center; gap: 5px;
}
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; animation: pulse 2s infinite; }
.inst-body { padding: 18px; }
.inst-city { font-weight: 700; font-size: 1rem; color: var(--white); margin-bottom: 4px; }
.inst-type { font-size: 0.82rem; color: var(--orange); font-weight: 600; margin-bottom: 10px; }
.inst-kw { font-size: 0.8rem; color: var(--muted); }

/* ── TEAM ────────────────────────────────────────────────────── */
.team { background: var(--navy-2); }
.team-header { text-align: center; margin-bottom: 52px; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; }
.team-card {
  background: var(--glass); border: 1px solid var(--glass-b);
  border-radius: var(--radius-lg); padding: 28px 20px; text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.team-card:hover {
  transform: translateY(-10px);
  border-color: rgba(249,115,22,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.team-avatar {
  width: 90px; height: 90px; border-radius: 50%;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--orange), #fb923c);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 800; color: #000;
  border: 3px solid rgba(249,115,22,0.3);
  position: relative; overflow: hidden;
}
.team-name { font-weight: 700; font-size: 0.95rem; color: var(--white); margin-bottom: 4px; }
.team-role { font-size: 0.78rem; color: var(--orange); font-weight: 600; margin-bottom: 14px; }
.team-socials { display: flex; gap: 8px; justify-content: center; }
.social-icon {
  width: 30px; height: 30px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: var(--muted);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.social-icon:hover { background: var(--orange); color: #000; border-color: var(--orange); }

/* ── REVIEWS ─────────────────────────────────────────────────── */
.reviews { background: var(--navy); }
.reviews-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.review-form-wrap {
  background: var(--glass); border: 1px solid var(--glass-b);
  border-radius: var(--radius-lg); padding: 32px;
  backdrop-filter: blur(12px);
}
.review-form-wrap h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 24px; }
.star-select { display: flex; gap: 8px; margin-bottom: 18px; }
.star-select span {
  font-size: 1.6rem; cursor: pointer; color: rgba(255,255,255,0.2);
  transition: color var(--transition), transform 0.15s;
}
.star-select span.active,
.star-select span:hover { color: var(--orange); transform: scale(1.2); }

/* Form fields */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--muted); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 11px 14px;
  background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm); color: var(--text);
  font-family: 'Poppins', sans-serif; font-size: 0.88rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange); background: rgba(249,115,22,0.05);
}
.form-group textarea { resize: vertical; min-height: 90px; }

/* Message banners */
.msg-banner {
  padding: 12px 16px; border-radius: var(--radius-sm);
  font-size: 0.85rem; font-weight: 600; margin-top: 14px;
  display: none;
}
.msg-success { background: rgba(34,197,94,0.15); color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }
.msg-error   { background: rgba(239,68,68,0.15);  color: #f87171; border: 1px solid rgba(239,68,68,0.3); }

/* Review slider */
.review-slider-wrap { position: relative; overflow: hidden; }
.review-slider-wrap h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.review-slider { display: flex; gap: 18px; transition: transform 0.5s ease; }
.review-card {
  min-width: 100%; background: linear-gradient(145deg, var(--navy-2), var(--navy-3));
  border: 1px solid rgba(249,115,22,0.12); border-radius: var(--radius-md); padding: 22px;
}
.review-stars { color: var(--orange); font-size: 1rem; margin-bottom: 10px; }
.review-msg { font-size: 0.87rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #fb923c);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.88rem; color: #000;
}
.review-name { font-weight: 700; font-size: 0.88rem; color: var(--white); }
.review-city { font-size: 0.75rem; color: var(--muted); }
.slider-dots { display: flex; gap: 8px; margin-top: 18px; justify-content: center; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2); cursor: pointer;
  transition: background var(--transition), width var(--transition);
}
.dot.active { background: var(--orange); width: 24px; border-radius: 4px; }

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact { background: var(--navy-2); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 800; color: var(--white); margin-bottom: 16px; letter-spacing: -0.5px; }
.contact-info p { color: var(--muted); line-height: 1.75; margin-bottom: 28px; }
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.cd-item { display: flex; align-items: flex-start; gap: 14px; }
.cd-icon { font-size: 1.2rem; width: 38px; height: 38px; background: rgba(249,115,22,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cd-text strong { display: block; font-size: 0.8rem; font-weight: 700; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
.cd-text span { font-size: 0.9rem; color: var(--text); }
.contact-form-box {
  background: var(--glass); border: 1px solid var(--glass-b);
  border-radius: var(--radius-lg); padding: 36px;
  backdrop-filter: blur(12px);
}
.contact-form-box h3 { font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.contact-form-box p { font-size: 0.85rem; color: var(--muted); margin-bottom: 24px; }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
  background: #060f1c; border-top: 1px solid rgba(249,115,22,0.15);
  padding: 60px 5% 28px;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand {}
.footer-logo { font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.footer-logo span { color: var(--orange); }
.footer-brand p { font-size: 0.83rem; color: var(--muted); line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-size: 0.82rem; font-weight: 700; color: var(--white); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.83rem; color: var(--muted); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05); flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.78rem; color: var(--muted); }
.footer-socials { display: flex; gap: 10px; }

/* ── MODAL ───────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(6,15,28,0.85); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--navy-2); border: 1px solid rgba(249,115,22,0.2);
  border-radius: var(--radius-lg); padding: 36px;
  max-width: 480px; width: 100%; position: relative;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn { from{opacity:0;transform:scale(0.92)} to{opacity:1;transform:scale(1)} }
.modal-close {
  position: absolute; top: 16px; right: 18px;
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 1.4rem; transition: color var(--transition);
}
.modal-close:hover { color: var(--white); }
.modal-product-name { color: var(--orange); font-size: 0.85rem; font-weight: 600; margin-bottom: 4px; }
.modal-title { font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: 24px; }

/* ── BACK TO TOP ─────────────────────────────────────────────── */
#back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--orange); color: #000; border: none;
  font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: 0 8px 24px var(--shadow-o);
}
#back-to-top.show { opacity: 1; pointer-events: all; }
#back-to-top:hover { transform: translateY(-4px); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-inner, .reviews-inner, .contact-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-visual { display: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  section { padding: 72px 5%; }
  .hero { padding: 90px 5% 64px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { gap: 24px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .products-grid, .team-grid, .why-grid { grid-template-columns: 1fr; }
}

/* ── WhatsApp Floating Button ───────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 80px;        /* back-to-top button ke upar */
  right: 28px;
  z-index: 500;
  width: 52px; height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform 0.25s, box-shadow 0.25s;
  animation: waBounce 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37,211,102,0.65);
  animation: none;
}
@keyframes waBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
