/* ========== GLOBAL STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  color: #333;
}

/* ========== HEADER & NAVIGATION ========== */
header {
  background-color: #214184;
  color: white;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header img {
  height: 50px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

nav {
  display: flex;
  align-items: center;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 5px;
}

nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

/* ========== HERO SECTION ========== */
.hero {
  background: linear-gradient(135deg, rgba(11,61,145,0.7) 0%, rgba(41,137,216,0.7) 100%), url('../images/hero.jpg') center center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: none;
  pointer-events: none;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: 20px;
  font-size: 3em;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: slideInUp 1s ease-out;
}

.hero p {
  font-size: 1.3em;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  animation: slideInUp 1s ease-out 0.3s both;
}

.hero-cta {
  animation: slideInUp 1s ease-out 0.6s both;
}

.hero-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1em;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  margin: 0 10px;
}

.hero-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-btn.primary {
  background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
  border-color: #ff6b6b;
}

.hero-btn.primary:hover {
  background: linear-gradient(45deg, #ff5252, #ff7979);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

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

.floating-cars {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0.1;
}

.floating-car {
  position: absolute;
  font-size: 30px;
  animation: float 6s ease-in-out infinite;
}

.floating-car:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: -1s;
}

.floating-car:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: -3s;
}

.floating-car:nth-child(3) {
  top: 40%;
  left: 70%;
  animation-delay: -5s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* ========== CARS SECTION ========== */
.cars {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

.cars h2 {
  text-align: center;
  color: #0b3d91;
  margin-bottom: 30px;
}

.filter-container {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.filter-title {
  color: #0b3d91;
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 15px;
}

.filter-group {
  display: flex;
  flex-direction: column;
}

.filter-group label {
  color: #0b3d91;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 0.9em;
}

.filter-group select,
.filter-group input {
  padding: 10px;
  border: 2px solid #d1d8e0;
  border-radius: 8px;
  font-size: 0.95em;
  background-color: white;
  transition: all 0.3s ease;
}

.filter-group select:focus,
.filter-group input:focus {
  outline: none;
  border-color: #0b3d91;
  box-shadow: 0 0 0 3px rgba(11, 61, 145, 0.1);
}

.filter-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.filter-btn {
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.apply {
  background: linear-gradient(45deg, #0b3d91, #2989d8);
  color: white;
}

.filter-btn.apply:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(11, 61, 145, 0.3);
}

.filter-btn.reset {
  background: #e1e8ed;
  color: #333;
}

.filter-btn.reset:hover {
  background: #d1d8e0;
}

.car-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
  justify-content: center;
}

.car {
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  background-color: #f9f9f9;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.car img {
  width: 100%;
  /* height: 160px; */
  object-fit: cover;
}

.car h3 {
  margin: 10px 0 5px;
}

.car p {
  margin: 5px 0;
}

.car-button-group {
  display: flex;
  gap: 10px;
  margin: 15px 10px;
}

.car button,
.car .btn-detail,
.car .btn-order {
  flex: 1;
  background-color: #0b3d91;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.95em;
  font-weight: 600;
  transition: all 0.3s ease;
}

.car .btn-detail {
  background-color: #6c757d;
}

.car .btn-detail:hover {
  background-color: #5a6268;
  transform: translateY(-2px);
}

.car button:hover,
.car .btn-order:hover {
  background-color: #0a3277;
  transform: translateY(-2px);
}

/* ========== ARTICLES SECTION ========== */
.articles {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
  background-color: #f8f9fa;
}

.articles h2 {
  color: #0b3d91;
  text-align: center;
  margin-bottom: 30px;
}

.article-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.article {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.article:hover {
  transform: translateY(-5px);
}

.article img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.article .article-card-content {
  padding: 20px;
}

.article h3 {
  color: #0b3d91;
  margin: 0 0 10px 0;
  font-size: 1.3em;
}

.article .article-meta {
  color: #666;
  font-size: 0.9em;
  margin-bottom: 15px;
}

.article p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.article .read-more {
  color: #0b3d91;
  text-decoration: none;
  font-weight: 500;
}

.article .read-more:hover {
  text-decoration: underline;
}

/* ========== ABOUT SECTION ========== */
.about, .contact {
  padding: 100px 20px;
  max-width: 800px;
  margin: auto;
}

.about h2, .contact h2 {
  color: #0b3d91;
  text-align: center;
  margin-bottom: 20px;
}

.about {
  max-width: 1200px;
  padding: 100px 20px;
}

.about h2 {
  font-size: 2.5em;
  margin-bottom: 15px;
}

.about-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.2em;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.about-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.about-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, #0b3d91, #2989d8);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 20px;
}

.about-card h3 {
  color: #0b3d91;
  font-size: 1.4em;
  margin-bottom: 15px;
}

.about-card p {
  color: #555;
  line-height: 1.8;
  margin: 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.stat-box {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.stat-number {
  font-size: 3em;
  font-weight: 700;
  color: #0b3d91;
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  color: #666;
  font-size: 1.1em;
  font-weight: 500;
}

/* ========== CONTACT SECTION ========== */
.contact {
  max-width: 1200px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 20px;
  padding: 50px 30px;
  margin: 40px auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact h2 {
  font-size: 2.5em;
  margin-bottom: 15px;
}

.contact-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1em;
  margin-bottom: 40px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  background: white;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #0b3d91, #2989d8);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-details {
  flex: 1;
}

.contact-details h4 {
  margin: 0 0 5px 0;
  color: #0b3d91;
  font-size: 1.1em;
}

.contact-details p {
  margin: 0;
  color: #666;
}

.contact-details a {
  color: #0b3d91;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #2989d8;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  height: 100%;
  min-height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.social-media {
  text-align: center;
  padding: 30px 0;
}

.social-media h3 {
  color: #0b3d91;
  margin-bottom: 20px;
  font-size: 1.5em;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.social-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.social-icon.whatsapp {
  background: linear-gradient(45deg, #25D366, #128C7E);
  color: white;
}

.social-icon.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.social-icon.facebook {
  background: linear-gradient(45deg, #1877f2, #0e5fc5);
  color: white;
}

.social-icon.email {
  background: linear-gradient(45deg, #0b3d91, #2989d8);
  color: white;
}

.social-icon.tiktok {
  background: linear-gradient(45deg, #000000, #333333);
  color: white;
}

/* ========== FOOTER ========== */
footer {
  background-color: #0b3d91;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}

/* ========== DETAIL PAGE STYLES ========== */
.container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.article-container {
  max-width: 900px;
}

.breadcrumb {
  margin-bottom: 30px;
  font-size: 0.9em;
  color: #666;
}

.breadcrumb a {
  color: #0b3d91;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #2989d8;
}

.detail-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.image-section {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.main-image {
  width: 100%;
  /* height: 400px; */
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.thumbnail-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.thumbnail {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: #0b3d91;
  transform: scale(1.05);
}

.info-section {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.car-title {
  font-size: 2.5em;
  color: #0b3d91;
  margin-bottom: 10px;
}

.car-category {
  display: inline-block;
  background: linear-gradient(45deg, #0b3d91, #2989d8);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9em;
  margin-bottom: 20px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.stars {
  color: #ffc107;
  font-size: 1.2em;
}

.rating-text {
  color: #666;
  font-size: 0.9em;
}

.price-box {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 25px;
  border-radius: 12px;
  margin: 25px 0;
}

.price {
  font-size: 2.5em;
  color: #0b3d91;
  font-weight: 700;
}

.price-sub {
  color: #666;
  font-size: 1em;
  margin-top: 5px;
}

.price-note {
  color: #666;
  font-size: 0.85em;
  margin-top: 10px;
  font-style: italic;
}

.feature-list {
  list-style: none;
  margin: 25px 0;
}

.feature-list li {
  padding: 12px 0;
  border-bottom: 1px solid #e1e8ed;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-icon {
  font-size: 1.3em;
}

.btn-group {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn {
  flex: 1;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(45deg, #ff5252, #ff7979);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
  background: linear-gradient(45deg, #0b3d91, #2989d8);
  color: white;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11, 61, 145, 0.3);
}

.tabs {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  margin-bottom: 40px;
}

.tab-buttons {
  display: flex;
  gap: 10px;
  border-bottom: 2px solid #e1e8ed;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 25px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-size: 1em;
  font-weight: 600;
  color: #666;
  transition: all 0.3s ease;
  margin-bottom: -2px;
}

.tab-btn.active {
  color: #0b3d91;
  border-bottom-color: #0b3d91;
}

.tab-btn:hover {
  color: #0b3d91;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s;
}

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

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.spec-item {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.spec-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #0b3d91, #2989d8);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.spec-details h4 {
  color: #0b3d91;
  margin-bottom: 5px;
  font-size: 0.9em;
}

.spec-details p {
  color: #333;
  font-weight: 600;
  font-size: 1.1em;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.feature-item {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid #0b3d91;
}

.feature-item strong {
  color: #0b3d91;
}

.terms-list {
  list-style: none;
}

.terms-list li {
  padding: 12px 0;
  border-bottom: 1px solid #e1e8ed;
  padding-left: 30px;
  position: relative;
}

.terms-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0b3d91;
  font-weight: bold;
  font-size: 1.2em;
}

.terms-list li:last-child {
  border-bottom: none;
}

.description {
  line-height: 1.8;
  color: #555;
  font-size: 1.05em;
}

.description p {
  margin-bottom: 15px;
}

.similar-cars {
  margin-top: 50px;
}

.similar-cars h2 {
  color: #0b3d91;
  margin-bottom: 25px;
  font-size: 2em;
}

.car-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.car-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.car-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.car-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.car-card-content {
  padding: 20px;
}

.car-card h3 {
  color: #0b3d91;
  margin-bottom: 10px;
}

.car-card .price {
  font-size: 1.5em;
  color: #ff6b6b;
}

/* ========== ARTICLE PAGE STYLES ========== */
.article-header {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.article-category {
  display: inline-block;
  background: linear-gradient(45deg, #0b3d91, #2989d8);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85em;
  margin-bottom: 15px;
  font-weight: 600;
}

.article-title {
  font-size: 2.5em;
  color: #0b3d91;
  margin-bottom: 20px;
  line-height: 1.3;
}

.article-header .article-meta {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  color: #666;
  font-size: 0.95em;
  padding-bottom: 20px;
  border-bottom: 2px solid #e1e8ed;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.meta-icon {
  font-size: 1.2em;
}

.article-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  margin: 30px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

article .article-content {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  margin-bottom: 40px;
}

article .article-content p {
  margin-bottom: 20px;
  font-size: 1.05em;
  line-height: 1.8;
  color: #555;
}

.article-content h2 {
  color: #0b3d91;
  font-size: 1.8em;
  margin: 30px 0 15px;
}

.article-content h3 {
  color: #0b3d91;
  font-size: 1.4em;
  margin: 25px 0 12px;
}

.article-content ul,
.article-content ol {
  margin: 20px 0 20px 25px;
  line-height: 1.8;
}

.article-content li {
  margin-bottom: 12px;
  color: #555;
}

.article-content strong {
  color: #0b3d91;
  font-weight: 600;
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 20px 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.highlight-box {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 25px;
  border-radius: 12px;
  border-left: 5px solid #0b3d91;
  margin: 30px 0;
}

.highlight-box h4 {
  color: #0b3d91;
  margin-bottom: 12px;
  font-size: 1.2em;
}

.warning-box {
  background: #fff3cd;
  border-left: 5px solid #ffc107;
  padding: 20px;
  border-radius: 8px;
  margin: 25px 0;
}

.warning-box strong {
  color: #856404;
}

.tip-box {
  background: #d1ecf1;
  border-left: 5px solid #0c5460;
  padding: 20px;
  border-radius: 8px;
  margin: 25px 0;
}

.tip-box strong {
  color: #0c5460;
}

.quote-box {
  background: #f8f9fa;
  border-left: 5px solid #ff6b6b;
  padding: 20px 25px;
  margin: 25px 0;
  font-style: italic;
  font-size: 1.1em;
  color: #555;
}

.share-section {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  margin-bottom: 40px;
  text-align: center;
}

.share-section h3 {
  color: #0b3d91;
  margin-bottom: 20px;
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.share-btn {
  padding: 12px 25px;
  border: none;
  border-radius: 50px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
}

.share-btn.whatsapp {
  background: linear-gradient(45deg, #25D366, #128C7E);
}

.share-btn.facebook {
  background: linear-gradient(45deg, #1877f2, #0e5fc5);
}

.share-btn.twitter {
  background: linear-gradient(45deg, #1DA1F2, #0d8bd9);
}

.share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.related-articles {
  margin-top: 50px;
}

.related-articles h2 {
  color: #0b3d91;
  margin-bottom: 25px;
  font-size: 2em;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.article-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.article-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.article-card-content {
  padding: 20px;
}

.article-card h3 {
  color: #0b3d91;
  margin-bottom: 10px;
}

.article-card .date {
  color: #666;
  font-size: 0.85em;
  margin-bottom: 12px;
}

.article-card p {
  color: #555;
  font-size: 0.95em;
  line-height: 1.6;
}

.cta-section {
  background: linear-gradient(135deg, #0b3d91 0%, #2989d8 100%);
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  color: white;
  margin: 50px 0;
}

.cta-section h3 {
  font-size: 2em;
  margin-bottom: 15px;
  color: white;
}

.cta-section p {
  font-size: 1.1em;
  margin-bottom: 25px;
  opacity: 1;
  color: white;
}

.cta-btn {
  background: white;
  color: #0b3d91;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 768px) {
  article .article-content {
    padding: 10px;
  }
  .cars {
    padding: 30px 15px;
  }
  
  .car-list {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
  }
  
  header {
    padding: 15px;
  }

  header img {
    height: 45px;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0b3d91 0%, #1e5799 100%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: left 0.3s ease;
    z-index: 1000;
  }

  nav.active {
    left: 0;
  }

  nav a {
    margin: 15px 0;
    font-size: 1.2em;
    padding: 15px 30px;
    border-radius: 10px;
    min-width: 200px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
  }

  nav a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
  }

  .hero {
    padding: 80px 15px 60px;
  }

  .hero h1 {
    font-size: 2.2em;
  }

  .hero p {
    font-size: 1.1em;
  }

  .hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .hero-btn {
    flex: 0 1 auto;
    margin: 0;
    padding: 12px 20px;
    font-size: 0.95em;
  }

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

  .filter-buttons {
    flex-direction: column;
  }

  .filter-btn {
    width: 100%;
  }

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

  .about h2 {
    font-size: 2em;
  }

  .stat-number {
    font-size: 2.5em;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .map-container {
    min-height: 300px;
  }

  .contact {
    padding: 100px 20px;
  }

  .contact h2 {
    font-size: 2em;
  }

  .social-icon {
    width: 50px;
    height: 50px;
    /* font-size: 24px; */
  }

  .detail-wrapper {
    grid-template-columns: 1fr;
  }

  .car-title {
    font-size: 2em;
  }

  .price {
    font-size: 2em;
  }

  .btn-group {
    flex-direction: column;
  }

  .thumbnail-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .article-title {
    font-size: 1.8em;
  }

  .article-header {
    padding: 25px;
  }

  .article-content {
    padding: 25px;
  }

  .article-image {
    height: 250px;
  }

  .article-meta {
    gap: 15px;
  }

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

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8em;
  }

  .hero p {
    font-size: 1em;
  }

  .hero-btn {
    padding: 10px 18px;
    font-size: 0.9em;
  }
}

/* ========== INTRO SECTION ========== */
.intro {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 60px 20px;
  border-radius: 20px;
  max-width: 1200px;
  margin: 40px auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.intro-content {
  text-align: center;
}

.intro-content h2 {
  color: #0b3d91;
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.intro-content p {
  color: #555;
  font-size: 1.15em;
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .intro {
    padding: 35px 10px;
    max-width: 100%;
    margin: 25px 10px;
    border-radius: 1;
  }
  .intro-content h2 {
    font-size: 1.2em;
  }
  .intro-content p {
    font-size: 1em;
  }
}

/* Responsive tab buttons for mobile */
@media (max-width: 768px) {
  .tabs {
    padding: 15px;
  }
  .tab-buttons {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    margin-bottom: 18px;
    scrollbar-width: thin;
    scrollbar-color: #0b3d91 #e1e8ed;
  }
  .tab-btn {
    min-width: 140px;
    font-size: 1em;
    padding: 12px 10px;
    border-radius: 10px 10px 0 0;
    background: #f5f7fa;
    border-bottom: 3px solid transparent;
    margin-bottom: 0;
    white-space: nowrap;
  }
  .tab-btn.active {
    background: linear-gradient(45deg, #0b3d91, #2989d8);
    color: white;
    border-bottom-color: #0b3d91;
  }
  .tab-btn:hover {
    background: #e1e8ed;
    color: #0b3d91;
  }
}
