/* =============================================
   SHINE SOLAR ENERGY - COMPLETE STYLESHEET
   Colors: Navy #0B2341 | Gold #F4B400
============================================= */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #0B2341;
  --primary-dark: #071829;
  --primary-light: #143C6A;
  --gold: #F4B400;
  --gold-light: #FFD95A;
  --gold-dark: #D4A000;
  --green: #F4B400;
  --black: #0A0A0A;
  --black-soft: #161616;
  --white: #ffffff;
  --light: #f8fafc;
  --gray: #64748b;
  --border: #e2e8f0;
  --shadow: 0 4px 20px rgba(0,0,0,.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all .3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: var(--light);
  color: #1e293b;
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4,
.hero-content h1, .hero-v2-h1, .section-title h2, .stat-num, .card h3 {
  font-family: 'Manrope', 'Inter', 'Segoe UI', sans-serif;
  letter-spacing: -0.01em;
}

.container { width: 90%; max-width: 1200px; margin: auto; }

/* =============================================
   TOP BAR
============================================= */
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,.75);
  font-size: 13px;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-inner span { display: flex; align-items: center; gap: 6px; }
.topbar-inner i { color: var(--gold); }
.topbar-right { margin-left: auto; display: flex; align-items: center; gap: 15px; }
.topbar-admin {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: flex; align-items: center; gap: 5px;
}
.topbar-admin:hover { color: var(--gold-light); }

/* =============================================
   HEADER / NAVBAR
============================================= */
header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 14px rgba(0,0,0,.06);
  transition: var(--transition);
}
header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.12); }

.navbar {
  min-height: 68px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo img { height: 112px; width: auto; display: block; }

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  align-items: center;
}
.nav-links li { flex-shrink: 0; }
.nav-links a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
  font-size: 18px;
  padding: 8px 4px;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.nav-right { display: flex; gap: 10px; align-items: center; }

.call-btn {
  text-decoration: none;
  border: 2px solid var(--primary);
  padding: 9px 18px;
  border-radius: 30px;
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  transition: var(--transition);
  white-space: nowrap;
  display: flex; align-items: center; gap: 6px;
}
.call-btn:hover { background: var(--primary); color: #fff; }

.whatsapp-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 18px;
  transition: var(--transition);
}
.whatsapp-btn:hover { transform: scale(1.1); background: #1abe5a; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 25px; height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: var(--transition);
}

/* =============================================
   HERO
============================================= */
.hero {
  min-height: 90vh;
  background: linear-gradient(135deg, rgba(11,35,65,.88) 0%, rgba(7,24,41,.75) 100%),
              url("https://images.unsplash.com/photo-1509391366360-2e959784a276?fm=jpg&q=80&w=1600&auto=format&fit=crop") center/cover no-repeat;
  color: white;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(transparent, var(--light));
  pointer-events: none;
}

