/* -------------------------------------------------------------------
   Diving & Snorkeling Paradise Mirissa - Main Design System
   Color Scheme: Light & Navy Blue Mixed Theme
   ------------------------------------------------------------------- */

:root {
  /* Color Tokens */
  --navy-dark: #071325;
  --navy-deep: #0a192f;
  --navy-card: #0f2642;
  --navy-mid: #16365c;
  --navy-light: #1e4676;
  
  --azure-bright: #00b4d8;
  --azure-glow: #00e5ff;
  --cyan-soft: #e0f7fc;
  
  --bg-light: #f4f8fc;
  --bg-card-light: #ffffff;
  --bg-section-alt: #eaeff5;
  
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #f8fafc;

  --accent-gold: #f59e0b;
  --accent-green: #10b981;
  
  --shadow-sm: 0 2px 8px rgba(10, 25, 47, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 25, 47, 0.1);
  --shadow-lg: 0 16px 40px rgba(10, 25, 47, 0.15);
  --shadow-glow: 0 0 20px rgba(0, 180, 216, 0.35);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-light);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button, input, select, textarea {
  font-family: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--navy-dark);
  font-weight: 700;
  line-height: 1.25;
}

.text-navy { color: var(--navy-deep); }
.text-azure { color: var(--azure-bright); }
.text-gold { color: var(--accent-gold); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 180, 216, 0.12);
  color: var(--azure-bright);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-tag.light-mode {
  background: rgba(10, 25, 47, 0.08);
  color: var(--navy-deep);
}

.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--navy-dark);
}

.section-title span {
  color: var(--azure-bright);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 40px auto;
  text-align: center;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 90px 0;
}

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

.bg-navy {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-deep) 100%);
  color: var(--text-light);
}

.bg-navy .section-title {
  color: #ffffff;
}

.bg-navy .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--azure-bright) 0%, #0096c7 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 180, 216, 0.6);
  background: linear-gradient(135deg, #00c4ec 0%, var(--azure-bright) 100%);
}

.btn-navy {
  background: var(--navy-deep);
  color: #ffffff;
}

.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
  background: #ffffff;
  color: var(--navy-dark);
  border-color: #ffffff;
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20ba5a;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
}

/* Glassmorphic Compact Modern Header & Top Bar System */
.top-bar {
  background: rgba(4, 12, 24, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  padding: 5px 0;
  border-bottom: 1px solid rgba(0, 180, 216, 0.15);
  position: relative;
  z-index: 1001;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.top-info-item i {
  color: var(--azure-bright);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.currency-selector select {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(0, 180, 216, 0.3);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  cursor: pointer;
  outline: none;
}

.currency-selector select option {
  background: var(--navy-dark);
  color: #ffffff;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 28, 54, 0.65);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid rgba(0, 180, 216, 0.25);
  box-shadow: 0 8px 32px rgba(4, 15, 30, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  background: rgba(8, 22, 44, 0.88);
  border-bottom: 1px solid rgba(0, 180, 216, 0.35);
  box-shadow: 0 12px 36px rgba(3, 12, 25, 0.55), 0 0 18px rgba(0, 180, 216, 0.25);
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 62px;
  transition: height 0.3s ease;
}

.navbar.scrolled .navbar-content {
  height: 54px;
}

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

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--navy-deep), var(--azure-bright));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.3);
}

.brand-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  background: #ffffff;
  padding: 2px;
  border-radius: 50%;
  border: 2px solid var(--azure-bright);
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.35);
  transition: var(--transition-normal);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.08) rotate(4deg);
  box-shadow: var(--shadow-glow);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: 1.1;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.brand-subtitle {
  font-size: 0.65rem;
  color: var(--azure-bright);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-shadow: 0 0 10px rgba(0, 180, 216, 0.5);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  background: rgba(14, 40, 75, 0.55);
  padding: 5px 8px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 180, 216, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 4px 15px rgba(0, 0, 0, 0.25);
}

@media (min-width: 992px) {
  .nav-links {
    display: flex !important;
  }
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.45), rgba(0, 119, 182, 0.55));
  border: 1px solid rgba(0, 229, 255, 0.6);
  box-shadow: 0 4px 16px rgba(0, 180, 216, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.nav-links a::after,
.nav-links a:hover::after,
.nav-links a.active::after {
  display: none !important;
}

.navbar .btn {
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-full);
}

