/* Base Styles */
:root {
  --primary-color: #e67e22;
  --primary-dark: #d35400;
  --secondary-color: #2c3e50;
  --text-color: #333333;
  --text-light: #ffffff;
  --bg-dark: #111111;
  --bg-light: #f8f9fa;
  --border-color: #e1e1e1;
  --transition-speed: 0.4s;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-dark);
  overflow-x: hidden;
  transition: background-color var(--transition-speed) ease;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-speed) ease;
}

ul {
  list-style: none;
}

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

.section-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Text Logo */
.text-logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: var(--text-light);
}

.text-logo i {
  font-size: 1.5rem;
  margin-right: 10px;
  color: var(--primary-color);
}

.text-logo span {
  font-size: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Button Styles */
.btn-primary {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 15px 35px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-speed) ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.btn-primary:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
  z-index: -1;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.btn-primary:hover:before {
  left: 100%;
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--text-light);
  padding: 14px 34px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-speed) ease;
  border: 2px solid var(--text-light);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
}

.btn-secondary:active {
  transform: translateY(-1px);
}

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-speed) ease;
  background-color: transparent;
}

.site-header.scrolled {
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  padding: 15px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  transition: transform var(--transition-speed) ease;
}

.logo:hover {
  transform: scale(1.05);
}

.main-nav ul {
  display: flex;
}

.main-nav li {
  margin-left: 40px;
  position: relative;
}

.main-nav a {
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 0;
  position: relative;
}

.main-nav a:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-speed) ease;
}

.main-nav a:hover:after,
.main-nav a.active:after {
  width: 100%;
}

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
  transition: all var(--transition-speed) ease;
}

.mobile-menu-toggle:hover {
  color: var(--primary-color);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  padding: 100px 30px 30px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-speed) ease;
  overflow-y: auto;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: center;
}

.mobile-menu a {
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 2px;
  display: inline-block;
  padding: 10px 0;
  position: relative;
}

.mobile-menu a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-speed) ease;
}

.mobile-menu a:hover:after {
  width: 100%;
}

.mobile-menu a:hover {
  color: var(--primary-color);
}

/* Page Transition */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-dark);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-transition.active {
  opacity: 1;
  visibility: visible;
}

/* Hero Section */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s forwards 0.5s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-logo {
  margin-bottom: 40px;
}

.hero-logo .text-logo {
  justify-content: center;
}

.hero-logo .text-logo i {
  font-size: 2.5rem;
}

.hero-logo .text-logo span {
  font-size: 2.5rem;
}

.hero h1 {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 5px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1s forwards 1.5s;
}

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

.scroll-indicator span {
  display: block;
  width: 30px;
  height: 50px;
  border: 2px solid var(--text-light);
  border-radius: 15px;
  position: relative;
}

.scroll-indicator span::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 6px;
  height: 6px;
  background-color: var(--text-light);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  75% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(0);
  }
}

/* Page Hero */
.page-hero {
  height: 50vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  margin-top: 80px;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.page-hero .hero-content {
  max-width: 800px;
}

.page-hero h1 {
  font-size: 3.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Experience Section */
.experience-section {
  padding: 120px 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
  position: relative;
}

.experience-content {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.experience-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.experience-content.reverse {
  flex-direction: row-reverse;
}

.experience-image {
  flex: 1;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transform: perspective(1000px) rotateY(0deg);
  transition: transform 0.8s ease;
}

.experience-content:hover .experience-image {
  transform: perspective(1000px) rotateY(5deg);
}

.experience-content.reverse:hover .experience-image {
  transform: perspective(1000px) rotateY(-5deg);
}

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

.experience-content:hover .experience-image img {
  transform: scale(1.05);
}

.experience-text {
  flex: 1;
}

.experience-text h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 15px;
}

.experience-text h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.experience-text p {
  margin-bottom: 25px;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Experience Features */
.experience-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 80px;
}

.feature {
  text-align: center;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all var(--transition-speed) ease;
}

.feature:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--box-shadow);
}

