* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0b0b0b;
  color: #fff;
}

/* HERO */
.hero {
  position: relative;
  width: 100%;

  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: clamp(20px, 5vw, 60px);

  background-image:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("../img/carousel-2.jpg");

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 768px) {
  .hero {
    min-height: 85vh;
    background-position: center top;
    padding: 24px 16px;
  }
}
@media (max-width: 480px) {
  .hero {
    min-height: 80vh;
    padding: 20px 14px;
  }
}





.hero h1 {
  font-size: 46px;
  margin-bottom: 10px;
}

.hero p {
  color: #ccc;
  margin-bottom: 20px;
}

.hero-buttons .btn {
  margin-right: 10px;
}

/* BUTTONS */
.btn {
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.primary {
  background: #d4af37;
  color: #000;
}

.outline {
  border: 1px solid #d4af37;
  color: #d4af37;
}

/* PROFILES */
.profiles {
  padding: 70px 20px;
  text-align: center;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.profile-card {
  background: #161616;
  border-radius: 18px;
  padding: 15px;
  position: relative;
}

.profile-card img {
  width: 100%;
  border-radius: 14px;
}

.profile-card h3 {
  margin-top: 10px;
}

.profile-card p {
  color: #bbb;
}

.card-btn {
  display: block;
  margin-top: 10px;
  padding: 10px;
  background: #d4af37;
  color: #000;
  border-radius: 20px;
  text-decoration: none;
}

/* BADGE */
.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #d4af37;
  color: #000;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
}

/* TRUST */
.trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  background: #111;
  padding: 40px 20px;
  text-align: center;
}

.trust-box {
  padding: 10px;
  font-weight: 500;
}

/* SERVICES */
.services {
  padding: 60px 20px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.service-card {
  background: #1a1a1a;
  padding: 25px;
  border-radius: 14px;
}

/* CTA */
.cta {
  padding: 70px 20px;
  text-align: center;
  background: linear-gradient(135deg, #000, #1a1a1a);
}

/* FOOTER */
footer {
  padding: 20px;
  text-align: center;
  background: #000;
  font-size: 14px;
}

/* WHATSAPP FLOAT */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  font-size: 22px;
  padding: 14px 16px;
  border-radius: 50%;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }
}

.trust-section {
    background: #0c0c0c;
    padding: 80px 20px;
    color: #fff;
}

.trust-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.trust-header h2 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.trust-header h2 span {
    color: #e5b567;
}

.trust-tagline {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
}

.trust-description p {
    max-width: 800px;
    margin: auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #ddd;
}

.trust-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.trust-card {
    background: #141414;
    padding: 30px 25px;
    border-radius: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(229,181,103,0.15);
}

.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(229,181,103,0.15);
}

.trust-card .icon {
    font-size: 2.2rem;
    margin-bottom: 15px;
    display: block;
}

.trust-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #e5b567;
}

.trust-card p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
}

.trust-footer {
    margin-top: 50px;
}

.trust-footer p {
    font-size: 1.05rem;
    color: #ddd;
}

.trust-footer span {
    color: #e5b567;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .trust-header h2 {
        font-size: 2rem;
    }

    .trust-description p,
    .trust-footer p {
        font-size: 0.95rem;
    }
}

/* ABOUT SECTION */
.about-section {
  background: #0b0b0b;
  color: #fff;
  padding: 100px 20px;
  width: 100%;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

/* CONTENT */
.about-content h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-content h2 span {
  color: #e5b567;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 18px;
}

/* HIGHLIGHTS */
.about-highlights {
  display: grid;
  gap: 20px;
}

.highlight-box {
  background: #141414;
  border-radius: 14px;
  padding: 22px 20px;
  border: 1px solid rgba(229,181,103,0.15);
  transition: 0.3s ease;
}

.highlight-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(229,181,103,0.15);
}

.highlight-box h4 {
  color: #e5b567;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.highlight-box p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content h2 {
    font-size: 2.1rem;
    text-align: center;
  }

  .about-content p {
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .about-section {
    padding: 80px 15px;
  }

  .about-content h2 {
    font-size: 1.9rem;
  }

  .about-content p {
    font-size: 0.95rem;
  }
}


