/* Modern Geometric Banner System - Google Ads Inspired */
/* Black, White, Grey with Circles and Squares */

.geo-banner {
  position: relative;
  height: auto;
  min-height: 350px;
  padding: 2rem 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 25%, #f0f0f0 50%, #e8e8e8 75%, #ffffff 100%);
}

/* Geometric Background Elements */
.geo-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0,0,0,0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,0.03) 0%, transparent 50%),
    linear-gradient(45deg, transparent 48%, rgba(0,0,0,0.01) 49%, rgba(0,0,0,0.01) 51%, transparent 52%);
  z-index: 1;
}

/* Main Content Container */
.geo-content {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

/* Text Content */
.geo-text {
  position: relative;
  z-index: 12;
}

.geo-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 0.9;
  margin: 0 0 0.5rem;
  color: #000000;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.geo-title .word-1 {
  color: #000000;
  display: block;
}

.geo-title .word-2 {
  color: #4a4a4a;
  display: block;
  margin-top: 0.2em;
}

.geo-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #666666;
  margin: 0 0 0.8rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 450px;
}

/* CTA Buttons */
.geo-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  position: relative;
  z-index: 15;
}

.geo-cta-primary {
  background: #000000;
  color: #ffffff;
  padding: 1rem 2rem;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  z-index: 16;
}

.geo-cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.geo-cta-primary:hover::before {
  left: 100%;
}

.geo-cta-primary:hover {
  background: #2a2a2a;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.geo-cta-secondary {
  background: transparent;
  color: #000000;
  padding: 1rem 2rem;
  border: 2px solid #000000;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 16;
}

.geo-cta-secondary:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Visual Elements Container with Precision Elements */
.geo-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Perfect Precision Grid Lines */
.geo-visual::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 15%;
  right: 15%;
  bottom: 15%;
  background: 
    /* Perfect horizontal lines */
    linear-gradient(0deg, transparent 0px, transparent calc(50% - 0.5px), rgba(120, 120, 120, 0.4) calc(50% - 0.5px), rgba(120, 120, 120, 0.4) calc(50% + 0.5px), transparent calc(50% + 0.5px)),
    /* Perfect vertical lines */
    linear-gradient(90deg, transparent 0px, transparent calc(50% - 0.5px), rgba(120, 120, 120, 0.4) calc(50% - 0.5px), rgba(120, 120, 120, 0.4) calc(50% + 0.5px), transparent calc(50% + 0.5px));
  z-index: 1;
  pointer-events: none;
}

/* Precision Corner Markers */
.geo-visual::after {
  content: '';
  position: absolute;
  top: 15%;
  left: 15%;
  width: 4px;
  height: 4px;
  background: rgba(120, 120, 120, 0.6);
  z-index: 2;
  box-shadow: 
    calc(70% * 400px - 4px) 0 0 0 rgba(120, 120, 120, 0.6),
    0 calc(70% * 400px - 4px) 0 0 rgba(120, 120, 120, 0.6),
    calc(70% * 400px - 4px) calc(70% * 400px - 4px) 0 0 rgba(120, 120, 120, 0.6);
  pointer-events: none;
}

/* Main Image */
.geo-image-container {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 5;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.geo-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.95) saturate(1.1);
  position: relative;
  z-index: 6;
}

/* BJJ Technique-Based Elements */