.feature i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature p {
  font-size: 1rem;
  opacity: 0.9;
}

/* Packages Section */
.packages-section {
  padding: 120px 0;
  background-color: var(--bg-light);
  position: relative;
}

.packages-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-dark);
  clip-path: polygon(0 0, 100% 0, 100% 15%, 0 30%);
  z-index: 1;
}

.packages-section .container {
  position: relative;
  z-index: 2;
}

.packages-section .section-title {
  color: var(--text-color);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.package-card {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: var(--box-shadow);
  transition: all var(--transition-speed) ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.package-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.package-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.package-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.package-card p {
  margin-bottom: 30px;
  min-height: 80px;
  flex-grow: 1;
  line-height: 1.8;
}

.package-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: auto;
}

/* Booking CTA Section */
.booking-cta {
  padding: 100px 0;
  background-color: var(--primary-color);
  color: var(--text-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.booking-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.booking-cta .section-title {
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.booking-cta .btn-primary {
  background-color: var(--text-light);
  color: var(--primary-color);
  position: relative;
  z-index: 1;
}

.booking-cta .btn-primary:hover {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

/* Booking Section */
.booking-section {
  padding: 120px 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
  position: relative;
}

.booking-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.booking-form-container {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--box-shadow);
}

.booking-form-container h2,
.packages-container h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 15px;
}

.booking-form-container h2:after,
.packages-container h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

/* Form Styling Enhancements */
.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--text-light);
  font-family: inherit;
  font-size: 1rem;
  transition: all var(--transition-speed) ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Custom styling for select dropdowns */
.form-group select {
  cursor: pointer;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23e67e22" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
  padding-right: 40px;
}

/* Remove default styling for date inputs */
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  background: transparent;
  color: transparent;
  cursor: pointer;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}

.form-group input[type="date"] {
  position: relative;
  cursor: pointer;
}

.form-group input[type="date"]::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23e67e22" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>');
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.2);
  background-color: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

/* Custom select styling for dropdown options */
select option {
  background-color: #1a1a1a;
  color: var(--text-light);
  padding: 15px;
}

/* Custom date picker styling */
input[type="date"]::-webkit-datetime-edit-fields-wrapper {
  color: var(--text-light);
}

input[type="date"]::-webkit-datetime-edit-text {
  color: var(--text-light);
  opacity: 0.7;
}

input[type="date"]::-webkit-datetime-edit-month-field,
input[type="date"]::-webkit-datetime-edit-day-field,
input[type="date"]::-webkit-datetime-edit-year-field {
  color: var(--text-light);
}

input[type="date"]::-webkit-inner-spin-button {
  display: none;
}

/* Submit button styling enhancement */
.booking-form-container .btn-primary {
  width: 100%;
  margin-top: 10px;
  padding: 16px;
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.booking-form-container .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
  z-index: -1;
}

.booking-form-container .btn-primary:hover::before {
  left: 100%;
}

/* Custom styling for form focus states */
.form-group input:focus + .focus-border,
.form-group select:focus + .focus-border,
.form-group textarea:focus + .focus-border {
  transform: scaleX(1);
  transition: transform 0.3s ease;
}

.focus-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

/* Error state styling */
.error-message {
  color: #ff6b6b;
  font-size: 0.9rem;
  margin-top: 5px;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ff6b6b;
}

/* Form animation */
@keyframes formFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.booking-form-container {
  animation: formFadeIn 0.8s ease forwards;
}

/* Custom styling for select on focus */
.form-group select:focus {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 15l-6-6-6 6"/></svg>');
}

/* Package Cards in Booking Page */
.packages-container {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.packages-container h2 {
  position: relative;
  margin-bottom: 30px;
}

.packages-container h2:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.packages-container .package-card {
  margin-bottom: 20px;
  padding: 25px;
  height: auto;
  display: flex;
  flex-direction: column;
}

.packages-container .package-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.packages-container .package-card p {
  font-size: 0.95rem;
  margin-bottom: 15px;
  min-height: auto;
  flex-grow: 0;
}

.packages-container .package-card .package-price {
  font-size: 2rem;
  margin-top: 10px;
}

/* Booking Grid Layout Fix */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
  align-items: start;
}

