/* ============================================================
   Gloria Trading — Main Stylesheet
   Theme: White + Deep Green / Simple & Clean
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --green-dark:   #1a4731;
  --green-mid:    #2d6a4f;
  --green-light:  #52b788;
  --green-pale:   #d8f3dc;
  --green-accent: #40916c;
  --white:        #ffffff;
  --gray-100:     #f8f9fa;
  --gray-200:     #e9ecef;
  --gray-300:     #dee2e6;
  --gray-500:     #adb5bd;
  --gray-600:     #6c757d;
  --gray-800:     #343a40;
  --text-dark:    #1a1a1a;
  --text-muted:   #6c757d;
  --gold:         #c9a84c;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:    0 4px 12px rgba(0,0,0,0.10);
  --shadow-lg:    0 8px 24px rgba(0,0,0,0.12);
  --radius:       6px;
  --radius-lg:    10px;
  --transition:   0.25s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

h1 { font-size: 2.4rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; color: var(--text-muted); }
p:last-child { margin-bottom: 0; }

a {
  color: var(--green-mid);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--green-dark); }

ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 0.4rem; }

img { max-width: 100%; height: auto; display: block; }

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  background-color: var(--green-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.navbar {
  padding: 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

/* Logo */
.navbar-brand { flex-shrink: 0; }

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo::before {
  content: "🌿";
  font-size: 1.2rem;
}

/* Nav links */
.navbar-menu {
  display: flex;
  list-style: none;
  gap: 0;
  margin: 0;
  padding: 0;
  height: 64px;
  align-items: stretch;
}

.navbar-menu li {
  margin: 0;
  display: flex;
  align-items: stretch;
}

.navbar-menu a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0 14px;
  display: flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.navbar-menu a:hover,
.navbar-menu a.active {
  color: var(--white);
  border-bottom-color: var(--green-light);
  background-color: rgba(255,255,255,0.06);
}

/* Mobile hamburger */
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1.4;
}

.btn-primary {
  background-color: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}
.btn-primary:hover {
  background-color: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--green-mid);
  border-color: var(--green-mid);
}
.btn-secondary:hover {
  background-color: var(--green-pale);
  color: var(--green-dark);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background-color: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background-color: #1da851;
  border-color: #1da851;
  color: var(--white);
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 60%, var(--green-accent) 100%);
  padding: 6rem 0 5rem;
  text-align: center;
  position: relative;
  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='%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");
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.disclaimer-badge {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  background-color: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 20px;
  color: rgba(255,255,255,0.92);
  font-size: 0.88rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(4px);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-light), var(--gold), var(--green-light));
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 2.2rem;
}

.page-header p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  margin: 0;
}

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 4rem 0; }

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.section-divider {
  width: 48px;
  height: 3px;
  background: var(--green-light);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.features {
  padding: 4rem 0;
  background-color: var(--gray-100);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem 1.5rem;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background-color: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.4rem;
}

.feature-card h3 {
  font-size: 1.05rem;
  color: var(--green-dark);
  margin-bottom: 0.6rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 4rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   INFO GRID
   ============================================================ */
.info-section { padding: 4rem 0; }

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.info-box {
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--green-mid);
  transition: box-shadow var(--transition);
}

.info-box:hover { box-shadow: var(--shadow-md); }

.info-box h3 {
  font-size: 1.05rem;
  color: var(--green-dark);
  margin-bottom: 0.6rem;
}

.info-box p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
}

/* ============================================================
   CATALOG LAYOUT
   ============================================================ */
.catalog-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  align-items: start;
}

.catalog-sidebar {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: sticky;
  top: 80px;
}

.filter-group h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--green-pale);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-item {
  margin-bottom: 1.2rem;
}

.filter-item label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gray-800);
}

.filter-select,
.filter-input {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 0.9rem;
  background-color: var(--white);
  transition: border-color var(--transition);
}

.filter-select:focus,
.filter-input:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}

.catalog-main { min-width: 0; }

.results-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
}

.results-count {
  font-weight: 600;
  color: var(--green-dark);
}