.mobile-toggle {
  display: none;
  font-size: 1.6rem;
  color: #ffffff;
  cursor: pointer;
  background: none;
  border: none;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 88vh;
  background-color: var(--navy-dark);
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
  padding: 60px 0;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  filter: brightness(1.25) contrast(1.06) saturate(1.25);
  pointer-events: none;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(4, 18, 38, 0.18) 0%, rgba(7, 24, 48, 0.48) 100%),
              linear-gradient(180deg, rgba(0, 150, 214, 0.12) 0%, rgba(7, 19, 37, 0.42) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--bg-light), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(7, 19, 37, 0.55);
  border: 1px solid rgba(0, 229, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--azure-glow);
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.18;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 4px 25px rgba(0, 0, 0, 0.6);
}

.hero-title span {
  color: #00f0ff;
  display: inline;
  text-shadow: 0 0 25px rgba(0, 240, 255, 0.8), 0 2px 10px rgba(0, 0, 0, 0.9);
  letter-spacing: 0.5px;
}

.hero-description {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 780px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.hero-ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  width: 100%;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-feature-item i {
  color: var(--azure-glow);
  font-size: 1.2rem;
}

/* Quick Booking Card in Hero */
.hero-card {
  background: rgba(15, 38, 66, 0.8);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.hero-card-title {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-card-title span {
  font-size: 0.8rem;
  background: var(--accent-gold);
  color: #000;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-weight: 700;
}

.hero-card-form .form-group {
  margin-bottom: 16px;
}

.hero-card-form label {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6px;
  font-weight: 600;
}

.hero-card-form select,
.hero-card-form input {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.95rem;
  outline: none;
}

.hero-card-form select option {
  background: var(--navy-dark);
  color: #ffffff;
}

/* Feature Badges Grid */
.badges-strip {
  background: #ffffff;
  padding: 24px 0;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 10;
  margin-top: -30px;
  border-radius: var(--radius-md);
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border-radius: var(--radius-sm);
}

.badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--cyan-soft);
  color: var(--azure-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.badge-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.2;
}

.badge-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Tour Packages Section */
.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(10, 25, 47, 0.12);
  background: #ffffff;
  color: var(--navy-deep);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-normal);
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--navy-deep);
  color: #ffffff;
  border-color: var(--navy-deep);
  box-shadow: var(--shadow-sm);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.tour-card {
  background: var(--bg-card-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-bounce);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(10, 25, 47, 0.06);
  position: relative;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.tour-card-img {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.tour-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.tour-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--navy-dark);
  color: var(--azure-glow);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.tour-rating {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  color: var(--navy-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 4px;
}

.tour-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--navy-dark);
}

.tour-card-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 20px;
  flex-grow: 1;
}

.tour-features-list {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tour-features-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tour-features-list li i {
  color: var(--azure-bright);
  font-size: 1rem;
}

.tour-card-footer {
  display: flex;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(10, 25, 47, 0.08);
  margin-top: auto;
}

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

/* Diving Course Card - Sub Course List */
.course-sub-list {
  list-style: none;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(10, 25, 47, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.course-sub-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 4px 0;
}

.course-sub-info-btn {
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-align: left;
  min-width: 0;
  flex-grow: 1;
}

.course-sub-info-btn:hover .course-sub-name {
  color: var(--azure-bright);
}

.course-sub-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-dark);
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.info-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--azure-bright);
  background: rgba(0, 180, 216, 0.1);
  padding: 2px 8px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.course-sub-info-btn:hover .info-badge {
  background: rgba(0, 180, 216, 0.2);
  transform: scale(1.05);
}

.course-sub-btn.btn {
  width: auto;
  flex-shrink: 0;
  padding: 6px 16px;
  font-size: 0.8rem;
}

/* Why Us Section */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.why-card {
  background: var(--bg-card-light);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 25, 47, 0.06);
  transition: var(--transition-normal);
  position: relative;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 180, 216, 0.3);
}

.why-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(0, 180, 216, 0.18);
  position: absolute;
  top: 20px;
  right: 24px;
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy-deep), var(--azure-bright));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  box-shadow: 0 6px 16px rgba(0, 180, 216, 0.3);
}

.why-card-title {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

/* Calculator Widget Section */
.calc-wrapper {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(10, 25, 47, 0.08);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.calc-inputs .form-row:last-child {
  margin-bottom: 0;
}

.calc-inputs label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 6px;
  display: block;
}

.calc-inputs select,
.calc-inputs input {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(10, 25, 47, 0.15);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  outline: none;
  background: #f8fafc;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  cursor: pointer;
}

.calc-summary {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-deep));
  color: #ffffff;
  padding: 32px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.calc-summary-title {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 12px;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.calc-total {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--azure-glow);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  height: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 25, 47, 0.85), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #ffffff;
}

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

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

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

