/* ===== RESET & BASE ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

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

:root {
  --navy: #103948;
  --navy-light: #1a4d5e;
  --green: #54B474;
  --green-dark: #3d9a5e;
  --green-light: #14c691;
  --gold: #E4BE48;
  --white: #ffffff;
  --off-white: #fcfcfc;
  --light-gray: #ebeced;
  --gray: #afafaf;
  --dark-gray: #dadada;
  --text: #121212;
  --text-light: #6b7280;
  --radius: 10px;
  --shadow: 0 2px 8px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,.12);
  --max-w: 1280px;
  --font: 'Montserrat', 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); line-height: 1.6; background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: color .2s; }
a:hover { color: var(--green-dark); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--navy);
  color: var(--white);
  font-size: .8rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a { color: var(--white); opacity: .9; }
.top-bar a:hover { opacity: 1; color: var(--white); }
.top-bar-contact { display: flex; align-items: center; gap: 6px; }
.top-bar-links { display: flex; gap: 16px; }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.navbar-brand {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.5px;
}
.navbar-brand:hover { color: var(--navy); }
.navbar-brand .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--text);
  font-weight: 600;
  font-size: .9rem;
  transition: color .2s;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.nav-links a:hover,
.nav-links a.active { color: var(--green); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: .3s;
}

/* ===== HERO ===== */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 50%;
  background: linear-gradient(135deg, transparent 0%, rgba(84,180,116,.1) 100%);
  pointer-events: none;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.hero-text h1 span { color: var(--green); }
.hero-text p {
  font-size: 1.1rem;
  opacity: .85;
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 500px;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-placeholder {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,.05);
  border: 2px dashed rgba(255,255,255,.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.3);
  font-size: .9rem;
}

/* Hero simple (products/dealers page) */
.hero-simple {
  background: var(--navy);
  color: var(--white);
  padding: 48px 0;
  text-align: center;
}
.hero-simple h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 12px; }
.hero-simple p { font-size: 1.05rem; opacity: .8; max-width: 580px; margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: all .25s ease;
  border: 2px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.btn-green { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-green:hover { background: var(--green-dark); border-color: var(--green-dark); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(84,180,116,.3); }
.btn-white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white:hover { background: var(--off-white); color: var(--navy); transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); }
.btn-outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-light); border-color: var(--navy-light); color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: .8rem; }
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: #d4ae38; border-color: #d4ae38; color: var(--navy); }

/* ===== SECTIONS ===== */
section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--navy);
  letter-spacing: -0.3px;
}
.section-header p { color: var(--text-light); font-size: 1.05rem; max-width: 600px; margin: 0 auto; line-height: 1.7; }
.section-header .accent-line {
  width: 60px;
  height: 4px;
  background: var(--green);
  margin: 16px auto 0;
  border-radius: 2px;
}

.bg-light { background: var(--off-white); }
.bg-gray { background: var(--light-gray); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy .section-header h2 { color: var(--white); }
.bg-navy .section-header p { color: rgba(255,255,255,.7); }

/* ===== PRODUCT CIRCLES (like Shopify) ===== */
.product-circles {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 0;
}
.product-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform .2s;
}
.product-circle:hover { transform: translateY(-4px); }
.product-circle-img {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color .2s;
  color: var(--gray);
  font-size: .7rem;
  text-align: center;
  padding: 8px;
}
.product-circle-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-circle:hover .product-circle-img { border-color: var(--green); }
.product-circle-name {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  max-width: 100px;
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all .25s ease;
}
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(84,180,116,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--green);
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--navy); font-weight: 700; }
.feature-card p { color: var(--text-light); font-size: .9rem; line-height: 1.6; }

