/* Base Styles */
:root {
  --primary: #c838af;
  --primary-hover: rgba(200, 56, 175, 0.8);
  --secondary: #111111;
  --background: #000000;
  --foreground: #ffffff;
  --muted: #666666;
  --muted-foreground: #999999;
  --border: #333333;
  --radius: 0.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-primary {
  color: var(--primary);
}

.bg-black {
  background-color: var(--background);
}

.bg-gradient {
  background: linear-gradient(to bottom, var(--background), #111111);
}

.bg-gradient-reverse {
  background: linear-gradient(to bottom, #111111, var(--background));
}

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 2rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted-foreground);
  font-size: 1.1rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

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

.content-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.content-block h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

.content-block p {
  color: var(--muted-foreground);
}

.img-container {
  position: relative;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
}

.btn i {
  margin-left: 0.5rem;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
}

.btn-outline {
  background-color: transparent;
  color: white;
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-full {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.3s ease;
  background-color: transparent;
}

.header.scrolled {
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.75rem 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.logo img {
  width: 70px;
}

.desktop-nav {
  display: none;
}

.nav-link {
  margin-left: 2rem;
  position: relative;
  color: white;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-menu-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 1rem 0;
  gap: 1rem;
}

.mobile-nav.active {
  display: flex;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.dropdown-trigger i {
  margin-left: 0.25rem;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: var(--radius);
  padding: 0.5rem 0;
}

.dropdown-content a {
  color: white;
  padding: 0.75rem 1rem;
  display: block;
  transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--primary);
}

.dropdown:hover .dropdown-content {
  display: block;
  \
}
255,255,0.1);
color: var(--primary
)
;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  text-align: center;
  padding: 0 1rem;
}

.slide-text {
  max-width: 800px;
  transition: all 1s ease;
  transform: translateY(20px);
  opacity: 0;
}

.slide.active .slide-text {
  transform: translateY(0);
  opacity: 1;
}

.slide-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.slide-text p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  border: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-btn:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.prev-btn {
  left: 1rem;
}

.next-btn {
  right: 1rem;
}

.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--primary);
  width: 1.5rem;
  border-radius: 1rem;
}

/* Page Hero */
.page-hero {
  position: relative;
  height: 40vh;
  display: flex;
  align-items: center;
  margin-top: 7.3rem;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

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

.page-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-hero-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
}

/* Vehicle Cards */
.vehicle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.vehicle-card {
  background-color: black;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.5s ease;
  position: relative;
}

.vehicle-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.vehicle-image {
  position: relative;
  height: 17rem;
  overflow: hidden;
}

.vehicle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.vehicle-card:hover .image-overlay {
  opacity: 1;
}

.vehicle-details {
  padding: 1.5rem;
}

.vehicle-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.vehicle-category {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  display: block;
}

.vehicle-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.vehicle-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1rem 0;
}

.spec {
  text-align: center;
}

.spec-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.spec-value {
  font-weight: 600;
  color: white;
}

.vehicle-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  color: white;
  transition: color 0.3s ease;
}

.vehicle-card:hover .vehicle-link {
  color: var(--primary);
}

.vehicle-link i {
  transition: transform 0.3s ease;
}

.vehicle-card:hover .vehicle-link i {
  transform: translateX(4px);
}

.vehicle-card .status-ribbon{
  position: absolute;
  right: -33px;
  top: 24px;
  z-index: 1;
  background-color: black;
  padding: 1px 30px;
  transform: rotate(45deg);
  font-size: 14px;
}

.vehicle-card .status-ribbon.upcoming{
  background-color: #3d9f00;
}

.vehicle-card .status-ribbon.sold-out{
  background-color: #e30000;
}

/* Vehicle Detail Page */
.back-link {
  display: inline-flex;
  align-items: center;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.back-link:hover {
  color: white;
}

.back-link i {
  margin-right: 0.5rem;
}

.vehicle-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
}

.vehicle-category-badge {
  color: var(--primary);
  font-size: 1.125rem;
  font-weight: 500;
}

.vehicle-title {
  font-size: 3rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: transparent;
  color: white;
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
}