.review-card {
  background: var(--bg-card-light);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 25, 47, 0.06);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.reviewer-info h4 {
  font-size: 1rem;
  color: var(--navy-dark);
}

.reviewer-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.review-stars {
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-body);
  font-style: italic;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(10, 25, 47, 0.08);
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--azure-bright);
}

.faq-answer {
  padding: 0 24px 20px 24px;
  font-size: 0.95rem;
  color: var(--text-body);
  display: none;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas:
    "info form"
    "faq  form";
  gap: 32px;
  width: 100%;
  box-sizing: border-box;
  align-items: start;
}

.contact-info-card {
  grid-area: info;
  background: var(--navy-dark);
  color: #ffffff;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
  align-self: start;
  height: auto !important;
}

.contact-form-card {
  grid-area: form;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  align-self: start;
  height: auto !important;
}

/* Left column: stacks info card + FAQ card vertically */
.contact-left-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
  align-self: start;
}

/* FAQ card inside the left column */
.contact-faq-card {
  grid-area: faq;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(10, 25, 47, 0.08);
  align-self: start;
}

.contact-faq-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.contact-faq-header i {
  font-size: 1.3rem;
  color: var(--azure-bright);
}

.contact-faq-header h4 {
  font-size: 1.1rem;
  color: var(--navy-dark);
  margin: 0;
}

.contact-faq-item {
  border-bottom: 1px solid rgba(10, 25, 47, 0.07);
}

.contact-faq-item:last-child {
  border-bottom: none;
}

.contact-faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy-dark);
  cursor: pointer;
  text-align: left;
  gap: 12px;
}

.contact-faq-q i {
  font-size: 0.85rem;
  color: var(--azure-bright);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-faq-item.open .contact-faq-q i {
  transform: rotate(180deg);
}

.contact-faq-a {
  display: none;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding-bottom: 12px;
}

.contact-faq-item.open .contact-faq-a {
  display: block;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 180, 216, 0.15);
  color: var(--azure-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-details h4 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.contact-details p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 340px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer-col p a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-col p a:hover {
  color: var(--azure-glow);
  text-decoration: underline;
}

.footer-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--azure-bright) !important;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 6px 12px;
  background: rgba(0, 180, 216, 0.12);
  border: 1px solid rgba(0, 180, 216, 0.35);
  border-radius: var(--radius-sm);
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.footer-map-link:hover {
  background: var(--azure-bright) !important;
  color: #ffffff !important;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(0, 180, 216, 0.4);
  transform: translateY(-2px);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--azure-glow);
  padding-left: 4px;
}

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

.footer-bottom a {
  color: var(--azure-glow);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Social Media Links & Buttons */
.footer-social {
  margin-top: 20px;
}

.footer-social-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.social-icon-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff !important;
  font-size: 1.2rem;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-link:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.social-link.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  box-shadow: 0 6px 18px rgba(24, 119, 242, 0.5);
  color: #ffffff !important;
}

.social-link.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(214, 36, 159, 0.5);
  color: #ffffff !important;
}

.social-link.whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
  color: #ffffff !important;
}

/* Mobile Drawer Social Links */
.drawer-social-links {
  margin-top: 16px;
  text-align: center;
}

.drawer-social-title {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 600;
}

.drawer-social-links .social-icon-links {
  justify-content: center;
}

/* Contact Info Card Social Pills */
.contact-social-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff !important;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-pill.facebook {
  background: rgba(24, 119, 242, 0.2);
  border: 1px solid rgba(24, 119, 242, 0.4);
}

.social-pill.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(24, 119, 242, 0.4);
}

.social-pill.instagram {
  background: rgba(214, 36, 159, 0.2);
  border: 1px solid rgba(214, 36, 159, 0.4);
}

.social-pill.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(214, 36, 159, 0.45);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition-bounce);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ff3b30;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 19, 37, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 550px;
  width: 100%;
  padding: 32px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg-light);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Modal Overlay */

/* -------------------------------------------------------------------
   Page Header & Inner Page Hero (Animated Ocean Dynamics)
   ------------------------------------------------------------------- */
