/* 
 * Revocome - Cosmic Yoga & Natural Wellness
 * Main Stylesheet
 */

/* =================== 
   CSS Variables
   =================== */
:root {
  /* Colors */
  --revocome-white: #ffffff;
  --revocome-coral: #f79b72;
  --revocome-blue: #bcbcbc;
  --revocome-light-gray: #eeeeee;
  --revocome-gray: #dddddd;

  /* Cosmic Colors */
  --revocome-space-dark: #0a0e17;
  --revocome-space-blue: #1a2b45;
  --revocome-space-purple: #4e387e;
  --revocome-star-light: #e9dcff;
  --revocome-nebula-pink: #ff7bac;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;
  --space-xxxl: 5rem;

  /* Typography */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Spectral', serif;

  /* Other */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  --border-radius-circle: 50%;

  /* Animation */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Z-indices */
  --z-back: -1;
  --z-normal: 1;
  --z-header: 100;
  --z-modal: 1000;
}

/* =================== 
   Reset & Base Styles
   =================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--revocome-blue);
  background-color: var(--revocome-space-dark);
  min-height: 100%;
  overflow-x: hidden;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: 2.75rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--revocome-coral);
  text-decoration: none;
  transition: all var(--transition-fast);
}

a:hover {
  color: var(--revocome-blue);
}

ul,
ol {
  list-style-position: inside;
  margin-bottom: var(--space-md);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* =================== 
   Container & Layout
   =================== */
.revocome-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.revocome-section-header {
  text-align: center;
  margin-bottom: var(--space-xxl);
}

.revocome-section-title {
  color: var(--revocome-white);
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-md);
}

.revocome-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--revocome-coral);
  border-radius: var(--border-radius-sm);
}

.revocome-section-subtitle {
  color: var(--revocome-light-gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* =================== 
   Cosmic Background
   =================== */
.revocome-cosmos-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--revocome-space-dark),
    var(--revocome-space-blue)
  );
  z-index: var(--z-back);
  overflow: hidden;
}

.revocome-stars,
.revocome-stars2,
.revocome-stars3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.revocome-stars {
  background-image: radial-gradient(
      2px 2px at 20px 30px,
      white,
      rgba(0, 0, 0, 0)
    ),
    radial-gradient(2px 2px at 40px 70px, white, rgba(0, 0, 0, 0)),
    radial-gradient(1px 1px at 90px 40px, white, rgba(0, 0, 0, 0)),
    radial-gradient(1px 1px at 160px 120px, white, rgba(0, 0, 0, 0));
  background-repeat: repeat;
  background-size: 200px 200px;
  animation: twinkle 4s infinite;
}

.revocome-stars2 {
  background-image: radial-gradient(
      1px 1px at 100px 150px,
      white,
      rgba(0, 0, 0, 0)
    ),
    radial-gradient(1px 1px at 200px 220px, white, rgba(0, 0, 0, 0)),
    radial-gradient(1px 1px at 300px 300px, white, rgba(0, 0, 0, 0)),
    radial-gradient(1px 1px at 400px 400px, white, rgba(0, 0, 0, 0));
  background-repeat: repeat;
  background-size: 400px 400px;
  animation: twinkle 6s infinite;
  animation-delay: 1s;
}

.revocome-stars3 {
  background-image: radial-gradient(
      1px 1px at 50px 80px,
      var(--revocome-star-light),
      rgba(0, 0, 0, 0)
    ),
    radial-gradient(
      1px 1px at 140px 210px,
      var(--revocome-star-light),
      rgba(0, 0, 0, 0)
    ),
    radial-gradient(
      1px 1px at 270px 180px,
      var(--revocome-star-light),
      rgba(0, 0, 0, 0)
    ),
    radial-gradient(
      1px 1px at 390px 320px,
      var(--revocome-star-light),
      rgba(0, 0, 0, 0)
    );
  background-repeat: repeat;
  background-size: 400px 400px;
  animation: twinkle 8s infinite;
  animation-delay: 2s;
}

@keyframes twinkle {
  0% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}

/* =================== 
   Header & Navigation
   =================== */
.revocome-header {
  position: relative;
  padding: var(--space-md) 0;
  z-index: var(--z-header);
  transition: all var(--transition-medium);
}

