/* ================= Global Styles ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #F5F5DC; /* Beige background */
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 8px;
}

/* ================= Header & Nav ================= */
header {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.visitor-counter{
display:flex;
align-items:center;
gap:8px;
font-weight:bold;
color:#fff;
margin-top:10px;
}

.nav-menu {
  display: flex;
  gap: 20px;
}

.nav-menu li a {
  font-weight: 500;
  padding: 5px 10px;
  transition: 0.3s;
}

.nav-menu li a:hover {
  color: #8B4513;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  border: none;
  background: none;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #8B4513;
  margin: 4px 0;
  border-radius: 2px;
}

/* ================= Hero Section ================= */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
  background: url('image/shiku (2).jpeg') center/cover no-repeat;
  color: #a0522d;
  text-align: center;
  padding: 0 1rem;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn-primary {
  background: #8B4513;
  color: #fff;
  padding: 10px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary:hover {
  background: #a0522d;
}

/* ================= Carousel Section ================= */
.carousel-section {
  padding: 2rem 0;
  position: relative;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
}

.carousel-track-container {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
}

.carousel-card {
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.carousel-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 10px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #8B4513;
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  gap: 8px;
}

.carousel-dots .dot {
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.carousel-dots .dot.active {
  background: #8B4513;
}

/* ================= Services ================= */
#services {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

#services h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(66, 61, 61, 0.1);
  transition: transform 0.3s;
  text-align: left;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  margin-bottom: 10px;
  color: #8B4513;
}

.card p {
  font-size: 0.95rem;
  color: #555;
}

/* ================= Tips & Packages ================= */
/* ================= Tips Section ================= */

.tips-packages-section{
  padding:60px 20px;
  background:#F5F5DC;
}

.tips-packages-container{
  max-width:900px;
  margin:auto;
  display:flex;
  justify-content:center;
}

.tips-column{
  width:100%;
  max-width:500px;
  text-align:center;
}

.tips-column h2{
  color:#8B4513;
  font-size:2rem;
  margin-bottom:25px;
}

/* Card */

.tips-card{
  background:#fff;
  padding:30px;
  border-radius:12px;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
  text-align:left;
  transition:transform .3s ease;
}

.tips-card:hover{
  transform:translateY(-5px);
}

/* Tips List */

.tips-card ul{
  list-style:none;
  padding:0;
  margin:0;
}

/* Each Tip */

.tips-card li{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 0;
  font-size:16px;
  color:#5a3a2a;
  border-bottom:1px solid #eee;
}

.tips-card li:last-child{
  border-bottom:none;
}

/* Beautiful Tick Icon */

.tips-card li::before{
  content:"✓";
  display:flex;
  align-items:center;
  justify-content:center;
  width:24px;
  height:24px;
  background:#8B4513;
  color:#fff;
  font-size:14px;
  font-weight:bold;
  border-radius:50%;
  flex-shrink:0;
}

/* ================= Mobile ================= */

@media(max-width:600px){

.tips-column h2{
  font-size:1.6rem;
}

.tips-card{
  padding:25px;
}

}

/* ================= Footer ================= */
footer {
  background: #8B4513;
  padding: 2rem;
  margin-top: 2rem;
  color: #fff;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-section {
  flex: 1 1 250px;
}

.footer-section h3 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-section p {
  font-size: 0.95rem;
  color: #fff;
}

.footer-image-card img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  border-radius: 10px;
}

/* ================= Footer Social Icons ================= */
.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.social-icons a {
  font-size: 1.6rem;
  color: #fff;
  transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
  color: #ffd700;
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
}

/* ================= Packages Page ================= */
.packages-header {
  text-align: center;
  margin-bottom: 2rem;
}

.back-btn {
  background: #8B4513;
  color: #fff;
  padding: 8px 15px;
  border: none;
  border-radius: 5px;
  margin-bottom: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.back-btn:hover {
  background: #a0522d;
}

.packages-display {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.package-item {
  flex: 1 1 300px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.package-item .logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}

.package-item .card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
  width: 100%;
  transition: transform 0.3s;
}

.package-item .card:hover {
  transform: translateY(-5px);
}

.package-item .card img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 15px;
}

.package-item h3 {
  color: #8B4513;
  margin-bottom: 10px;
}

.package-price {
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
  font-size: 1.1rem;
}

.package-features li {
  text-align: left;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #555;
}

.package-btn {
  background: #8B4513;
  color: #fff;
  padding: 8px 20px;
  border-radius: 5px;
  font-weight: 500;
  display: inline-block;
  transition: 0.3s;
}

.package-btn:hover {
  background: #a0522d;
}

.package-item.premium .card {
  border: 2px solid #8B4513;
}

.popular-tag {
  background: #8B4513;
  color: #fff;
  padding: 5px 10px;
  font-size: 0.85rem;
  border-radius: 20px;
  position: relative;
  top: -15px;
  margin-bottom: -10px;
  font-weight: 500;
}

/* ================= Responsive ================= */
@media(max-width:768px){
  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 15px;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
  }

  .nav-menu.active {
    display: flex;
  }

  .hero h2 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .carousel-card {
    min-width: 80%;
  }

  .carousel-card img {
    height: 180px;
  }

  .cards-container .card img {
    max-height: 150px;
  }

  .footer-image-card img {
    max-height: 150px;
  }

  .package-item {
    max-width: 90%;
  }

  .package-item .card img {
    max-height: 150px;
  }
}

@media(max-width:480px){
  .carousel-card img {
    height: 150px;
  }

  .cards-container .card img,
  .footer-image-card img,
  .package-item .card img {
    max-height: 120px;
  }
}