.hero-content { max-width: 720px; position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: fit-content;
  max-width: 100%;
  gap: 8px;
  background: rgba(10,10,10,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(244,180,0,.6);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: .05em;
  white-space: nowrap;
}

.hero-content h1 {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-content h1 span { color: var(--gold); }

.hero-content p {
  font-size: 19px;
  margin-bottom: 35px;
  color: rgba(255,255,255,.85);
  max-width: 560px;
}

.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

.hero-highlights {
  margin-top: 45px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero-highlights span {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(5px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .label { font-size: 13px; color: rgba(255,255,255,.75); margin-top: 5px; }

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 14px 28px;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(244,180,0,.4);
  position: relative;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 16px; height: 16px;
  background: var(--primary);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(244,180,0,.5); }

.btn-secondary { background: white; color: var(--primary); border: 2px solid var(--primary); }
.btn-secondary:hover { background: var(--primary); color: white; }

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--primary); }

/* =============================================
   SECTIONS
============================================= */
.section { padding: 90px 0; }
.section-alt { background: white; }

.section-title { text-align: center; margin-bottom: 60px; }
.section-title .label {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title h2 {
  color: var(--primary);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
}
.section-title h2::after {
  content: "";
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: block;
  margin: 18px auto 0;
}
.section-title p {
  color: var(--gray);
  max-width: 600px;
  margin: 15px auto 0;
  font-size: 17px;
}

/* =============================================
   CARDS
============================================= */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.card {
  background: white;
  padding: 35px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.card i {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 18px;
}
.card img { width: 100%; margin-bottom: 15px; }
.card h3 { margin-bottom: 10px; color: var(--primary); font-size: 19px; }
.card p { color: var(--gray); font-size: 14px; }

/* Homepage service cards with photo + icon badge */
.service-card { padding-top: 0; }
.service-card--no-photo { padding-top: 35px; }
.card-photo-wrap {
  position: relative;
  margin: 0 -28px 0;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.card-photo-wrap img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  margin: 0;
  border-radius: 0;
  transition: transform .5s ease;
}
.service-card:hover .card-photo-wrap img { transform: scale(1.08); }
.card-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0) 55%, rgba(10,10,10,.35) 100%);
}
.card-icon-badge {
  width: 64px; height: 64px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  margin: -32px auto 18px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 22px rgba(244,180,0,.5);
}
.card-icon-badge i { font-size: 24px; color: var(--primary); margin: 0; }
.card-icon-badge--standalone { margin: 0 auto 18px; }

@media (max-width: 640px) {
  .cards {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .card {
    padding: 28px 22px;
  }
  .card-photo-wrap {
    margin: 0 -22px 0;
  }
  .card-photo-wrap img { height: 190px; }
}

/* Compact card variant (short, icon-badge style) */
.card--sm { padding: 26px 22px 22px; }
.card--sm .card-icon-badge--standalone { width: 54px; height: 54px; margin: 0 auto 12px; }
.card--sm .card-icon-badge--standalone i { font-size: 20px; }
.card--sm h3 { margin-bottom: 6px; font-size: 17px; }
.card--sm p { font-size: 13.5px; margin: 0; }

/* Narrow row: keeps a small number of compact cards (e.g. Mission & Vision)
   from stretching edge-to-edge; caps each card's width and centers the row */
.cards--narrow {
  max-width: 620px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(200px, 260px));
  justify-content: center;
}

/* Mission & Vision cards: premium look with a colored top accent,
   a raised glowing icon badge, a short divider, and alternating hues */
.mv-cards { gap: 32px; }
.mv-card {
  padding-top: 34px;
  border-top: 4px solid var(--gold);
  transition: transform .35s ease, box-shadow .35s ease;
}
.mv-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.mv-card .card-icon-badge--standalone {
  width: 62px; height: 62px;
  margin: -56px auto 16px;
  box-shadow: 0 10px 26px rgba(244,180,0,.45);
}
.mv-card .card-icon-badge--standalone i { font-size: 22px; }
.mv-card h3 { font-size: 18px; margin-bottom: 10px; letter-spacing: .01em; }
.mv-divider {
  display: block;
  width: 34px; height: 3px;
  margin: 0 auto 14px;
  background: var(--gold);
  border-radius: 2px;
}
.mv-card--navy { border-top-color: var(--primary-light); }
.mv-card--navy .card-icon-badge--standalone {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  box-shadow: 0 10px 26px rgba(11,35,65,.35);
}
.mv-card--navy .card-icon-badge--standalone i { color: var(--gold-light); }
.mv-card--navy .mv-divider { background: var(--primary-light); }

/* How It Works / process steps: hexagon icon badges with a number bubble,
   connected by arrows on desktop and stacked with a rotated arrow on mobile */
.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 4px;
}
.step-card {
  background: white;
  padding: 36px 24px 30px;
  text-align: center;
  border-radius: 16px;
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow);
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative;
  height: 100%;
}
.step-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.step-badge-wrap {
  position: relative;
  width: 72px; height: 72px;
  margin: 0 auto 20px;
}
.step-badge-wrap .card-icon-badge {
  width: 72px; height: 72px;
  margin: 0;
}
.step-badge-wrap .card-icon-badge i { font-size: 26px; }
.step-num-bubble {
  position: absolute;
  top: -6px; right: -10px;
  width: 28px; height: 28px;
  background: var(--primary);
  color: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  border: 3px solid #fff;
  box-shadow: 0 3px 8px rgba(0,0,0,.2);
}
.step-card h3 { color: var(--primary); font-size: 18px; margin-bottom: 8px; }
.step-card p { color: var(--gray); font-size: 14px; margin: 0; }
.step-arrow {
  color: var(--gold);
  font-size: 20px;
  opacity: .55;
}
@media (max-width: 900px) {
  .steps-row { grid-template-columns: 1fr; gap: 18px; }
  .step-arrow { transform: rotate(90deg); margin: -6px auto; }
}

/* "Why Choose Our Services" cards: alternating gold/navy badges with a
   top accent for a bit of visual rhythm across the row */
.why-card { border-top: 4px solid var(--gold); padding-top: 30px; }
.why-card:nth-child(even) { border-top-color: var(--primary-light); }
.why-card:nth-child(even) .card-icon-badge {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  box-shadow: 0 10px 26px rgba(11,35,65,.35);
}
.why-card:nth-child(even) .card-icon-badge i { color: var(--gold-light); }

/* =============================================
   ABOUT PAGE - INTRO SPLIT
============================================= */
.about-intro {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: 50px;
  align-items: center;
}
.about-intro-image { position: relative; }
.about-intro-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
  position: relative;
  z-index: 1;
}
.about-intro-image::before {
  content: '';
  position: absolute;
  bottom: -18px; right: -18px;
  width: 100%; height: 100%;
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.about-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--light);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 12.5px; font-weight: 700; color: var(--primary);
  text-transform: uppercase; letter-spacing: .05em;
  margin-bottom: 16px;
}
.about-badge i { color: var(--gold); }
.about-intro-content h2 {
  color: var(--primary);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
}
.about-intro-content p { color: var(--gray); margin-bottom: 14px; }
.about-intro-content p:last-child { margin-bottom: 0; }
@media (max-width: 768px) {
  .about-intro { grid-template-columns: 1fr; text-align: center; }
  .about-intro-image { max-width: 380px; margin: 0 auto; }
}

/* ABOUT PAGE - GALLERY */
.about-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.about-gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.about-gallery figure:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.about-gallery img {
  width: 100%; height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.about-gallery figure:hover img { transform: scale(1.08); }

/* =============================================
   CONTACT PAGE - MAP
============================================= */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  line-height: 0;
}
.map-embed iframe { display: block; }

/* =============================================
   PAGE BANNER
============================================= */
.page-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  background-image:
    repeating-linear-gradient(90deg, rgba(244,180,0,.06) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(0deg, rgba(244,180,0,.06) 0 1px, transparent 1px 48px),
    linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  text-align: center;
  padding: 90px 20px;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 60% 40%, rgba(244,180,0,.1) 0%, transparent 60%);
}
.page-banner h1 { font-size: clamp(32px, 5vw, 55px); font-weight: 800; margin-bottom: 15px; }
.page-banner p { font-size: 18px; color: rgba(255,255,255,.8); }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  font-size: 14px;
  color: rgba(255,255,255,.6);
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* =============================================
   STATS STRIP