.revocome-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.revocome-logo {
  position: relative;
  display: flex;
  align-items: center;
}

.revocome-logo-orbit {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 1px solid var(--revocome-coral);
  border-radius: var(--border-radius-circle);
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  animation: orbit 8s linear infinite;
}

.revocome-logo-orbit::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--revocome-coral);
  border-radius: var(--border-radius-circle);
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes orbit {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}

.revocome-logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--revocome-white);
  margin-left: var(--space-md);
  letter-spacing: 1px;
}

.revocome-nav {
  display: flex;
}

.revocome-nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
}

.revocome-nav-list li {
  margin-left: var(--space-lg);
}

.revocome-nav-link {
  color: var(--revocome-light-gray);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: var(--space-xs) var(--space-sm);
  position: relative;
}

.revocome-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--revocome-coral);
  transition: width var(--transition-medium);
}

.revocome-nav-link:hover,
.revocome-nav-link.active {
  color: var(--revocome-white);
}

.revocome-nav-link:hover::after,
.revocome-nav-link.active::after {
  width: 100%;
}

.revocome-nav-toggle {
  display: none;
  cursor: pointer;
}

.revocome-nav-icon {
  width: 30px;
  height: 20px;
  position: relative;
}

.revocome-nav-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--revocome-white);
  border-radius: var(--border-radius-sm);
  left: 0;
  transform: rotate(0deg);
  transition: all var(--transition-fast);
}

.revocome-nav-icon span:nth-child(1) {
  top: 0;
}

.revocome-nav-icon span:nth-child(2) {
  top: 9px;
}

.revocome-nav-icon span:nth-child(3) {
  top: 18px;
}

.revocome-nav-icon.active span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.revocome-nav-icon.active span:nth-child(2) {
  opacity: 0;
}

.revocome-nav-icon.active span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

/* =================== 
   Buttons
   =================== */
.revocome-btn-primary,
.revocome-btn-secondary,
.revocome-btn-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--border-radius-md);
  cursor: pointer;
  border: none;
  transition: all var(--transition-medium);
  max-height: 40px;
}

.revocome-btn-primary {
  background: var(--revocome-coral);
  color: var(--revocome-white);
}

.revocome-btn-primary:hover {
  background: var(--revocome-blue);
  color: var(--revocome-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.revocome-btn-secondary {
  background: transparent;
  color: var(--revocome-white);
  border: 1px solid var(--revocome-coral);
}

.revocome-btn-secondary:hover {
  background: var(--revocome-coral);
  color: var(--revocome-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.revocome-btn-glow {
  background: var(--revocome-coral);
  color: var(--revocome-white);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.revocome-btn-glow::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: rotate(45deg);
  z-index: -1;
  animation: glowPulse 3s infinite;
}

.revocome-btn-glow:hover {
  background: var(--revocome-blue);
  color: var(--revocome-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(247, 155, 114, 0.5);
}

@keyframes glowPulse {
  0% {
    opacity: 0.7;
    transform: rotate(45deg) scale(1);
  }
  50% {
    opacity: 1;
    transform: rotate(45deg) scale(1.1);
  }
  100% {
    opacity: 0.7;
    transform: rotate(45deg) scale(1);
  }
}

/* =================== 
   Hero Section
   =================== */
.revocome-hero {
  padding: var(--space-xxxl) 0;
  position: relative;
  overflow: hidden;
}

.revocome-hero .revocome-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.revocome-hero-content {
  flex: 1;
  max-width: 550px;
}

.revocome-hero-title {
  color: var(--revocome-white);
  font-size: 3.5rem;
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.revocome-hero-subtitle {
  color: var(--revocome-light-gray);
  font-size: 1.2rem;
  margin-bottom: var(--space-xl);
}

.revocome-hero-actions {
  display: flex;
  gap: var(--space-md);
}

.revocome-hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.revocome-orbit-graphic {
  position: relative;
  width: 400px;
  height: 400px;
  margin-left: var(--space-xl);
}

.revocome-planet {
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle at 30% 30%,
    var(--revocome-coral),
    var(--revocome-blue)
  );
  border-radius: var(--border-radius-circle);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 50px rgba(247, 155, 114, 0.3);
}

.revocome-orbit-path {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-circle);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.revocome-satellite {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--revocome-light-gray);
  border-radius: var(--border-radius-circle);
  top: 40px;
  left: 50%;
  margin-left: -10px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  animation: rotate 15s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg) translateX(150px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(150px) rotate(-360deg);
  }
}

/* =================== 
   Products Section
   =================== */
.revocome-products {
  padding: var(--space-xxxl) 0;
  position: relative;
}

.revocome-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-xl);
}

.revocome-product-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: all var(--transition-medium);
  position: relative;
}

