/* ==========================================================================
   GameSquad LLC CSS Design System
   ========================================================================== */

:root {
  /* Color Palette - Vibrant, High Energy */
  --blue-primary: #2563EB;
  --blue-dark: #1E40AF;
  --blue-light: #EFF6FF;
  --blue-glow: rgba(37, 99, 235, 0.2);
  
  --orange-primary: #F97316;
  --orange-dark: #C2410C;
  --orange-light: #FFF7ED;
  --orange-glow: rgba(249, 115, 22, 0.2);
  
  --green-primary: #22C55E;
  --green-dark: #15803D;
  --green-light: #F0FDF4;
  --green-glow: rgba(34, 197, 94, 0.2);
  
  --yellow-primary: #EAB308;
  --yellow-dark: #A16207;
  --yellow-light: #FEF9C3;
  --yellow-glow: rgba(234, 179, 8, 0.2);

  --purple-primary: #8B5CF6;
  --purple-light: #F5F3FF;
  --purple-glow: rgba(139, 92, 246, 0.2);

  --red-primary: #EF4444;
  --red-light: #FEF2F2;

  --neutral-dark: #0F172A;
  --neutral-muted: #475569;
  --neutral-light: #F8FAFC;
  --neutral-border: #E2E8F0;
  --white: #FFFFFF;
  
  /* Gradients */
  --grad-hero: linear-gradient(135deg, #EFF6FF 0%, #FFFFFF 50%, #FFF7ED 100%);
  --grad-primary: linear-gradient(135deg, var(--blue-primary) 0%, #1D4ED8 100%);
  --grad-accent: linear-gradient(135deg, var(--orange-primary) 0%, #EA580C 100%);
  --grad-green: linear-gradient(135deg, var(--green-primary) 0%, #16A34A 100%);
  --grad-text: linear-gradient(90deg, var(--blue-primary) 0%, var(--orange-primary) 100%);
  --grad-banner: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
  --grad-dark-section: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);

  /* Layout Constants */
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-glow-orange: 0 8px 30px rgba(249, 115, 22, 0.4);
  --shadow-glow-blue: 0 8px 30px rgba(37, 99, 235, 0.3);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Base Styles & Reset
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--neutral-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.25;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}

/* Common UI Helpers */
.text-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: var(--blue-light);
  color: var(--blue-primary);
  margin-bottom: 16px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: currentColor;
  border-radius: 50%;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(1.15); }
}

.section-header {
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--neutral-dark);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--neutral-muted);
}

/* Background Color Helpers for Bullets/Badges */
.bg-blue-light { background-color: var(--blue-light); color: var(--blue-primary); }
.bg-orange-light { background-color: var(--orange-light); color: var(--orange-primary); }
.bg-green-light { background-color: var(--green-light); color: var(--green-primary); }
.bg-yellow-light { background-color: var(--yellow-light); color: var(--yellow-dark); }
.bg-purple-light { background-color: var(--purple-light); color: var(--purple-primary); }
.bg-red-light { background-color: var(--red-light); color: var(--red-primary); }

.bg-orange { background-color: var(--orange-primary); color: var(--white); }
.bg-blue { background-color: var(--blue-primary); color: var(--white); }
.bg-green { background-color: var(--green-primary); color: var(--white); }
.bg-yellow { background-color: var(--yellow-primary); color: var(--neutral-dark); }
.bg-purple { background-color: var(--purple-primary); color: var(--white); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.125rem;
}

.btn-primary {
  background: var(--grad-accent);
  color: var(--white);
  box-shadow: var(--shadow-glow-orange);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(249, 115, 22, 0.5);
}

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

.btn-secondary {
  background: var(--white);
  color: var(--blue-primary);
  border: 2px solid var(--blue-primary);
}

.btn-secondary:hover {
  background-color: var(--blue-light);
  transform: translateY(-3px);
}

/* ==========================================================================
   Sticky Header & Navigation
   ========================================================================== */

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-smooth);
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-sm);
}

.main-header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid var(--neutral-border);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--blue-primary);
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: var(--grad-accent);
  color: var(--white);
  font-size: 1.25rem;
  box-shadow: var(--shadow-glow-orange);
  animation: logo-bounce 4s ease-in-out infinite;
}

@keyframes logo-bounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-4px) rotate(5deg); }
}

.logo-accent {
  color: var(--orange-primary);
}

/* Navigation Links */
.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--neutral-muted);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--grad-accent);
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--neutral-dark);
}

.nav-link.active {
  color: var(--blue-primary);
}

.nav-link.active::after {
  width: 100%;
}

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

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
}

.primary-cta {
  background: var(--grad-accent);
  color: var(--white);
  box-shadow: var(--shadow-glow-orange);
}

.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--neutral-dark);
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}

