:root {
  --primary: #c0392b;
  --primary-dark: #922b21;
  --primary-light: #e74c3c;
  --gold: #f39c12;
  --gold-light: #f1c40f;
  --dark: #1a1a1a;
  --dark2: #242424;
  --dark3: #2e2e2e;
  --light: #f8f8f8;
  --white: #ffffff;
  --gray: #6c757d;
  --gray-light: #e9ecef;
  --text: #2c2c2c;
  --text-light: #5a5a5a;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.25);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --navbar-height: 75px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--light);
  overflow-x: hidden;
  padding-bottom: 70px; /* space for mobile bottom nav */
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--primary);
  height: var(--navbar-height);
  transition: var(--transition);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-logo img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  border-radius: 8px;
}

.navbar-logo-text {
  line-height: 1.2;
}

.navbar-logo-text span:first-child {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 14px;
  color: var(--white);
  letter-spacing: 0.5px;
}

.navbar-logo-text span:last-child {
  display: block;
  font-size: 10px;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.navbar-menu a {
  color: #ccc;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}

.navbar-menu a:hover {
  color: var(--gold);
  background: rgba(243, 156, 18, 0.1);
}

.btn-wa-nav {
  display: flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white !important;
  padding: 9px 16px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-wa-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5) !important;
  background: linear-gradient(135deg, #20c85a, #0f7a6e) !important;
  color: white !important;
}

/* ===== HERO ===== */
.hero {
  margin-top: var(--navbar-height);
  min-height: calc(100vh - var(--navbar-height));
  background: linear-gradient(
    135deg,
    #1a0000 0%,
    #2d0a0a 30%,
    #1a1a1a 70%,
    #0d0d0d 100%
  );
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C0392B' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(192, 57, 43, 0.2) 0%,
    transparent 70%
  );
  top: -100px;
  right: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(243, 156, 18, 0.1) 0%,
    transparent 70%
  );
  bottom: -50px;
  left: -50px;
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192, 57, 43, 0.15);
  border: 1px solid rgba(192, 57, 43, 0.3);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--primary), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  color: #aaa;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 480px;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
}

.hero-stat {
  text-align: center;
}

.hero-stat .num {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--gold);
  display: block;
}

.hero-stat .lbl {
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(192, 57, 43, 0.4);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(192, 57, 43, 0.55);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), #e67e22);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(243, 156, 18, 0.35);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(243, 156, 18, 0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-car-img {
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  animation: floatCar 4s ease-in-out infinite;
}

@keyframes floatCar {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* ===== CALCULATOR ===== */
.calculator-section {
  background: var(--dark);
  padding: 60px 20px;
}

.calc-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: var(--dark2);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(192, 57, 43, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.section-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 4vw, 36px);
  text-align: center;
  margin-bottom: 10px;
}

.section-title.dark {
  color: var(--dark);
}
.section-title.light {
  color: var(--white);
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 15px;
  margin-bottom: 40px;
}

.section-subtitle.light {
  color: #888;
}

.title-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  border-radius: 2px;
  margin: 12px auto 20px;
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group select,
.form-group input {
  background: var(--dark3);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-group select:focus,
.form-group input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.15);
}

.form-group select option {
  background: var(--dark2);
}

.calc-result {
  background: linear-gradient(135deg, var(--primary-dark), var(--dark2));
  border-radius: var(--radius);
  padding: 25px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border: 1px solid rgba(192, 57, 43, 0.3);
  margin-top: 10px;
}

.calc-result-info {
}

.calc-result-label {
  font-size: 13px;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.calc-result-price {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: var(--gold);
}

.calc-result-note {
  font-size: 12px;
  color: #888;
  margin-top: 5px;
}

/* ===== FEATURES ===== */
.features-section {
  padding: 80px 20px;
  background: var(--light);
}

.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.feature-card {
  background: white;
  border-radius: var(--radius);
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(
    135deg,
    rgba(192, 57, 43, 0.1),
    rgba(243, 156, 18, 0.1)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  color: var(--primary);
}

.feature-card h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--dark);
}