.revocome-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.revocome-product-image {
  height: 200px;
  background: linear-gradient(
    45deg,
    var(--revocome-space-purple),
    var(--revocome-blue)
  );
  position: relative;
  overflow: hidden;
}

.revocome-product-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/product-1.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.8;
  mix-blend-mode: overlay;
}

.revocome-product-image.second::before {
  background-image: url('../images/product-2.webp');
}

.revocome-product-image.third::before {
  background-image: url('../images/product-3.webp');
}

.revocome-product-image.fourth::before {
  background-image: url('../images/product-4.webp');
}

.revocome-product-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background-color: var(--revocome-coral);
  color: var(--revocome-white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--border-radius-sm);
  z-index: 1;
}

.revocome-product-info {
  padding: var(--space-lg);
  text-align: center;
}

.revocome-product-title {
  color: var(--revocome-white);
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.revocome-product-desc {
  color: var(--revocome-light-gray);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

.revocome-product-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--revocome-coral);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

/* =================== 
   Studio Section
   =================== */
.revocome-studio {
  padding: var(--space-xxxl) 0;
  position: relative;
}

.revocome-studio-content {
  display: flex;
  align-items: center;
  gap: var(--space-xxl);
}

.revocome-studio-image {
  flex: 1;
  height: 400px;
  background: linear-gradient(
    to right,
    var(--revocome-blue),
    var(--revocome-space-purple)
  );
  border-radius: var(--border-radius-lg);
  position: relative;
  overflow: hidden;
}

.revocome-studio-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/studio.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  mix-blend-mode: overlay;
}

.revocome-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.revocome-float-item {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-circle);
}

.revocome-float-item:nth-child(1) {
  top: 30%;
  left: 20%;
  animation: float 6s ease-in-out infinite;
}

.revocome-float-item:nth-child(2) {
  top: 60%;
  left: 70%;
  width: 15px;
  height: 15px;
  animation: float 7s ease-in-out infinite;
  animation-delay: 2s;
}

.revocome-float-item:nth-child(3) {
  top: 20%;
  left: 60%;
  width: 25px;
  height: 25px;
  animation: float 8s ease-in-out infinite;
  animation-delay: 1s;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.revocome-studio-info {
  flex: 1;
}

.revocome-studio-info h3 {
  color: var(--revocome-white);
}

.revocome-studio-info p {
  color: var(--revocome-light-gray);
  margin-bottom: var(--space-lg);
}

.revocome-feature-list {
  list-style: none;
  margin-bottom: var(--space-xl);
}

.revocome-feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-md);
  color: var(--revocome-light-gray);
}

.revocome-feature-list li i {
  color: var(--revocome-coral);
  font-size: 1.2rem;
  margin-right: var(--space-md);
}

/* =================== 
   Programs Section
   =================== */
.revocome-programs {
  padding: var(--space-xxxl) 0;
  position: relative;
}

.revocome-programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.revocome-program-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: all var(--transition-medium);
}

.revocome-program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.revocome-program-image {
  height: 200px;
  background: linear-gradient(
    45deg,
    var(--revocome-space-purple),
    var(--revocome-blue)
  );
  position: relative;
  overflow: hidden;
}

.revocome-program-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/yoga.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  mix-blend-mode: overlay;
}

.revocome-program-image.second::before {
  background-image: url('../images/yoga-3.webp');
}

.revocome-program-image.third::before {
  background-image: url('../images/yoga-2.webp');
}

.revocome-program-content {
  padding: var(--space-lg);
}

.revocome-program-title {
  color: var(--revocome-white);
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.revocome-program-desc {
  color: var(--revocome-light-gray);
  font-size: 0.9rem;
  margin-bottom: var(--space-lg);
}

.revocome-program-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}