.page-hero {
  background: linear-gradient(-45deg, #071325, #0d2847, #00375f, #0a1f38);
  background-size: 300% 300%;
  animation: oceanGradientShift 14s ease infinite;
  color: #ffffff;
  padding: 75px 0 65px 0;
  position: relative;
  overflow: hidden;
}

@keyframes oceanGradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.22) 0%, rgba(0, 180, 216, 0.08) 50%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: floatOrb1 12s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(0, 150, 255, 0.18) 0%, rgba(0, 119, 182, 0.06) 50%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  filter: blur(50px);
  animation: floatOrb2 16s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}

@keyframes floatOrb1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-60px, 40px) scale(1.15); }
  100% { transform: translate(30px, -20px) scale(0.95); }
}

@keyframes floatOrb2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(70px, -30px) scale(1.2); }
  100% { transform: translate(-40px, 30px) scale(0.9); }
}

.page-hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  animation: pageHeroFadeIn 0.8s ease-out;
}

@keyframes pageHeroFadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--azure-bright);
  font-weight: 600;
  margin-bottom: 16px;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a:hover {
  color: #ffffff;
}

.page-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.page-title span {
  color: #00f0ff;
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.7);
}

.page-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
}

/* -------------------------------------------------------------------
   Gallery Filter & Lightbox Styles
   ------------------------------------------------------------------- */
.gallery-filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.gallery-filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 180, 216, 0.25);
  background: #ffffff;
  color: var(--navy-dark);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--azure-bright);
  color: #ffffff;
  border-color: var(--azure-bright);
  box-shadow: var(--shadow-glow);
}

.gallery-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(7, 19, 37, 0.85);
  backdrop-filter: blur(8px);
  color: var(--azure-bright);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(0, 180, 216, 0.3);
}

.gallery-card-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 180, 216, 0.9);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 3;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition-normal);
}

.gallery-item:hover .gallery-card-icon {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 11, 22, 0.95);
  backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 12px;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 1050px;
  width: 100%;
  height: 92vh;
  max-height: 94vh;
  background: var(--navy-card);
  border: 1px solid rgba(0, 180, 216, 0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
}