/* ============================================================
   VEHICLE CARDS
   ============================================================ */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.vehicle-card {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.vehicle-card:hover {
  border-color: var(--green-mid);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

/* REFERENCE ribbon */
.vehicle-card::before {
  content: "REFERENCE";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
  padding: 0.35rem 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  z-index: 2;
}

.vehicle-image {
  position: relative;
  width: 100%;
  padding-bottom: 66.67%;
  overflow: hidden;
  background-color: var(--gray-100);
  margin-top: 1.7rem;
}

.vehicle-image img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.vehicle-card:hover .vehicle-image img {
  transform: scale(1.04);
}

.vehicle-image.no-image {
  background-color: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 0.85rem;
}

.vehicle-card-inner {
  padding: 1.25rem 1.25rem 1.5rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.vehicle-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.ref-id {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 0.6rem;
  font-family: monospace;
}

.vehicle-meta {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.vehicle-drive {
  font-size: 0.82rem;
  color: var(--green-accent);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.vehicle-price-block {
  margin: 0.8rem 0 1rem;
  padding: 0.8rem;
  background-color: var(--gray-100);
  border-radius: var(--radius);
}

.price-label {
  font-size: 0.78rem;
  color: var(--gray-600);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-range {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.2rem;
}

.price-basis {
  font-size: 0.78rem;
  color: var(--gray-500);
}

.vehicle-note {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin: 0.5rem 0 1rem;
  font-style: italic;
}

.vehicle-card-inner .btn {
  margin-top: auto;
}

/* ============================================================
   VEHICLE DETAIL
   ============================================================ */
.vehicle-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.vehicle-gallery { display: flex; flex-direction: column; }

.main-image {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  overflow: hidden;
  background-color: var(--gray-100);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  border: 1px solid var(--gray-200);
}

.main-image img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.main-image.no-image {
  background-color: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
}

.disclaimer-box {
  background-color: #fffbeb;
  border-left: 4px solid var(--gold);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.disclaimer-box p { color: #7c5c00; margin: 0; font-size: 0.9rem; }

.price-section {
  background-color: var(--green-pale);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  margin: 1.5rem 0;
  border: 1px solid rgba(45,106,79,0.2);
}

.price-value {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-top: 0.25rem;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.spec-table tr { border-bottom: 1px solid var(--gray-200); }
.spec-table tr:last-child { border-bottom: none; }

.spec-label {
  font-weight: 600;
  color: var(--gray-600);
  width: 40%;
  padding: 0.7rem 0;
  font-size: 0.9rem;
}

.spec-value {
  color: var(--text-dark);
  padding: 0.7rem 0;
  font-size: 0.95rem;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 2rem;
}

.pagination-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--gray-300);
  background-color: var(--white);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.pagination-btn:hover {
  background-color: var(--green-pale);
  border-color: var(--green-mid);
  color: var(--green-dark);
}

.pagination-current {
  padding: 0.5rem 1rem;
  background-color: var(--green-mid);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--green-dark);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 0 0;
  margin-top: 5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand .logo {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-section h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1rem;
}

.footer-section ul { list-style: none; padding: 0; }

.footer-section li { margin-bottom: 0.5rem; }

.footer-section a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-section a:hover { color: var(--green-light); }

.footer-section p {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
}

.footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom p { margin: 0; color: rgba(255,255,255,0.45); }

/* ============================================================
   FORMS
   ============================================================ */
.form-card {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

fieldset {
  border: none;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--gray-200);
}

fieldset:last-of-type { border-bottom: none; }

legend {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 1rem;
  padding: 0;
}

.form-group { margin-bottom: 1.25rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-800);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  background-color: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  color: var(--text-dark);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.12);
}

small {
  display: block;
  margin-top: 0.3rem;
  color: var(--gray-600);
  font-size: 0.82rem;
}

/* ============================================================
   STATUS MESSAGES
   ============================================================ */
.status-message {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.status-success {
  background-color: var(--green-pale);
  color: var(--green-dark);
  border: 1px solid var(--green-light);
}

.status-error {
  background-color: #fdecea;
  color: #b71c1c;
  border: 1px solid #f5c6cb;
}

/* ============================================================
   TABLES
   ============================================================ */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.data-table th {
  background-color: var(--green-dark);
  color: var(--white);
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.data-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--gray-200);
  color: var(--text-dark);
}

.data-table tr:hover td { background-color: var(--gray-100); }

.profile-table {
  width: 100%;
  border-collapse: collapse;
}

.profile-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.95rem;
}

.profile-table td:first-child {
  color: var(--gray-600);
  font-weight: 500;
  width: 40%;
}

.profile-table td:last-child {
  color: var(--text-dark);
  font-weight: 600;
}

/* ============================================================
   STEP CARDS (How It Works)
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.step-card {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

.step-card:hover {
  border-color: var(--green-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.step-number {
  width: 44px;
  height: 44px;
  background-color: var(--green-mid);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step-card h3 {
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 0.6rem;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   NOTICE / ALERT BOXES
   ============================================================ */
.notice-box {
  background-color: var(--green-pale);
  border: 1px solid rgba(45,106,79,0.25);
  border-left: 4px solid var(--green-mid);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.notice-box h4 {
  color: var(--green-dark);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.notice-box p {
  color: var(--green-mid);
  margin: 0;
  font-size: 0.9rem;
}

.warning-box {
  background-color: #fffbeb;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.warning-box h4 { color: #7c5c00; margin-bottom: 0.5rem; }
.warning-box p { color: #7c5c00; margin: 0; font-size: 0.9rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.contact-item:last-child { border-bottom: none; }

.contact-icon {
  width: 44px;
  height: 44px;
  background-color: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.9rem;
  color: var(--green-dark);
  margin-bottom: 0.25rem;
}

.contact-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding: 4rem 0;
}

.company-profile-card {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.company-profile-card h3 {
  background-color: var(--green-dark);
  color: var(--white);
  padding: 1rem 1.5rem;
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.3px;
}

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

@media (max-width: 768px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }

  .navbar-toggle { display: flex; }

  .navbar-menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background-color: var(--green-dark);
    flex-direction: column;
    height: auto;
    padding: 0.5rem 0 1rem;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  }

  .navbar-menu.open { display: flex; }

  .navbar-menu li { height: auto; }

  .navbar-menu a {
    padding: 0.75rem 1.5rem;
    border-bottom: none;
    border-left: 3px solid transparent;
  }

  .navbar-menu a:hover,
  .navbar-menu a.active {
    border-left-color: var(--green-light);
    border-bottom: none;
  }

  .site-header { position: relative; }

  .hero { padding: 4rem 0 3.5rem; }
  .hero-content h1 { font-size: 2.1rem; }

  .features-grid,
  .info-grid,
  .steps-grid { grid-template-columns: 1fr 1fr; }

  .catalog-layout { grid-template-columns: 1fr; }
  .vehicle-detail-layout { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  html { font-size: 15px; }
  .container { padding: 0 16px; }

  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }

  .features-grid,
  .info-grid,
  .steps-grid,
  .footer-content { grid-template-columns: 1fr; }

  .hero-actions,
  .cta-buttons { flex-direction: column; align-items: center; }

  .hero-actions .btn,
  .cta-buttons .btn { width: 100%; max-width: 320px; }

  .vehicle-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ADDITIONAL COMPONENTS (added for design refresh)
   ============================================================ */

/* Breadcrumb */
.breadcrumb {
  background-color: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  padding: 0.75rem 0;
  font-size: 0.85rem;
  color: var(--gray-500);
}
.breadcrumb a { color: var(--green-mid); }
.breadcrumb a:hover { color: var(--green-dark); }

/* Price box (vehicle detail) */
.price-box {
  background-color: var(--green-pale);
  border: 1px solid rgba(45,106,79,0.25);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

/* CTA box (vehicle detail sidebar) */
.cta-box {
  background-color: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: sticky;
  top: 80px;
}

/* Stats bar */
.stats-bar {
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item { padding: 0.5rem; }
.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green-dark);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
  display: block;
}

/* Hero badge */
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,0.25);
}

/* Footer brand */
.footer-brand .logo {
  font-size: 1.3rem;
  color: var(--white) !important;
  margin-bottom: 0.75rem;
  display: inline-block;
}
.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Steps timeline (how-it-works) */
.steps-timeline { max-width: 800px; margin: 0 auto; }
.step-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}
.step-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 29px;
  top: 60px;
  width: 2px;
  height: calc(100% - 20px);
  background: var(--green-pale);
}
.step-number-lg {
  width: 60px;
  height: 60px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step-content {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.step-content h3 { color: var(--green-dark); margin-bottom: 0.5rem; }

/* About stats */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.about-stat-box {
  background: var(--green-pale);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
}

/* Responsive additions */
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-box { position: static; }
  .step-item { grid-template-columns: 50px 1fr; gap: 1rem; }
  .step-number-lg { width: 50px; height: 50px; font-size: 1.1rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: 1fr; }
}