============================================= */
.stats-strip {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
}
.stat-item { text-align: center; color: white; }
.stat-item .num {
  font-size: 48px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-item .unit { color: var(--gold); font-size: 24px; }
.stat-item p { color: rgba(255,255,255,.75); margin-top: 8px; font-size: 15px; }

/* =============================================
   FOUNDER / OWNER SECTION
============================================= */
.founder-container {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: 55px;
  align-items: center;
}
.founder-image {
  position: relative;
}
.founder-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}
.founder-content h3 {
  color: var(--primary);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 4px;
}
.founder-content h4 {
  color: var(--gold-dark);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.founder-content p { color: var(--gray); font-size: 15.5px; line-height: 1.8; }
.founder-content ul { list-style: none; padding: 0; }
.founder-content ul li {
  color: var(--primary);
  font-weight: 600;
  padding: 6px 0;
  font-size: 15px;
}
@media (max-width: 768px) {
  .founder-container { grid-template-columns: 1fr; text-align: center; }
  .founder-image { max-width: 320px; margin: 0 auto; }
  .founder-content ul { display: inline-block; text-align: left; }
}

/* =============================================
   FOUNDER HERO (About page — redesigned)
============================================= */
.founder-hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 60px;
  align-items: center;
}
.founder-photo-frame { position: relative; }
.founder-photo-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
  position: relative;
  z-index: 1;
}
.founder-stat-badge {
  position: absolute;
  right: -18px;
  bottom: -22px;
  z-index: 2;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--primary);
  padding: 18px 26px;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(212,160,0,.45);
  text-align: center;
  min-width: 130px;
}
.founder-stat-badge .num {
  display: block;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}
.founder-stat-badge .num .unit { font-size: 20px; }
.founder-stat-badge .badge-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.founder-headline {
  color: var(--primary);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800;
  line-height: 1.25;
  margin: 4px 0 12px;
}
.founder-headline em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  color: var(--gold-dark);
}
.founder-meta {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 20px;
}
.founder-meta .dot { color: var(--border); margin: 0 8px; }
.founder-divider {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: 22px;
}
.founder-bio { color: var(--gray); font-size: 15.5px; line-height: 1.8; margin-bottom: 14px; }
.founder-bio:last-of-type { margin-bottom: 26px; }
.founder-pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.founder-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 700;
  color: var(--primary);
  font-size: 13.5px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.founder-pill:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pill-check {
  width: 26px; height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 11px;
}
@media (max-width: 768px) {
  .founder-hero-grid { grid-template-columns: 1fr; text-align: center; }
  .founder-photo-frame { max-width: 340px; margin: 0 auto 50px; }
  .founder-stat-badge { right: 50%; transform: translateX(50%); bottom: -24px; }
  .founder-meta .dot { display: block; height: 0; }
  .founder-divider { margin-left: auto; margin-right: auto; }
  .founder-pills { grid-template-columns: 1fr; text-align: left; }
}

/* =============================================
   WHY CHOOSE US
============================================= */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.why-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.why-image { display: flex; }
.why-list { list-style: none; }
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}
.why-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 20px;
}
.why-text h4 { color: var(--primary); font-size: 17px; margin-bottom: 5px; }
.why-text p { color: var(--gray); font-size: 14px; }

/* =============================================
   SERVICES GRID
============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card-img { height: 220px; overflow: hidden; position: relative; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-body { padding: 28px; }
.service-card-body h3 { color: var(--primary); margin-bottom: 10px; font-size: 20px; }
.service-card-body p { color: var(--gray); font-size: 14px; margin-bottom: 15px; }

/* =============================================
   TESTIMONIALS
============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 25px;
  font-size: 80px;
  color: var(--gold);
  opacity: .2;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-stars { color: var(--gold); margin-bottom: 15px; }
.testimonial-text { color: #475569; font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 18px;
}
.testimonial-name { font-weight: 700; color: var(--primary); }
.testimonial-location { font-size: 13px; color: var(--gray); }

/* =============================================
   CALCULATOR
============================================= */
.calculator-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 90px 0;
  color: white;
}
.calc-container {
  max-width: 650px;
  margin: auto;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  padding: 45px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}
.calc-container h2 { margin-bottom: 30px; font-size: 30px; text-align: center; }
.calc-container label { display: block; margin-bottom: 8px; font-size: 14px; color: rgba(255,255,255,.8); font-weight: 500; }
.calc-container input, .calc-container select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,.1);
  color: white;
  margin-bottom: 20px;
  font-size: 15px;
  transition: var(--transition);
}
.calc-container input::placeholder { color: rgba(255,255,255,.4); }
.calc-container input:focus, .calc-container select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,.15);
}
.calc-container select option { background: var(--primary); }
.calc-btn {
  width: 100%;
  padding: 16px;
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary);
  font-size: 16px;
  font-weight: 800;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.calc-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(244,180,0,.4); }
.calc-result {
  margin-top: 25px;
  background: rgba(244,180,0,.15);
  border: 1px solid rgba(244,180,0,.4);
  border-radius: var(--radius);
  padding: 20px;
  display: none;
}
.calc-result.show { display: block; }
.calc-result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 15px; }
.result-item { text-align: center; }
.result-item .val { font-size: 24px; font-weight: 800; color: var(--gold); }
.result-item .lbl { font-size: 12px; color: rgba(255,255,255,.7); }