.lightbox-img-wrapper {
  position: relative;
  width: 100%;
  flex: 1 1 auto;
  height: 100%;
  min-height: 0;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lightbox-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox-info {
  flex-shrink: 0;
  padding: 18px 24px;
  background: var(--navy-dark);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.lightbox-info h3 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.lightbox-info p {
  color: var(--azure-bright);
  font-size: 0.9rem;
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0,0,0,0.7);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  background: #ff4757;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #ffffff;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition-fast);
}

.lightbox-nav:hover {
  background: var(--azure-bright);
}

/* Lightbox Mobile Responsiveness */
@media (max-width: 768px) {
  .lightbox-modal {
    padding: 16px 10px;
    z-index: 10000;
  }

  .lightbox-content {
    height: 78vh;
    max-height: 80vh;
  }

  .lightbox-info {
    padding: 12px 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    text-align: center;
  }

  .lightbox-info h3 {
    font-size: 1.05rem;
    margin-bottom: 2px;
  }

  .lightbox-info p {
    font-size: 0.8rem;
  }

  .lightbox-info .btn-whatsapp {
    padding: 8px 14px;
    font-size: 0.85rem;
    justify-content: center;
    width: 100%;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .lightbox-nav {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }

  .lightbox-prev {
    left: 6px;
  }

  .lightbox-next {
    right: 6px;
  }
}

/* Video Gallery Styling */
.video-badge {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: #ffffff !important;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4) !important;
}

.video-play-icon {
  width: 56px !important;
  height: 56px !important;
  background: rgba(0, 180, 216, 0.9) !important;
  color: #ffffff !important;
  font-size: 2.2rem !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 20px rgba(0, 180, 216, 0.6) !important;
  opacity: 0.95 !important;
}

.gallery-item:hover .video-play-icon {
  transform: scale(1.15) !important;
  background: #ffffff !important;
  color: var(--navy-dark) !important;
}

.lightbox-prev { left: 15px; }
.lightbox-next { right: 15px; }

/* -------------------------------------------------------------------
   Contact Page Styles
   ------------------------------------------------------------------- */
.contact-form-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(10, 25, 47, 0.08);
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.contact-form-card h3 {
  font-size: 1.5rem;
  color: var(--navy-dark);
  margin-bottom: 6px;
}

.contact-form-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 6px;
}

.form-group label i {
  color: var(--azure-bright);
  margin-right: 4px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid #cbd5e1;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--azure-bright);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.15);
}

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

.form-success-alert {
  background: #d1fae5;
  border: 1px solid #10b981;
  color: #065f46;
  padding: 16px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  display: none;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.gopro-banner {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 50%, #075985 100%);
  color: #ffffff;
  border-radius: var(--radius-lg, 16px);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 50px;
  box-shadow: 0 14px 35px rgba(2, 132, 199, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.gopro-banner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.gopro-banner-content {
  flex: 1;
  text-align: left;
}

.banner-badge-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.gopro-banner .banner-badge {
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.gopro-banner .group-only-badge {
  background: #ffb703;
  color: #0f172a;
  box-shadow: 0 2px 8px rgba(255, 183, 3, 0.4);
}

.gopro-banner-title {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -0.4px;
}

.gopro-banner-desc {
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.94);
  margin-bottom: 16px;
  max-width: 680px;
}

.gopro-highlights-grid {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.gopro-pill {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #ffffff;
}

.gopro-pill.highlight-pill-alert {
  background: rgba(254, 240, 138, 0.22);
  border-color: rgba(254, 240, 138, 0.6);
  color: #fef08a;
  font-weight: 700;
}

.gopro-banner-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn-gopro-cta {
  padding: 14px 28px;
  font-size: 1.02rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-gopro-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(34, 197, 94, 0.45);
}

.cta-subtext {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* -------------------------------------------------------------------
   Tablet Breakpoint – Contact Grid Stacks at ≤ 960px
   ------------------------------------------------------------------- */
@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "info"
      "form"
      "faq" !important;
    gap: 24px !important;
  }

  .contact-info-card,
  .contact-form-card,
  .contact-faq-card {
    width: 100% !important;
  }

  .contact-info-card {
    padding: 28px 24px !important;
  }

  .contact-form-card {
    padding: 28px 24px !important;
  }

  .contact-faq-card {
    padding: 20px 18px !important;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none !important;
  }
  .gopro-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    align-items: center;
  }
  .gopro-banner-content {
    text-align: center;
  }
  .banner-badge-wrapper,
  .gopro-highlights-grid {
    justify-content: center;
  }
  .gopro-banner .btn {
    width: 100%;
    max-width: 320px;
    white-space: nowrap;
  }
  .lightbox-info {
    flex-direction: column;
    text-align: center;
  }
}

/* -------------------------------------------------------------------
   Why Choose Us Intro Box & Feature Styling
   ------------------------------------------------------------------- */
.why-intro-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(10, 25, 47, 0.08);
  margin-bottom: 40px;
}

.why-intro-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 992px) {
  .why-intro-grid {
    grid-template-columns: 1fr;
  }
}

.why-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fffbeb;
  border: 1px solid #fef3c7;
  color: #b45309;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.why-highlights-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-light);
  border: 1px solid rgba(0, 180, 216, 0.2);
  color: var(--navy-dark);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
}

.why-intro-media {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(10, 25, 47, 0.1);
  display: flex;
}

.why-intro-featured-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.4s ease;
}

.why-intro-media:hover .why-intro-featured-img {
  transform: scale(1.04);
}

/* -------------------------------------------------------------------
   Google Business Reviews Section Styling
   ------------------------------------------------------------------- */
.google-reviews-header-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(10, 25, 47, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

@media (max-width: 768px) {
  .google-reviews-header-card {
    flex-direction: column;
    text-align: center;
  }
}

.google-reviews-score {
  display: flex;
  align-items: center;
  gap: 16px;
}

.google-g-logo {
  width: 48px;
  height: 48px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #4285f4;
  border: 1px solid #e2e8f0;
}

.review-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #059669;
  background: #ecfdf5;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: 6px;
}

