/* ============================================
   FrostHook Fishing — Main Stylesheet
   frosthookfishing.com
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;800&family=Rajdhani:wght@400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --primary:      #00d4ff;
  --primary-dark: #0099cc;
  --accent:       #ff6b35;
  --accent-dark:  #e55a25;
  --navy:         #0a1628;
  --navy-mid:     #0d2d5e;
  --navy-light:   #112244;
  --white:        #ffffff;
  --off-white:    #f0f8ff;
  --gray-light:   #e8eef5;
  --gray:         #8a9ab5;
  --text:         #1a2744;
  --text-light:   #4a5e82;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.15);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.25);
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

.section-tag {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.25);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.7;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.6);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---- Navigation ---- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
  background: transparent;
}

#navbar.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
  padding: 0 24px;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

.nav-logo img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-text span:first-child {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
}

.nav-logo-text span:last-child {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  line-height: 1;
}

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

.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

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

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

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
  color: var(--navy) !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-weight: 700 !important;
}

.nav-cta:hover {
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.5);
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.mobile-nav a:hover { color: var(--primary); padding-left: 8px; }

/* ---- Cookie Banner ---- */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  color: var(--white);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 2000;
  border-top: 2px solid var(--primary);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.4);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

#cookie-banner.visible { transform: translateY(0); }

#cookie-banner p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  max-width: 700px;
}

#cookie-banner p a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-buttons { display: flex; gap: 12px; flex-shrink: 0; }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.88) 0%,
    rgba(10, 22, 40, 0.55) 50%,
    rgba(10, 22, 40, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 212, 255, 0.15);
  border: 1px solid rgba(0, 212, 255, 0.4);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 50px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-badge svg { width: 16px; height: 16px; }

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  color: var(--white);
  letter-spacing: 3px;
  line-height: 0.95;
  margin-bottom: 12px;
}

.hero h1 span {
  color: var(--primary);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: left;
}

.hero-stat strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--primary);
  letter-spacing: 2px;
  line-height: 1;
}

.hero-stat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ---- Why Section ---- */
.why-section {
  padding: 100px 32px;
  background: var(--off-white);
}

.why-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.why-header {
  text-align: center;
  margin-bottom: 64px;
}

.why-header .section-subtitle {
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(0, 153, 204, 0.06));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.8rem;
}

.why-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.why-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---- Tours Preview ---- */
.tours-section {
  padding: 100px 32px;
  background: var(--white);
}

.tours-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.tours-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 24px;
}

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

.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.tour-card-img {
  position: relative;
  height: 240px;
  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.05);
}

.tour-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--accent);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
}

.tour-card-body {
  padding: 28px 28px 32px;
}

.tour-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.tour-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.tour-meta-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.tour-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  transition: var(--transition);
}

.tour-card:hover h3 { color: var(--primary-dark); }

.tour-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--gray-light);
}

.tour-price {
  display: flex;
  flex-direction: column;
}

.tour-price small {
  font-size: 0.78rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tour-price strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--navy);
  letter-spacing: 1px;
  line-height: 1;
}

.tour-price strong span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  color: var(--gray);
}

/* ---- Split Section (image + text) ---- */
.split-section {
  padding: 100px 32px;
}

.split-section.bg-navy {
  background: var(--navy);
  color: var(--white);
}

.split-section.bg-navy h2,
.split-section.bg-navy h3 { color: var(--white); }

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

.split-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-inner.reverse { direction: rtl; }
.split-inner.reverse > * { direction: ltr; }

.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.split-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.split-image-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(10, 22, 40, 0.9);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.split-image-badge strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--primary);
  letter-spacing: 2px;
}

.split-image-badge span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.split-text { padding: 20px 0; }

.split-list {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

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

.split-list li::before {
  content: '';
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a1628' stroke-width='3'%3E%3Cpolyline points='20,6 9,17 4,12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---- Testimonials ---- */
.testimonials-section {
  padding: 100px 32px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.06), transparent 70%);
}

.testimonials-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}

.testimonials-header h2 { color: var(--white); }
.testimonials-header .section-subtitle { color: rgba(255,255,255,0.65); margin: 0 auto; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(0, 212, 255, 0.35);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  color: #ffd700;
  font-size: 1rem;
}

.testimonial-text {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  padding-left: 20px;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  left: 0; top: -8px;
  font-size: 3rem;
  color: var(--primary);
  font-family: Georgia, serif;
  line-height: 1;
}

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

.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: var(--navy);
}

.testimonial-author-info strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
}

.testimonial-author-info span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

/* ---- Gallery Preview ---- */
.gallery-preview {
  padding: 100px 32px;
  background: var(--off-white);
}

.gallery-preview-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.gallery-preview-header {
  text-align: center;
  margin-bottom: 48px;
}

.gallery-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-grid-home .gal-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-grid-home .gal-item:first-child {
  grid-row: span 2;
}

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

.gallery-grid-home .gal-item:hover img { transform: scale(1.08); }

.gallery-grid-home .gal-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.5), transparent 50%);
  opacity: 0;
  transition: var(--transition);
}

.gallery-grid-home .gal-item:hover::after { opacity: 1; }