.revocome-program-details span {
  display: flex;
  align-items: center;
  color: var(--revocome-coral);
  font-size: 0.85rem;
}

.revocome-program-details i {
  margin-right: var(--space-xs);
}

/* =================== 
   Booking Section
   =================== */
.revocome-booking {
  padding: var(--space-xxxl) 0;
  position: relative;
}

.revocome-booking-wrapper {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.revocome-booking-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.revocome-booking-info {
  padding: var(--space-xl);
}

.revocome-booking-info h3 {
  color: var(--revocome-white);
}

.revocome-booking-info p {
  color: var(--revocome-light-gray);
  margin-bottom: var(--space-lg);
}

.revocome-booking-highlights {
  display: grid;
  gap: var(--space-lg);
}

.revocome-booking-highlight {
  display: flex;
  align-items: flex-start;
}

.revocome-booking-highlight i {
  color: var(--revocome-coral);
  font-size: 1.5rem;
  margin-right: var(--space-md);
}

.revocome-booking-highlight h4 {
  color: var(--revocome-white);
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.revocome-booking-highlight p {
  color: var(--revocome-light-gray);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.revocome-booking-form {
  background: rgba(255, 255, 255, 0.03);
  padding: var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  align-items: end;
}

.revocome-form-group {
  margin-bottom: var(--space-md);
}

.revocome-form-group.full-width {
  grid-column: 1 / -1;
}

label {
  display: block;
  color: var(--revocome-light-gray);
  font-size: 0.9rem;
  margin-bottom: var(--space-xs);
}

input,
select,
textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-sm);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--revocome-white);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--revocome-coral);
}

textarea {
  resize: vertical;
}

.revocome-checkbox-group {
  display: flex;
  align-items: center;
}

.revocome-checkbox-group input[type='checkbox'] {
  width: auto;
  margin-right: var(--space-sm);
}

/* =================== 
   Equipment Section
   =================== */
.revocome-equipment {
  padding: var(--space-xxxl) 0;
  position: relative;
}

.revocome-equipment-slider {
  display: flex;
  overflow: hidden;
  position: relative;
}

.revocome-equipment-slide {
  flex: 0 0 100%;
  padding: 0 var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.revocome-equipment-image {
  height: 250px;
  width: 100%;
  background: linear-gradient(
    45deg,
    var(--revocome-space-purple),
    var(--revocome-blue)
  );
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--space-lg);
  position: relative;
  overflow: hidden;
}

.revocome-equipment-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/gallery-3.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  mix-blend-mode: overlay;
}

.revocome-equipment-image.second::before {
  background-image: url('../images/gallery-2.webp');
}

.revocome-equipment-image.third::before {
  background-image: url('../images/gallery-1.webp');
}

.revocome-equipment-info h3 {
  color: var(--revocome-white);
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.revocome-equipment-info p {
  color: var(--revocome-light-gray);
  font-size: 0.9rem;
}

.revocome-equipment-dots {
  display: flex;
  justify-content: center;
  margin-top: var(--space-xl);
}

.revocome-dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-circle);
  margin: 0 var(--space-xs);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.revocome-dot.active {
  background-color: var(--revocome-coral);
}

/* =================== 
   Wow Section
   =================== */
.revocome-wow {
  padding: var(--space-xxxl) 0;
  position: relative;
  overflow: hidden;
}

.revocome-parallax-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      2px 2px at 30px 50px,
      white,
      rgba(0, 0, 0, 0)
    ),
    radial-gradient(2px 2px at 70px 120px, white, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 160px 70px, white, rgba(0, 0, 0, 0));
  background-repeat: repeat;
  background-size: 300px 300px;
  z-index: var(--z-back);
}

.revocome-wow-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: var(--z-normal);
}

.revocome-wow-title {
  color: var(--revocome-white);
  font-size: 2.5rem;
  margin-bottom: var(--space-lg);
}

.revocome-wow-text {
  color: var(--revocome-light-gray);
  font-size: 1.2rem;
  margin-bottom: var(--space-xl);
}

.revocome-wow-action {
  margin-bottom: var(--space-xxl);
}

.revocome-floating-planets {
  position: relative;
  height: 150px;
}

.revocome-planet-one,
.revocome-planet-two,
.revocome-planet-three {
  position: absolute;
  border-radius: var(--border-radius-circle);
}