/* Floating Back to Top Arrow Button */
.back-to-top-btn {
  position: fixed;
  bottom: 24px;
  right: 90px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy-dark);
  color: var(--azure-bright);
  border: 1px solid rgba(0, 180, 216, 0.4);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top-btn:hover {
  background: var(--azure-bright);
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

/* -------------------------------------------------------------------
   Mobile Responsive Navigation & Card Resolution Fixes
   ------------------------------------------------------------------- */
@media (max-width: 991px) {
  .navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    background: #071325 !important;
    overflow: visible !important;
    z-index: 99999 !important;
  }

  /* Push page content down so it's not hidden behind the fixed navbar */
  body {
    padding-top: 62px !important;
  }

  .navbar-content {
    position: relative !important;
    overflow: visible !important;
  }

  .navbar-content .btn {
    display: none !important;
  }

  .mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(0, 180, 216, 0.25) !important;
    color: #ffffff !important;
    border-radius: var(--radius-sm);
    border: 1px solid var(--azure-bright) !important;
    font-size: 1.8rem !important;
    cursor: pointer !important;
    z-index: 100005 !important;
  }


  .nav-links {
    position: absolute !important;
    top: 62px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: #040c18 !important;
    flex-direction: column !important;
    padding: 20px !important;
    gap: 12px !important;
    border-bottom: 3px solid var(--azure-bright) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.95) !important;
    display: none;
    z-index: 100000 !important;
    border-radius: 0 0 16px 16px !important;
  }

  .nav-links.active,
  .nav-links.show {
    display: flex !important;
  }

  .nav-links li {
    width: 100% !important;
    list-style: none !important;
  }

  .nav-links a {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    padding: 14px 20px !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: var(--radius-md) !important;
    color: #ffffff !important;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: var(--azure-bright) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.4) !important;
  }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  .top-bar {
    display: none !important;
  }

  .container {
    padding: 0 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .section-padding {
    padding: 40px 0 !important;
  }

  .section-title {
    font-size: 1.7rem !important;
    word-break: break-word !important;
  }

  .page-hero {
    padding: 40px 0 30px 0 !important;
    width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .page-title {
    font-size: 1.8rem !important;
    word-break: break-word !important;
    line-height: 1.2 !important;
  }

  .page-description {
    font-size: 0.92rem !important;
    line-height: 1.5 !important;
  }

  .hero-title {
    font-size: 1.9rem !important;
    word-break: break-word !important;
  }

  .hero-description {
    font-size: 0.95rem !important;
  }

  .footer {
    padding: 36px 0 20px 0 !important;
    overflow-x: hidden !important;
    width: 100% !important;
    text-align: center !important;
  }

  .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 24px 16px !important;
    margin-bottom: 24px !important;
    width: 100% !important;
    text-align: center !important;
  }

  .footer-col:nth-child(1) {
    grid-column: span 2 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .footer-col:nth-child(1) .brand-logo {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 8px !important;
    margin: 0 auto 12px auto !important;
  }

  .footer-col:nth-child(1) .brand-logo-img {
    margin: 0 auto !important;
  }

  .footer-col:nth-child(1) .brand-text {
    align-items: center !important;
    text-align: center !important;
  }

  .footer-col:nth-child(1) p {
    text-align: center !important;
    max-width: 360px !important;
    margin: 0 auto !important;
    font-size: 0.88rem !important;
  }

  .footer-col:nth-child(2),
  .footer-col:nth-child(3) {
    grid-column: span 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .footer-col:nth-child(4) {
    grid-column: span 2 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .footer-col:nth-child(4) p {
    justify-content: center !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    text-align: center !important;
    margin-bottom: 6px !important;
    font-size: 0.88rem !important;
  }

  .footer-col h4 {
    text-align: center !important;
    margin-bottom: 12px !important;
    font-size: 1.05rem !important;
  }

  .footer-links {
    align-items: center !important;
    text-align: center !important;
  }

  .footer-links a:hover {
    padding-left: 0 !important;
  }

  .footer-bottom {
    text-align: center !important;
    padding-top: 18px !important;
  }

  .calc-wrapper {
    padding: 18px 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .calc-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    width: 100% !important;
  }

  .form-row,
  .calc-inputs .form-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .form-control,
  .calc-inputs select,
  .calc-inputs input {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .why-intro-card,
  .contact-form-card,
  .contact-info-card,
  .calculator-card {
    padding: 20px 14px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  .why-us-grid,
  .tours-grid,
  .gallery-grid,
  .reviews-grid,
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    width: 100% !important;
  }

  .map-container {
    height: 300px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .map-container iframe {
    height: 300px !important;
    width: 100% !important;
  }

  .floating-whatsapp {
    right: 16px !important;
    bottom: 16px !important;
    width: 54px !important;
    height: 54px !important;
    z-index: 10000 !important;
  }

  .back-to-top-btn {
    right: 21px !important;
    bottom: 80px !important;
    width: 44px !important;
    height: 44px !important;
    z-index: 9999 !important;
  }

  .gopro-banner {
    padding: 20px 16px;
    flex-direction: column;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }

  .gopro-banner .btn {
    width: 100%;
    max-width: 100%;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }
}

/* -------------------------------------------------------------------
   Full-Screen Mobile Slide-Down Overlay Drawer
   ------------------------------------------------------------------- */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 12, 24, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999999;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}

.mobile-drawer.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 180, 216, 0.2);
  margin-bottom: 24px;
}

.mobile-drawer-close {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(0, 180, 216, 0.4);
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-drawer-close:hover {
  background: var(--azure-bright);
}

.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  overflow-y: auto;
}

.mobile-drawer-links a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-drawer-links a i {
  color: var(--azure-bright);
  font-size: 1.2rem;
}

.mobile-drawer-links a:hover,
.mobile-drawer-links a.active {
  background: var(--azure-bright);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.4);
}

.mobile-drawer-footer {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* -------------------------------------------------------------------
   Global Micro-Animations & Dynamic Hover Motions (Desktop & Mobile)
   ------------------------------------------------------------------- */

/* Smooth Card Hover & Micro-Lift Effects */
.tour-card,
.why-card,
.why-intro-card,
.calculator-card,
.gallery-card,
.contact-info-card,
.contact-form-card,
.hero-card,
.faq-item {
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), 
              box-shadow 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), 
              border-color 0.35s ease !important;
  will-change: transform, box-shadow;
}