/* =============================================
   CONTACT
============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}
.contact-info h3 { color: var(--primary); margin-bottom: 20px; font-size: 26px; }
.contact-info p { color: var(--gray); margin-bottom: 30px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.contact-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}
.contact-text strong { display: block; color: var(--primary); margin-bottom: 3px; }
.contact-text span { color: var(--gray); font-size: 14px; }

.contact-form-box {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--primary); font-size: 14px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  transition: var(--transition);
  font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(244,180,0,.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

/* =============================================
   PRODUCTS (override products_brands_app styles)
============================================= */
.pb-section { padding: 80px 0; background: var(--light); }
.pb-section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 40px;
}
.pb-section-title::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}
.text-center .pb-section-title { text-align: center; }
.text-center .pb-section-title::after { left: 50%; transform: translateX(-50%); }

.category-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.category-tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 20px;
  border: 2px solid var(--border);
  border-radius: 50px;
  background: white;
  color: var(--gray);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}
.category-tab:hover, .category-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(244,180,0,.3);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 25px;
}
.product-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--gold);
}
.product-card__img-wrap {
  height: 195px;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 15px;
  transition: transform .3s;
}
.product-card:hover .product-card__img-wrap img { transform: scale(1.07); }
.product-card__body { padding: 16px 18px 20px; }
.product-card__category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 5px;
}
.product-card__name { font-size: 15px; font-weight: 700; color: var(--primary); }

.brands-section { padding: 80px 0; background: white; }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
}
.brand-card {
  display: flex; align-items: center; justify-content: center;
  padding: 22px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: white;
  transition: var(--transition);
  min-height: 95px;
}
.brand-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(244,180,0,.15);
  transform: translateY(-4px);
}
.brand-card img {
  max-width: 100%; max-height: 60px;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter .2s;
}
.brand-card:hover img { filter: none; }

/* =============================================
   ADMIN DASHBOARD
============================================= */
.admin-layout { display: flex; min-height: 100vh; }

.admin-sidebar {
  width: 260px;
  background: var(--primary);
  color: white;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  overflow-y: auto;
  z-index: 100;
  transition: var(--transition);
}
.admin-sidebar.collapsed { width: 70px; }

.sidebar-logo {
  padding: 20px 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  gap: 12px;
}
.sidebar-logo img { height: 62px; width: 62px; object-fit: contain; border-radius: 8px; background: #fff; padding: 3px; }
.sidebar-logo span { font-weight: 700; font-size: 15px; white-space: nowrap; }

.sidebar-nav { padding: 20px 0; }
.sidebar-section {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.35);
  padding: 15px 20px 5px;
  font-weight: 600;
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}
.sidebar-link i { width: 20px; text-align: center; font-size: 16px; }
.sidebar-link:hover, .sidebar-link.active {
  background: rgba(244,180,0,.15);
  color: var(--gold);
}
.sidebar-link.active::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--gold);
  border-radius: 0 4px 4px 0;
}
.sidebar-badge {
  margin-left: auto;
  background: var(--gold);
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 30px;
}

.admin-main {
  margin-left: 260px;
  flex: 1;
  min-height: 100vh;
  background: #f1f5f9;
}

.admin-topbar {
  background: white;
  padding: 18px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  position: sticky;
  top: 0;
  z-index: 50;
}
.admin-topbar h1 { font-size: 20px; color: var(--primary); font-weight: 700; }
.admin-user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.admin-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-weight: 700;
}

.admin-content { padding: 30px; }

.dash-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-bottom: 35px;
}
.dash-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}
.dash-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.dash-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}
.dash-icon.gold { background: rgba(244,180,0,.15); color: var(--gold-dark); }
.dash-icon.blue { background: rgba(11,35,65,.1); color: var(--primary); }
.dash-icon.green { background: rgba(34,197,94,.1); color: #16a34a; }
.dash-icon.red { background: rgba(239,68,68,.1); color: #dc2626; }
.dash-info .num { font-size: 30px; font-weight: 800; color: var(--primary); }
.dash-info .lbl { font-size: 13px; color: var(--gray); }

.admin-table-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 28px;
}
.admin-table-header {
  padding: 20px 25px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-table-header h3 { color: var(--primary); font-size: 17px; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  background: var(--light);
  color: var(--primary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 12px 20px;
  text-align: left;
  border-bottom: 2px solid var(--border);
}
.admin-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); font-size: 14px; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #f8fafc; }

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
}
.badge-active { background: rgba(34,197,94,.1); color: #16a34a; }
.badge-inactive { background: rgba(239,68,68,.1); color: #dc2626; }

.admin-form-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.admin-form-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 22px 28px;
  color: white;
}
.admin-form-header h3 { font-size: 18px; }
.admin-form-body { padding: 30px 28px; }

/* =============================================
   LOGIN PAGE
============================================= */
.login-page {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 60%, #1a4a8a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  overflow: hidden;
}
.login-bg-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.login-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.6s ease, transform 8s ease;
}
.login-bg-slide.active {
  opacity: 1;
  transform: scale(1);
}
.login-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(11,35,65,.88) 0%, rgba(11,35,65,.78) 55%, rgba(26,74,138,.72) 100%);
}
.login-box {
  position: relative;
  z-index: 2;
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 25px 60px rgba(0,0,0,.4);
}
.login-logo { text-align: center; margin-bottom: 30px; }
.login-logo img { height: 92px; }
.login-logo h2 { color: var(--primary); margin-top: 12px; font-size: 22px; }
.login-logo p { color: var(--gray); font-size: 14px; }