/* Curved Flow Lines - Grappling Transitions */
.geo-flow {
  position: absolute;
  border: none;
  background: none;
  width: 2px;
  border-radius: 1px;
  background: linear-gradient(180deg, 
    transparent 0%, 
    rgba(90, 90, 90, 0.4) 20%, 
    rgba(70, 70, 70, 0.7) 50%, 
    rgba(90, 90, 90, 0.4) 80%, 
    transparent 100%
  );
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

/* Belt Path Geometry - Tradition and Progression */
.geo-belt-path {
  position: absolute;
  background: linear-gradient(135deg, 
    rgba(100, 100, 100, 0.3) 0%, 
    rgba(80, 80, 80, 0.5) 50%, 
    rgba(100, 100, 100, 0.3) 100%
  );
  transform-origin: center;
  border-radius: 2px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* Energy Wave Patterns - Kinetic Motion */
.geo-wave {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(90, 90, 90, 0.3);
  background: radial-gradient(circle, 
    transparent 60%, 
    rgba(80, 80, 80, 0.1) 70%, 
    rgba(90, 90, 90, 0.2) 80%, 
    transparent 90%
  );
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

/* Circular Control Rings - Positional Control */
.geo-control {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(100, 100, 100, 0.4);
  background: radial-gradient(circle, 
    transparent 70%, 
    rgba(80, 80, 80, 0.1) 85%, 
    transparent 100%
  );
  box-shadow: inset 0 0 20px rgba(0,0,0,0.05);
}

/* Grip Point Markers - Technical Precision */
.geo-grip {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, 
    rgba(40, 40, 40, 0.9) 0%, 
    rgba(70, 70, 70, 0.8) 50%, 
    rgba(100, 100, 100, 0.6) 100%
  );
  border: 3px solid rgba(80, 80, 80, 0.8);
  box-shadow: 
    0 4px 12px rgba(0,0,0,0.25),
    inset 0 1px 2px rgba(255,255,255,0.2);
}

/* Grip Connection Lines */
.geo-grip-line {
  position: absolute;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(60, 60, 60, 0.8) 20%,
    rgba(80, 80, 80, 0.9) 50%, 
    rgba(60, 60, 60, 0.8) 80%,
    transparent 100%
  );
  box-shadow: 
    0 2px 8px rgba(0,0,0,0.2),
    0 1px 2px rgba(0,0,0,0.3);
  border-radius: 2px;
}

/* BJJ Technique Element Positioning */

/* Curved Flow Lines - Grappling Transitions */
.geo-flow-1 {
  height: 120px;
  top: 10%;
  left: 8%;
  z-index: 2;
  transform: rotate(25deg);
  border-radius: 0 0 50px 50px;
}

.geo-flow-2 {
  height: 90px;
  bottom: 20%;
  right: 5%;
  z-index: 2;
  transform: rotate(-35deg);
  border-radius: 50px 50px 0 0;
}

.geo-flow-3 {
  height: 70px;
  top: 45%;
  left: 20%;
  z-index: 3;
  transform: rotate(15deg);
}

/* Belt Path Geometry - Tradition */
.geo-belt-path-1 {
  width: 140px;
  height: 8px;
  top: 12%;
  left: -8%;
  z-index: 2;
  transform: rotate(-20deg) skew(5deg);
}

.geo-belt-path-2 {
  width: 100px;
  height: 6px;
  bottom: 25%;
  right: -5%;
  z-index: 2;
  transform: rotate(30deg) skew(-3deg);
}

.geo-belt-path-3 {
  width: 80px;
  height: 5px;
  top: 55%;
  left: 15%;
  z-index: 1;
  transform: rotate(45deg) skew(2deg);
}

/* Energy Wave Patterns - Kinetic Motion */
.geo-wave-1 {
  width: 150px;
  height: 150px;
  top: 5%;
  left: -10%;
  z-index: 1;
  opacity: 0.6;
}

.geo-wave-2 {
  width: 100px;
  height: 100px;
  bottom: 15%;
  right: -8%;
  z-index: 1;
  opacity: 0.5;
}

.geo-wave-3 {
  width: 80px;
  height: 80px;
  top: 50%;
  left: 12%;
  z-index: 1;
  opacity: 0.4;
}

/* Circular Control Rings - Positional Control */
.geo-control-1 {
  width: 120px;
  height: 120px;
  top: 8%;
  left: -5%;
  z-index: 2;
  opacity: 0.7;
}

.geo-control-2 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  right: -3%;
  z-index: 2;
  opacity: 0.6;
}

.geo-control-3 {
  width: 60px;
  height: 60px;
  top: 60%;
  left: 18%;
  z-index: 1;
  opacity: 0.5;
}

/* Grip Point Markers - Technical Precision */
.geo-grip-1 {
  top: 15%;
  left: 12%;
  z-index: 3;
}

.geo-grip-2 {
  top: 35%;
  left: 25%;
  z-index: 3;
}

.geo-grip-3 {
  bottom: 25%;
  left: 18%;
  z-index: 3;
}

.geo-grip-4 {
  top: 25%;
  right: 18%;
  z-index: 3;
}

.geo-grip-5 {
  bottom: 18%;
  right: 8%;
  z-index: 3;
}

/* Grip Connection Lines */
.geo-grip-line-1 {
  width: 80px;
  top: 20%;
  left: 15%;
  z-index: 2;
  transform: rotate(25deg);
}

.geo-grip-line-2 {
  width: 60px;
  bottom: 28%;
  right: 12%;
  z-index: 2;
  transform: rotate(-35deg);
}

.geo-grip-line-3 {
  width: 50px;
  top: 48%;
  left: 22%;
  z-index: 2;
  transform: rotate(15deg);
}

/* OLD GEOMETRIC SHAPES REMOVED - REPLACED WITH GI PATTERNS AND PAGE-SPECIFIC EFFECTS */

/* Stats/Info Cards */
.geo-stats {
  position: absolute;
  bottom: -2rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
  z-index: 15;
}

.geo-stat-card {
  background: rgba(245, 245, 245, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  text-align: center;
  min-width: 80px;
  border-left: 4px solid #666666;
  transition: all 0.3s ease;
}

.geo-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

/* Colorful badge variations - now controlled via inline styles from admin */

.geo-stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: #000000;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.geo-stat-label {
  font-size: 0.8rem;
  color: #666666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 900px) {
  .geo-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
    padding: 0 2rem;
  }
  
  .geo-visual {
    order: 1;
    height: 350px;
  }
  
  .geo-text {
    order: 2;
  }
  
  .geo-image-container {
    width: 280px;
    height: 280px;
  }
  
  .geo-stats {
    position: static;
    margin-top: 1.5rem;
  }
}