.tour-card:hover,
.why-card:hover,
.why-intro-card:hover,
.calculator-card:hover,
.gallery-card:hover,
.hero-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 20px 45px rgba(0, 180, 216, 0.22), 0 10px 25px rgba(0, 0, 0, 0.4) !important;
  border-color: var(--azure-bright) !important;
}

/* Contact cards: lift only — no scale to prevent grid overflow */
.contact-info-card:hover,
.contact-form-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 180, 216, 0.22), 0 10px 25px rgba(0, 0, 0, 0.25) !important;
  border-color: var(--azure-bright) !important;
}

/* Touch active feedback for mobile */
@media (hover: none) or (max-width: 768px) {
  .tour-card:active,
  .why-card:active,
  .why-intro-card:active,
  .calculator-card:active,
  .gallery-card:active,
  .contact-info-card:active,
  .contact-form-card:active,
  .hero-card:active {
    transform: translateY(-3px) scale(0.99) !important;
    box-shadow: 0 12px 30px rgba(0, 180, 216, 0.3) !important;
  }
}

/* Button Animations & Interactive States */
.btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              box-shadow 0.25s ease, 
              background-color 0.25s ease !important;
  will-change: transform;
}

.btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 28px rgba(0, 180, 216, 0.45) !important;
}

.btn:active {
  transform: translateY(1px) scale(0.97) !important;
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.3) !important;
}

/* Shimmer Light Reflection Effect on Primary & WhatsApp Buttons */
.btn-primary::after,
.btn-whatsapp::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  transition: all 0.6s ease;
  pointer-events: none;
}

.btn-primary:hover::after,
.btn-whatsapp:hover::after {
  left: 125%;
}

/* Continuous Soft Pulse Keyframes for Floating WhatsApp & Call To Actions */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6), 0 8px 20px rgba(0, 0, 0, 0.3);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 8px 20px rgba(0, 0, 0, 0.3);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 8px 20px rgba(0, 0, 0, 0.3);
  }
}

.floating-whatsapp {
  animation: pulseGlow 2.5s infinite ease-in-out;
}

.floating-whatsapp:hover {
  transform: scale(1.1) rotate(5deg) !important;
}

.back-to-top-btn {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease !important;
}

.back-to-top-btn:hover {
  transform: translateY(-5px) scale(1.1) !important;
  background: var(--azure-bright) !important;
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(0, 180, 216, 0.5) !important;
}

