/* FISHING EXPEDITIONS - EMOTIONALLY ENHANCED PREMIUM DESIGN */
/* Rebuilt for Maximum Visual Impact & Emotional Connection */



@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Crimson+Pro:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&display=swap');

/* Native Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

:root {
  /* FISHING EXPEDITIONS OFFICIAL BRAND COLORS */

  /* Primary Colors */
  --brand-primary: #0049B6;
  /* Deep Ocean Blue */
  --brand-cyan: #0fa9e8;
  /* Vivid Azure */
  --brand-near-black: #231F20;
  /* Near Black */
  --brand-light-gray: #F3F3F3;
  /* Light Gray */

  /* Secondary Colors */
  --brand-dark-blue: #1b3a6b;
  /* Dark Blue */
  --brand-highlight: #B50101;
  /* Vivid Red */
  --brand-vivid-red: #B50101;
  /* Crimson Red */
  --brand-gold: #FFB800;
  /* Achievement Gold */

  /* Background Colors - QA Fix for Contrast */
  --light-bg: #f8f9fa;
  /* Off-white background for better text contrast */
  --white-bg: #ffffff;
  /* Pure white when needed */
  --text-dark: #1f2937;
  /* Dark text for light backgrounds */
  --text-muted: #6b7280;
  /* Muted text color */

  /* Gradients */
  --gradient-ocean: linear-gradient(135deg, #0049B6, #0fa9e8);
  --gradient-fire: linear-gradient(135deg, #B50101, #ff4d00);
  --gradient-sunrise: linear-gradient(135deg, #ff6b00, #ffaa00);
  --gradient-midnight: linear-gradient(135deg, #0a1628, #1B3A6B);
  --gradient-abyss: linear-gradient(135deg, #0a1628 0%, #1B3A6B 100%);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);

  /* Typography */
  --title-font: 'Crimson Pro', 'Georgia', serif;

  /* Layout */
  --max-width: 1200px;
  --section-padding: clamp(4rem, 10vw, 8rem);

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.75;
  color: #1f2937;
  overflow-x: hidden;
  background: #ffffff;
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--brand-highlight);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 10000;
}

.skip-link:focus {
  top: 0;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--gradient-abyss);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loading-spinner {
  width: 80px;
  height: 80px;
  border: 6px solid rgba(15, 169, 232, 0.2);
  border-top: 6px solid #0fa9e8;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  box-shadow: var(--shadow-glow);
}

.loading-text {
  color: white;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 2rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

/* Navigation - Enhanced */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
  background: transparent;
  /* Removed glassmorphism for cleaner look over sky */
  backdrop-filter: none;
}

nav.scrolled {
  top: 0;
  /* Hide banner when scrolled */
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  border-bottom: 1px solid rgba(15, 169, 232, 0.1);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

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

.logo-image {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0) invert(1);
}

.logo:hover .logo-image {
  transform: scale(1.08);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 100%;
  background: var(--brand-cyan);
  transform: scaleX(0);
  /* GPU-accelerated instead of width: 0 */
  transform-origin: left;
  transition: transform 0.3s ease;
  will-change: transform;
  /* Hint for GPU acceleration */
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  /* Instead of width: 100% */
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-cyan);
}

/* Enhanced Focus States for Accessibility */
*:focus-visible {
  outline: 3px solid var(--brand-cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Focus styles for buttons */
.btn:focus-visible,
.cta-btn:focus-visible {
  outline: 3px solid var(--brand-cyan);
  outline-offset: 4px;
}

/* Focus styles for form inputs */
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--brand-cyan);
  outline-offset: 2px;
  border-color: var(--brand-cyan);
}

/* Focus styles for navigation links */
.nav-link:focus-visible {
  outline: 3px solid var(--brand-cyan);
  outline-offset: 6px;
}

/* Focus styles for cards */
.card:focus-visible {
  outline: 3px solid var(--brand-cyan);
  outline-offset: 4px;
}

.cta-btn {
  background: var(--gradient-fire);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(181, 1, 1, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-btn:hover::before {
  width: 300px;
  height: 300px;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(181, 1, 1, 0.6);
}

.cta-btn:active {
  transform: scale(0.98);
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.75rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(20px);
  padding: 6rem 2rem 2rem;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  box-shadow: var(--shadow-xl);
}

.mobile-menu .nav-link {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 0;
  display: block;
}

.mobile-menu.active {
  right: 0;
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu .nav-menu {
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

/* Hero Section - Enhanced */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 10rem 2rem 3rem;
  /* Increased top padding from 6rem to 10rem */
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-midnight);
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(15, 169, 232, 0.2), transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(181, 1, 1, 0.2), transparent 60%);
  animation: pulse 8s ease-in-out infinite;
}

/* Enhanced animated particles */
.hero-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(15, 169, 232, 0.2), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(15, 169, 232, 0.3), transparent);
  background-size: 200% 200%;
  animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-20px) translateX(10px);
  }
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1200px;
}