@media (max-width: 768px) {
  .geo-banner {
    height: auto;
    min-height: 200px;
    padding: 0.5rem 0;
  }
  
  .geo-content {
    padding: 0 1.5rem;
    gap: 0;
  }
  
  .geo-title {
    font-size: clamp(2.2rem, 8vw, 3rem);
    margin-bottom: 0;
    margin-top: 0;
  }
  
  .geo-subtitle {
    margin-bottom: 1rem;
  }
  
  .geo-cta-group {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .geo-cta-primary,
  .geo-cta-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 1.2rem 2rem;
    font-size: 1rem;
  }
  
  .geo-visual {
    height: 200px;
    margin-bottom: 0;
    position: relative;
    z-index: 5;
  }
  
  .geo-image-container {
    width: 200px;
    height: 200px;
  }
  
  /* Better visual element positioning on mobile */
  .geo-visual::before,
  .geo-visual::after {
    display: none;
  }
  
  /* Hide decorative elements that cause overlap on mobile */
  .geo-flow,
  .geo-belt-path,
  .geo-wave,
  .geo-control,
  .geo-grip,
  .geo-grip-line {
    display: none;
  }
  
  .geo-stats {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .geo-stat-card {
    width: auto;
    min-width: 100px;
    flex: 1;
    max-width: 150px;
  }
}

@media (max-width: 480px) {
  .geo-banner {
    min-height: 180px;
    padding: 0.5rem 0;
  }
  
  .geo-content {
    padding: 0 1rem;
    gap: 0;
  }
  
  .geo-title {
    font-size: clamp(1.8rem, 10vw, 2.5rem);
    line-height: 1.1;
    margin-bottom: 0;
    margin-top: 0;
  }
  
  .geo-subtitle {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }
  
  .geo-cta-primary,
  .geo-cta-secondary {
    max-width: 100%;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .geo-visual {
    height: 180px;
    margin-bottom: 0;
  }
  
  .geo-image-container {
    width: 180px;
    height: 180px;
  }
  
  .geo-stats {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .geo-stat-card {
    width: 100%;
    max-width: 200px;
  }
}

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

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

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

@keyframes floatBelt {
  0%, 100% {
    transform: translateY(0px) rotate(var(--initial-rotation, 0deg));
  }
  50% {
    transform: translateY(-8px) rotate(calc(var(--initial-rotation, 0deg) + 3deg));
  }
}

@keyframes floatTriangle {
  0%, 100% {
    transform: translateY(0px) rotate(var(--initial-rotation, 0deg)) scale(1);
  }
  50% {
    transform: translateY(-12px) rotate(calc(var(--initial-rotation, 0deg) - 5deg)) scale(1.05);
  }
}

@keyframes floatMat {
  0%, 100% {
    transform: translateY(0px) rotate(var(--initial-rotation, 0deg));
  }
  50% {
    transform: translateY(-6px) rotate(calc(var(--initial-rotation, 0deg) + 2deg));
  }
}

@keyframes floatCollar {
  0%, 100% {
    transform: translateY(0px) rotate(var(--initial-rotation, 0deg)) scaleX(1);
  }
  50% {
    transform: translateY(-10px) rotate(calc(var(--initial-rotation, 0deg) + 4deg)) scaleX(1.1);
  }
}

.geo-text {
  animation: slideInLeft 0.8s ease-out 0.2s both;
}

.geo-visual {
  animation: slideInRight 0.8s ease-out 0.4s both;
}

.geo-stats {
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* BJJ Technique Animations */

@keyframes flowTransition {
  0%, 100% { 
    opacity: 0.6;
    transform: rotate(var(--initial-rotation, 0deg)) scaleY(1);
  }
  50% { 
    opacity: 0.9;
    transform: rotate(var(--initial-rotation, 0deg)) scaleY(1.1);
  }
}

@keyframes beltWeave {
  0%, 100% { 
    opacity: 0.5;
    transform: rotate(var(--initial-rotation, 0deg)) skew(var(--initial-skew, 0deg));
  }
  50% { 
    opacity: 0.8;
    transform: rotate(calc(var(--initial-rotation, 0deg) + 3deg)) skew(calc(var(--initial-skew, 0deg) + 2deg));
  }
}

@keyframes energyPulse {
  0%, 100% { 
    opacity: var(--base-opacity, 0.4);
    transform: scale(1);
  }
  50% { 
    opacity: calc(var(--base-opacity, 0.4) + 0.3);
    transform: scale(1.05);
  }
}

@keyframes controlRotate {
  0%, 100% { 
    opacity: var(--base-opacity, 0.5);
    transform: rotate(0deg);
  }
  50% { 
    opacity: calc(var(--base-opacity, 0.5) + 0.2);
    transform: rotate(5deg);
  }
}

@keyframes gripPulse {
  0%, 100% { 
    transform: scale(1);
    opacity: 0.8;
  }
  50% { 
    transform: scale(1.2);
    opacity: 1;
  }
}

@keyframes gripConnect {
  0%, 100% { 
    opacity: 0.4;
    transform: scaleX(1) rotate(var(--initial-rotation, 0deg));
  }
  50% { 
    opacity: 0.7;
    transform: scaleX(1.1) rotate(var(--initial-rotation, 0deg));
  }
}

/* BJJ Element Animations */
.geo-flow-1,
.geo-flow-2,
.geo-flow-3 {
  animation: flowTransition 7s ease-in-out infinite;
}

.geo-belt-path-1,
.geo-belt-path-2,
.geo-belt-path-3 {
  animation: beltWeave 8s ease-in-out infinite;
}

.geo-wave-1,
.geo-wave-2,
.geo-wave-3 {
  animation: energyPulse 6s ease-in-out infinite;
}

.geo-control-1,
.geo-control-2,
.geo-control-3 {
  animation: controlRotate 9s ease-in-out infinite;
}

.geo-grip-1,
.geo-grip-2,
.geo-grip-3,
.geo-grip-4,
.geo-grip-5 {
  animation: gripPulse 4s ease-in-out infinite;
}

.geo-grip-line-1,
.geo-grip-line-2,
.geo-grip-line-3 {
  animation: gripConnect 5s ease-in-out infinite;
}

/* Stagger animation delays for natural BJJ flow */
.geo-flow-1 { animation-delay: -1s; --initial-rotation: 25deg; }
.geo-flow-2 { animation-delay: -2s; --initial-rotation: -35deg; }
.geo-flow-3 { animation-delay: -3s; --initial-rotation: 15deg; }
.geo-belt-path-1 { animation-delay: -1.5s; --initial-rotation: -20deg; --initial-skew: 5deg; }
.geo-belt-path-2 { animation-delay: -2.5s; --initial-rotation: 30deg; --initial-skew: -3deg; }
.geo-belt-path-3 { animation-delay: -3.5s; --initial-rotation: 45deg; --initial-skew: 2deg; }
.geo-wave-1 { animation-delay: -1s; --base-opacity: 0.6; }
.geo-wave-2 { animation-delay: -2s; --base-opacity: 0.5; }
.geo-wave-3 { animation-delay: -3s; --base-opacity: 0.4; }
.geo-control-1 { animation-delay: -1.5s; --base-opacity: 0.7; }
.geo-control-2 { animation-delay: -2.5s; --base-opacity: 0.6; }
.geo-control-3 { animation-delay: -3.5s; --base-opacity: 0.5; }
.geo-grip-1 { animation-delay: -0.5s; }
.geo-grip-2 { animation-delay: -1s; }
.geo-grip-3 { animation-delay: -1.5s; }
.geo-grip-4 { animation-delay: -2s; }
.geo-grip-5 { animation-delay: -2.5s; }
.geo-grip-line-1 { animation-delay: -1s; --initial-rotation: 25deg; }
.geo-grip-line-2 { animation-delay: -2s; --initial-rotation: -35deg; }
.geo-grip-line-3 { animation-delay: -3s; --initial-rotation: 15deg; }

/* Home Page Gi Effects */
.gi-texture {
  position: absolute;
  background: repeating-linear-gradient(
    45deg,
    rgba(240, 240, 240, 0.3) 0px,
    rgba(240, 240, 240, 0.3) 2px,
    transparent 2px,
    transparent 4px
  );
  border-radius: 4px;
}

.gi-texture-1 {
  width: 80px;
  height: 80px;
  top: 15%;
  left: 10%;
  z-index: 1;
  transform: rotate(30deg);
}

.gi-texture-2 {
  width: 60px;
  height: 100px;
  bottom: 20%;
  right: 15%;
  z-index: 2;
  transform: rotate(-25deg);
}

.gi-texture-3 {
  width: 40px;
  height: 60px;
  top: 60%;
  left: 20%;
  z-index: 1;
  transform: rotate(60deg);
}

.belt-stripe {
  position: absolute;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(100, 100, 100, 0.4) 25%, 
    rgba(80, 80, 80, 0.6) 50%, 
    rgba(100, 100, 100, 0.4) 75%, 
    transparent 100%
  );
  height: 8px;
  border-radius: 4px;
}

.belt-stripe-1 {
  width: 120px;
  top: 25%;
  left: 5%;
  z-index: 2;
  transform: rotate(-15deg);
}

.belt-stripe-2 {
  width: 80px;
  top: 35%;
  right: 8%;
  z-index: 2;
  transform: rotate(20deg);
}

.belt-stripe-3 {
  width: 100px;
  bottom: 30%;
  left: 12%;
  z-index: 1;
  transform: rotate(45deg);
}

.belt-stripe-4 {
  width: 60px;
  bottom: 15%;
  right: 20%;
  z-index: 1;
  transform: rotate(-35deg);
}

.mat-lines {
  position: absolute;
  background: repeating-linear-gradient(
    0deg,
    rgba(200, 200, 200, 0.2) 0px,
    rgba(200, 200, 200, 0.2) 1px,
    transparent 1px,
    transparent 20px
  );
}

.mat-lines-1 {
  width: 150px;
  height: 150px;
  top: 10%;
  right: 5%;
  z-index: 1;
  border-radius: 50%;
  opacity: 0.6;
}

.mat-lines-2 {
  width: 100px;
  height: 100px;
  bottom: 10%;
  left: 8%;
  z-index: 1;
  border-radius: 50%;
  opacity: 0.4;
}

.gi-collar {
  position: absolute;
  border: 3px solid rgba(120, 120, 120, 0.3);
  border-radius: 50%;
  background: radial-gradient(circle, 
    transparent 60%, 
    rgba(240, 240, 240, 0.1) 70%, 
    rgba(220, 220, 220, 0.2) 80%, 
    transparent 90%
  );
}

.gi-collar-1 {
  width: 180px;
  height: 180px;
  top: 5%;
  left: -5%;
  z-index: 1;
  opacity: 0.5;
}

.gi-collar-2 {
  width: 120px;
  height: 120px;
  bottom: 5%;
  right: -3%;
  z-index: 1;
  opacity: 0.4;
}

/* Gi Effect Animations */
@keyframes giWeave {
  0%, 100% {
    opacity: 0.3;
    transform: rotate(var(--initial-rotation, 0deg)) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: rotate(calc(var(--initial-rotation, 0deg) + 5deg)) scale(1.05);
  }
}

@keyframes beltFlow {
  0%, 100% {
    opacity: 0.4;
    transform: rotate(var(--initial-rotation, 0deg)) scaleX(1);
  }
  50% {
    opacity: 0.7;
    transform: rotate(calc(var(--initial-rotation, 0deg) + 3deg)) scaleX(1.1);
  }
}

@keyframes matRipple {
  0%, 100% {
    opacity: var(--base-opacity, 0.4);
    transform: scale(1);
  }
  50% {
    opacity: calc(var(--base-opacity, 0.4) + 0.2);
    transform: scale(1.1);
  }
}

@keyframes collarShift {
  0%, 100% {
    opacity: var(--base-opacity, 0.4);
    transform: rotate(0deg);
  }
  50% {
    opacity: calc(var(--base-opacity, 0.4) + 0.2);
    transform: rotate(5deg);
  }
}

/* Apply animations to gi effects */
.gi-texture-1,
.gi-texture-2,
.gi-texture-3 {
  animation: giWeave 8s ease-in-out infinite;
}

.belt-stripe-1,
.belt-stripe-2,
.belt-stripe-3,
.belt-stripe-4 {
  animation: beltFlow 10s ease-in-out infinite;
}

.mat-lines-1,
.mat-lines-2 {
  animation: matRipple 12s ease-in-out infinite;
}

.gi-collar-1,
.gi-collar-2 {
  animation: collarShift 15s ease-in-out infinite;
}

/* Stagger animation delays for natural flow */
.gi-texture-1 { animation-delay: -1s; --initial-rotation: 30deg; }
.gi-texture-2 { animation-delay: -2s; --initial-rotation: -25deg; }
.gi-texture-3 { animation-delay: -3s; --initial-rotation: 60deg; }

.belt-stripe-1 { animation-delay: -1s; --initial-rotation: -15deg; }
.belt-stripe-2 { animation-delay: -2s; --initial-rotation: 20deg; }
.belt-stripe-3 { animation-delay: -3s; --initial-rotation: 45deg; }
.belt-stripe-4 { animation-delay: -4s; --initial-rotation: -35deg; }

.mat-lines-1 { animation-delay: -2s; --base-opacity: 0.6; }
.mat-lines-2 { animation-delay: -4s; --base-opacity: 0.4; }

.gi-collar-1 { animation-delay: -3s; --base-opacity: 0.5; }
.gi-collar-2 { animation-delay: -5s; --base-opacity: 0.4; }

/* BJJ-Themed Page Variations */

/* Programs Page - Gi Pattern with Training Elements */
.geo-banner-programs {
  background: 
    linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%, #f8f9fa 100%);
}

.geo-banner-programs::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    /* Perfect Pearl Weave Gi Pattern - Programs */
    radial-gradient(ellipse 4px 2px at 4px 4px, rgba(180, 180, 180, 0.6), transparent),
    radial-gradient(ellipse 4px 2px at 12px 4px, rgba(200, 200, 200, 0.5), transparent),
    radial-gradient(ellipse 4px 2px at 4px 12px, rgba(190, 190, 190, 0.5), transparent),
    radial-gradient(ellipse 4px 2px at 12px 12px, rgba(210, 210, 210, 0.4), transparent),
    repeating-linear-gradient(0deg, rgba(160, 160, 160, 0.25) 0px, transparent 2px, rgba(170, 170, 170, 0.2) 4px, transparent 8px),
    repeating-linear-gradient(90deg, rgba(160, 160, 160, 0.25) 0px, transparent 2px, rgba(170, 170, 170, 0.2) 4px, transparent 8px);
  background-size: 16px 16px;
  background-blend-mode: multiply;
  z-index: 1;
}

/* Removed emoji icons */

/* Removed all gi pattern animations - static patterns only */

/* About Page - Gi Pattern with Story Elements */
.geo-banner-about {
  background: 
    linear-gradient(135deg, #f5f5f5 0%, #eeeeee 25%, #e8e8e8 50%, #eeeeee 75%, #f5f5f5 100%);
}

.geo-banner-about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    /* Perfect Weave Gi Pattern - About */
    radial-gradient(ellipse 3px 3px at 3px 3px, rgba(170, 170, 170, 0.7), transparent),
    radial-gradient(ellipse 3px 3px at 9px 3px, rgba(185, 185, 185, 0.6), transparent),
    radial-gradient(ellipse 3px 3px at 15px 3px, rgba(200, 200, 200, 0.5), transparent),
    radial-gradient(ellipse 3px 3px at 3px 9px, rgba(175, 175, 175, 0.6), transparent),
    radial-gradient(ellipse 3px 3px at 9px 9px, rgba(190, 190, 190, 0.5), transparent),
    radial-gradient(ellipse 3px 3px at 15px 9px, rgba(205, 205, 205, 0.4), transparent),
    linear-gradient(0deg, rgba(150, 150, 150, 0.2) 0px, transparent 1px),
    linear-gradient(90deg, rgba(150, 150, 150, 0.2) 0px, transparent 1px);
  background-size: 18px 18px;
  background-blend-mode: multiply;
  z-index: 1;
}

/* Removed emoji icons */

/* Removed all gi animations */

/* Schedule Page - Gi Pattern with Calendar Elements */
.geo-banner-schedule {
  background: 
    linear-gradient(135deg, #ffffff 0%, #f8f9fa 25%, #f0f0f0 50%, #f8f9fa 75%, #ffffff 100%);
}

.geo-banner-schedule::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    /* Gold Weave Gi Pattern */
    radial-gradient(ellipse 5px 3px at 5px 5px, rgba(185, 175, 160, 0.6), transparent),
    radial-gradient(ellipse 5px 3px at 15px 5px, rgba(200, 190, 175, 0.5), transparent),
    radial-gradient(ellipse 5px 3px at 25px 5px, rgba(215, 205, 190, 0.4), transparent),
    radial-gradient(ellipse 5px 3px at 5px 15px, rgba(190, 180, 165, 0.5), transparent),
    radial-gradient(ellipse 5px 3px at 15px 15px, rgba(205, 195, 180, 0.4), transparent),
    radial-gradient(ellipse 5px 3px at 25px 15px, rgba(220, 210, 195, 0.3), transparent),
    repeating-linear-gradient(45deg, rgba(160, 150, 135, 0.2) 0px, transparent 2px, rgba(170, 160, 145, 0.15) 4px, transparent 6px);
  background-size: 30px 30px;
  background-blend-mode: multiply;
  z-index: 1;
}

/* Removed emoji icons */

/* Removed all gi animations */

/* Instructors Page - Gi Pattern with Belt Elements */
.geo-banner-instructors {
  background: 
    linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%, #f0f0f0 100%);
}

.geo-banner-instructors::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    /* Heavy Weave Gi Pattern with Belt Texture */
    radial-gradient(ellipse 6px 4px at 6px 6px, rgba(140, 140, 140, 0.7), transparent),
    radial-gradient(ellipse 6px 4px at 18px 6px, rgba(160, 160, 160, 0.6), transparent),
    radial-gradient(ellipse 6px 4px at 30px 6px, rgba(180, 180, 180, 0.5), transparent),
    radial-gradient(ellipse 6px 4px at 6px 18px, rgba(150, 150, 150, 0.6), transparent),
    radial-gradient(ellipse 6px 4px at 18px 18px, rgba(170, 170, 170, 0.5), transparent),
    radial-gradient(ellipse 6px 4px at 30px 18px, rgba(190, 190, 190, 0.4), transparent),
    repeating-linear-gradient(30deg, rgba(120, 120, 120, 0.25) 0px, transparent 3px, rgba(130, 130, 130, 0.2) 6px, transparent 12px),
    repeating-linear-gradient(-30deg, rgba(110, 110, 110, 0.2) 0px, transparent 2px, rgba(140, 140, 140, 0.15) 4px, transparent 8px);
  background-size: 36px 36px;
  background-blend-mode: multiply;
  z-index: 1;
}

/* Removed emoji icons */

/* Removed all gi animations */

/* Pricing Page - Gi Pattern with Value Elements */
.geo-banner-pricing {
  background: 
    linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 25%, #e9e9e9 50%, #f0f0f0 75%, #f8f8f8 100%);
}

.geo-banner-pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    /* Premium Weave Gi Pattern */
    radial-gradient(ellipse 4px 2px at 4px 4px, rgba(165, 165, 165, 0.6), transparent),
    radial-gradient(ellipse 4px 2px at 12px 4px, rgba(180, 180, 180, 0.5), transparent),
    radial-gradient(ellipse 4px 2px at 20px 4px, rgba(195, 195, 195, 0.4), transparent),
    radial-gradient(ellipse 4px 2px at 4px 12px, rgba(170, 170, 170, 0.5), transparent),
    radial-gradient(ellipse 4px 2px at 12px 12px, rgba(185, 185, 185, 0.4), transparent),
    radial-gradient(ellipse 4px 2px at 20px 12px, rgba(200, 200, 200, 0.3), transparent),
    repeating-linear-gradient(60deg, rgba(145, 145, 145, 0.2) 0px, transparent 2px, rgba(155, 155, 155, 0.15) 4px, transparent 8px),
    repeating-linear-gradient(-60deg, rgba(135, 135, 135, 0.18) 0px, transparent 2px, rgba(165, 165, 165, 0.12) 4px, transparent 8px);
  background-size: 24px 24px;
  background-blend-mode: multiply;
  z-index: 1;
}

