/* =========================
   GOOGLE FONT (optional reminder)
   ========================= */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap'); */


/* =========================
   RESET / BASE STYLES
   ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #ffffff;
}

body {
  opacity: 0;
  transform: translateY(10px);
  animation: pageLoad 0.5s ease forwards;
}

@keyframes pageLoad {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   HEADER / NAVIGATION
   ========================= */
.header {
  width: 100%;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 8%;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo img {
  height: 55px;
  cursor: pointer;
}

/* HAMBURGER BUTTON */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #000;
  margin: 4px 0;
  border-radius: 2px;
}

/* MOBILE MENU */
@media (max-width: 768px) {

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    display: none;
    flex-direction: column;
  }

  .nav-links.active {
    display: flex;
  }

  .menu {
    flex-direction: column;
    width: 100%;
  }

  .menu li {
    padding: 15px;
    text-align: center;
  }

  .contact-btn {
    display: none;
  }
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #2f2f39;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #f2a81d;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #f2a81d;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: #f2a81d !important;
}

.nav-links a.active::after {
  width: 100%;
}

/* CONTACT BUTTON */
.contact-btn {
  background: #f2a81d;
  color: white;
  padding: 8px 18px;
  border-radius: 5px;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #d99616;
}

/* =========================
   DROPDOWN MENU
   ========================= */
.menu {
  list-style: none;
  display: flex;
  gap: 25px;
  padding: 0;
  margin: 0;
}

.menu li {
  position: relative;
}

.menu a {
  text-decoration: none;
  color: #333;
  padding: 10px 15px;
  display: block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 170px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-radius: 8px;
  z-index: 999;
}

.dropdown-menu li a {
  padding: 10px 15px;
}

.dropdown-menu li a:hover {
  background: #f2f2f2;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* =========================
   HERO SECTION
   ========================= */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10%;
  background: #ffffff;
  gap: 40px;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 48px;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
  max-width: 500px;
}

/* HERO BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.primary {
  background: #d99616;
  color: #fff;
}

.primary:hover {
  background: #c88512;
}

.secondary {
  border: 2px solid #d99616;
  color: #d99616;
}

.secondary:hover {
  background: #d99616;
  color: #fff;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  width: 90%;
  max-width: 800px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* =========================
   SERVICES SECTION (CLEANED)
   ========================= */
.services {
  padding: 90px 10%;
  background: #cacacb;
  text-align: center;
}

.services h2 {
  font-size: 42px;
  margin-bottom: 10px;
  color: #111;
}

.services-sub {
  color: #ffffff;
  margin-bottom: 50px;
  font-size: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

/* SERVICE CARD (NO BOOKING / CART STYLE BEHAVIOR) */
.service-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  text-decoration: none;
  color: #111;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border-top: 4px solid #f2a81d;
  transition: 0.3s;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.icon-box {
  width: 45px;
  height: 45px;
  background: rgba(242,168,29,0.15);
  color: #f2a81d;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 15px;
}

.service-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.service-card p {
  font-size: 14px;
  color: #282828;
  margin-bottom: 15px;
  line-height: 1.5;
}

.service-card span {
  color: #f2a81d;
  font-weight: bold;
  font-size: 14px;
}

/* =========================
   RESPONSIVE DESIGN
   ========================= */
@media (max-width: 768px) {

  .nav-links {
    display: none;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .services h2 {
    font-size: 32px;
  }
}

/* ================= ABOUT PREVIEW SECTION ================= */
.about-preview {
  padding: 80px 10%;
  background: #ffffff;
}

.about-container {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 34px;
  margin-bottom: 15px;
  color: #111;
}

.about-text p {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.about-stats {
  flex: 1;
  min-width: 300px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.stat-box {
  background: #f9f9f9;
  border-left: 4px solid #f2a81d;
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.stat-box h3 {
  font-size: 24px;
  color: #111;
  margin-bottom: 5px;
}

.stat-box p {
  font-size: 13px;
  color: #666;
}