/* Graphic Decorative Orbs */
.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background-color: #BFDBFE;
  top: -100px;
  right: -50px;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background-color: #FED7AA;
  bottom: -50px;
  left: -100px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  border: 1px solid rgba(37, 99, 235, 0.15);
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-size: 3.75rem;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--neutral-dark);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--neutral-muted);
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2.25rem;
  color: var(--blue-primary);
  line-height: 1;
}

.stat-plus {
  color: var(--orange-primary);
  font-weight: 800;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--neutral-muted);
  margin-top: 4px;
  font-weight: 600;
}

/* Hero Visual Graphic Area */
.hero-visual {
  position: relative;
}

.image-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-blob-bg {
  position: absolute;
  width: 110%;
  height: 110%;
  opacity: 0.15;
  z-index: 0;
  animation: blob-spin 20s linear infinite;
}

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

.hero-main-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3.5;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--neutral-border);
  overflow: hidden;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-glow {
  position: absolute;
  top: -20%;
  right: -20%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.card-content-overlay {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.activity-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: var(--shadow-md);
  font-family: 'Outfit', sans-serif;
  animation: badge-float 6s ease-in-out infinite;
}

.badge-yellow {
  background-color: var(--yellow-light);
  color: var(--yellow-dark);
  top: 10px;
  left: 0;
}

.badge-green {
  background-color: var(--green-light);
  color: var(--green-primary);
  top: 60px;
  right: 0;
  animation-delay: -2s;
}

.badge-blue {
  background-color: var(--blue-light);
  color: var(--blue-primary);
  bottom: 80px;
  left: -10px;
  animation-delay: -4s;
}

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

.kids-graphics {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kids-sports-illustration {
  width: 90%;
  height: 90%;
}

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

.user-pile {
  display: flex;
  align-items: center;
}

.pile-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--white);
  margin-left: -8px;
}

.pile-avatar:first-child {
  margin-left: 0;
}

.pile-count {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--neutral-muted);
  margin-left: 8px;
}

.stars {
  color: var(--yellow-primary);
  font-size: 0.875rem;
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about-section {
  padding: 100px 0;
  background-color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-card {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-vector-illustration {
  width: 100%;
  display: block;
}

.specialist-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background-color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  border-left: 5px solid var(--green-primary);
  z-index: 10;
}

.specialist-badge i {
  font-size: 2rem;
  color: var(--green-primary);
}

.specialist-badge h4 {
  font-size: 1rem;
  color: var(--neutral-dark);
  font-family: 'Outfit', sans-serif;
  margin-bottom: 2px;
}

.specialist-badge p {
  font-size: 0.8rem;
  color: var(--neutral-muted);
}

.about-subtitle {
  font-size: 1.75rem;
  margin-bottom: 20px;
  color: var(--blue-primary);
}

.about-text {
  font-size: 1.1rem;
  color: var(--neutral-muted);
  margin-bottom: 40px;
}

.about-bullets {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bullet-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.bullet-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  font-size: 1.25rem;
}

.bullet-info h4 {
  font-size: 1.125rem;
  color: var(--neutral-dark);
  margin-bottom: 4px;
}

.bullet-info p {
  font-size: 0.95rem;
  color: var(--neutral-muted);
}

/* ==========================================================================
   Services Section (Dynamic & Interactive Grid)
   ========================================================================== */

.services-section {
  padding: 100px 0;
  background: var(--grad-dark-section);
  position: relative;
}

.text-white {
  color: var(--white);
}

.text-white-opacity {
  color: rgba(255, 255, 255, 0.7);
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  width: 100%;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 400px;
  width: calc(33.333% - 20px);
}

@media (max-width: 1200px) {
  .service-card {
    width: calc(50% - 15px);
  }
}

@media (max-width: 767px) {
  .service-card {
    width: 100%;
  }
}

.card-corner-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
}

.service-icon {
  font-size: 2.75rem;
  margin-bottom: 24px;
}

.service-title {
  font-size: 1.5rem;
  color: var(--neutral-dark);
  margin-bottom: 16px;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--neutral-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--neutral-dark);
}

.service-features li i {
  font-size: 0.85rem;
}

.service-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  color: var(--white);
  transition: var(--transition-smooth);
}

/* Active buttons colors based on details */
.btn-orange-glow { background: var(--grad-accent); box-shadow: var(--orange-glow); }
.btn-orange-glow:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow-orange); }

.btn-blue-glow { background: var(--grad-primary); box-shadow: var(--blue-glow); }
.btn-blue-glow:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow-blue); }

.btn-green-glow { background: var(--grad-green); box-shadow: var(--green-glow); }
.btn-green-glow:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4); }

.btn-yellow-glow { background: linear-gradient(135deg, var(--yellow-primary) 0%, var(--yellow-dark) 100%); color: var(--neutral-dark); }
.btn-yellow-glow:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(234, 179, 8, 0.4); }