/* Removed emoji icons */

/* Removed all gi animations */

/* Contact Page - Gi Pattern with Communication Elements */
.geo-banner-contact {
  background: 
    linear-gradient(135deg, #f5f5f5 0%, #efefef 25%, #e8e8e8 50%, #efefef 75%, #f5f5f5 100%);
}

.geo-banner-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    /* Ripstop Gi Pattern */
    radial-gradient(ellipse 3px 3px at 3px 3px, rgba(175, 175, 175, 0.5), transparent),
    radial-gradient(ellipse 3px 3px at 9px 3px, rgba(185, 185, 185, 0.4), transparent),
    radial-gradient(ellipse 3px 3px at 15px 3px, rgba(195, 195, 195, 0.3), transparent),
    radial-gradient(ellipse 3px 3px at 3px 9px, rgba(180, 180, 180, 0.4), transparent),
    radial-gradient(ellipse 3px 3px at 9px 9px, rgba(190, 190, 190, 0.3), transparent),
    radial-gradient(ellipse 3px 3px at 15px 9px, rgba(200, 200, 200, 0.25), transparent),
    repeating-linear-gradient(15deg, rgba(160, 160, 160, 0.15) 0px, transparent 2px, rgba(170, 170, 170, 0.1) 4px, transparent 6px),
    repeating-linear-gradient(-15deg, rgba(150, 150, 150, 0.12) 0px, transparent 2px, rgba(180, 180, 180, 0.08) 4px, transparent 6px);
  background-size: 18px 18px;
  background-blend-mode: multiply;
  z-index: 1;
}