/* =============================================
   CTA SECTION
============================================= */
.cta-section, .cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  background-image:
    repeating-linear-gradient(90deg, rgba(11,35,65,.05) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(0deg, rgba(11,35,65,.05) 0 1px, transparent 1px 48px),
    linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 80px 0;
  text-align: center;
}
.cta-section h2, .cta h2 { font-size: clamp(28px, 4vw, 44px); color: var(--primary); font-weight: 800; margin-bottom: 15px; }
.cta-section p, .cta p { color: rgba(11,35,65,.8); font-size: 18px; margin-bottom: 30px; }

/* =============================================
   FOOTER
============================================= */
footer {
  background: var(--primary-dark);
  background-image:
    repeating-linear-gradient(90deg, rgba(244,180,0,.04) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(0deg, rgba(244,180,0,.04) 0 1px, transparent 1px 48px);
  color: rgba(255,255,255,.8);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 50px;
}
.footer-col h4 {
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.footer-col p { font-size: 14px; line-height: 1.8; margin-bottom: 8px; }
.footer-col p i { color: var(--gold); margin-right: 8px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.footer-col ul li a::before { content: '→'; color: var(--gold); font-size: 12px; }
.footer-col ul li a:hover { color: var(--gold); padding-left: 5px; }

.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition);
}
.social-links a:hover { background: var(--gold); border-color: var(--gold); color: var(--primary); transform: translateY(-3px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

/* =============================================
   FLOATING ELEMENTS
============================================= */
#topBtn {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary);
  border: none;
  width: 50px; height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(244,180,0,.4);
  transition: var(--transition);
}
#topBtn:hover { transform: translateY(-3px); }

.wa-float {
  position: fixed;
  bottom: 150px;
  right: 30px;
  width: 55px; height: 55px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--transition);
}
.wa-float:hover { transform: scale(1.1); }

.call-float {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 55px; height: 55px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-size: 24px;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(11,35,65,.4);
  transition: var(--transition);
}
.call-float.show { display: flex; }
.call-float:hover { transform: scale(1.1); }

/* =============================================
   ALERTS / MESSAGES
============================================= */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
}
.alert-success { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3); color: #166534; }
.alert-error { background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.3); color: #991b1b; }
.alert-warning { background: rgba(244,180,0,.1); border: 1px solid rgba(244,180,0,.3); color: #92400e; }

/* =============================================
   RESPONSIVE
============================================= */
@media(max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .admin-sidebar { width: 70px; }
  .admin-sidebar .sidebar-logo { padding: 16px 10px; justify-content: center; }
  .admin-sidebar .sidebar-logo img { height: 42px; width: 42px; }
  .admin-sidebar .sidebar-logo span,
  .admin-sidebar .sidebar-section,
  .admin-sidebar .sidebar-link span,
  .admin-sidebar .sidebar-badge { display: none; }
  .admin-main { margin-left: 70px; }
}

@media(max-width: 768px) {
  .topbar { display: none; }
  .hamburger { display: flex; padding: 10px; }
  .logo img { height: 76px; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 999;
    gap: 5px;
    max-height: calc(100vh - 100%);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { display: block; padding: 12px 10px; }
  .hamburger { z-index: 1000; }
  .nav-right { display: none; }
  .hero-stats { gap: 20px; }
  .hero-stats .num { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .calc-result-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .admin-main { margin-left: 0; }
  .admin-sidebar { transform: translateX(-100%); }
}

@media(max-width: 480px) {
  .hero-content h1 { font-size: 32px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .dash-cards { grid-template-columns: 1fr 1fr; }
  .logo img { height: 60px; }
  .navbar { gap: 10px; }
}

/* =============================================
   HERO V2 — REDESIGNED
============================================= */
.hero-v2 {
  min-height: 100vh;
  background: var(--black);
  color: white;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* ===== SLIDING IMAGE BANNER ===== */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.6s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
  animation: heroKenBurns 8s ease-in-out forwards;
}
@keyframes heroKenBurns {
  0%   { transform: scale(1.08); }
  100% { transform: scale(1); }
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(10,10,10,.90) 0%, rgba(11,35,65,.82) 32%, rgba(11,35,65,.42) 60%, rgba(10,10,10,.35) 100%),
    linear-gradient(0deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,0) 30%);
}
.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  width: fit-content;
  padding: 8px 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}
.hero-dot:hover { background: rgba(255,255,255,.7); }
.hero-dot.active { background: var(--gold); width: 22px; }
@media (max-width: 900px) {
  .hero-dots { margin: 18px auto 0; }
}
@media (max-width: 768px) {
  .hero-dots { padding: 6px 8px; gap: 6px; }
  .hero-dot { width: 7px; height: 7px; }
  .hero-dot.active { width: 18px; }
}

/* Energy Particles – fixed position, pulse opacity/scale only, no translation */
.hero-particles span {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: rgba(244,180,0,.25);
  animation: particlePulse 6s infinite ease-in-out;
  will-change: opacity, transform;
}
.hero-particles span:nth-child(1)  { width:6px;  height:6px;  top:15%; left:10%; animation-delay:0s;   animation-duration:5s; }
.hero-particles span:nth-child(2)  { width:10px; height:10px; top:70%; left:5%;  animation-delay:0.8s; animation-duration:7s; }
.hero-particles span:nth-child(3)  { width:4px;  height:4px;  top:30%; left:85%; animation-delay:1.6s; animation-duration:4.5s; }
.hero-particles span:nth-child(4)  { width:8px;  height:8px;  top:80%; left:80%; animation-delay:2.4s; animation-duration:6s; }
.hero-particles span:nth-child(5)  { width:5px;  height:5px;  top:50%; left:50%; animation-delay:1.2s; animation-duration:5.5s; }
.hero-particles span:nth-child(6)  { width:12px; height:12px; top:20%; left:60%; animation-delay:0.4s; animation-duration:8s;  background: rgba(255,255,255,.1); }
.hero-particles span:nth-child(7)  { width:3px;  height:3px;  top:90%; left:30%; animation-delay:2s;   animation-duration:6.5s; }
.hero-particles span:nth-child(8)  { width:7px;  height:7px;  top:10%; left:40%; animation-delay:3.2s; animation-duration:5s; }
.hero-particles span:nth-child(9)  { width:5px;  height:5px;  top:60%; left:92%; animation-delay:0.6s; animation-duration:7.5s; }
.hero-particles span:nth-child(10) { width:9px;  height:9px;  top:40%; left:20%; animation-delay:2.8s; animation-duration:9s; }

/* Orbital energy particles around the solar orb */
.solar-orb-wrap .energy-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: energyPulse 3s ease-in-out infinite;
  will-change: opacity, transform;
}
.energy-particle:nth-child(1) { width:8px; height:8px; top:5%;  left:50%; background:rgba(244,180,0,.9); animation-delay:0s;    animation-duration:2.5s; }
.energy-particle:nth-child(2) { width:5px; height:5px; top:20%; left:90%; background:rgba(255,215,0,.8);  animation-delay:0.5s;  animation-duration:3s; }
.energy-particle:nth-child(3) { width:6px; height:6px; top:75%; left:88%; background:rgba(244,180,0,.85); animation-delay:1s;    animation-duration:2.8s; }
.energy-particle:nth-child(4) { width:7px; height:7px; top:90%; left:50%; background:rgba(255,200,0,.8);  animation-delay:1.5s;  animation-duration:3.2s; }
.energy-particle:nth-child(5) { width:5px; height:5px; top:75%; left:10%; background:rgba(244,180,0,.9);  animation-delay:2s;    animation-duration:2.6s; }
.energy-particle:nth-child(6) { width:6px; height:6px; top:20%; left:12%; background:rgba(255,215,0,.75); animation-delay:0.8s;  animation-duration:3.5s; }

