/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #0b0b0b;
  color: #f5f0e8;
}

:root {
  --gold: #f5b342;
  --orange: #e67e22;
  --deep-gold: #d4a017;
  --black: #0e0e0e;
  --dark-card: #1a1a1a;
  --text-light: #f5f0e8;
  --shadow-gold: 0 8px 20px rgba(245, 179, 66, 0.25);
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
header {
  background: rgba(14, 14, 14, 0.95);
  backdrop-filter: blur(4px);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 99;
  border-bottom: 1px solid rgba(245, 179, 66, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.logo-area {
  display: flex;
  align-items: center;
}

/* ===== LOGO SIZES ===== */
/* Desktop: 100px × 100px */
.logo-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 0 6px rgba(245, 179, 66, 0.5));
}

/* Tablet (992px): 80px × 80px */
@media (max-width: 992px) {
  .logo-img {
    width: 80px;
    height: 80px;
  }
}

/* Mobile (768px): 70px × 70px */
@media (max-width: 768px) {
  .logo-img {
    width: 70px;
    height: 70px;
  }
}

/* Small Mobile (480px): 60px × 60px */
@media (max-width: 480px) {
  .logo-img {
    width: 60px;
    height: 60px;
  }
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding: 60px 0;
  background: #111;
}

.gallery-section h2 {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 10px;
  color: #fff;
}

.gallery-section h2 i {
  color: var(--gold);
  margin-right: 12px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 16px;
  border: 2px solid rgba(245, 179, 66, 0.15);
  transition: all 0.4s ease;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.03);
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(245, 179, 66, 0.25);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* ===== RESPONSIVE GALLERY ===== */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .gallery-item {
    border-radius: 10px;
  }
}

/* ===== NAV ===== */
nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  font-weight: 600;
  font-size: 1rem;
  flex-wrap: wrap;
}

nav ul li a {
  color: #ddd;
  transition: 0.3s;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

nav ul li a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
    url('images/bag.avif') center/cover no-repeat;
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding: 40px 0;
  border-bottom: 3px solid var(--gold);
}

.hero-content {
  max-width: 700px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  padding: 30px 35px;
  border-radius: 20px;
  border-left: 6px solid var(--gold);
  box-shadow: var(--shadow-gold);
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.hero-content h1 span {
  color: var(--gold);
  text-shadow: 0 0 15px rgba(245, 179, 66, 0.5);
}

.hero-content p {
  font-size: 1.1rem;
  margin: 18px 0 25px;
  color: #eee;
  line-height: 1.6;
}

.btn-gold {
  background: linear-gradient(145deg, var(--gold), var(--orange));
  border: none;
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #0b0b0b;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(245, 179, 66, 0.4);
  display: inline-block;
}

.btn-gold:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 25px rgba(245, 179, 66, 0.7);
}

/* ===== TOURS ===== */
.tours-section {
  padding: 50px 0;
  background: #111;
}

.tours-section h2 {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 10px;
  color: #fff;
}

.tours-section h2 i {
  color: var(--gold);
  margin-right: 12px;
}

.section-sub {
  text-align: center;
  color: #aaa;
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1rem;
  padding: 0 10px;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.tour-card {
  background: var(--dark-card);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(245, 179, 66, 0.1);
  animation: fadeUp 0.7s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.tour-card:nth-child(1) { animation-delay: 0.1s; }
.tour-card:nth-child(2) { animation-delay: 0.2s; }
.tour-card:nth-child(3) { animation-delay: 0.3s; }
.tour-card:nth-child(4) { animation-delay: 0.4s; }
.tour-card:nth-child(5) { animation-delay: 0.5s; }
.tour-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.tour-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(245, 179, 66, 0.25);
}

.tour-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 2px solid var(--gold);
}

.tour-card-content {
  padding: 18px 18px 22px;
}

.tour-card-content h3 {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.tour-card-content p {
  color: #bbb;
  font-size: 0.9rem;
  margin: 6px 0 12px;
  line-height: 1.4;
}

.tour-price {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.tour-price i {
  color: var(--gold);
  margin-right: 8px;
}

.btn-readmore {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 6px 20px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: 0.3s;
  cursor: pointer;
  display: inline-block;
}

.btn-readmore:hover {
  background: var(--gold);
  color: #0b0b0b;
  box-shadow: 0 0 20px rgba(245, 179, 66, 0.5);
}

/* ===== STORY / ABOUT ===== */
.story-section,
.contact-section {
  padding: 50px 0;
  background: #141414;
  border-bottom: 1px solid #2a2a2a;
}

.story-section h2,
.contact-section h2 {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 18px;
}

.story-section p {
  max-width: 800px;
  line-height: 1.8;
  color: #ccc;
}

.testimonial {
  background: #1a1a1a;
  padding: 20px 25px;
  border-radius: 20px;
  border-left: 6px solid var(--gold);
  margin: 25px 0;
}

.testimonial i {
  color: var(--gold);
}

/* ===== CONTACT ===== */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 15px;
}

.contact-info {
  flex: 1;
  min-width: 220px;
}

.contact-info p {
  margin: 10px 0;
  color: #ccc;
}

.contact-info i {
  color: var(--gold);
  width: 30px;
}

.contact-social {
  display: flex;
  gap: 18px;
  font-size: 1.6rem;
  margin-top: 15px;
}

.contact-social a {
  color: #ccc;
  transition: 0.3s;
}

.contact-social a:hover {
  color: var(--gold);
}

.contact-form {
  flex: 2;
  min-width: 260px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin: 6px 0;
  background: #222;
  border: 1px solid #444;
  color: #eee;
  border-radius: 12px;
  font-size: 0.95rem;
}

.contact-form button {
  background: var(--gold);
  border: none;
  padding: 12px 28px;
  font-weight: 700;
  border-radius: 40px;
  color: #0b0b0b;
  cursor: pointer;
  transition: 0.3s;
  font-size: 1rem;
}

.contact-form button:hover {
  background: var(--orange);
  transform: scale(1.02);
}

/* ===== FOOTER ===== */
footer {
  background: #0e0e0e;
  padding: 25px 0 18px;
  border-top: 2px solid var(--gold);
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.social-icons a {
  color: #ccc;
  transition: 0.3s;
}

.social-icons a:hover {
  color: var(--gold);
  transform: translateY(-4px);
}

footer p {
  color: #777;
  font-size: 0.85rem;
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  background: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  transition: 0.2s;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #20b85f;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== RESPONSIVE HEADER & NAV ===== */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  nav ul {
    justify-content: center;
    gap: 12px 16px;
  }

  .hero {
    min-height: 60vh;
  }

  .hero-content {
    padding: 20px 22px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .btn-gold {
    padding: 10px 28px;
    font-size: 1rem;
  }

  .tours-section h2 {
    font-size: 2rem;
  }

  .tour-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .tour-card img {
    height: 150px;
  }

  .story-section h2,
  .contact-section h2 {
    font-size: 1.7rem;
  }

  .contact-grid {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  nav ul {
    gap: 8px 12px;
    font-size: 0.85rem;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content {
    padding: 16px 18px;
  }

  .hero-content p {
    font-size: 0.9rem;
    margin: 12px 0 18px;
  }

  .btn-gold {
    padding: 8px 22px;
    font-size: 0.9rem;
  }

  .tour-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tour-card img {
    height: 160px;
  }

  .tour-card-content h3 {
    font-size: 1.1rem;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 2rem;
    bottom: 18px;
    right: 18px;
  }

  .social-icons {
    gap: 18px;
    font-size: 1.5rem;
  }

  .contact-social {
    font-size: 1.4rem;
  }
}
