/* RESET TO REMOVE SIDE GAPS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* General navbar */
.luxury-nav {
  background: #0a0a0a;
  padding: 15px 20px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.1);
  font-family: 'Poppins', sans-serif;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.nav-logo img {
  height: 50px;
  transition: transform 0.3s ease;
}
.nav-logo img:hover {
  transform: scale(1.1);
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #ffd700;
  transition: width 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}

.nav-links li a:hover {
  color: #ffd700;
}

/* Book Now button */
.nav-btn {
  background: #ffd700;
  color: #0a0a0a;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: #e6c200;
  transform: scale(1.1);
}

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #ffd700;
  transition: all 0.3s ease;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #0a0a0a;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
    display: none;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

.hamburger.toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.toggle span:nth-child(2) {
  opacity: 0;
}
.hamburger.toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero-img-premium {
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at left, #111 0%, #000 70%);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

/* LEFT TEXT */
.hero-text {
  flex: 1;
  padding-left: 80px;
  z-index: 2;
}

.hero-text h1 {
  font-size: clamp(38px, 5vw, 76px);
  color: #fff;
  font-weight: 800;
}

.hero-text h1 span {
  color: #ffd700;
}

.hero-text p {
  margin-top: 18px;
  font-size: 20px;
  color: #ccc;
  max-width: 520px;
}

/* BUTTONS */
.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}

/* RIGHT IMAGE */
.hero-car {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 40px;
}

.hero-car img {
  width: 120%;
  max-width: 900px;
  object-fit: contain;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.7));
  animation: carFloat 6s ease-in-out infinite;
}

/* Soft fade into background */
.hero-car::before {
  content: '';
  position: absolute;
  left: -120px;
  top: 0;
  width: 220px;
  height: 100%;
  background: linear-gradient(90deg, #000, transparent);
  z-index: 1;
}

/* ===== TEXT ANIMATION ===== */
.hero-title {
  font-size: clamp(38px, 5vw, 76px);
  color: #fff;
  font-weight: 800;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(40px);
  animation: textReveal 1.2s ease forwards;
}

.hero-title span {
  color: #ffd700;
}

.hero-subtitle {
  margin-top: 18px;
  font-size: 20px;
  color: #ccc;
  opacity: 0;
  transform: translateY(40px);
  animation: textReveal 1.2s ease forwards;
  animation-delay: 0.3s;
}

@keyframes textReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation */
@keyframes carFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* MOBILE */
@media (max-width: 900px) {
  .hero-img-premium {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    padding: 140px 30px 40px;
  }

  .hero-actions {
    justify-content: center;
    flex-direction: column;
  }

  .hero-car img {
    width: 100%;
    max-width: 420px;
  }

  .hero-car::before {
    display: none;
  }
}
@media (max-width: 900px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== BUTTONS ===== */
.hero-actions {
  margin-top: 42px;
  display: flex;
  gap: 20px;
  opacity: 0;
  transform: translateY(40px);
  animation: textReveal 1.2s ease forwards;
  animation-delay: 0.6s;
}

/* PRIMARY BUTTON */
.btn-primary {
  padding: 14px 38px;
  border-radius: 50px;
  background: linear-gradient(135deg, #ffd700);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
  box-shadow: 0 10px 30px #ffd700;
  transition: all 0.35s ease;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 18px 45px #ffd700;;
}

/* OUTLINE BUTTON */
.btn-outline {
  padding: 14px 38px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.35s ease;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

/* ===== SERVICES PREMIUM ===== */
.services-premium {
  width: 100vw;
  padding: 120px 80px;
  background: linear-gradient(180deg, #000, #0b0b0b);
}

/* Heading */
.services-header {
  text-align: center;
  margin-bottom: 70px;
}

.services-header h2 {
  font-size: clamp(32px, 4vw, 56px);
  color: #fff;
  font-weight: 800;
  letter-spacing: 2px;
}

.services-header h2 span {
  color: #ffd700;
}

.services-header p {
  margin-top: 14px;
  font-size: 18px;
  color: #aaa;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Cards */
.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 50px 30px;
  text-align: left;
  transition: all 0.45s ease;
  position: relative;
  overflow: hidden;
}

/* Glow line */
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(238, 184, 8, 0.15),
    transparent 60%
  );
  opacity: 0;
  transition: 0.45s;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.8);
  border-color: rgba(228, 166, 8, 0.606);
}

/* Text */
.service-card h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 16px;
}

.service-card p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
}

/* ===== MOBILE ===== */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-premium {
    padding: 100px 30px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  opacity: 0;
  transform: translateY(40px);
}

.service-card.active {
  opacity: 1;
  transform: translateY(0);
}

/* Dark luxury section */
.dark-section {
  background: #0a0a0a;
  color: #fff;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 3rem;
  color: #ffd700; /* Gold accent */
  margin-bottom: 10px;
  animation: fadeInDown 1s ease forwards;
}

.section-subtitle {
  color: #ccc;
  font-size: 1.2rem;
  margin-bottom: 50px;
  animation: fadeInUp 1s ease forwards;
}

/* Offers grid */
.offers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.offer-card {
  background: #111;
  border: 2px solid #333;
  border-radius: 15px;
  padding: 30px 20px;
  width: 300px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: zoomIn 0.8s ease forwards;
}

.offer-card:hover {
  border-color: #ffd700;
  transform: translateY(-10px);
  box-shadow: 0 0 30px #ffd700;
}

.offer-card h3 {
  color: #ffd700;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.offer-card p {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 20px;
}