/* Removed emoji icons */

/* Removed all gi animations */

/* ===== BOOKING PAGE SPECIFIC - GRIP POINT MARKERS ===== */
/* BJJ Technique: Grip Point Markers with Connection Lines - Leverage and Connection */

.geo-banner-booking .geo-grip {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, 
    rgba(80, 80, 80, 0.8) 0%, 
    rgba(120, 120, 120, 0.6) 50%, 
    rgba(160, 160, 160, 0.3) 100%
  );
  border: 2px solid rgba(100, 100, 100, 0.5);
  z-index: 3;
  animation: gripPulse 4s ease-in-out infinite;
}

.geo-banner-booking .geo-grip-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.geo-banner-booking .geo-grip-2 {
  top: 35%;
  right: 20%;
  animation-delay: 1s;
}

.geo-banner-booking .geo-grip-3 {
  bottom: 25%;
  left: 15%;
  animation-delay: 2s;
}

.geo-banner-booking .geo-grip-4 {
  bottom: 45%;
  right: 25%;
  animation-delay: 3s;
}

.geo-banner-booking .geo-grip-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(100, 100, 100, 0.3) 20%,
    rgba(120, 120, 120, 0.5) 50%,
    rgba(100, 100, 100, 0.3) 80%,
    transparent 100%
  );
  z-index: 2;
  animation: connectionLine 6s ease-in-out infinite;
}

