.container {
  margin: 0 auto;
  padding: 0 var(--space-lg);
  width: 100%;
}

.global-section {
  padding: var(--space-3xl) var(--space-lg);
  margin: 0 auto;
  position: relative;
}

.global-section h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
  color: var(--text-white);
}

.hero-section {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0px;
  padding-top: 120px;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  animation: videoFadeInOut 6s ease-in-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.55) 40%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

.hero-overlay::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 40%;
  height: 40%;
  background: radial-gradient(
    circle,
    rgba(209, 156, 74, 0.1) 0%,
    transparent 70%
  );
  filter: blur(80px);
  pointer-events: none;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 15, 15, 0.7) 0%,
    rgba(81, 81, 82, 0.5) 100%
  );
  background-size: cover;
  background-position: center;
  z-index: 0;
  will-change: transform;
}

.hero-background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--space-lg);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-content h1 {
  color: var(--primary-white);
  margin-bottom: var(--space-md);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
  font-size: 1.5rem;
  color: var(--primary-gold);
  font-style: italic;
  margin-bottom: var(--space-xl);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-description {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 1s ease-out 0.7s both;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-group {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-cta-group .btn {
  min-width: 180px;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 40px;
  height: 40px;
  stroke: var(--primary-gold);
  stroke-width: 2;
  fill: none;
}

.cta-section {
  background:
    linear-gradient(
      135deg,
      rgba(15, 15, 15, 0.95) 0%,
      rgba(81, 81, 82, 0.85) 100%
    ),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 600"><defs><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" result="noise"/><feColorMatrix in="noise" type="saturate" values="0"/></filter></defs><rect width="1440" height="600" fill="%230F0F0F" filter="url(%23noise)" opacity="0.02"/></svg>');
  color: var(--primary-white);
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  border-radius: var(--radius-2xl);
  position: relative;
  overflow: hidden;
  margin: var(--space-2xl);
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(209, 156, 74, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-section h2 {
  color: var(--primary-white);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 2;
}

.cta-description {
  color: var(--primary-cream);
  font-size: 1.1rem;
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.sticky-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: slideInRight 0.5s ease-out forwards;
  opacity: 1;
  visibility: visible;
}

.sticky-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  color: var(--primary-white);
  position: relative;
  overflow: hidden;
}

.sticky-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-dark);
  z-index: -1;
  transition: all var(--transition-fast);
}

.sticky-btn-whatsapp {
  background: #25d366;
}

.sticky-btn-call {
  background: #007bff;
}

.sticky-btn:hover {
  transform: scale(1.15);
  box-shadow: var(--shadow-xl);
}

.sticky-btn:hover::before {
  top: -100%;
}

.grid {
  display: grid;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

@media (max-width: 1024px) {
  .global-section {
    padding: var(--space-2xl) var(--space-lg);
  }

  .hero-section {
    padding-top: 100px;
  }
}

@media (max-width: 768px) {
  .global-section {
    padding: var(--space-xl) var(--space-md);
  }

  .sticky-cta {
    bottom: 20px;
    right: 20px;
  }

  .sticky-btn {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .hero-section {
    padding-top: 80px;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .cta-section {
    margin: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .global-section {
    padding: var(--space-lg) var(--space-md);
  }

  .sticky-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {

  .clamp-toggle {
    display: block;
    width: 100%;
    margin-top: 0.5rem;
    color: var(--primary-gold);
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 600;
    padding: 0;
    text-align: right;
    font-size: 0.95rem;
  }
}