.feature-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== ARMADA ===== */
.armada-section {
  padding: 80px 20px;
  background: white;
}

.armada-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.armada-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 2px solid var(--gray-light);
  background: white;
  color: var(--gray);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Poppins", sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.armada-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.car-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
}

.car-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.car-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.car-badge.popular {
  background: var(--gold);
  color: white;
}

/* Car Image Slider */
.car-slider {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}

.slider-img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Since we use the same cover image for all, make it look great */
.car-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: var(--transition);
  z-index: 3;
}

.slider-btn:hover {
  background: var(--primary);
}
.slider-btn.prev {
  left: 10px;
}
.slider-btn.next {
  right: 10px;
}

.slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 3;
}

.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.slider-dot.active {
  background: white;
  width: 18px;
  border-radius: 3px;
}

.car-info {
  padding: 20px;
}

.car-brand {
  font-size: 11px;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.car-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 10px;
}

.car-specs {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.car-spec {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--gray);
}

.car-spec i {
  color: var(--primary);
  font-size: 11px;
}

/* Color Options */
.color-section {
  margin-bottom: 16px;
}

.color-label {
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-weight: 600;
}

.color-options {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

.color-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
}

.color-dot:hover,
.color-dot.active {
  border-color: var(--primary);
  transform: scale(1.15);
}

