/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Inter', sans-serif;
  background-color: #111214;
  color: #fff;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px; /* ✅ Add side padding globally */
}

/* Header */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.logo {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: bold;
}

.whatsapp-button {
  background-color: #fff;
  color: #000;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  background-color: #eee;
}

/* Hero Section */
.hero {
  height: 100vh;
  width: 100%;
  background: url('images/hero-vito.jpg') center center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: #fff;
  padding: 0 20px;
}

.subheading {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #d1d1d1;
}

.title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.description {
  font-size: 16px;
  color: #e1e1e1;
  margin-bottom: 30px;
}

.button-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  font-size: 14px;
  border: 2px solid #fff;
  background-color: transparent;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #fff;
  color: #000;
}

.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 24px;
  color: #fff;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -10px);
  }
}

/* Services Section */
.services {
  background-color: #f9f9f9;
  color: #111;
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 36px;
  margin-bottom: 40px;
  font-family: 'Playfair Display', serif;
}

.section-subtitle {
  font-size: 16px;
  color: #ccc;
  margin-top: -20px;
  margin-bottom: 40px;
}

.service-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.service-box {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  flex: 1;
  min-width: 280px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-8px);
}

.service-box i {
  font-size: 36px;
  color: #000;
  margin-bottom: 16px;
}

.service-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.service-box p {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
}

/* How It Works Section */
.how-it-works {
  background-color: #111214;
  padding: 80px 20px;
  text-align: center;
}

.steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.step {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  margin: auto;
}

.step-number {
  font-size: 32px;
  color: #444;
  font-weight: 600;
  margin-bottom: 10px;
}

.step-title {
  font-size: 18px;
  font-weight: bold;
  color: #fff6e0;
  margin-bottom: 8px;
}

.step-text {
  font-size: 14px;
  color: #ccc;
  line-height: 1.5;
}

/* Luxury Experience */
.luxury-experience {
  background: #1b1c1f;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.luxury-experience .subheading {
  font-size: 12px;
  text-transform: uppercase;
  color: #bbb;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.vehicle-showcase {
  margin: 40px auto 30px;
  max-width: 900px;
  position: relative;
}

.vehicle-img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.vehicle-specs {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 15px 20px;
  border-radius: 0 0 12px 12px;
  margin-top: -60px;
  position: relative;
  z-index: 2;
}

.vehicle-specs div {
  text-align: center;
}

.vehicle-specs strong {
  font-size: 20px;
  display: block;
}

.vehicle-specs span {
  font-size: 14px;
  color: #ccc;
}

/* Features Grid */
.features-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* Mobile default */
  gap: 30px;
}

/* Tablet and up: 2 columns */
@media (min-width: 600px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop and up: 3 columns */
@media (min-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


.feature-box {
  background-color: #131417;
  border: 1px solid #2c2d2f;
  border-radius: 10px;
  padding: 25px 20px;
  text-align: center;
  transition: transform 0.3s ease;
  margin: 0 auto;
  max-width: 300px;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box i {
  font-size: 24px;
  margin-bottom: 12px;
  color: #fff6e0;
}

.feature-box h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #f0f0f0;
}

.feature-box p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.4;
}

/* Responsive Title Adjustment */
@media (max-width: 768px) {
  .title {
    font-size: 32px;
  }
}


.vehicle-carousel {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  height: 500px;
}

.vehicle-carousel .carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}

.vehicle-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  border-radius: 12px;
}

.vehicle-carousel img.active {
  opacity: 1;
  z-index: 2;
}


.why-choose-us {
  background-color: #111214;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.why-grid {
  display: grid;
  gap: 30px;
  margin-top: 40px;
  grid-template-columns: repeat(1, 1fr); /* Mobile */
}

/* Tablet */
@media (min-width: 600px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop – FORCE 4 in one row */
@media (min-width: 1000px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-box {
  background-color: #1c1d21;
  border-radius: 12px;
  padding: 30px 20px;
  border: 1px solid #2b2c2e;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.why-box:hover {
  transform: translateY(-6px);
}

.why-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background-color: #2a2b2e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff6e0;
}

.why-box h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: bold;
  color: #f0f0f0;
}

.why-box p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.5;
}


.cta-message {
  background-color: #1b1c1f;
  padding: 80px 20px;
  text-align: center;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #fff6e0;
  margin-bottom: 16px;
  line-height: 1.4;
}

.cta-subtitle {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #fff;
  color: #000;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #eee;
}


.service-areas {
  background-color: #1b1c1f;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.area-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.map-box {
  background-color: #111214;
  border: 1px solid #2a2b2e;
  border-radius: 12px;
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 20px;
}

.map-icon {
  font-size: 28px;
  color: #fff6e0;
}

.area-list {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  text-align: left;
}

.area-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.area-list ul {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px 30px;
}

/* Force 2 columns on larger screens */
@media (min-width: 600px) {
  .area-list ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

.area-list li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 10px;
}

.area-list li i {
  color: #fff6e0;
}

.area-note {
  font-size: 13px;
  color: #999;
  margin-top: 15px;
}


.reservation {
  background-color: #111214;
  padding: 80px 20px;
  text-align: center;
}

.reservation-form {
  max-width: 700px;
  margin: 40px auto 0;
  background: #1c1d21;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  flex: 1;
  padding: 14px 16px;
  border-radius: 8px;
  border: none;
  background-color: #2a2b2e;
  color: #fff;
  font-size: 14px;
}

.reservation-form input::placeholder,
.reservation-form textarea::placeholder {
  color: #bbb;
}

.reservation-form textarea {
  width: 100%;
  min-height: 100px;
  resize: none;
  margin-bottom: 20px;
}

.reservation-form .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  padding: 14px;
  background-color: #fff;
  color: #000;
  font-weight: 500;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
}

.reservation-form .cta-button:hover {
  background-color: #eee;
}


.faq {
  background-color: #111214;
  padding: 80px 20px;
  text-align: center;
}

.accordion {
  max-width: 700px;
  margin: 40px auto 0;
  text-align: left;
}

.accordion-item {
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #1c1d21;
  border: 1px solid #2a2b2e;
}

.accordion-toggle {
  width: 100%;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 500;
  background: none;
  border: none;
  color: #fff6e0;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.accordion-toggle::after {
  content: '\25BC'; /* down arrow */
  position: absolute;
  right: 20px;
  font-size: 12px;
  transform: rotate(0deg);
  transition: transform 0.2s ease;
}

.accordion-toggle.active::after {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background-color: #1c1d21;
  color: #ccc;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content p {
  margin: 16px 0;
  font-size: 14px;
  line-height: 1.6;
}

.footer {
  background-color: #0e0f10;
  color: #ccc;
  padding: 60px 20px 30px;
  font-size: 14px;
  text-align: center;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 30px;
  text-align: left;
}

.footer-box {
  flex: 1;
  min-width: 250px;
}

.footer-box h3 {
  color: #fff6e0;
  font-size: 16px;
  margin-bottom: 12px;
}

.footer-box p {
  margin-bottom: 8px;
  color: #aaa;
  line-height: 1.5;
}

.footer-box i {
  margin-right: 6px;
  color: #fff6e0;
}

.footer hr {
  border: none;
  border-top: 1px solid #333;
  margin-bottom: 20px;
}

.footer p.copyright {
  color: #666;
  font-size: 13px;
}
