/* ===== GENERAL STYLES ===== */
:root {
  /* --primary-color: #132F37; */
  --primary-color: #e05d39;
  /* --primary-color: #F900BC; */
  --primary-dark: #2564ac;
  --primary-light: #ededee;
  --secondary-color: #ff6d00;
  --text-dark: #333333;
  --text-muted: #666666;
  --text-light: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #212529;
  --border-color: #e0e0e0;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --border-radius: 4px;
  --section-padding: 70px 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

.flex {
  display: flex;
}

.jcc {
  justify-content: center;
}

.jcfe {
  justify-content: flex-end;
}

.jsb {
  justify-content: space-between;
}

.jse {
  justify-content: space-evenly;
}

.aic {
  align-items: center;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 16px;
  text-align: center;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.text-center {
  text-align: center;
}

.bunker {
  color: var(--primary-color);
  font-weight: 600;
}

/* ===== BUTTONS ===== */

.book-tour-btn {
  i {
    font-size: 16px;
    margin-left: 6px;
  }
}

.book-package-call {
  i {
    margin-left: 10px;
  }
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: none;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-block {
  display: block;
  width: 100%;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: var(--shadow);
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 50px;
  width: auto;
}

.logo span {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
}

.main-nav ul {
  display: flex;
  gap: 20px;
}

.main-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary-color);
}

.mobile-menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero-section {
  height: 80vh;
  position: relative;
  margin-top: 80px;
}

.slideshow-container {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  width: 90%;
  max-width: 800px;
}

.slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.slide-content h1 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 10px;
}

.slide-content p {
  font-size: 20px;
  margin-bottom: 30px;
}

.slideshow-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  transform: translateY(-50%);
}

.slideshow-controls button {
  background: rgba(255, 255, 255, 0.3);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.3s ease;
}

.slideshow-controls button:hover {
  background: var(--primary-color);
}

.slideshow-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: white;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: var(--section-padding);
  background-color: var(--bg-light);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  margin-bottom: 20px;
}

.about-content i {
  margin-right: 8px;
}

.locations {
  margin: 20px 0;
}

.about-section h3 {
  margin-top: 3rem;
  font-size: 1.4rem;
  color: var(--primary-color);
}

.about-section .map-location {
  margin-bottom: 30px;
}

.locations h4 {
  font-size: 1.3rem;
}

.locations i {
  margin-right: 12px;
  font-size: 1.2rem;
  color: var(--primary-color);
}

/* ===== SERVICES SECTION ===== */
.who-we-are-section {
  padding: var(--section-padding);
}

.who-we-are-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.who-we-are-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.who-we-are-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.who-we-are-icon {
  margin: 0 auto 15px;
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary-color);
}

.who-we-are-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.who-we-are-card p {
  color: var(--text-muted);
  margin-bottom: 15px;
  flex-grow: 1;
}

.who-we-are-link {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
}

.who-we-are-link:hover {
  text-decoration: underline;
}

/* ===== ACTIVITIES SECTION ===== */
.activities-section {
  padding: var(--section-padding);
  background-color: var(--bg-light);
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.activity-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.activity-image {
  height: 200px;
  overflow: hidden;
}

.activity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.activity-card:hover .activity-image img {
  transform: scale(1.05);
}

.activity-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.activity-card h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.activity-destination {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 5px;
}

.activity-description {
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
  font-size: 14px;
  line-height: 1.5;
}

.activity-card .btn {
  margin-top: auto;
  align-self: flex-start;
  padding: 8px 16px;
  font-size: 14px;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding: var(--section-padding);
}

/* ===== YOUTUBE SECTION ===== */

.youtube-section {
  padding: var(--section-padding);
  background-color: var(--bg-light);
}

.youtube-section .section-title {
  margin-bottom: 40px;
}

.youtube-section .book-package-call {
  margin-top: 30px;
}

.youtube-section .btn {
  background-color: #ff0000;
}

.youtube-section .btn:hover {
  background-color: #d71717;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.video-card {
  background-color: #020617;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.video-card iframe {
  width: 100%;
  height: 200px;
  border: none;
}

.video-title {
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: #cbd5f5;
}

/* ===== NEARBY PLACES SECTION ===== */

.nearby-places-section {
  padding: var(--section-padding);
  background-color: beige;
}

.nearby-places-section .activity-card {
  background-color: beige;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: var(--section-padding);
}

.testimonials-slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 0;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.testimonial-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.stars {
  color: #ffc107;
  margin-bottom: 15px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 20px;
  margin-right: 15px;
}

.author-info h4 {
  font-size: 16px;
  font-weight: 600;
}

.author-info p {
  font-size: 14px;
  color: var(--text-muted);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
}

.testimonial-controls button {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.testimonial-controls button:hover {
  color: var(--primary-color);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
}

.testimonial-dot.active {
  background-color: var(--primary-color);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: var(--section-padding);
  background-color: var(--bg-light);
}

.contact-section i {
  font-size: 18px;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: white;
}

.footer-info p {
  margin-bottom: 20px;
  color: #ccc;
}

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-address i {
  margin-top: 5px;
  color: var(--primary-color);
}

.footer-address p {
  margin-bottom: 0;
}

.footer-links ul,
.footer-contact ul,
.footer-quick-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-quick-links a {
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-quick-links a:hover {
  color: white;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: var(--primary-color);
}

.footer-contact a {
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: white;
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 15px 0;
  text-align: center;
  font-size: 14px;
}

/* ===== WHATSAPP FLOATING BTN ===== */

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.my-float {
  margin-top: 16px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  .services-grid,
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .slide-content h1 {
    font-size: 36px;
  }

  .slide-content p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .header .container {
    height: 70px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .main-nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 10;
  }

  .main-nav.active ul {
    flex-direction: column;
    width: 100%;
  }

  .main-nav.active li {
    width: 100%;
  }

  .main-nav.active a {
    display: block;
    padding: 10px 20px;
  }

  .hero-section {
    height: 70vh;
    margin-top: 70px;
  }

  .slide-content h1 {
    font-size: 32px;
  }

  .slide-content p {
    font-size: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .slide-content h1 {
    font-size: 26px;
  }

  .slide-content p {
    font-size: 14px;
  }

  .slide-content .btn {
    padding: 8px 16px;
    font-size: 14px;
  }

  .section-title {
    font-size: 26px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