.geo-banner-booking .geo-grip-line-1 {
  width: 180px;
  top: 25%;
  left: 12%;
  transform: rotate(35deg);
  animation-delay: 0.5s;
}

.geo-banner-booking .geo-grip-line-2 {
  width: 150px;
  bottom: 35%;
  right: 18%;
  transform: rotate(-25deg);
  animation-delay: 2.5s;
}

@keyframes gripPulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  25% {
    opacity: 0.9;
    transform: scale(1.2);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
  75% {
    opacity: 0.8;
    transform: scale(1.15);
  }
}

@keyframes connectionLine {
  0%, 100% {
    opacity: 0.3;
    transform: rotate(var(--initial-rotation, 0deg)) scaleX(1);
  }
  50% {
    opacity: 0.6;
    transform: rotate(calc(var(--initial-rotation, 0deg) + 2deg)) scaleX(1.05);
  }
}

/* ===== HOME PAGE CLEAN HERO EFFECTS ===== */
/* Clean, modern geometric elements */

/* REMOVED ALL HERO CIRCLES */

.hero-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.15), transparent);
  z-index: 1;
  animation: slideAcross 6s ease-in-out infinite;
}

.hero-line-1 {
  width: 100px;
  top: 25%;
  left: 5%;
  transform: rotate(45deg);
  animation-delay: 1s;
}