.revocome-planet-one {
  width: 60px;
  height: 60px;
  background: radial-gradient(
    circle at 30% 30%,
    var(--revocome-coral),
    var(--revocome-blue)
  );
  top: 20px;
  left: 30%;
  animation: float 6s ease-in-out infinite;
}

.revocome-planet-two {
  width: 40px;
  height: 40px;
  background: radial-gradient(
    circle at 30% 30%,
    var(--revocome-space-purple),
    var(--revocome-blue)
  );
  top: 60px;
  left: 60%;
  animation: float 8s ease-in-out infinite;
  animation-delay: 1s;
}

.revocome-planet-three {
  width: 25px;
  height: 25px;
  background: radial-gradient(
    circle at 30% 30%,
    var(--revocome-nebula-pink),
    var(--revocome-coral)
  );
  top: 100px;
  left: 45%;
  animation: float 7s ease-in-out infinite;
  animation-delay: 2s;
}

/* =================== 
   Footer
   =================== */
.revocome-footer {
  padding: var(--space-xl) 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.revocome-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.revocome-footer-logo a {
  display: inline-block;
  margin-bottom: var(--space-xs);
}

.revocome-footer-logo p {
  color: var(--revocome-light-gray);
  font-size: 0.85rem;
  margin-bottom: 0;
}

.revocome-footer-links {
  display: flex;
  align-items: center;
}

.revocome-footer-links a {
  color: var(--revocome-light-gray);
  font-size: 0.85rem;
  margin-left: var(--space-lg);
}

.revocome-footer-links a:hover {
  color: var(--revocome-coral);
}

.revocome-copyright {
  color: var(--revocome-light-gray);
  font-size: 0.85rem;
  margin-left: var(--space-lg);
}

/* =================== 
   Privacy Policy Popup
   =================== */
.revocome-privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(42, 71, 89, 0.95);
  padding: var(--space-md);
  z-index: var(--z-modal);
  transform: translateY(100%);
  transition: transform var(--transition-medium);
}

.revocome-privacy-popup.active {
  transform: translateY(0);
}

.revocome-privacy-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.revocome-privacy-content p {
  color: var(--revocome-white);
  margin-bottom: 0;
  margin-right: var(--space-md);
}

/* =================== 
   Contact Page Styles
   =================== */
.revocome-contact-hero {
  padding: var(--space-xxxl) 0 var(--space-xl);
  text-align: center;
}

.revocome-contact-title {
  color: var(--revocome-white);
  font-size: 3rem;
}

.revocome-contact-subtitle {
  color: var(--revocome-light-gray);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.revocome-contact-layout {
  padding: var(--space-xxl) 0;
}

/* Orbital Contact Design */

.revocome-orbit-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
}

.revocome-orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background: var(--revocome-coral);
  border-radius: var(--border-radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.revocome-orbit-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--revocome-coral);
  border-radius: var(--border-radius-circle);
  z-index: -1;
  opacity: 0.3;
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.1;
  }
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
}

.revocome-center-content {
  text-align: center;
  color: var(--revocome-white);
}

.revocome-center-content h2 {
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
}

.revocome-center-content p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.revocome-orbit-path {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-circle);
}

.revocome-orbit-item {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-circle);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  text-align: center;
  transition: all var(--transition-medium);
}

.revocome-orbit-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