/* ===== PRODUCT CARDS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .25s ease;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.product-img {
  background: var(--off-white);
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: .85rem;
  border-bottom: 1px solid var(--light-gray);
  position: relative;
}
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--green);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.product-body { padding: 24px; }
.product-category {
  display: inline-block;
  background: rgba(84,180,116,.1);
  color: var(--green);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.product-body h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--navy); font-weight: 700; }
.product-body p { color: var(--text-light); font-size: .9rem; margin-bottom: 16px; line-height: 1.5; }
.product-specs { list-style: none; margin-bottom: 20px; }
.product-specs li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  font-size: .85rem;
  color: var(--text-light);
}
.product-specs li::before {
  content: "\2713";
  color: var(--green);
  font-weight: 800;
  font-size: .9rem;
}
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--light-gray);
}
.product-power {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
}
.product-power span { color: var(--green); font-size: .85rem; font-weight: 600; }

/* ===== CATEGORY FILTER ===== */
.category-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--light-gray);
  background: var(--white);
  font-family: var(--font);
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

/* ===== STATS ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item {
  padding: 24px;
}
.stat-item h3 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item p { color: var(--text-light); font-size: .95rem; font-weight: 500; }
.bg-navy .stat-item p { color: rgba(255,255,255,.7); }
.bg-navy .stat-item h3 { color: var(--green-light); }

/* ===== DEALERS ===== */
.dealers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.dealer-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 28px;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.dealer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--green);
}
.dealer-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.dealer-card h3 { font-size: 1.1rem; margin-bottom: 4px; color: var(--navy); font-weight: 700; }
.dealer-location {
  color: var(--text-light);
  font-size: .85rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dealer-info { list-style: none; }
.dealer-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: .9rem;
  border-bottom: 1px solid var(--light-gray);
}
.dealer-info li:last-child { border-bottom: none; }
.dealer-info .label { color: var(--text-light); min-width: 55px; font-weight: 600; font-size: .8rem; text-transform: uppercase; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 64px 32px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(84,180,116,.1);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner h2 { font-size: 1.8rem; margin-bottom: 12px; font-weight: 800; position: relative; }
.cta-banner p { opacity: .8; margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; position: relative; }

/* ===== ABOUT ===== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-text h2 { font-size: 2rem; margin-bottom: 20px; color: var(--navy); font-weight: 800; }
.about-text p { color: var(--text-light); margin-bottom: 16px; line-height: 1.7; }
.about-image {
  background: var(--off-white);
  border-radius: var(--radius);
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  border: 2px dashed var(--light-gray);
}

/* ===== VEHICLE TAGS ===== */
.vehicle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.vehicle-tag {
  background: var(--white);
  border: 2px solid var(--light-gray);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  transition: all .2s;
}
.vehicle-tag:hover { border-color: var(--green); color: var(--green); }

/* ===== WARRANTY ===== */
.warranty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.warranty-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--light-gray);
  transition: all .25s ease;
}
.warranty-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.warranty-card .years {
  font-size: 3rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.warranty-card .unit { font-size: .85rem; color: var(--green); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.warranty-card p { color: var(--text-light); font-size: .85rem; margin-top: 8px; font-weight: 500; }

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

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer h4 { color: var(--white); font-size: .95rem; margin-bottom: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.footer p { font-size: .9rem; line-height: 1.8; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.7); font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all .2s;
}
.footer-social a:hover { background: var(--green); border-color: var(--green); color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .warranty-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
    padding: 20px 24px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }

  .hero { padding: 48px 0; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text h1 { font-size: 2rem; }
  .hero-text p { font-size: 1rem; margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-visual { display: none; }

  .hero-simple h1 { font-size: 1.8rem; }

  section { padding: 48px 0; }
  .section-header h2 { font-size: 1.5rem; }

  .features-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .dealers-grid { grid-template-columns: 1fr; }
  .warranty-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-item h3 { font-size: 2rem; }

  .about-content { grid-template-columns: 1fr; }
  .about-image { height: 240px; }

  .product-circles { gap: 16px; }
  .product-circle-img { width: 80px; height: 80px; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .cta-banner { padding: 40px 20px; }
  .cta-banner h2 { font-size: 1.4rem; }

  .btn { padding: 12px 24px; font-size: .85rem; }
}

@media (max-width: 480px) {
  .warranty-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
}