.offer-card .price {
  font-weight: bold;
  color: #ffd700;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 15px;
}

.btn-book {
  background: #ffd700;
  color: #0a0a0a;
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-book:hover {
  background: #ffd700;
}

/* Animations */
@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
  0% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}

/* Dark luxury gallery */
#services-gallery {
  background: #0a0a0a;
  color: #fff;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

#services-gallery .section-title {
  font-size: 3rem;
  color: #ffd700;
  margin-bottom: 10px;
  animation: fadeInDown 1s ease forwards;
}

#services-gallery .section-subtitle {
  color: #ccc;
  margin-bottom: 50px;
  font-size: 1.2rem;
  animation: fadeInUp 1s ease forwards;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

/* Hover effects */
.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px #ffd700;
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* Animations */
@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-20px);}
  100% { opacity: 1; transform: translateY(0);}
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px);}
  100% { opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media screen and (max-width: 768px) {
  .gallery-item img {
    height: 180px;
  }
}

/* Dark luxury section */
#milestones {
  background: #0a0a0a;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

#milestones .section-title {
  font-size: 3rem;
  color: #ffd700;
  margin-bottom: 10px;
  animation: fadeInDown 1s ease forwards;
}

#milestones .section-subtitle {
  color: #ccc;
  font-size: 1.2rem;
  margin-bottom: 50px;
  animation: fadeInUp 1s ease forwards;
}

/* Milestones Grid */
.milestones-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.milestone {
  background: #111;
  border-radius: 15px;
  padding: 30px 20px;
  width: 220px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.milestone:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px #ffd700;
}

.milestone h3 {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 10px;
}

.milestone p {
  color: #ccc;
  font-size: 1rem;
}

/* Animations */
@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-20px);}
  100% { opacity: 1; transform: translateY(0);}
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px);}
  100% { opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media screen and (max-width: 768px) {
  .milestones-grid {
    flex-direction: column;
    align-items: center;
  }
}

#premium-video {
  background: #0a0a0a;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

#premium-video .section-title {
  font-size: 3rem;
  color: #ffd700;
  margin-bottom: 10px;
  animation: fadeInDown 1s ease forwards;
}

#premium-video .section-subtitle {
  color: #ccc;
  font-size: 1.2rem;
  margin-bottom: 50px;
  animation: fadeInUp 1s ease forwards;
}

/* Video Wrapper */
.video-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.video-wrapper:hover {
  transform: scale(1.03);
  box-shadow: 0 0 40px #ffd700;
}

.video-wrapper img {
  width: 100%;
  display: block;
  border-radius: 15px;
}

/* Overlay with Play Button */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease;
}
.video-wrapper {
  max-width: 1000px; /* optional max width for luxury look */
  margin: 0 auto;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 30px #ffd700; /* luxury glow */
}

.responsive-video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  padding-top: 25px; 
  height: 0;
}

.responsive-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 15px;
}

.video-wrapper:hover .video-overlay {
  background: rgba(0,0,0,0.6);
}

.play-btn {
  font-size: 4rem;
  color: #ffd700;
  text-shadow: 0 0 20px #ffd700;
  animation: pulse 2s infinite;
  transition: transform 0.3s ease;
}

.video-wrapper:hover .play-btn {
  transform: scale(1.2);
}

/* Animations */
@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-20px);}
  100% { opacity: 1; transform: translateY(0);}
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px);}
  100% { opacity: 1; transform: translateY(0);}
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1;}
  50% { transform: scale(1.1); opacity: 0.8;}
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .video-wrapper img {
    width: 100%;
    height: auto;
  }

  .play-btn {
    font-size: 3rem;
  }
}

#luxury-cta {
  background: linear-gradient(135deg, #0a0a0a, #111);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

#luxury-cta::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
  animation: rotateGlow 10s linear infinite;
  pointer-events: none;
}

#luxury-cta .cta-title {
  font-size: 3rem;
  color: #ffd700;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease forwards;
}

#luxury-cta .cta-subtitle {
  font-size: 1.3rem;
  color: #ccc;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease forwards;
}

#luxury-cta .cta-btn {
  display: inline-block;
  background: #ffd700;
  color: #0a0a0a;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.4s ease;
}

#luxury-cta .cta-btn:hover {
  background: #ffd700;;
  transform: scale(1.1);
}

/* Animations */
@keyframes rotateGlow {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}

@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-20px);}
  100% { opacity: 1; transform: translateY(0);}
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px);}
  100% { opacity: 1; transform: translateY(0);}
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  #luxury-cta .cta-title {
    font-size: 2rem;
  }

  #luxury-cta .cta-subtitle {
    font-size: 1rem;
  }

  #luxury-cta .cta-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

#luxury-footer {
  background: #0a0a0a;
  color: #fff;
  padding: 60px 20px 30px;
  font-family: 'Poppins', sans-serif;
}

#luxury-footer a {
  color: #ffd700;
  text-decoration: none;
  transition: all 0.3s ease;
}

#luxury-footer a:hover {
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-column {
  flex: 1 1 220px;
}

.footer-column h3 {
  color: #ffd700;
  font-size: 1.4rem;
  margin-bottom: 15px;
  position: relative;
}

.footer-column h3::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: #ffd700;
  margin-top: 5px;
  border-radius: 2px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  color: #ccc;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-column ul li:hover {
  color: #ffd700;
}

.footer-column p {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  color: #777;
  font-size: 0.9rem;
}

/* Hover Animation for Columns */
.footer-column:hover h3 {
  color: #ffea00;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    gap: 30px;
  }
}