@keyframes particlePulse {
  0%, 100% { transform: scale(1);   opacity: .25; }
  50%       { transform: scale(1.6); opacity: .9; }
}

@keyframes energyPulse {
  0%, 100% { transform: scale(1);    opacity: .4; box-shadow: 0 0 4px rgba(244,180,0,.4); }
  50%       { transform: scale(1.8); opacity: 1;  box-shadow: 0 0 12px rgba(244,180,0,.9), 0 0 20px rgba(255,215,0,.5); }
}

/* Layout */
.hero-v2-container {
  display: block;
  position: relative;
  z-index: 2;
}

/* TEXT */
.hero-v2-text { display: flex; flex-direction: column; gap: 0; max-width: 700px; }

.hero-v2-h1 {
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 800;
  line-height: 1.15;
  margin: 20px 0 22px;
  letter-spacing: -0.5px;
}
.hero-gold-line {
  background: linear-gradient(90deg, #F4B400, #FFD855, #F4B400);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 3s linear infinite;
}
@keyframes shimmerText {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-v2-sub {
  font-size: 17px;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-v2-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }

.btn-glow {
  box-shadow: 0 0 20px rgba(244,180,0,.45), 0 4px 15px rgba(244,180,0,.3);
  animation: pulseGlow 2.5s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(244,180,0,.45), 0 4px 15px rgba(244,180,0,.3); }
  50%       { box-shadow: 0 0 35px rgba(244,180,0,.7),  0 4px 25px rgba(244,180,0,.5); }
}
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700; font-size: 15px;
  border: 2px solid rgba(255,255,255,.5);
  color: white;
  transition: all .3s ease;
  backdrop-filter: blur(5px);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: white; }

/* Trust badges */
.hero-v2-trust {
  display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 36px;
}
.hero-v2-trust span {
  font-size: 13px;
  color: rgba(255,255,255,.8);
  display: flex; align-items: center; gap: 6px;
}
.hero-v2-trust i { color: var(--gold); font-size: 14px; }

/* Stats row */
.hero-v2-stats {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 20px 24px;
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
}
.hero-v2-stat { text-align: center; flex: 1; min-width: 70px; position: relative; z-index: 1; }
.hero-v2-stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}
.stat-num {
  font-size: 32px; font-weight: 800;
  color: #F4B400; line-height: 1; display: inline;
}
.stat-plus {
  font-size: 16px; font-weight: 700;
  color: #F4B400; display: inline;
}
.stat-lbl { font-size: 11px; color: rgba(255,255,255,.6); margin-top: 4px; text-transform: uppercase; letter-spacing: .05em; white-space: nowrap; word-break: keep-all; overflow-wrap: normal; }

@media (max-width: 480px) {
  .hero-v2-stats { padding: 16px; gap: 10px; }
  .hero-v2-stat { min-width: 0; flex-basis: 100%; }
  .hero-v2-stat-divider { display: none; }
  .stat-num { font-size: 24px; }
}

/* ===== SOLAR GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 240px;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.75) 0%, rgba(10,10,10,0) 55%);
}
.gallery-caption {
  position: absolute;
  left: 18px; bottom: 14px;
  z-index: 2;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}
.gallery-caption span {
  display: block;
  font-weight: 500;
  font-size: 12px;
  color: var(--gold-light);
  margin-top: 2px;
}
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* RIGHT VISUAL */
.hero-v2-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  height: 480px;
  min-width: 0;
  width: 100%;
}