.hero-line-2 {
  width: 80px;
  bottom: 30%;
  right: 8%;
  transform: rotate(-30deg);
  animation-delay: 3s;
}

.hero-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  z-index: 2;
  animation: pulse 4s ease-in-out infinite;
}

.hero-dot-1 {
  top: 35%;
  left: 20%;
  animation-delay: 0.5s;
}

.hero-dot-2 {
  top: 60%;
  right: 25%;
  animation-delay: 1.5s;
}

.hero-dot-3 {
  bottom: 15%;
  left: 30%;
  animation-delay: 2.5s;
}

/* REMOVED CIRCLE ANIMATIONS */

@keyframes slideAcross {
  0%, 100% {
    opacity: 0.3;
    transform: rotate(var(--initial-rotation, 0deg)) translateX(0px);
  }
  50% {
    opacity: 0.6;
    transform: rotate(var(--initial-rotation, 0deg)) translateX(5px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.5);
  }
}

/* ===== HOME PAGE GI BACKGROUND TEXTURES ===== */
/* Subtle gi weave patterns in background */

.hero-gi-bg {
  position: absolute;
  background: repeating-linear-gradient(
    45deg,
    rgba(220, 220, 220, 0.4) 0px,
    rgba(180, 180, 180, 0.5) 2px,
    rgba(200, 200, 200, 0.3) 4px,
    transparent 4px,
    transparent 8px
  );
  z-index: 1;
  border-radius: 20px;
  animation: giWeaveEnhanced 12s ease-in-out infinite;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border: 1px solid rgba(160, 160, 160, 0.2);
}

