:root {
  /* Primary Colors - Pastel palette for premium brand feel */
  --color-primary-1: #e6d7c3; /* Warm sand - primary brand color */
  --color-primary-2: #c9d6df; /* Soft sky blue */
  --color-primary-3: #f2d0a9; /* Muted peach */
  --color-primary-4: #d8e2dc; /* Pale sage */
  --color-primary-5: #dcc7aa; /* Taupe */

  /* Shades */
  --color-dark-1: #2d3142; /* Deep navy */
  --color-dark-2: #4f5d75; /* Slate */
  --color-light-1: #f8f9fa; /* Off-white */
  --color-light-2: #e9ecef; /* Light gray */
  
  /* Functional colors */
  --color-text: #333;
  --color-background: #fff;
  --color-accent: #ba7a5d; /* Copper accent */
}

/* Base styles */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito Sans', 'Helvetica Neue', sans-serif;
  color: var(--color-text);
  background-color: var(--color-background);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-dark-1);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--color-dark-1);
}

img {
  max-width: 100%;
  height: auto;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.875rem;
}

.btn-primary {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-light-1);
}

.btn-primary:hover {
  background-color: var(--color-dark-1);
  border-color: var(--color-dark-1);
}

.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--color-dark-2);
  font-weight: 500;
}

.section-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 0.5rem 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-dark-1);
}

.nav-link {
  color: var(--color-dark-1);
  font-weight: 600;
  padding: 0.5rem 1rem !important;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 70%;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slide {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
}

/* Static Hero Section - New Styles */
.static-hero {
  padding-top: 80px; /* Account for fixed header */
}

.static-hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary-1) 0%, var(--color-primary-2) 100%);
  z-index: -1;
}

.static-hero .hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.4) 100%);
}

.static-hero .hero-content {
  position: relative;
  z-index: 10;
  max-width: 100%;
  padding: 2rem 0;
  color: white;
}

.static-hero .hero-image {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 2rem;
}

.static-hero .hero-image-placeholder {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  width: 100%;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: float 6s ease-in-out infinite;
}

.car-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
}

.hero-image-placeholder p {
  color: white;
  font-weight: 600;
  font-size: 1.25rem;
  text-align: center;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 2rem;
  color: white;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.8);
}

/* About Section */
.about {
  position: relative;
  background-color: var(--color-light-1);
}

.about-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  opacity: 0.1;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

/* Services Section */
.services {
  position: relative;
  overflow: hidden;
}

.services-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25%;
  height: 60%;
  opacity: 0.08;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: left bottom;
}

.service-item {
  margin-bottom: 2rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background-color: white;
  height: 100%;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-item-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.service-item-content {
  padding: 1.5rem;
}

.service-item-name {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.service-item-price {
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-item-desc {
  margin-bottom: 1rem;
  color: var(--color-dark-2);
}

.service-item-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-item-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-light-2);
  position: relative;
  padding-left: 1.5rem;
}

.service-item-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

.service-item-features li:last-child {
  border-bottom: none;
}

/* Features Section */
.features {
  background-color: var(--color-light-1);
  position: relative;
}

.feature-item {
  text-align: center;
  margin-bottom: 2rem;
}

.feature-item-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background-color: var(--color-primary-1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.feature-item-icon img {
  max-width: 40px;
}

.feature-item-name {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feature-item-desc {
  color: var(--color-dark-2);
}

/* Price Plan Section */
.priceplan {
  position: relative;
}

.price-item {
  text-align: center;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background-color: white;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.price-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--color-primary-3);
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-item-name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.price-item-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.price-item-desc {
  margin-bottom: 1.5rem;
  color: var(--color-dark-2);
}

.price-item-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  text-align: left;
}

.price-item-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-light-2);
  position: relative;
  padding-left: 1.5rem;
}

.price-item-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.price-item-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team {
  background-color: var(--color-light-1);
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member-img {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-member-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.team-member-role {
  color: var(--color-accent);
  font-weight: 600;
}

/* Reviews Section */
.reviews {
  position: relative;
  overflow: hidden;
}

.reviews-swiper {
  padding-bottom: 3rem;
}

.review-item {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.review-item-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 2rem;
}

.review-item-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: var(--color-primary-3);
  font-family: serif;
  line-height: 1;
}

.review-item-author {
  font-weight: 700;
  display: flex;
  align-items: center;
}

.review-item-author::before {
  content: '—';
  margin-right: 0.5rem;
  color: var(--color-accent);
}

/* Core Info Section */
.coreinfo {
  background-color: var(--color-primary-1);
  position: relative;
  overflow: hidden;
}

.coreinfo-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  opacity: 0.1;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

.coreinfo-item {
  margin-bottom: 2rem;
  background-color: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.coreinfo-item-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.coreinfo-item-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: var(--color-primary-3);
}

.coreinfo-item-desc {
  color: var(--color-dark-2);
}

/* Contact Section */
.contact {
  position: relative;
}

.contact-form {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control {
  border-radius: 4px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--color-light-2);
}

.contact-form textarea.form-control {
  height: 150px;
}

.contact-info {
  padding: 2rem;
  background-color: var(--color-primary-1);
  border-radius: 8px;
  height: 100%;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.contact-info-item {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
}

.contact-info-item i {
  margin-right: 1rem;
  color: var(--color-accent);
}

/* Footer */
footer {
  background-color: var(--color-dark-1);
  color: var(--color-light-1);
  padding: 3rem 0 1.5rem;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-desc {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  text-decoration: none;
}

.copyright {
  padding-top: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* Decorative elements */
.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.shape-divider .shape-fill {
  fill: var(--color-light-1);
}

/* Animation utility classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* Custom swiper styles */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--color-light-1);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--color-accent);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--color-accent) !important;
}

@media (max-width: 991px) {
  .section {
    padding: 4rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 3rem 0;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
} 