.hero-photo-wrap {
  position: relative;
  width: 100%; max-width: 380px; height: 300px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
  border: 4px solid rgba(255,255,255,.15);
  flex-shrink: 0;
}
.hero-photo {
  width: 100%; height: 100%;
  max-width: 100%;
  object-fit: cover;
  display: block;
}

/* Sun orb */
.solar-orb-wrap {
  position: relative;
  width: 280px; height: 280px;
  display: flex; align-items: center; justify-content: center;
}

.solar-rays {
  position: absolute; inset: 0;
}
.ray {
  position: absolute;
  width: 100%; height: 100%;
  top: 0; left: 0;
}
.ray::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 3px; height: 100px;
  background: linear-gradient(to top, transparent, rgba(244,180,0,.65), transparent);
  transform-origin: bottom center;
  border-radius: 3px;
  animation: rayPulse 3s ease-in-out infinite;
}
.ray:nth-child(1)::before  { transform: rotate(0deg)   translateX(-50%) translateY(-100%); animation-delay: 0s; }
.ray:nth-child(2)::before  { transform: rotate(45deg)  translateX(-50%) translateY(-100%); animation-delay: .375s; }
.ray:nth-child(3)::before  { transform: rotate(90deg)  translateX(-50%) translateY(-100%); animation-delay: .75s; }
.ray:nth-child(4)::before  { transform: rotate(135deg) translateX(-50%) translateY(-100%); animation-delay: 1.125s; }
.ray:nth-child(5)::before  { transform: rotate(180deg) translateX(-50%) translateY(-100%); animation-delay: 1.5s; }
.ray:nth-child(6)::before  { transform: rotate(225deg) translateX(-50%) translateY(-100%); animation-delay: 1.875s; }
.ray:nth-child(7)::before  { transform: rotate(270deg) translateX(-50%) translateY(-100%); animation-delay: 2.25s; }
.ray:nth-child(8)::before  { transform: rotate(315deg) translateX(-50%) translateY(-100%); animation-delay: 2.625s; }

@keyframes spinRays { to { transform: rotate(360deg); } }

@keyframes rayPulse {
  0%, 100% { opacity: .5; }
  50%       { opacity: 1; }
}

.solar-ring {
  position: absolute; border-radius: 50%; border: 2px solid;
  animation: pulseRing 3s ease-in-out infinite;
  will-change: transform, opacity;
}
.ring-1 { width: 200px; height: 200px; border-color: rgba(244,180,0,.45); animation-delay: 0s; }
.ring-2 { width: 240px; height: 240px; border-color: rgba(244,180,0,.25); animation-delay: .8s; }
.ring-3 { width: 280px; height: 280px; border-color: rgba(244,180,0,.12); animation-delay: 1.6s; }

@keyframes pulseRing {
  0%, 100% { transform: scale(1);    opacity: 1; box-shadow: 0 0 0 0 rgba(244,180,0,0); }
  50%       { transform: scale(1.06); opacity: .7; box-shadow: 0 0 18px 4px rgba(244,180,0,.15); }
}

.solar-core {
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, #FFF176 0%, #FFD740 20%, #F4B400 55%, #D4940A 85%, #B8780A 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow:
    0 0 0   20px rgba(244,180,0,.10),
    0 0 50px    rgba(244,180,0,.60),
    0 0 100px   rgba(244,180,0,.35),
    0 0 180px   rgba(244,180,0,.18);
  animation: breatheCore 3s ease-in-out infinite;
  z-index: 2;
  will-change: transform, box-shadow;
}

.solar-core .sun-icon {
  font-size: 48px;
  color: #071829;
  z-index: 1;
  line-height: 1;
}

.solar-core .panel-icon {
  font-size: 42px;
  color: #071829;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
  animation: panelPulse 3s ease-in-out infinite;
  z-index: 1;
  line-height: 1;
}


.solar-core .panel-icon {
  position: absolute;
  font-size: 70px;
  color: #071829;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.4));
  animation: panelPulse 3s ease-in-out infinite;
  will-change: transform, filter;
  z-index: 3;
}

/* Inner glow halo */
.solar-core::after {
  content: '';
  position: absolute; inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,230,60,.3) 0%, transparent 70%);
  animation: innerGlow 2.5s ease-in-out infinite;
  will-change: opacity, transform;
  pointer-events: none;
}



@keyframes panelPulse {
  0%, 100% { filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35)); transform: scale(1); }
  50%       { filter: drop-shadow(0 2px 18px rgba(0,0,0,0.5)); transform: scale(1.06); }
}

@keyframes breatheCore {
  0%, 100% {
    box-shadow:
      0 0 0   20px rgba(244,180,0,.10),
      0 0 50px    rgba(244,180,0,.60),
      0 0 100px   rgba(244,180,0,.35),
      0 0 180px   rgba(244,180,0,.18);
    transform: scale(1);
  }
  50% {
    box-shadow:
      0 0 0   28px rgba(244,180,0,.14),
      0 0 70px    rgba(244,180,0,.80),
      0 0 150px   rgba(244,180,0,.50),
      0 0 250px   rgba(244,180,0,.22);
    transform: scale(1.06);
  }
}

@keyframes innerGlow {
  0%, 100% { opacity: .5; transform: scale(1); }
  50%       { opacity: 1;  transform: scale(1.18); }
}
.solar-core i { font-size: 56px; color: #071829; position: relative; z-index: 1; }

/* Icon inner glow breathe */
.solar-core::after {
  content: '';
  position: absolute; inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,220,50,.35) 0%, transparent 70%);
  animation: innerGlow 2.5s ease-in-out infinite;
  will-change: opacity, transform;
}