.color-dot[title="Putih"] {
  background: #ffffff;
  box-shadow: inset 0 0 0 1px #ccc;
}
.color-dot[title="Hitam"] {
  background: #1a1a1a;
}
.color-dot[title="Silver"] {
  background: linear-gradient(135deg, #c0c0c0, #a0a0a0);
}
.color-dot[title="Abu-abu"] {
  background: #6c757d;
}
.color-dot[title="Merah"] {
  background: var(--primary);
}
.color-dot[title="Kuning"] {
  background: var(--gold);
}

.color-name-display {
  font-size: 11px;
  color: var(--gray);
  margin-left: 4px;
}

.car-divider {
  height: 1px;
  background: var(--gray-light);
  margin: 14px 0;
}

.car-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.car-price-label {
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.car-price {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--primary);
}

.car-price span {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

.btn-pesan {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 11px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  width: 100%;
  margin-top: 14px;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-pesan:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

/* ===== TESTIMONIALS ===== */
.testi-section {
  padding: 80px 20px;
  background: var(--dark);
}

.testi-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.testi-card {
  background: var(--dark2);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.testi-card:hover {
  border-color: rgba(243, 156, 18, 0.2);
  transform: translateY(-5px);
}

.testi-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testi-text {
  color: #bbb;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}

.testi-name {
  font-weight: 700;
  color: white;
  font-size: 14px;
}

.testi-role {
  font-size: 12px;
  color: #666;
}

/* ===== TERMS ===== */
.terms-section {
  padding: 80px 20px;
  background: var(--light);
}

.terms-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.terms-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.terms-item {
  background: white;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.terms-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}

.terms-header:hover {
  background: rgba(192, 57, 43, 0.03);
}

.terms-header.active {
  background: rgba(192, 57, 43, 0.05);
}

.terms-header h4 {
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 12px;
}

.terms-header h4 .icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(
    135deg,
    rgba(192, 57, 43, 0.1),
    rgba(243, 156, 18, 0.1)
  );
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 14px;
  flex-shrink: 0;
}

.terms-chevron {
  color: var(--gray);
  font-size: 13px;
  transition: var(--transition);
}

.terms-header.active .terms-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.terms-body {
  display: none;
  padding: 0 22px 20px;
}

.terms-body.open {
  display: block;
}

.terms-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.terms-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.terms-body ul li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===== BLOG ===== */
.blog-section {
  padding: 80px 20px;
  background: white;
}

.blog-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.blog-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-decoration: none;
  display: block;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.blog-thumb {
  height: 190px;
  background: linear-gradient(135deg, var(--dark2), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-thumb-icon {
  font-size: 60px;
  opacity: 0.3;
  color: white;
}

.blog-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.blog-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-body {
  padding: 22px;
}

.blog-date {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-read-more {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.contact-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contact-info h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: white;
  margin-bottom: 15px;
  line-height: 1.2;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}

.contact-detail-text .label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.contact-detail-text .value {
  color: white;
  font-weight: 600;
  font-size: 15px;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.btn-wa-big {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #25d366;
  color: white;
  padding: 18px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-wa-big:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.45);
}

.btn-wa-big .wa-icon {
  font-size: 26px;
}
.btn-wa-big .wa-label {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.8;
}

/* ===== FOOTER ===== */
footer {
  background: #0d0d0d;
  padding: 50px 20px 30px;
  border-top: 1px solid rgba(192, 57, 43, 0.2);
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 60px;
  margin-bottom: 15px;
}

.footer-brand p {
  color: #666;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 14px;
  transition: var(--transition);
  text-decoration: none;
}

.social-btn:hover {
  background: var(--primary);
  color: white;
}

.footer-col h5 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: white;
  font-size: 14px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  color: #666;
  text-decoration: none;
  font-size: 13px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-col ul li a i {
  font-size: 10px;
  color: var(--primary);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 12px;
  color: #444;
}

/* ===== MOBILE BOTTOM NAV ===== */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(192, 57, 43, 0.3);
  z-index: 999;
  padding: 8px 0 env(safe-area-inset-bottom, 8px);
}

.mobile-nav-items {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: #888;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 10px;
  transition: var(--transition);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-nav-item i {
  font-size: 20px;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
  color: var(--primary);
}

.mobile-nav-item.wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  margin-top: -10px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.mobile-nav-item.wa:hover {
  color: white;
  transform: translateY(-3px);
}

/* ===== WA FLOATING ===== */
.wa-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.wa-float-btn {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  animation: pulse 2.5s infinite;
  transition: var(--transition);
}

.wa-float-btn:hover {
  transform: scale(1.1);
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow:
      0 6px 35px rgba(37, 211, 102, 0.65),
      0 0 0 8px rgba(37, 211, 102, 0.08);
  }
}

.wa-float-label {
  background: white;
  color: #128c7e;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

/* ===== SECTION VARIANTS ===== */
.bg-light {
  background: var(--light);
}
.bg-dark {
  background: var(--dark);
}
.bg-white {
  background: white;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 80px 20px;
  background: var(--dark2);
}

.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  color: white;
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 15px 40px rgba(192, 57, 43, 0.4);
}

.about-badge .num {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 36px;
  display: block;
  line-height: 1;
}

.about-badge .txt {
  font-size: 12px;
  font-weight: 600;
}

.about-content {
}

.about-content h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: white;
  margin-bottom: 15px;
  line-height: 1.2;
}

.about-content p {
  color: #888;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.about-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ccc;
  font-size: 14px;
}

.about-points li .check {
  width: 24px;
  height: 24px;
  background: rgba(192, 57, 43, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 11px;
  flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .navbar-menu {
    display: none;
  }
  body {
    padding-bottom: 80px;
  }
  .mobile-bottom-nav {
    display: block;
  }
  .wa-float {
    bottom: 100px;
  }
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-image-wrap {
    order: -1;
  }
  .hero-subtitle {
    margin: 0 auto 35px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-badge {
    right: 10px;
    bottom: -10px;
  }
}

@media (max-width: 600px) {
  .navbar-inner {
    padding: 0 15px;
  }
  .navbar-logo-text span:first-child {
    font-size: 12px;
  }
  .armada-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .calc-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 20px;
  }
  .contact-buttons {
  }
}

@media (max-width: 400px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
