/* 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);
}

#services-hero-cover {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('./beforeafter.jpg') center center / cover no-repeat;
  background-attachment: fixed; /* optional for subtle parallax */
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

/* Dark overlay for text readability */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10,10,10,0.5);
  z-index: 1;
}

/* Hero text content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 900px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 4rem;
  color: #ffd700;
  margin-bottom: 20px;
  animation: fadeInDown 1.2s ease forwards;
}

.hero-content p {
  font-size: 1.5rem;
  color: #ccc;
  margin-bottom: 40px;
  animation: fadeInUp 1.2s ease forwards;
}

/* CTA button */
.cta-btn {
  display: inline-block;
  background: #ffd700;
  color: #0a0a0a;
  padding: 15px 45px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.3rem;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
  transition: all 0.4s ease;
}

.cta-btn:hover {
  background: #e6c200;
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.8);
}

/* Animations */
@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-30px);}
  100% { opacity: 1; transform: translateY(0);}
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px);}
  100% { opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media screen and (max-width: 1024px) {
  .hero-content h1 { font-size: 3rem; }
  .hero-content p { font-size: 1.2rem; }
  .cta-btn { padding: 12px 35px; font-size: 1.1rem; }
}

@media screen and (max-width: 768px) {
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content p { font-size: 1rem; }
  .cta-btn { padding: 10px 30px; font-size: 1rem; }
}

#services-grid {
  background: #0a0a0a;
  color: #fff;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

#services-grid .section-title {
  font-size: 2.8rem;
  color: #ffd700;
  margin-bottom: 50px;
  position: relative;
}

#services-grid .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #ffd700;
  margin: 10px auto 0;
  border-radius: 2px;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #111;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  position: relative;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-info {
  padding: 20px;
}

.service-info h3 {
  color: #ffd700;
  margin-bottom: 10px;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.service-info p {
  color: #ccc;
  font-size: 0.95rem;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.service-card:hover h3 {
  color: #ffea00;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .service-card img {
    height: 180px;
  }
  .service-info h3 {
    font-size: 1.2rem;
  }
  .service-info p {
    font-size: 0.9rem;
  }
}

#featured-service {
  position: relative;
  width: 100%;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.featured-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('./beforeafter.png') center/cover no-repeat;
  background-attachment: fixed; /* subtle parallax */
  z-index: 0;
  filter: brightness(0.5);
}

.featured-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10,10,10,0.4);
  z-index: 1;
}

.featured-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 20px;
}

.featured-content h2 {
  font-size: 3rem;
  color: #ffd700;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease forwards;
}

.featured-content p {
  font-size: 1.3rem;
  color: #ccc;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease forwards;
}

.featured-cta {
  display: inline-block;
  background: #ffd700;
  color: #0a0a0a;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.2rem;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  transition: all 0.4s ease;
}

.featured-cta:hover {
  background: #e6c200;
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.8);
}

/* Animations */
@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-30px);}
  100% { opacity: 1; transform: translateY(0);}
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px);}
  100% { opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media screen and (max-width: 1024px) {
  .featured-content h2 { font-size: 2.5rem; }
  .featured-content p { font-size: 1.1rem; }
  .featured-cta { padding: 12px 35px; font-size: 1.1rem; }
}

@media screen and (max-width: 768px) {
  .featured-content h2 { font-size: 2rem; }
  .featured-content p { font-size: 1rem; }
  .featured-cta { padding: 10px 30px; font-size: 1rem; }
}

#testimonials {
  background: #0a0a0a;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

#testimonials .section-title {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 50px;
  position: relative;
}

#testimonials .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #ffd700;
  margin: 10px auto 0;
  border-radius: 2px;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: #111;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.testimonial-card p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-card h4 {
  font-size: 1.1rem;
  color: #ffd700;
}

/* Optional: fade-in animation on scroll */
.testimonial-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.2s; }
.testimonial-card:nth-child(2) { animation-delay: 0.4s; }
.testimonial-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media screen and (max-width: 768px) {
  .testimonial-card {
    padding: 25px 15px;
  }
  .testimonial-card p {
    font-size: 0.95rem;
  }
  .testimonial-card h4 {
    font-size: 1rem;
  }
}

#cta-booking {
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

#cta-booking::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  top: -25%;
  left: -25%;
  background: rgba(255, 215, 0, 0.05);
  transform: rotate(25deg);
}

.cta-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

#cta-booking h2 {
  font-size: 3rem;
  color: #ffd700;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease forwards;
}

#cta-booking p {
  font-size: 1.3rem;
  color: #ccc;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease forwards;
}

#cta-booking .cta-btn {
  background: #ffd700;
  color: #0a0a0a;
  padding: 15px 50px;
  font-size: 1.3rem;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  transition: all 0.4s ease;
}

#cta-booking .cta-btn:hover {
  background: #e6c200;
  transform: scale(1.1);
  box-shadow: 0 0 50px rgba(255, 215, 0, 0.8);
}

/* Reuse animations */
@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-30px);}
  100% { opacity: 1; transform: translateY(0);}
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px);}
  100% { opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media screen and (max-width: 1024px) {
  #cta-booking h2 { font-size: 2.5rem; }
  #cta-booking p { font-size: 1.1rem; }
  #cta-booking .cta-btn { padding: 12px 40px; font-size: 1.2rem; }
}

@media screen and (max-width: 768px) {
  #cta-booking h2 { font-size: 2rem; }
  #cta-booking p { font-size: 1rem; }
  #cta-booking .cta-btn { padding: 10px 35px; font-size: 1rem; }
}

#contact-section {
  background: #0a0a0a;
  color: #fff;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

#contact-section .section-title {
  font-size: 2.8rem;
  color: #ffd700;
  margin-bottom: 50px;
  position: relative;
}

#contact-section .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #ffd700;
  margin: 10px auto 0;
  border-radius: 2px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.contact-card {
  background: #111;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.contact-card i {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 15px;
}

.contact-card h4 {
  font-size: 1.2rem;
  color: #ffd700;
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.5;
}

/* Map styling */
.contact-map {
  max-width: 1000px;
  margin: 0 auto;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: brightness(0.8);
}

/* Responsive */
@media screen and (max-width: 768px) {
  #contact-section .section-title { font-size: 2rem; }
  .contact-card h4 { font-size: 1rem; }
  .contact-card p { font-size: 0.9rem; }
  .contact-map { height: 300px; }
}

#contact-form-section {
  background: #0a0a0a;
  color: #fff;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

#contact-form-section h2 {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 40px;
}

.form-container form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-container input,
.form-container textarea {
  padding: 15px 20px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  background: #111;
  color: #fff;
  resize: none;
  transition: all 0.3s ease;
}

.form-container input:focus,
.form-container textarea:focus {
  outline: 2px solid #ffd700;
  transform: scale(1.02);
}

.form-container button {
  padding: 15px 50px;
  border-radius: 50px;
  border: none;
  background: #ffd700;
  color: #0a0a0a;
  font-size: 1.3rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.4s ease;
}

.form-container button:hover {
  background: #e6c200;
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(255,215,0,0.5);
}

#form-status {
  color: #ffd700;
  margin-top: 10px;
  font-weight: bold;
}

/* Responsive */
@media screen and (max-width: 768px) {
  #contact-form-section h2 { font-size: 2rem; }
  .form-container button { padding: 12px 35px; font-size: 1.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;
  }
}