@keyframes breatheCore {
  0%, 100% {
    box-shadow:
      0 0 0   18px rgba(244,180,0,.08),
      0 0 40px    rgba(244,180,0,.55),
      0 0 90px    rgba(244,180,0,.3),
      0 0 160px   rgba(244,180,0,.15);
    transform: scale(1);
  }
  50% {
    box-shadow:
      0 0 0   24px rgba(244,180,0,.12),
      0 0 60px    rgba(244,180,0,.75),
      0 0 130px   rgba(244,180,0,.45),
      0 0 220px   rgba(244,180,0,.2);
    transform: scale(1.05);
  }
}

@keyframes innerGlow {
  0%, 100% { opacity: .5; transform: scale(1); }
  50%       { opacity: 1;  transform: scale(1.15); }
}

/* Floating cards */
.solar-card {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(12px);
  padding: 14px 18px; border-radius: 14px;
  color: white; min-width: 170px;
  animation: cardGlow 4s ease-in-out infinite;
}
.solar-card i { font-size: 22px; color: #F4B400; }
.solar-card strong { display: block; font-size: 16px; font-weight: 800; }
.solar-card span { font-size: 11px; color: rgba(255,255,255,.7); }
.card-top    { top: 8%;  right: 6%; animation-delay: 0s; }
.card-bottom { bottom: 10%; left: 4%; animation-delay: 2s; }

@keyframes cardGlow {
  0%, 100% { opacity: .85; box-shadow: 0 4px 24px rgba(0,0,0,.15); }
  50%       { opacity: 1;   box-shadow: 0 4px 32px rgba(244,180,0,.25), 0 0 0 1px rgba(244,180,0,.2); }
}

/* Wave bottom */
.hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0;
  line-height: 0; z-index: 1;
}
.hero-wave svg { width: 100%; height: 80px; display: block; }

/* Mobile */
@media (max-width: 900px) {
  .hero-v2-text { text-align: center; margin: 0 auto; }
  .hero-badge { align-self: center; }
  .hero-v2-sub { margin: 0 auto 32px; }
  .hero-v2-btns { justify-content: center; }
  .hero-v2-trust { justify-content: center; }
  .solar-orb-wrap { width: 200px; height: 200px; }
  .solar-core { width: 130px; height: 130px; }
.solar-core .sun-icon { font-size: 66px; }
.solar-core .panel-icon { font-size: 44px; }
  .ring-1 { width: 150px; height: 150px; }
  .ring-2 { width: 180px; height: 180px; }
  .ring-3 { width: 200px; height: 200px; }
  .card-top { top: 10px; right: 10px; }
  .card-bottom { bottom: 10px; left: 10px; }
  .hero-v2-stats { justify-content: center; }
}

/* Compact hero on phones: the desktop hero's tall padding/gaps feel stretched
   and un-app-like on a small screen, so tighten the rhythm considerably */
@media (max-width: 768px) {
  .hero-v2 {
    min-height: 0;
    padding: 48px 0 56px;
  }
  .hero-badge { margin-bottom: 16px; font-size: 12px; padding: 7px 14px; }
  .hero-v2-h1 { margin: 14px 0 16px; }
  .hero-v2-sub { margin: 0 auto 24px; font-size: 15.5px; }
  .hero-v2-btns { margin-bottom: 22px; gap: 12px; }
  .hero-v2-trust { margin-bottom: 26px; gap: 12px 18px; }
  .hero-v2-stats { padding: 16px 18px; }
  .hero-dots { margin-top: 18px; }
}

@media (max-width: 480px) {
  .hero-v2-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-v2-btns .btn,
  .hero-v2-btns .btn-outline-white {
    width: 100%;
    justify-content: center;
  }
  .hero-v2-trust { gap: 10px 16px; }
  .hero-v2-trust span { font-size: 12px; }
}

/* =============================================
   WHY-VISUAL BOX (homepage, replaces flat placeholder)
============================================= */
.why-visual-box {
  position: relative;
  background:
    linear-gradient(135deg, rgba(7,24,41,.93) 0%, rgba(11,35,65,.90) 45%, rgba(10,10,10,.85) 100%),
    url('https://images.unsplash.com/photo-1617269778723-73a40cf299bd?fm=jpg&q=80&w=1200&auto=format&fit=crop') center/cover;
  border-radius: var(--radius-lg);
  width: 100%;
  height: auto;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  color: white;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  padding: 30px;
}
.why-visual-glow {
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(244,180,0,.25) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.why-visual-icon {
  position: relative;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, #FFD855 0%, #F4B400 55%, #D4940A 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 50px rgba(244,180,0,.55);
  z-index: 1;
}
.why-visual-icon i { font-size: 42px; color: #071829; }
.why-visual-box h3 { font-size: 26px; font-weight: 800; z-index: 1; }
.why-visual-box > p { opacity: .75; font-size: 14px; max-width: 320px; z-index: 1; }
.why-visual-mini-stats {
  display: flex; gap: 26px; margin-top: 8px; z-index: 1;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.why-visual-mini-stats div { text-align: center; }
.why-visual-mini-stats strong { display: block; font-size: 18px; color: var(--gold); font-weight: 800; }
.why-visual-mini-stats span { font-size: 11px; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .04em; }
.why-visual-badges {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  z-index: 1; margin-top: 4px;
}
.why-visual-badges span {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}
.why-visual-badges i { color: var(--gold); font-size: 12px; }

@media (max-width: 600px) {
  .why-visual-box { height: auto; padding: 40px 24px; }
}

/* =============================================
   SCROLL REVEAL
============================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