.hero-gi-bg-1 {
  width: 200px;
  height: 150px;
  top: 5%;
  right: 10%;
  animation-delay: 0s;
  transform: rotate(15deg);
}

.hero-gi-bg-2 {
  width: 180px;
  height: 120px;
  bottom: 15%;
  left: 8%;
  animation-delay: 4s;
  transform: rotate(-20deg);
}

.hero-gi-bg-3 {
  width: 140px;
  height: 100px;
  top: 45%;
  left: 5%;
  animation-delay: 8s;
  transform: rotate(35deg);
}

@keyframes giWeaveEnhanced {
  0%, 100% {
    opacity: 0.6;
    transform: rotate(var(--initial-rotation, 0deg)) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: rotate(calc(var(--initial-rotation, 0deg) + 3deg)) scale(1.05);
  }
}

/* ===== HERO GI PATTERN BACKGROUNDS ===== */
/* White, Blue, and Black Gi Colors with Weave Patterns */

.gi-pattern-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0.3;
  background-size: 16px 16px;
  animation: giPatternWeave 20s ease-in-out infinite;
}

.gi-pattern-0 {
  /* White Gi Pattern - Subtle Pearl Weave */
  background: 
    repeating-linear-gradient(
      0deg,
      rgba(230, 230, 230, 0.4) 0px,
      rgba(240, 240, 240, 0.5) 1px,
      rgba(220, 220, 220, 0.3) 2px,
      rgba(235, 235, 235, 0.4) 3px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(225, 225, 225, 0.3) 0px,
      rgba(245, 245, 245, 0.4) 1px,
      rgba(215, 215, 215, 0.3) 2px,
      rgba(230, 230, 230, 0.4) 3px
    );
  background-blend-mode: overlay;
}

.gi-pattern-1 {
  /* Blue Gi Pattern - Royal Blue Pearl Weave */
  background: 
    repeating-linear-gradient(
      0deg,
      rgba(30, 64, 175, 0.4) 0px,
      rgba(37, 99, 235, 0.5) 1px,
      rgba(25, 50, 140, 0.3) 2px,
      rgba(32, 80, 200, 0.4) 3px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(29, 78, 216, 0.3) 0px,
      rgba(37, 99, 235, 0.4) 1px,
      rgba(20, 45, 130, 0.3) 2px,
      rgba(35, 85, 190, 0.4) 3px
    );
  background-blend-mode: overlay;
}

.gi-pattern-2 {
  /* Black Gi Pattern - Charcoal Pearl Weave */
  background: 
    repeating-linear-gradient(
      0deg,
      rgba(40, 40, 40, 0.4) 0px,
      rgba(60, 60, 60, 0.5) 1px,
      rgba(20, 20, 20, 0.3) 2px,
      rgba(50, 50, 50, 0.4) 3px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(35, 35, 35, 0.3) 0px,
      rgba(55, 55, 55, 0.4) 1px,
      rgba(15, 15, 15, 0.3) 2px,
      rgba(45, 45, 45, 0.4) 3px
    );
  background-blend-mode: overlay;
}

@keyframes giPatternWeave {
  0%, 100% {
    opacity: 0.25;
    background-size: 16px 16px;
    transform: translateX(0px) translateY(0px);
  }
  25% {
    opacity: 0.35;
    background-size: 17px 17px;
    transform: translateX(1px) translateY(0px);
  }
  50% {
    opacity: 0.4;
    background-size: 15px 15px;
    transform: translateX(0px) translateY(1px);
  }
  75% {
    opacity: 0.3;
    background-size: 16px 16px;
    transform: translateX(-1px) translateY(0px);
  }
}

/* ===== BJJ ELEMENT ANIMATIONS ===== */
/* Animations for belt stripes, mat circles, and grip points */

@keyframes beltFloat {
  0%, 100% {
    opacity: 0.3;
    transform: rotate(var(--initial-rotation, 0deg)) translateY(0px) scaleX(1);
  }
  50% {
    opacity: 0.6;
    transform: rotate(calc(var(--initial-rotation, 0deg) + 3deg)) translateY(-8px) scaleX(1.1);
  }
}

@keyframes matRotate {
  0% {
    opacity: 0.15;
    transform: rotate(0deg) scale(1);
  }
  50% {
    opacity: 0.25;
    transform: rotate(180deg) scale(1.05);
  }
  100% {
    opacity: 0.15;
    transform: rotate(360deg) scale(1);
  }
}

@keyframes gripPulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(100, 100, 100, 0.3);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.3);
    box-shadow: 0 0 0 8px rgba(100, 100, 100, 0);
  }
}

/* ===== PRECISION GRID ANIMATIONS ===== */
/* Grid dots and connecting lines for technical precision */

@keyframes gridPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(120, 120, 120, 0.2);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.5);
    box-shadow: 0 0 0 4px rgba(120, 120, 120, 0);
  }
}

@keyframes lineFlow {
  0%, 100% {
    opacity: 0.2;
    transform: scaleX(1);
  }
  50% {
    opacity: 0.5;
    transform: scaleX(1.1);
  }
}