.booking-form-container,
.packages-container {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--box-shadow);
  height: auto;
}

.contact-direct {
  margin-top: 30px;
  padding: 25px;
}

/* Responsive fixes */
@media (max-width: 992px) {
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .packages-container {
    order: -1;
  }

  .packages-container .package-card {
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .booking-form-container,
  .packages-container {
    padding: 30px 20px;
  }

  .packages-container .package-card {
    padding: 20px;
  }
}

.contact-direct {
  margin-top: 50px;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  box-shadow: var(--box-shadow);
}

.contact-direct h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-direct p {
  margin-bottom: 20px;
}

.phone-link,
.email-link {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: var(--primary-color);
  font-weight: 500;
  transition: all var(--transition-speed) ease;
}

.phone-link i,
.email-link i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.phone-link:hover,
.email-link:hover {
  color: var(--text-light);
  transform: translateX(5px);
}

/* Testimonials Section */
.testimonials {
  padding: 120px 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><text x="10" y="50" font-family="Arial" font-size="80" opacity="0.03" fill="white">❝</text></svg>')
    repeat;
  opacity: 0.1;
}

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

.testimonial {
  text-align: center;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  box-shadow: var(--box-shadow);
  margin: 20px;
}

.testimonial p {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
}

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

/* Thank You Section */
.thank-you-section {
  padding: 150px 0;
  text-align: center;
  background-color: var(--bg-dark);
  color: var(--text-light);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.thank-you-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s forwards;
}

.thank-you-content i {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: 30px;
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.thank-you-content h1 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.thank-you-content p {
  font-size: 1.2rem;
  margin-bottom: 15px;
  line-height: 1.8;
}

.thank-you-actions {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Footer Styles */
.site-footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 100px 0 30px;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

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

.footer-logo .text-logo {
  margin-bottom: 25px;
}

.footer-logo p {
  font-size: 1rem;
  opacity: 0.8;
  line-height: 1.8;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 15px;
}

.footer-links h3:after,
.footer-contact h3:after,
.footer-social h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links ul li {
  margin-bottom: 15px;
}

.footer-links a {
  opacity: 0.8;
  transition: all var(--transition-speed) ease;
  display: inline-block;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  line-height: 1.6;
}

.footer-contact i {
  margin-right: 15px;
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 5px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transition: all var(--transition-speed) ease;
  font-size: 1.2rem;
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Media Queries */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 4rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .experience-text h3 {
    font-size: 2rem;
  }
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .hero p {
    font-size: 1.3rem;
  }

  .experience-content {
    flex-direction: column;
    gap: 40px;
  }

  .experience-content.reverse {
    flex-direction: column;
  }

  .booking-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .packages-container {
    order: -1;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .main-nav {
    display: none;
  }

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

  .hero h1 {
    font-size: 2.8rem;
    letter-spacing: 3px;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero-logo .text-logo i {
    font-size: 2rem;
  }

  .hero-logo .text-logo span {
    font-size: 2rem;
  }

  .experience-section,
  .packages-section,
  .booking-section,
  .testimonials {
    padding: 80px 0;
  }

  .experience-text h3 {
    font-size: 1.8rem;
  }

  .thank-you-actions {
    flex-direction: column;
    gap: 15px;
  }

  .footer-content {
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  .experience-content {
    margin-bottom: 60px;
  }

  .package-card {
    padding: 30px 20px;
  }

  .booking-form-container {
    padding: 30px 20px;
  }

  .thank-you-content h1 {
    font-size: 2rem;
  }
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s ease, transform 1s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

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

.preloader-logo {
  margin-bottom: 20px;
}

.preloader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