.share-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.vehicle-gallery {
  margin-bottom: 2rem;
}

.main-image {
  width: 100%;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.gallery-image {
  height: 100px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.gallery-image.active {
  border-color: var(--primary);
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-description {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.25rem;
  color: var(--muted-foreground);
}

.feature-list {
  list-style: none;
  margin-top: 1rem;
}

.feature-list li {
  display: flex;
  margin-bottom: 0.75rem;
  color: var(--muted-foreground);
}

.feature-bullet {
  color: var(--primary);
  margin-right: 0.75rem;
}

.specs-table {
  background-color: var(--secondary);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

.spec-item {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.spec-name {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.spec-value {
  font-weight: 600;
  color: white;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.contact-option {
  display: flex;
  align-items: flex-start;
}

.contact-option i {
  color: var(--primary);
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.option-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-option a {
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.contact-option a:hover {
  color: var(--primary);
}

.inquiry-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Tire Specs */
.tire-specs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.tire-spec-card {
  background-color: var(--secondary);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.tire-spec-card:hover {
  border-color: var(--primary);
}

.spec-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.tire-spec-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.tire-spec-card p {
  color: var(--muted-foreground);
}

.numbered-list {
  list-style-type: none;
  counter-reset: item;
  margin-top: 1rem;
}

.numbered-list li {
  counter-increment: item;
  margin-bottom: 1rem;
  color: var(--muted-foreground);
}

.numbered-list li strong {
  color: white;
}

.comparison-table-wrapper {
  overflow-x: auto;
}

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

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  background-color: var(--secondary);
  color: white;
  font-weight: 600;
}

.comparison-table td {
  color: var(--muted-foreground);
}

.comparison-table .highlight {
  color: var(--primary);
}

/* Video Container */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact Form */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  background-color: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: white;
  font-family: inherit;
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.social-section {
  margin-top: 2rem;
}

.social-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--secondary);
  border-radius: 50%;
  color: var(--muted-foreground);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--primary);
  color: white;
}

.map-container {
  height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 2rem;
}

/* Business Hours */
.hours-container {
  max-width: 800px;
  margin: 0 auto;
}

.hours-card {
  background-color: var(--secondary);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.hours-col {
  padding: 2rem;
  border-bottom: 1px solid var(--border);
}

.hours-col h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  color: var(--muted-foreground);
}

/* Offerings */
.offerings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.offering-card {
  background-color: #111111;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.offering-card:hover {
  border-color: var(--primary);
}

.offering-icon {
  width: 4rem;
  height: 4rem;
  background-color: rgba(200, 56, 175, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.offering-icon i {
  color: var(--primary);
  font-size: 2rem;
}

.offering-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: white;
}

.offering-card p {
  color: var(--muted-foreground);
}

/* Subsidiaries */
.subsidiaries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.subsidiary-card {
  background-color: #111111;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.subsidiary-card:hover {
  border-color: var(--primary);
}

.subsidiary-logo {
  height: 5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.subsidiary-logo img {
  max-height: 100%;
  object-fit: contain;
}

.subsidiary-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  text-align: center;
}

/* Subsidiary Detail Cards */
.subsidiary-detail-card {
  background-color: #111111;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.subsidiary-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.subsidiary-header .subsidiary-logo {
  width: auto;
  height: auto;
  margin-right: 1.5rem;
  margin-bottom: 0;
}

.subsidiary-header .subsidiary-logo img {
  width: 7.5rem;
}

.subsidiary-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.subsidiary-detail-card p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.subsidiary-detail-card ul {
  color: var(--muted-foreground);
}

.subsidiary-detail-card ul li {
  margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--background), rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8));
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

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

/* Cards */
.card {
  background-color: #111111;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  height: 100%;
}

.card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.card p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.card-image {
  height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: var(--border);
  transform: translateX(-50%);
  display: none;
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
}

.timeline-item.right {
  flex-direction: row;
}

.timeline-content {
  width: 100%;
  background-color: #111111;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
}

.timeline-dot {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: var(--primary);
  border: 4px solid var(--background);
  z-index: 1;
}

.timeline-year {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.25rem;
  display: block;
  margin-bottom: 0.5rem;
}

.timeline-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--muted-foreground);
}

/* Team Members */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.team-card {
  background-color: #111111;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.team-card:hover {
  border-color: var(--primary);
}

.team-image {
  height: 20rem;
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-details {
  padding: 1.5rem;
}

.team-details h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.team-position {
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

.team-bio {
  color: var(--muted-foreground);
}

/* Chairman Message */
blockquote {
  border-left: 4px solid var(--primary);
  padding-left: 1.5rem;
  font-style: italic;
  color: var(--muted-foreground);
  margin: 1.5rem 0;
}

.chairman-name {
  font-weight: 600;
  color: white;
}

.chairman-title {
  color: var(--muted-foreground);
}

/* Footer */
.footer {
  background-color: black;
  color: white;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-logo {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-col p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--primary);
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.contact-info li i {
  color: var(--primary);
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

/* Animations */
.animate {
  opacity: 0;
}

.fade-in {
  transform: translateY(30px);
}

.slide-in-left {
  transform: translateX(-50px);
}

.slide-in-right {
  transform: translateX(50px);
}

.reveal {
  transform: translateY(30px);
}

.animate.active {
  opacity: 1;
  transform: translate(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Utility Classes */
.mt-12 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 1rem;
}

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

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

/* Filters */
.filters {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-box {
  position: relative;
  flex: 1;
}

.search-box i {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-foreground);
}

.search-box input {
  width: 100%;
  padding: 0.75rem 0.75rem 0.75rem 2.5rem;
  background-color: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: white;
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.category-btn {
  background: none;
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
  color: var(--primary);
}

.category-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

/* Media Queries */
@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .inquiry-buttons {
    flex-direction: row;
  }

  .form-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 3rem;
  }

  .slide-text h1 {
    font-size: 4rem;
  }

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

  .mobile-menu-btn {
    display: none;
  }

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

  .grid-3-1 {
    grid-template-columns: 1fr 2fr;
  }

  .vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offerings-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-line {
    display: block;
  }

  .timeline-dot {
    display: block;
  }

  .timeline-item .timeline-content {
    width: calc(50% - 2rem);
    margin-right: auto;
  }

  .timeline-item.right .timeline-content {
    margin-left: auto;
    margin-right: 0;
  }

  .filter-group {
    flex-direction: row;
  }

  .hours-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hours-col {
    border-bottom: none;
    border-right: 1px solid var(--border);
  }

  .hours-col:last-child {
    border-right: none;
  }

  .tire-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .order-1 {
    order: unset;
  }

  .order-2 {
    order: unset;
  }
}

@media (min-width: 1024px) {
  .vehicle-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

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

@media (min-width: 1280px) {
  .container {
    padding: 0 2rem;
  }

  .vehicle-gallery {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 1rem;
  }

  .main-image {
    height: 500px;
    margin-bottom: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    height: 500px;
  }

  .gallery-image {
    height: calc((500px - 2rem) / 3);
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .cta-section {
    display: none;
  }

  body {
    background-color: white;
    color: black;
  }

  .container {
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .page-hero {
    height: auto;
    margin-top: 0;
  }

  .page-hero-bg {
    display: none;
  }

  .page-hero-content {
    color: black;
  }

  .section {
    padding: 2rem 0;
  }

  .animate {
    opacity: 1;
    transform: none;
  }
}

.welcome-section .content-block{
  display: block;
}

.welcome-section .content-block h2{
  margin-bottom: 20px;
  line-height: 1.5;
}

.welcome-section .content-block p{
  margin-bottom: 30px;
}

.mb-10px{
  margin-bottom: 10px;
}

ul.two-columns{
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}

@media (max-width: 768px) {
  .logo{
    font-size: 1rem;
  }
  .logo img {
    width: 50px;
  }
  .subsidiaries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .page-hero {
    margin-top: 5.3em;
  }

  .page-hero-content h1 {
    font-size: 1.5rem;
  }

  .page-hero-content p {
    font-size: 1rem;
  }

  .slider-btn{
    display: none;
  }
}