/* -------------------------------------------------------------------
   Scroll Reveal Animations & Keyframes
   ------------------------------------------------------------------- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s cubic-bezier(0.165, 0.84, 0.44, 1), 
              transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  will-change: opacity, transform;
}

.reveal-on-scroll.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.reveal-delay-1 { transition-delay: 0.08s !important; }
.reveal-delay-2 { transition-delay: 0.18s !important; }
.reveal-delay-3 { transition-delay: 0.28s !important; }

/* -------------------------------------------------------------------
   Hero Section Entrance & Stagger Animations
   ------------------------------------------------------------------- */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes floatBob {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

@keyframes shimmerSlide {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes bounceIn {
  0%   { opacity: 0; transform: scale(0.3); }
  50%  { opacity: 1; transform: scale(1.05); }
  70%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}

/* Hero Content Entrance Stagger */
.hero-badge {
  animation: heroFadeUp 0.7s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s both;
}

.hero-title {
  animation: heroFadeUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.25s both;
}

.hero-description {
  animation: heroFadeUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s both;
}

.hero-ctas {
  animation: heroFadeUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.55s both;
}

.hero-features {
  animation: heroFadeUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.7s both;
}

/* Floating Bob on Hero Card & Turtle Image */
.hero-card,
.why-intro-featured-img {
  animation: floatBob 5s ease-in-out infinite;
}

.why-intro-featured-img {
  animation-delay: -2s;
}

/* Nav link pill hover animation */
.nav-links a {
  transition: background 0.25s ease, color 0.2s ease, 
              box-shadow 0.25s ease, transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.nav-links a:hover {
  transform: translateY(-2px) scale(1.06) !important;
}

/* Badge items entrance */
.badge-item {
  animation: heroFadeUp 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

.badge-item:nth-child(1) { animation-delay: 0.1s; }
.badge-item:nth-child(2) { animation-delay: 0.2s; }
.badge-item:nth-child(3) { animation-delay: 0.3s; }
.badge-item:nth-child(4) { animation-delay: 0.4s; }
.badge-item:nth-child(5) { animation-delay: 0.5s; }

/* Stat / highlight pills bounce in */
.highlight-pill {
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              box-shadow 0.25s ease, background 0.25s ease !important;
}

.highlight-pill:hover {
  transform: translateY(-3px) scale(1.06) !important;
  box-shadow: 0 8px 20px rgba(0, 180, 216, 0.3) !important;
}

/* Tour price badge pulse */
.tour-price {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.tour-card:hover .tour-price {
  transform: scale(1.08) !important;
}

/* Gallery card image zoom */
.gallery-card img,
.gallery-card .gallery-img {
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.gallery-card:hover img,
.gallery-card:hover .gallery-img {
  transform: scale(1.08) !important;
}

/* Contact icon bounce on hover */
.contact-icon {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.contact-item:hover .contact-icon {
  transform: scale(1.15) rotate(-8deg) !important;
}

/* FAQ arrow rotation */
.faq-question {
  transition: background 0.25s ease !important;
}

.faq-question i {
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg) !important;
}

/* Floating WhatsApp scale on hover */
.floating-whatsapp:hover {
  transform: scale(1.15) rotate(8deg) !important;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

/* Section tag entrance */
.section-tag {
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.section-tag:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 14px rgba(0, 180, 216, 0.25) !important;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===================================================================
   Marine Life & Animal Attraction Section (Auto Carousel)
   =================================================================== */
.marine-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 6px 4px 12px;
}

.marine-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.marine-animal-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 180, 216, 0.12);
  box-shadow: 0 6px 24px rgba(10, 25, 47, 0.07);
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  /* 3 cards visible on desktop */
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
}

@media (max-width: 992px) {
  .marine-animal-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 600px) {
  .marine-animal-card {
    flex: 0 0 100%;
  }
}

.marine-animal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 180, 216, 0.2);
  border-color: rgba(0, 180, 216, 0.35);
}

.marine-card-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--navy-deep);
}

.marine-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.marine-animal-card:hover .marine-card-img {
  transform: scale(1.08);
}

.marine-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(7, 19, 37, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  z-index: 2;
}

.marine-card-badge i {
  color: var(--azure-bright);
}

.marine-card-status {
  position: absolute;
  bottom: 12px;
  right: 14px;
  background: rgba(0, 180, 216, 0.9);
  backdrop-filter: blur(6px);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  z-index: 2;
}

.marine-card-body {
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.marine-animal-name {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.marine-animal-name span {
  color: var(--azure-bright);
  font-size: 1.15rem;
}

.marine-animal-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.marine-card-footer {
  padding-top: 14px;
  border-top: 1px solid rgba(0, 180, 216, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.marine-tour-tag {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.marine-tour-tag strong {
  color: var(--navy-dark);
}

.marine-book-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--azure-bright);
  transition: gap 0.2s ease, color 0.2s ease;
}

.marine-animal-card:hover .marine-book-link {
  color: var(--navy-mid);
  gap: 8px;
}

/* Marine Carousel Controls */
.marine-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.marine-carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(0, 180, 216, 0.35);
  background: #ffffff;
  color: var(--azure-bright);
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  box-shadow: 0 4px 14px rgba(10, 25, 47, 0.08);
  flex-shrink: 0;
}

.marine-carousel-btn:hover {
  background: var(--azure-bright);
  border-color: var(--azure-bright);
  color: #ffffff;
  transform: scale(1.08);
}

.marine-carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.marine-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 180, 216, 0.25);
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, width 0.25s;
  padding: 0;
}

.marine-carousel-dot.active {
  background: var(--azure-bright);
  transform: scale(1.3);
  width: 22px;
  border-radius: 9999px;
}