.btn-purple-glow { background: linear-gradient(135deg, var(--purple-primary) 0%, #7C3AED 100%); }
.btn-purple-glow:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4); }

.btn-red-glow { background: linear-gradient(135deg, var(--red-primary) 0%, #DC2626 100%); }
.btn-red-glow:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(239, 68, 68, 0.4); }

/* Hover Lift-Glow Cards */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.2);
}

.service-card:hover .service-icon {
  animation: icon-wiggle 0.5s ease-in-out;
}

@keyframes icon-wiggle {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-10deg) scale(1.1); }
  75% { transform: rotate(10deg) scale(1.1); }
}

/* ==========================================================================
   Why Choose GameSquad Section
   ========================================================================== */

.why-section {
  padding: 100px 0;
  background-color: var(--neutral-light);
}

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

.why-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-border);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

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

.why-card p {
  font-size: 0.95rem;
  color: var(--neutral-muted);
}

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

/* ==========================================================================
   How It Works (Process Timeline)
   ========================================================================== */

.how-section {
  padding: 100px 0;
  background-color: var(--white);
  position: relative;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  position: relative;
}

/* Connective Line for Desktop */
@media (min-width: 992px) {
  .how-grid::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: var(--neutral-border);
    background-image: linear-gradient(to right, var(--blue-primary) 30%, var(--orange-primary) 70%, var(--green-primary) 100%);
    z-index: 0;
    border-radius: var(--radius-full);
  }
}

.how-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-number-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--orange-primary);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 10;
}

.step-card {
  background-color: var(--white);
  padding: 40px 24px 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--neutral-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--blue-light);
  color: var(--blue-primary);
  font-size: 2rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
  transition: var(--transition-smooth);
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--neutral-dark);
}

.step-card p {
  font-size: 0.9rem;
  color: var(--neutral-muted);
}

.how-step:hover .step-card {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange-primary);
}

.how-step:hover .step-icon {
  background-color: var(--orange-primary);
  color: var(--white);
}

.how-step:hover .step-number-badge {
  background-color: var(--blue-primary);
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */

.gallery-section {
  padding: 100px 0;
  background-color: var(--white);
}

.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: var(--neutral-light);
  color: var(--neutral-muted);
  border: 1px solid var(--neutral-border);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover {
  background-color: var(--blue-light);
  color: var(--blue-primary);
  border-color: var(--blue-primary);
}

.filter-btn.active {
  background-color: var(--blue-primary);
  color: var(--white);
  border-color: var(--blue-primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background-color: var(--white);
  transition: var(--transition-smooth);
}

.gallery-card {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-info {
  transform: translateY(15px);
  transition: transform 0.4s ease;
}

.gallery-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.gallery-info h3 {
  color: var(--white);
  font-size: 1.2rem;
}

/* Hover States for Gallery */
.gallery-item:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}

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

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

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

/* ==========================================================================
   Video Showcase
   ========================================================================== */

.video-showcase-section {
  padding: 100px 0;
  background-color: var(--neutral-light);
}

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

.video-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-border);
  transition: var(--transition-smooth);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  cursor: pointer;
  overflow: hidden;
}

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

.play-btn-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: var(--grad-accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-glow-orange);
  transition: var(--transition-smooth);
}

.video-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background-color: rgba(15, 23, 42, 0.8);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}

.video-info {
  padding: 24px;
}

.video-info h3 {
  font-size: 1.25rem;
  color: var(--neutral-dark);
  margin-bottom: 8px;
}

.video-info p {
  font-size: 0.9rem;
  color: var(--neutral-muted);
}

/* Hover Video States */
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.video-card:hover img {
  transform: scale(1.05);
}

.video-card:hover .play-btn-overlay {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--grad-primary);
  box-shadow: var(--shadow-glow-blue);
}

/* ==========================================================================
   Testimonials (Reviews Slider)
   ========================================================================== */

.testimonials-section {
  padding: 100px 0;
  background-color: var(--white);
}

.testimonials-carousel {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding: 20px 10px;
}

