/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
   transition: all 0.4s ease-in-out;
}

/* ===== THEME VARIABLES ===== */
:root {
  --bg-color: #0d0d0d;
  --card-bg: #1a1a1a;
  --text-color: #ffffff;
  --gold: #d4af37;
}

body.light-mode {
  --bg-color: #f4f4f4;
  --card-bg: #ffffff;
  --text-color: #111;
}

body {
  background: var(--bg-color);
  color: var(--text-color);
}

/* ===== HEADER ===== */
header {
  position: fixed;
  width: 100%;
  top: 0;
  background: var(--bg-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  border-bottom: 1px solid var(--gold);
  z-index: 1000;
}

.logo {
  color: var(--gold);
  font-weight: 700;
  font-size: 22px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
}

nav ul li a:hover {
  color: var(--gold);
}

.controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.lang-switch button,
.theme-btn {
  background: var(--gold);
  border: none;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 5px;
  font-weight: 600;
}

/* ===== HERO ===== */
.hero {
  height: 100vh;
  background: url("images/hero.jpg") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  text-align: center;
  padding: 20px;
}

.hero h1 {
  font-size: 50px;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
}

.btn {
  background: var(--gold);
  color: black;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
  margin-top: 15px;
}

.btn:hover {
  background: white;
}

/* ===== SECTIONS ===== */
.section {
  padding: 120px 8%;
  text-align: center;
}

.section h2 {
  color: var(--gold);
  margin-bottom: 50px;
  font-size: 32px;
}

/* ===== CARDS ===== */
.cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: var(--card-bg);
  padding: 25px;
  width: 300px;
  border-radius: 15px;
  border: 1px solid #222;
}

.card:hover {
  border: 1px solid var(--gold);
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

.card h3 {
  color: var(--gold);
  margin-bottom: 15px;
}

.card p {
  margin-bottom: 12px;
}

/* FORCE BUTTONS SAME POSITION */
.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card .btn,
.card button {
  margin-top: auto;
  width: 100%;
  text-align: center;
}

/* ===== TESTIMONIALS ===== */
.testimonial .stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 10px;
}

.testimonial h4 {
  margin-top: 10px;
  color: var(--gold);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  display: flex;
  gap: 50px;
  padding: 150px 8%;
  align-items: center;
  justify-content: center;
}

.map {
  flex: 1;
}

.contact-form {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: none;
}

.contact-form button {
  background: var(--gold);
  border: none;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg-color);
  text-align: center;
  padding: 20px;
  border-top: 1px solid var(--gold);
}
footer p {
  color: var(--text-color);
  font-weight: 500;
}

/* ===== WHATSAPP ===== */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.whatsapp img {
  width: 60px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .contact-section {
    flex-direction: column;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 35px;
  }
}
/* ========================= */
/* PREMIUM THEME TOGGLE */
/* ========================= */

.theme-toggle {
  position: relative;
  width: 60px;
  height: 30px;
  background: var(--gold);
  border-radius: 30px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 3px;
  transition: background 0.4s ease;
}

.theme-toggle span {
  position: absolute;
  font-size: 16px;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.theme-toggle .sun {
  left: 8px;
}

.theme-toggle .moon {
  right: 8px;
  opacity: 0;
}

body.light-mode .theme-toggle .sun {
  opacity: 0;
}

body.light-mode .theme-toggle .moon {
  opacity: 1;
}

body.light-mode .theme-toggle {
  background: #333;
}
/* ===== FIX BUTTON SPACING ===== */

.card-buttons {
    display: flex;
    gap: 15px;          /* space between buttons */
    margin-top: 20px;   /* space from description */
}

.package-card .card-buttons {
    margin-top: 25px;   /* more space in packages */
}

/* make buttons same width & aligned */
.card-buttons .btn {
    flex: 1;
    text-align: center;
}
/* ===== FIX ABOUT DESCRIPTION SPACING ===== */

.about-desc {
  margin-bottom: 50px; /* pushes Mission section lower */
}
/* ===== HEADER LINKS COLOR IN LIGHT MODE ===== */
body.light-mode header nav ul li a {
  color: black; /* Dark text color for links in light mode */
}

body.light-mode header nav ul li a:hover {
  color: var(--gold); /* Keep hover effect with gold */
}