/* 
   Voyage Relax Yachting Tour - Premium Stylesheet
   Color Palette: Deep Luxury Navy (#070d1d), Gold (#d4af37 / #b38f4d), Glassmorphic overlay
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* --- Design Tokens --- */
:root {
  --color-bg-dark: #070d1d;
  --color-bg-light: #0d172e;
  --color-bg-glass: rgba(13, 23, 46, 0.75);
  --color-gold: #d4af37;
  --color-gold-hover: #f3cf65;
  --color-gold-dark: #9e7f28;
  --color-gold-glow: rgba(212, 175, 55, 0.3);
  --color-text-white: #ffffff;
  --color-text-muted: #a0aec0;
  --color-border-glass: rgba(212, 175, 55, 0.15);
  --font-title: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
  --transition-smooth: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
  --max-width: 1200px;
}

/* --- Base Resets --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-bg-dark);
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-dark);
  color: var(--color-text-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

/* --- Scrollbar Customization --- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold-dark);
  border-radius: 5px;
  border: 2px solid var(--color-bg-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* --- Layout Utilities & Containers --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

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

.text-gold {
  color: var(--color-gold);
  background: linear-gradient(135deg, #f3cf65 0%, #d4af37 50%, #9e7f28 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-gold);
  margin-bottom: 12px;
  border: 1px solid var(--color-border-glass);
  padding: 4px 16px;
  border-radius: 50px;
  background-color: rgba(212, 175, 55, 0.05);
}

.section-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  font-weight: 300;
}

/* --- Button Typography & Styling --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, #f3cf65 0%, #d4af37 100%);
  color: #070d1d;
  box-shadow: 0 4px 20px var(--color-gold-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, #fff 0%, #f3cf65 100%);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
}

.btn-secondary:hover {
  background-color: rgba(212, 175, 55, 0.1);
  transform: translateY(-3px);
  color: #fff;
  border-color: #fff;
}

/* --- Header / Navigation --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background-color: var(--color-bg-glass);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--color-border-glass);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  padding: 10px 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  transition: var(--transition-smooth);
}

header.scrolled .container {
  padding: 10px 24px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 100px;
  width: auto;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

header.scrolled .logo-img {
  height: 80px;
}

.logo-text {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo-text span {
  font-weight: 300;
  font-size: 1rem;
  display: block;
  color: var(--color-gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: -4px;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  position: relative;
  padding: 6px 0;
  color: #e2e8f0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--color-gold);
  transition: var(--transition-fast);
}

.nav-links a:hover {
  color: var(--color-gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Language Dropdown */
.lang-selector {
  position: relative;
  cursor: pointer;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border-glass);
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.85rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}

.lang-btn:hover {
  border-color: var(--color-gold);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border-glass);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: var(--transition-fast);
  width: 120px;
  z-index: 100;
}

.lang-selector:hover .lang-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  transition: var(--transition-fast);
  text-transform: uppercase;
  font-weight: 500;
}

.lang-dropdown a:hover {
  background-color: rgba(212, 175, 55, 0.1);
  color: var(--color-gold);
}

.lang-dropdown a.active {
  color: var(--color-gold);
  background-color: rgba(212, 175, 55, 0.05);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 28px;
  height: 2px;
  background-color: #fff;
  transition: var(--transition-fast);
}

/* --- Hero Section --- */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/hero_bg.png') no-repeat center center/cover;
  transform: scale(1.05);
  transition: transform 1.5s cubic-bezier(0.1, 1, 0.1, 1);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(7, 13, 29, 0.4) 0%, rgba(7, 13, 29, 0.9) 100%);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 750px;
}

.hero-tagline {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-gold);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.8s 0.2s forwards cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-title {
  font-family: var(--font-title);
  font-size: 4rem;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 0.8s 0.4s forwards cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #e2e8f0;
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 600px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 0.8s 0.6s forwards cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 0.8s 0.8s forwards cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* --- Concept / About Section --- */
.concept-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.concept-text-column {
  padding-right: 20px;
}

.concept-title {
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.concept-p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 20px;
  font-weight: 300;
}

.concept-features {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.concept-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 0.95rem;
}

.concept-feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(212, 175, 55, 0.1);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  border: 1px solid var(--color-border-glass);
}

.concept-image-column {
  position: relative;
}

.concept-image-container {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border: 1px solid var(--color-border-glass);
}

.concept-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--color-bg-dark) 0%, transparent 40%);
  z-index: 2;
}

.concept-img {
  width: 100%;
  height: auto;
  transition: var(--transition-smooth);
}

.concept-image-container:hover .concept-img {
  transform: scale(1.05);
}

/* Floating Golden Badge */
.concept-floating-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background-color: var(--color-bg-light);
  border: 2px solid var(--color-gold);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  z-index: 3;
  width: 180px;
}

.concept-floating-number {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

.concept-floating-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  margin-top: 8px;
}

/* --- Tours Cards Section --- */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tour-card {
  background-color: var(--color-bg-light);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border-glass);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
}

.tour-card:hover {
  transform: translateY(-12px);
  border-color: var(--color-gold);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.tour-image-container {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.tour-image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 60%, var(--color-bg-light) 100%);
  z-index: 2;
}