.revocome-orbit-email {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.revocome-orbit-phone {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.revocome-orbit-visit {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.revocome-orbit-hours {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.revocome-orbit-icon {
  color: var(--revocome-coral);
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.revocome-orbit-info h3 {
  color: var(--revocome-white);
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.revocome-orbit-info a,
.revocome-orbit-info address,
.revocome-orbit-info p {
  color: var(--revocome-light-gray);
  font-size: 0.85rem;
  margin-bottom: 0;
}

.revocome-orbit-info address {
  font-style: normal;
}

/* Contact Form Section */
.revocome-contact-form-section {
  padding: var(--space-xxl) 0;
}

.revocome-contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
}

.revocome-contact-form-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.revocome-contact-form-header h2 {
  color: var(--revocome-white);
}

.revocome-contact-form-header p {
  color: var(--revocome-light-gray);
}

.revocome-contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

/* Map Section */
.revocome-map-section {
  padding: var(--space-xxl) 0;
}

.revocome-map-wrapper {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* =================== 
   Responsive Styles
   =================== */
@media (max-width: 1201px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .revocome-hero-title {
    font-size: 3rem;
  }

  .revocome-orbit-graphic {
    width: 350px;
    height: 350px;
  }

  .revocome-orbit-path {
    width: 250px;
    height: 250px;
  }

  .revocome-satellite {
    animation: rotate 15s linear infinite;
  }

  @keyframes rotate {
    0% {
      transform: rotate(0deg) translateX(125px) rotate(0deg);
    }
    100% {
      transform: rotate(360deg) translateX(125px) rotate(-360deg);
    }
  }

  .revocome-studio-content {
    flex-direction: column;
  }

  .revocome-booking-content {
    grid-template-columns: 1fr;
  }

  /* Orbital Contact Responsive */

  .revocome-orbit-path {
    width: 400px;
    height: 400px;
  }

  .revocome-orbit-item {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 1200px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .revocome-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--revocome-space-dark);
    z-index: var(--z-header);
    padding: var(--space-xxl) var(--space-lg);
    transition: right var(--transition-medium);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }

  .revocome-nav.active {
    right: 0;
  }

  .revocome-nav-list {
    flex-direction: column;
    align-items: flex-start;
  }

  .revocome-nav-list li {
    margin: var(--space-md) 0;
    width: 100%;
  }

  .revocome-nav-toggle {
    display: block;
  }

  .revocome-hero .revocome-container {
    flex-direction: column;
  }

  .revocome-hero-content {
    text-align: center;
    margin-bottom: var(--space-xl);
  }

  .revocome-hero-actions {
    justify-content: center;
  }

  .revocome-products-grid,
  .revocome-programs-grid {
    grid-template-columns: 1fr;
  }

  .revocome-footer-content {
    flex-direction: column;
    text-align: center;
  }

  .revocome-footer-logo {
    margin-bottom: var(--space-md);
  }

  .revocome-footer-links {
    flex-direction: column;
  }

  .revocome-footer-links a,
  .revocome-copyright {
    margin: var(--space-xs) 0;
  }

  .revocome-privacy-content p {
    margin-bottom: var(--space-md);
  }

  /* Orbital Contact Responsive */
  .revocome-orbital-contact {
    padding: var(--space-xxl) 0;
  }

  .revocome-orbit-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .revocome-orbit-center {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    margin-bottom: var(--space-xl);
  }

  .revocome-orbit-path {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    height: auto;
    border: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .revocome-orbit-item {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 150px;
    border-radius: var(--border-radius-lg);
  }

  .revocome-contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .revocome-hero-title {
    font-size: 2.5rem;
  }

  .revocome-hero-subtitle {
    font-size: 1rem;
  }

  .revocome-hero-actions {
    flex-direction: column;
    gap: var(--space-md);
  }

  .revocome-orbit-path {
    grid-template-columns: 1fr;
  }

  .revocome-orbit-graphic {
    width: 280px;
    height: 280px;
  }

  .revocome-planet {
    width: 80px;
    height: 80px;
  }

  .revocome-orbit-path {
    width: 200px;
    height: auto;
  }

  .revocome-satellite {
    width: 15px;
    height: 15px;
    top: 30px;
  }

  @keyframes rotate {
    0% {
      transform: rotate(0deg) translateX(100px) rotate(0deg);
    }
    100% {
      transform: rotate(360deg) translateX(100px) rotate(-360deg);
    }
  }

  .revocome-wow-title {
    font-size: 2rem;
  }

  .revocome-wow-text {
    font-size: 1rem;
  }
}

/* Animation for Header Scroll */
.revocome-header.scrolled {
  background-color: rgba(10, 14, 23, 0.95);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: var(--space-sm) 0;
}

.revocome-nutrition-principles,
.revocome-nutrition-yoga,
.revocome-personalized-nutrition,
.revocome-nutrition-cta,
.revocome-instructor-card,
.revocome-training-info,
.revocome-guest-workshops,
.revocome-thank-you-content {
  margin-bottom: 50px;
}

.revocome-service-card,
.revocome-workshop-content {
  margin-bottom: 20px;
}