.carousel-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.testimonial-card {
  min-width: 100%;
  width: 100%;
  box-sizing: border-box;
  background-color: var(--neutral-light);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  border: 1px solid var(--neutral-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-rating {
  color: var(--yellow-primary);
  font-size: 1.25rem;
  margin-bottom: 24px;
}

.testimonial-text {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--neutral-muted);
  line-height: 1.6;
  margin-bottom: 30px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.user-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 3px solid var(--blue-primary);
}

.user-meta {
  text-align: left;
}

.user-meta h4 {
  font-size: 1.1rem;
  color: var(--neutral-dark);
}

.user-meta span {
  font-size: 0.85rem;
  color: var(--neutral-muted);
  font-weight: 600;
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--neutral-border);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.dot.active {
  background-color: var(--blue-primary);
  width: 24px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   FAQ Accordion Section
   ========================================================================== */

.faq-section {
  padding: 100px 0;
  background-color: var(--neutral-light);
}

.faq-container {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--neutral-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--neutral-dark);
  transition: var(--transition-smooth);
}

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

.faq-question i {
  font-size: 1rem;
  color: var(--neutral-muted);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
}

.faq-answer p {
  padding-bottom: 24px;
  color: var(--neutral-muted);
  font-size: 0.95rem;
}

/* Active FAQ Item states */
.faq-item.active {
  border-color: var(--blue-primary);
  box-shadow: var(--shadow-md);
}

.faq-item.active .faq-question {
  color: var(--blue-primary);
}

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

.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height 0.5s ease-in-out;
}

/* ==========================================================================
   Booking & Contact Section (High Conversion Focus)
   ========================================================================== */

.contact-section {
  padding: 100px 0;
  background: var(--grad-hero);
  position: relative;
}

.contact-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.contact-badge {
  background-color: var(--green-light);
  color: var(--green-primary);
  border: 1px solid rgba(34, 197, 94, 0.15);
  box-shadow: var(--shadow-sm);
}

.contact-info-block h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--neutral-dark);
}

.contact-info-block > p {
  font-size: 1.1rem;
  color: var(--neutral-muted);
  margin-bottom: 40px;
}

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

.detail-item {
  display: flex;
  gap: 20px;
  align-items: center;
}

.detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  color: var(--orange-primary);
  font-size: 1.25rem;
  border: 1px solid var(--neutral-border);
}

.detail-item h4 {
  font-size: 1rem;
  color: var(--neutral-dark);
}

.detail-item p {
  font-size: 0.95rem;
  color: var(--neutral-muted);
  font-weight: 500;
}

/* Form Styling */
.contact-form-block {
  background-color: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--neutral-border);
  position: relative;
}

.form-title {
  font-size: 1.75rem;
  margin-bottom: 30px;
  color: var(--neutral-dark);
  border-left: 5px solid var(--orange-primary);
  padding-left: 15px;
}

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

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

.form-group label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--neutral-dark);
}

.required {
  color: var(--red-primary);
}

.form-group input, 
.form-group select, 
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--neutral-border);
  background-color: var(--neutral-light);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--neutral-dark);
  outline: none;
  transition: var(--transition-smooth);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  background-color: var(--white);
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* Error/Validation States */
.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
  border-color: var(--red-primary);
  background-color: var(--red-light);
}

.error-msg {
  display: none;
  color: var(--red-primary);
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 6px;
}

.form-group.invalid .error-msg {
  display: block;
}

.submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--grad-accent);
  color: var(--white);
  border: none;
  padding: 16px;
  border-radius: var(--radius-md);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow-glow-orange);
  transition: var(--transition-smooth);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.5);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Modal Styling */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: var(--transition-smooth);
}

.modal-backdrop.open .modal-card {
  transform: scale(1);
}

.modal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--green-light);
  color: var(--green-primary);
  font-size: 3rem;
  margin-bottom: 24px;
}

.modal-card h2 {
  font-size: 1.75rem;
  margin-bottom: 12px;
  color: var(--neutral-dark);
}

.modal-card p {
  color: var(--neutral-muted);
  margin-bottom: 30px;
  font-size: 0.95rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.main-footer {
  background: var(--neutral-dark);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 80px;
  font-size: 0.95rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-tagline {
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.6);
}

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

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 1.1rem;
}

.footer-socials a:hover {
  background: var(--grad-accent);
  transform: translateY(-3px);
}

.footer-links h3, 
.footer-info h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-links h3::after, 
.footer-info h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--orange-primary);
  border-radius: var(--radius-full);
}

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

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

.footer-info p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-info p i {
  color: var(--orange-primary);
  margin-top: 4px;
}

.footer-bottom {
  padding: 30px 0;
  background-color: #0B0F19;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

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

/* ==========================================================================
   Responsive Breakpoints & Adjustments
   ========================================================================== */

@media (max-width: 991px) {
  html { font-size: 15px; }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-visual {
    display: flex;
    justify-content: center;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  /* Mobile Navigation Hamburger Menu style */
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: calc(100vh - var(--header-height));
    background-color: var(--white);
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    padding: 40px 24px;
    z-index: 999;
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  
  .nav-link {
    font-size: 1.15rem;
    width: 100%;
  }
  
  .nav-actions {
    margin-right: 12px;
  }
  
  /* Mobile menu icon animation on toggle */
  .mobile-menu-toggle.open span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.open span:last-child {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .contact-form-block {
    padding: 30px 20px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
}