/* ---- CTA Section ---- */
.cta-section {
  padding: 100px 32px;
  background: linear-gradient(135deg, var(--accent) 0%, #c0392b 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.cta-section p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  line-height: 1.7;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  height: 420px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.6) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  padding-top: 80px;
}

.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.85rem;
}

.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: rgba(255,255,255,0.5); }
.breadcrumb strong { color: rgba(255,255,255,0.8); }

/* ---- Pricing Cards ---- */
.pricing-section {
  padding: 100px 32px;
  background: var(--off-white);
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 2px solid var(--gray-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1), var(--shadow-md);
  transform: scale(1.03);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured:hover { transform: scale(1.03) translateY(-6px); }

.pricing-popular {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--navy);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.pricing-title {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.6;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-light);
}

.pricing-price big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--navy);
  letter-spacing: 2px;
  line-height: 1;
}

.pricing-price sup {
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 700;
  margin-top: -8px;
}

.pricing-price span {
  font-size: 0.85rem;
  color: var(--gray);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-light);
}

.pricing-features li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: rgba(0, 212, 255, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 2px;
}

/* ---- FAQ ---- */
.faq-section {
  padding: 100px 32px;
  background: var(--white);
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-item {
  border-bottom: 1px solid var(--gray-light);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  user-select: none;
  transition: var(--transition);
}

.faq-question:hover h4 { color: var(--primary-dark); }

.faq-question h4 {
  font-size: 1.05rem;
  font-weight: 600;
  transition: var(--transition);
  padding-right: 20px;
}

.faq-icon {
  width: 32px; height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1.1rem;
  color: var(--navy);
}

.faq-item.open .faq-icon {
  background: var(--primary);
  color: var(--navy);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding-bottom: 24px;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ---- Team Section ---- */
.team-section {
  padding: 100px 32px;
  background: var(--off-white);
}

.team-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.team-header { text-align: center; margin-bottom: 60px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.team-photo {
  height: 260px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.team-info {
  padding: 24px;
}

.team-info h3 { font-size: 1.2rem; margin-bottom: 4px; }

.team-role {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.team-info p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---- Gallery Page ---- */
.gallery-section {
  padding: 80px 32px;
}

.gallery-section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.gallery-full-grid {
  columns: 3;
  column-gap: 20px;
}

.gallery-full-grid .gal-img {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-full-grid .gal-img img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-full-grid .gal-img:hover img { transform: scale(1.04); }

.gallery-full-grid .gal-img::after {
  content: '🔍';
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery-full-grid .gal-img:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 3000;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.4rem;
  transition: var(--transition);
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ---- Contact Page ---- */
.contact-section {
  padding: 100px 32px;
  background: var(--off-white);
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { font-size: 2.2rem; margin-bottom: 20px; }

.contact-info > p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

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

.contact-detail-icon {
  width: 48px; height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(0, 153, 204, 0.06));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 2px;
}

.contact-detail-text span {
  font-size: 0.95rem;
  color: var(--text);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-light);
}

.contact-form-wrap h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
  background: var(--white);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.12);
}

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

.form-success {
  display: none;
  text-align: center;
  padding: 32px 24px;
}

.form-success.visible { display: block; }

.form-success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h4 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ---- Map Section ---- */
.map-section {
  background: var(--navy);
  padding: 0;
}

.map-iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
  filter: sepia(30%) hue-rotate(185deg) saturate(1.2);
}

/* ---- Footer ---- */
footer {
  background: var(--navy);
  padding: 80px 32px 0;
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand { padding-right: 20px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 40px; height: 40px;
  border-radius: 50%;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-text span:first-child {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
}

.footer-logo-text span:last-child {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  line-height: 1;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--navy);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

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

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}

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

/* ---- Utility / Misc ---- */
.text-center { text-align: center; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-padding {
  padding: 100px 32px;
}

/* Legal pages */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 32px;
}

.legal-content h1 {
  font-size: 2.4rem;
  margin-bottom: 8px;
}

.legal-date {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 48px;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin: 40px 0 14px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-light);
}

.legal-content p,
.legal-content li {
  font-size: 0.97rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 14px;
}

.legal-content ul {
  padding-left: 20px;
  list-style: disc;
}

.legal-content a {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* ---- Scroll Animations ---- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .split-inner { grid-template-columns: 1fr; gap: 40px; }
  .split-inner.reverse { direction: ltr; }
  .split-image img { height: 360px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gallery-grid-home { grid-template-columns: 1fr 1fr; }
  .gallery-grid-home .gal-item:first-child { grid-row: span 1; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 28px; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .tours-header { flex-direction: column; align-items: flex-start; }
  .gallery-grid-home { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .gallery-full-grid { columns: 2; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  #cookie-banner { flex-direction: column; text-align: center; }
  .cookie-buttons { justify-content: center; }
  .pricing-card.featured { transform: none; }
}

@media (max-width: 480px) {
  .gallery-grid-home { grid-template-columns: 1fr; }
  .gallery-full-grid { columns: 1; }
  .hero h1 { font-size: 3rem; }
  .section-padding { padding: 60px 20px; }
}