.tour-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.tour-card:hover .tour-img {
  transform: scale(1.1);
}

.tour-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--color-gold);
  color: #070d1d;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 3;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.tour-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.tour-title {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
  transition: var(--transition-fast);
}

.tour-card:hover .tour-title {
  color: var(--color-gold);
}

.tour-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tour-meta i {
  font-size: 0.95rem;
}

.tour-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.6;
}

.tour-features-list {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.tour-feature-li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #e2e8f0;
  margin-bottom: 8px;
}

.tour-feature-li i {
  color: var(--color-gold);
  font-size: 0.8rem;
}

.tour-footer {
  margin-top: auto;
}

.tour-footer .btn {
  width: 100%;
}

/* --- Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--color-border-glass);
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.gallery-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 13, 29, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 2;
}

.gallery-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  font-size: 1.2rem;
}

.gallery-item:hover .gallery-item-img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-icon {
  transform: translateY(0);
}

.gallery-item-instagram {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  text-align: center;
}

.gallery-instagram-logo {
  font-size: 3rem;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.gallery-instagram-title {
  font-family: var(--font-title);
  font-size: 1.8rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.gallery-instagram-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  max-width: 320px;
}

/* --- Testimonials / Reviews Section --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background-color: var(--color-bg-dark);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--color-border-glass);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 30px;
  font-family: var(--font-title);
  font-size: 6rem;
  color: rgba(212, 175, 55, 0.08);
  line-height: 1;
}

.review-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold);
  background-color: var(--color-bg-light);
}

.review-stars {
  color: var(--color-gold);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.review-text {
  color: #e2e8f0;
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 30px;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-gold);
  border: 1px solid var(--color-border-glass);
}

.review-author-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
}

.review-author-role {
  color: var(--color-text-muted);
  font-size: 0.8rem;
  margin-top: 2px;
}

/* --- Contact & Booking Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: stretch;
}

.contact-info-panel {
  background-color: var(--color-bg-light);
  border-radius: 8px;
  border: 1px solid var(--color-border-glass);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-title {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  background-color: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--color-border-glass);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-info-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 1.05rem;
  font-weight: 500;
}

.contact-info-value a:hover {
  color: var(--color-gold);
}

.contact-map-container {
  margin-top: 40px;
  border-radius: 4px;
  overflow: hidden;
  height: 200px;
  border: 1px solid var(--color-border-glass);
}

.contact-map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(0.9) contrast(1.2); /* Custom premium dark mode map */
}

/* Contact Booking Form */
.contact-form-panel {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border-glass);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 40px;
}

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

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: #e2e8f0;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  background-color: rgba(7, 13, 29, 0.6);
  border: 1px solid var(--color-border-glass);
  border-radius: 4px;
  padding: 14px 18px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
  background-color: rgba(7, 13, 29, 0.8);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d4af37'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 20px;
  padding-right: 45px;
}

select.form-control option {
  background-color: var(--color-bg-dark);
  color: #fff;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-alert {
  padding: 15px;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: none;
}

.form-alert-success {
  background-color: rgba(23, 185, 120, 0.1);
  border: 1px solid rgba(23, 185, 120, 0.3);
  color: #17b978;
}

/* --- Footer --- */
footer {
  background-color: #040710;
  border-top: 1px solid var(--color-border-glass);
  padding: 80px 0 40px 0;
  color: var(--color-text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-column-logo .logo-container {
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 300;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.footer-social-icon:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-3px);
}

.footer-title {
  color: #fff;
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-contact-item i {
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a:hover {
  color: var(--color-gold);
}

/* --- Floating WhatsApp Widget --- */
.whatsapp-floating {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.whatsapp-floating i {
  color: #fff;
  font-size: 2.2rem;
}

.whatsapp-floating:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Pulsing highlight effect */
.whatsapp-floating::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 1px solid #25d366;
  opacity: 0.6;
  animation: pulseWhatsapp 2s infinite;
}

@keyframes pulseWhatsapp {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* --- Scroll Animations (Reveal Engine) --- */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}

.reveal-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-left.reveal-active,
.reveal-right.reveal-active {
  opacity: 1;
  transform: translateX(0);
}

/* --- Premium Lightbox Modal --- */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 7, 16, 0.95);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-content-wrapper {
  position: relative;
  max-width: 85%;
  max-height: 85%;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.lightbox-modal.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: #fff;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--color-gold);
}

/* --- Media Queries (Responsiveness) --- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.2rem;
  }
  .concept-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .concept-text-column {
    padding-right: 0;
  }
  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 2rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }
  .hero-ctas .btn {
    width: 100%;
  }
  
  /* Mobile Nav Bar */
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--color-bg-light);
    border-left: 1px solid var(--color-border-glass);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    z-index: 1000;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    font-size: 1.15rem;
  }
  
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  .tours-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item-instagram {
    grid-column: span 2;
    grid-row: auto;
    padding: 30px 20px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .concept-floating-badge {
    position: static;
    margin-top: 30px;
    width: 100%;
  }
}
