*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
  color: #14213d;
  background-color: #f7f7fb;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 85vh;
  background: linear-gradient(
      135deg,
      rgba(30, 58, 95, 0.95),
      rgba(11, 16, 32, 0.98)
    ),
    radial-gradient(circle at 30% 50%, rgba(252, 163, 17, 0.15), transparent 70%);
  color: #ffffff;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(252, 163, 17, 0.1), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(252, 163, 17, 0.08), transparent 50%);
  animation: pulse 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  padding-block: 4.5rem;
  position: relative;
  z-index: 1;
  align-items: center;
}

.hero-cars-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.car-item {
  width: 100%;
  max-width: 380px;
  position: relative;
  animation: fadeInScale 0.8s ease-out backwards;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.car-item:nth-child(1) {
  animation-delay: 0.1s;
}

.car-item:nth-child(2) {
  animation-delay: 0.2s;
}

.car-item:nth-child(3) {
  animation-delay: 0.3s;
}

.car-item img {
  width: 100%;
  max-width: 380px;
  height: auto;
  min-height: 200px;
  max-height: 300px;
  border-radius: 1.5rem;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6), 0 0 40px rgba(252, 163, 17, 0.2);
  object-fit: contain;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid rgba(252, 163, 17, 0.3);
  display: block;
}

.car-item img[src=""],
.car-item img:not([src]) {
  background: rgba(255, 255, 255, 0.1);
  border: 3px dashed rgba(252, 163, 17, 0.5);
}

.car-item img::before {
  content: "🚗 Image Loading...";
  display: block;
  text-align: center;
  padding: 2rem;
  color: rgba(255, 255, 255, 0.7);
}

.car-item img:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 60px rgba(252, 163, 17, 0.4);
  border-color: rgba(252, 163, 17, 0.6);
}

.car-label {
  text-align: center;
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  background: rgba(252, 163, 17, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff, #fca311);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tagline {
  font-size: 1.05rem;
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.hero-highlights {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-highlights li {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out backwards;
}

.hero-highlights li:nth-child(1) { animation-delay: 0.2s; }
.hero-highlights li:nth-child(2) { animation-delay: 0.3s; }
.hero-highlights li:nth-child(3) { animation-delay: 0.4s; }

.hero-highlights li:hover {
  background: rgba(252, 163, 17, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(252, 163, 17, 0.3);
}

.hero-contact-card {
  background: rgba(255, 255, 255, 0.98);
  color: #14213d;
  padding: 2rem 1.8rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(252, 163, 17, 0.2);
  margin-top: 2rem;
  width: 100%;
  max-width: 320px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(252, 163, 17, 0.3);
}

.hero-contact-card h2 {
  font-size: 1.3rem;
  margin-bottom: 0.9rem;
}

.hero-phone {
  font-size: 1.1rem;
  font-weight: 600;
}

.hero-phone + .hero-phone {
  margin-top: 0.3rem;
}

.hero-small {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #fca311, #ffb526);
  color: #14213d;
  box-shadow: 0 10px 30px rgba(252, 163, 17, 0.4);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffb526, #ffc947);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(252, 163, 17, 0.5);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.navbar:hover {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.7rem;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #fca311;
  font-size: 1.3rem;
  background: linear-gradient(135deg, #fca311, #ffb526);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.15rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #fca311, #ffb526);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.nav-links a:hover {
  color: #fca311;
}

.nav-links a:hover::after {
  width: 100%;
}

.section {
  padding-block: 4.5rem;
}

.section-alt {
  background: #ffffff;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  margin-bottom: 0.7rem;
  text-align: center;
  font-weight: 800;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #fca311, #ffb526);
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
  color: #555;
  margin-bottom: 2rem;
  font-size: 0.98rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.card {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #fca311, #ffb526);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
  border-color: rgba(252, 163, 17, 0.4);
}

.card:hover::before {
  transform: scaleX(1);
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #14213d;
  font-weight: 700;
}

.card p {
  font-size: 0.95rem;
  color: #555;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.gallery-item {
  background: #f7fafc;
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.gallery-item figcaption {
  padding: 0.9rem 1rem 1.1rem;
  font-size: 0.93rem;
}

.note {
  margin-top: 1.7rem;
  font-size: 0.9rem;
  color: #555;
  text-align: center;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.tour-card {
  background: linear-gradient(135deg, #ffffff, #fef9f3);
  border-radius: 1.2rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border: 2px solid rgba(252, 163, 17, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.tour-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(252, 163, 17, 0.1), transparent);
  border-radius: 0 1.2rem 0 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15);
  border-color: rgba(252, 163, 17, 0.4);
}

.tour-card:hover::after {
  opacity: 1;
}

.tour-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  color: #14213d;
  font-weight: 700;
  background: linear-gradient(135deg, #14213d, #fca311);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tour-card ul {
  list-style: disc;
  padding-left: 1.1rem;
  font-size: 0.95rem;
  color: #555;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr);
  gap: 2rem;
}

.about-list {
  list-style: disc;
  padding-left: 1.1rem;
  margin-top: 0.8rem;
  color: #555;
  font-size: 0.95rem;
}

.contact-section {
  background: linear-gradient(135deg, #fef3c7 0%, #ffe5b4 50%, #f7f7fb 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(252, 163, 17, 0.1), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.contact-details {
  background: rgba(255, 255, 255, 0.7);
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(252, 163, 17, 0.2);
}

.contact-details p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.8rem;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.contact-details p:hover {
  border-left-color: #fca311;
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.95);
}

.contact-form {
  background: #ffffff;
  padding: 1.7rem 1.6rem;
  border-radius: 1.2rem;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.2);
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.contact-form h3 {
  margin-bottom: 1rem;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.55rem 0.6rem;
  border-radius: 0.6rem;
  border: 1px solid #cbd5e1;
  font: inherit;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #fca311;
  outline-offset: 1px;
}

.form-note {
  font-size: 0.82rem;
  color: #6b7280;
  margin-top: 0.6rem;
}

.footer {
  background: linear-gradient(135deg, #0b1020, #1e3a5f);
  color: #9ca3af;
  padding-block: 2rem;
  border-top: 3px solid rgba(252, 163, 17, 0.3);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(252, 163, 17, 0.5), transparent);
}

.footer-inner {
  text-align: center;
  font-size: 0.9rem;
}

.footer-small {
  font-size: 0.8rem;
  margin-top: 0.3rem;
  color: #6b7280;
}

@media (max-width: 1000px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-cars-right {
    order: 2;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .hero-center {
    order: 1;
  }

  .car-item {
    max-width: 280px;
    flex: 1 1 calc(50% - 0.5rem);
  }

  .car-item img {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .hero-cars-right {
    flex-direction: column;
  }

  .car-item {
    max-width: 100%;
    flex: 1 1 100%;
  }
}

@media (max-width: 800px) {
  .hero-contact-card {
    margin-top: 1rem;
  }

  .nav-links {
    gap: 0.9rem;
    font-size: 0.85rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 80vh;
  }

  .nav-inner {
    flex-direction: column;
    gap: 0.5rem;
  }

  .container {
    width: min(100% - 1.6rem, 1120px);
  }
}