.hero-subtitle {
  font-family: 'Crimson Pro', serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-style: italic;
  color: var(--brand-cyan);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.3s forwards;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeInUp 1s ease 0.6s forwards;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.gradient-text {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
  will-change: background-position;
  /* GPU hint */
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.hero-description {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.95);
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  opacity: 0;
  animation: fadeInUp 1s ease 0.9s forwards;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease 1.2s forwards;
}

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

  from {
    opacity: 0;
    transform: translateY(30px);
  }
}

/* Trust Banner - NEW */
.trust-banner {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease 1.5s forwards;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-stars {
  color: var(--brand-gold);
}

/* Social Proof Badge - NEW */
.social-proof-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  max-width: 300px;
  animation: slideInLeft 1s ease 2s forwards;
  opacity: 0;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }

  from {
    opacity: 0;
    transform: translateX(-50px);
  }
}

.proof-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.proof-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-ocean);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}

.proof-text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #374151;
}

.proof-name {
  font-weight: 700;
  color: var(--brand-primary);
}

/* Urgency Banner - Fixed positioning to avoid nav conflicts */
.urgency-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--gradient-fire);
  color: white;
  text-align: center;
  padding: 0.875rem 2rem;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: var(--shadow-md);
  z-index: 999;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.urgency-banner.hidden {
  transform: translateY(-100%);
}

/* Buttons - Enhanced */
.btn {
  padding: 1.125rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-fire);
  color: white;
  box-shadow: 0 10px 30px rgba(181, 1, 1, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(181, 1, 1, 0.6);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--brand-primary);
  border-color: white;
}

/* Sections */
section {
  padding: clamp(4rem, 10vw, 8rem) 2rem;
  position: relative;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 8vw, 6rem);
}

.section-eyebrow {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-cyan);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--brand-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: 'Crimson Pro', serif;
}

.section-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--text-dark);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Enhanced Cards */
.card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(15, 169, 232, 0.2);
}

.card-featured {
  border: 3px solid var(--brand-cyan);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.card-featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-fire);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.card-glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 2.5rem;
}

/* Image Placeholder with Instructions - NEW */
.image-placeholder {
  background: linear-gradient(135deg, #e0f2fe 0%, #bfdbfe 100%);
  border-radius: 16px;
  border: 2px dashed var(--brand-cyan);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg,
      transparent,
      transparent 10px,
      rgba(15, 169, 232, 0.05) 10px,
      rgba(15, 169, 232, 0.05) 20px);
}

.placeholder-content {
  position: relative;
  z-index: 1;
}

.placeholder-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-ocean);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.placeholder-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 0.75rem;
}

.placeholder-description {
  font-size: 0.9rem;
  color: #6b7280;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Stats */
.stat-box {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
  font-weight: 600;
}

/* Icon Box */
.icon-box {
  width: 70px;
  height: 70px;
  background: var(--gradient-ocean);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.icon-box:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-lg);
}

/* Testimonial Card - NEW */
.testimonial-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
  border-top: 4px solid var(--brand-cyan);
}

.testimonial-quote {
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 1.5rem;
  font-family: 'Crimson Pro', serif;
}

.testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--brand-cyan);
  opacity: 0.2;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-family: Georgia, serif;
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-ocean);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

.author-info {
  flex: 1;
}

.author-name {
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 0.25rem;
}