/* SERVICES SECTION */
.services-section {
  background: #0b0b0b;
  color: #fff;
  padding: 100px 20px;
  width: 100%;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.services-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.services-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.services-header span {
  color: #e5b567;
}

.services-header p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #ddd;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* CARD */
.service-card {
  background: #141414;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid rgba(229,181,103,0.15);
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(229,181,103,0.15);
}

/* ICON */
.service-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

/* TEXT */
.service-card h4 {
  font-size: 1.2rem;
  color: #e5b567;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 768px) {
  .services-header h2 {
    font-size: 2.1rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .services-section {
    padding: 80px 15px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-header p {
    font-size: 0.95rem;
  }
}

/* LOCATIONS SECTION */
.locations-section {
  background: #0b0b0b;
  color: #fff;
  padding: 100px 20px;
  width: 100%;
}

.locations-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.locations-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.locations-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.locations-header span {
  color: #e5b567;
}

.locations-header p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #ddd;
}

/* CITIES GRID */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* CITY CARD */
.city-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 18px;
  background: #141414;
  border-radius: 14px;
  border: 1px solid rgba(229,181,103,0.15);
  color: #e5b567;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.city-card:hover {
  background: rgba(229,181,103,0.08);
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(229,181,103,0.15);
}

/* FOOTER NOTE */
.locations-footer {
  margin-top: 50px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.locations-footer p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .locations-header h2 {
    font-size: 2.1rem;
  }
}

@media (max-width: 480px) {
  .locations-section {
    padding: 80px 15px;
  }

  .cities-grid {
    grid-template-columns: 1fr;
  }

  .locations-header p,
  .locations-footer p {
    font-size: 0.95rem;
  }
}


/* WHY SECTION */
.why-section {
  background: #0b0b0b;
  color: #fff;
  padding: 100px 20px;
  width: 100%;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.why-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.why-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.why-header span {
  color: #e5b567;
}

.why-header p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #ddd;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

/* CARD */
.why-card {
  background: #141414;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid rgba(229,181,103,0.15);
  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(229,181,103,0.15);
}

/* ICON */
.why-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  color: #e5b567;
}

.why-icon svg {
  width: 100%;
  height: 100%;
}

/* TEXT */
.why-card h4 {
  font-size: 1.2rem;
  color: #e5b567;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .why-header h2 {
    font-size: 2.1rem;
  }
}

@media (max-width: 480px) {
  .why-section {
    padding: 80px 15px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-header p {
    font-size: 0.95rem;
  }
}


/* BOOKING SECTION */
.booking-section {
  background: #0b0b0b;
  color: #fff;
  padding: 100px 20px;
  width: 100%;
}

.booking-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.booking-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.booking-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.booking-header span {
  color: #e5b567;
}

.booking-header p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #ddd;
}

/* STEPS GRID */
.booking-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

/* STEP CARD */
.booking-step {
  background: #141414;
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  border: 1px solid rgba(229,181,103,0.15);
  transition: 0.3s ease;
}

.booking-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(229,181,103,0.15);
}

/* ICON */
.step-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  color: #e5b567;
}

.step-icon svg {
  width: 100%;
  height: 100%;
}

/* TEXT */
.booking-step h4 {
  font-size: 1.2rem;
  color: #e5b567;
  margin-bottom: 10px;
}

.booking-step p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .booking-header h2 {
    font-size: 2.1rem;
  }
}

@media (max-width: 480px) {
  .booking-section {
    padding: 80px 15px;
  }

  .booking-steps {
    grid-template-columns: 1fr;
  }

  .booking-header p {
    font-size: 0.95rem;
  }
}

/* FAQ SECTION */
.faq-section {
  background: #0b0b0b;
  color: #fff;
  padding: 100px 20px;
  width: 100%;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

/* HEADER */
.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.faq-header span {
  color: #e5b567;
}

.faq-header p {
  font-size: 1.05rem;
  color: #ddd;
  line-height: 1.7;
}

/* FAQ LIST */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* FAQ ITEM */
.faq-item {
  background: #141414;
  border-radius: 14px;
  border: 1px solid rgba(229,181,103,0.15);
  padding: 18px 20px;
  transition: 0.3s ease;
}

.faq-item[open] {
  box-shadow: 0 12px 25px rgba(229,181,103,0.12);
}

/* QUESTION */
.faq-item summary {
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: #e5b567;
  list-style: none;
  position: relative;
  padding-right: 30px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

/* PLUS / MINUS ICON */
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.4rem;
  color: #e5b567;
}

.faq-item[open] summary::after {
  content: "–";
}

/* ANSWER */
.faq-item p {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .faq-header h2 {
    font-size: 2.1rem;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 80px 15px;
  }

  .faq-header p,
  .faq-item p {
    font-size: 0.95rem;
  }
}


/* DISCLAIMER SECTION */
.disclaimer-section {
  background: #0b0b0b;
  color: #ccc;
  padding: 80px 20px;
  width: 100%;
  border-top: 1px solid rgba(229,181,103,0.15);
}

.disclaimer-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* HEADING */
.disclaimer-container h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #e5b567;
  margin-bottom: 20px;
}

.disclaimer-container h2 span {
  font-size: 1rem;
  font-weight: 400;
  color: #aaa;
}

/* TEXT */
.disclaimer-container p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 14px;
  color: #ccc;
}

.disclaimer-container strong {
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .disclaimer-container h2 {
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {
  .disclaimer-section {
    padding: 60px 15px;
  }

  .disclaimer-container p {
    font-size: 0.9rem;
  }
}