.author-title {
  font-size: 0.875rem;
  color: #6b7280;
}

.testimonial-stars {
  color: var(--brand-gold);
  font-size: 1.125rem;
}

/* Footer */
footer {
  background: var(--gradient-abyss);
  color: white;
  padding: 5rem 2rem 2rem;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--brand-cyan);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* Back to Top */
#backToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: var(--gradient-fire);
  color: white;
  border: none;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

#backToTop.visible {
  opacity: 1;
  pointer-events: auto;
}

#backToTop:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 40px rgba(181, 1, 1, 0.6);
}

/* Animations - Fast and responsive */
.fade-in {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

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

/* Responsive */
@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu {
    display: block;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .trust-banner {
    flex-direction: column;
    gap: 1rem;
  }

  .social-proof-badge {
    position: static;
    margin: 2rem auto 0;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 1rem 1.5rem;
  }

  section {
    padding: 3rem 1.5rem;
  }

  .card {
    padding: 1.75rem;
  }

  .hero {
    padding: 5rem 1.5rem 2rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .urgency-banner {
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
  }
}

/* Print */
@media print {

  nav,
  footer,
  #backToTop,
  .mobile-menu,
  .urgency-banner {
    display: none !important;
  }
}

/* --- OPTIMIZATIONS & FIXES --- */

/* Social Proof Notification Styles */
.social-notification {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 998;
  max-width: 280px;
  transform: translateX(-400px);
  will-change: transform;
  font-size: 0.9rem;
}

.social-notification .notif-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-notification .notif-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0fa9e8, #0049B6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.social-notification .notif-text {
  flex: 1;
  line-height: 1.5;
}

.social-notification .notif-text strong {
  color: var(--brand-primary);
}

.social-notification .notif-time {
  display: block;
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.25rem;
}

/* Mobile Optimizations */
@media (max-width: 768px) {

  /* Urgency Banner - Keep visible but adjust */
  .urgency-banner {
    font-size: 0.75rem;
    padding: 0.625rem 1rem;
    position: relative;
  }

  /* Social Proof Notifications - HIDDEN on mobile for clean experience */
  .social-notification {
    display: none !important;
  }

  /* Also hide the static social proof badge if present */
  .social-proof-badge {
    display: none !important;
  }
}

/* Performance Optimizations */
.hero-bg,
.hero-overlay,
.hero-particles,
[data-speed] {
  will-change: transform;
}

.fade-in {
  will-change: opacity, transform;
}

.card:hover,
.btn:hover,
.cta-btn:hover {
  will-change: transform;
}

/* Mobile Menu Fixes */
.mobile-menu .nav-link {
  color: #ffffff !important;
  opacity: 1 !important;
  visibility: visible !important;
  font-weight: 600;
}

.mobile-menu .nav-menu {
  display: flex !important;
  flex-direction: column !important;
  gap: 2rem !important;
  margin-top: 4rem !important;
  width: 100% !important;
}

.mobile-menu .nav-menu li {
  width: 100% !important;
  text-align: center !important;
  display: block !important;
}

.mobile-menu .nav-link {
  font-size: 1.5rem !important;
  display: block !important;
  padding: 0.5rem !important;
}

/* Vertical Image Frames & Animation - Grid Format (3 Columns) */
.vertical-gallery {
  display: grid;
  /* Strictly 3 columns as requested */
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 6rem;
}

.framed-image-card {
  position: relative;
  background: #fff;
  padding: 10px;
  /* Slightly reduced padding for compactness */
  border-radius: 2px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  /* Slightly reduced shadow */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  animation: revealCard 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.framed-image-card:nth-child(2) {
  animation-delay: 0.15s;
}

.framed-image-card:nth-child(3) {
  animation-delay: 0.3s;
}

.framed-image-card img {
  display: block;
  width: 100%;
  height: auto;
  /* Maintains natural aspect ratio */
  backface-visibility: hidden;
}

.framed-image-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

@keyframes revealCard {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* Responsive: 1 column on mobile, 2 on tablet, 3 on desktop */
@media (max-width: 1024px) {
  .vertical-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .vertical-gallery {
    grid-template-columns: 1fr;
  }
}