/* === HERO PREMIUM BIG WAMBSS === */
.hero-premium {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
  background-color: var(--gray-900);
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Pipe cross-junction pattern overlay on hero */
.hero-bg-container::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Ccircle cx='40' cy='40' r='2.5' fill='none' stroke='%2300AEEF' stroke-width='1.5' stroke-opacity='0.12'/%3E%3Cline x1='0' y1='40' x2='80' y2='40' stroke='%2300AEEF' stroke-width='1' stroke-opacity='0.05'/%3E%3Cline x1='40' y1='0' x2='40' y2='80' stroke='%2300AEEF' stroke-width='1' stroke-opacity='0.05'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  z-index: 2;
  pointer-events: none;
}

.hero-parallax-bg {
  width: 100%;
  height: 110%;
  background-image: url('https://images.unsplash.com/photo-1748442001865-5583ec02ae22?auto=format&fit=crop&w=2340&q=80');
  background-size: cover;
  background-position: center;
  transform: translateY(0);
  transition: transform 0.1s ease-out;
  filter: brightness(0.35) contrast(1.15) saturate(0.9);
}

.hero-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 15% 60%, rgba(184, 115, 51, 0.12) 0%, transparent 45%),
              radial-gradient(circle at 80% 30%, rgba(0, 174, 239, 0.1) 0%, transparent 45%),
              linear-gradient(135deg, rgba(17, 24, 39, 0.92) 0%, rgba(17, 24, 39, 0.5) 100%);
}

.hero-grid-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 10;
}

/* Typography & Content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  border: none;
  border-left: 3px solid var(--wambss-copper);
  padding: 0.4rem 0 0.4rem 1rem;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--space-8);
  animation: slideInDown 0.8s ease-out;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--wambss-copper);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

.hero-main-title {
  font-family: var(--font-heading);
  margin-bottom: var(--space-8);
  line-height: 1;
}

.title-outline {
  display: block;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.18);
  letter-spacing: 0.06em;
  margin-bottom: -0.15em;
}

.title-fill {
  display: block;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.text-copper {
  color: var(--wambss-copper);
  background: linear-gradient(135deg, var(--wambss-copper) 0%, #E8A058 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.8);
  max-width: 550px;
  margin-bottom: var(--space-12);
  line-height: 1.6;
}

/* Trust Indicators */
.hero-trust-indicators {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

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

.trust-number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--wambss-copper);
}

.trust-label {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(184, 115, 51, 0.25);
}

/* Base button styles (globally available for hero component) */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.btn-primary {
  background: var(--wambss-copper);
  color: var(--white);
  padding: 0.875rem 2rem;
  font-size: var(--text-sm);
  border-radius: var(--radius-sm);
}

.btn-primary:hover {
  background: var(--wambss-copper-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(184, 115, 51, 0.4);
}

/* Hero Actions */
.hero-actions-desktop {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.btn-hero-main {
  padding: 1.2rem 2.5rem !important;
  font-size: var(--text-base) !important;
}

.hero-phone-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: transform var(--transition-base);
}

.hero-phone-link:hover {
  transform: translateX(5px);
}

.phone-icon-box {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wambss-blue);
  font-size: var(--text-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-text {
  display: flex;
  flex-direction: column;
}

.phone-text .label {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.phone-text .number {
  font-weight: 700;
  color: var(--white);
}

/* Visual Section - Glass Card */
.hero-visual-section {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.glass-cta-card {
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  width: 100%;
  max-width: 400px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  transform: rotateY(-8deg) rotateX(3deg);
  transition: all 0.5s ease;
  animation: float 6s ease-in-out infinite;
}

.glass-cta-card:hover {
  transform: rotateY(0) rotateX(0) scale(1.02);
  border-color: rgba(0, 174, 239, 0.2);
}

.glass-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-header i {
  font-size: var(--text-2xl);
  color: var(--wambss-copper);
}

.glass-header h3 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: var(--text-xl);
  margin: 0;
  letter-spacing: 0.04em;
}

.glass-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-8);
}

.glass-list li {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-3);
  font-size: var(--text-sm);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.glass-list li:last-child {
  border-bottom: none;
}

.glass-list li i {
  color: var(--wambss-copper);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Glass card CTA button */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--wambss-copper);
  color: var(--white);
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all var(--transition-fast);
  width: 100%;
}

.btn-secondary:hover {
  background: var(--wambss-copper-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(184, 115, 51, 0.4);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0) rotateY(-10deg); }
  50% { transform: translateY(-20px) rotateY(-5deg); }
}

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

/* Interior Pages Hero */
.hero-wambss-other {
  position: relative;
  padding: 110px 0 75px;
  background: var(--gray-900);
  overflow: hidden;
}

/* Pipe pattern texture on inner hero */
.hero-wambss-other .hero-bg-container::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Ccircle cx='40' cy='40' r='2.5' fill='none' stroke='%2300AEEF' stroke-width='1.5' stroke-opacity='0.12'/%3E%3Cline x1='0' y1='40' x2='80' y2='40' stroke='%2300AEEF' stroke-width='1' stroke-opacity='0.05'/%3E%3Cline x1='40' y1='0' x2='40' y2='80' stroke='%2300AEEF' stroke-width='1' stroke-opacity='0.05'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  z-index: 2;
  pointer-events: none;
}

/* Inner hero background image */
.hero-bg-secondary {
  width: 100%;
  height: 110%;
  background-image: url('https://images.unsplash.com/photo-1676210134188-4c05dd172f89?auto=format&fit=crop&w=2340&q=80');
  background-size: cover;
  background-position: center;
  filter: brightness(0.3) contrast(1.1) saturate(0.8);
}

/* Copper gradient bottom bar */
.hero-wambss-other::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--wambss-copper) 0%, var(--wambss-blue) 50%, var(--wambss-copper) 100%);
  z-index: 11;
}

.hero-other-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.hero-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-6);
  color: rgba(255, 255, 255, 0.45);
  font-size: var(--text-sm);
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumb-item {
  color: var(--wambss-copper);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb-item:hover {
  color: var(--wambss-copper-light);
}

.breadcrumb-separator {
  color: rgba(255,255,255,0.2);
}

.hero-other-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: var(--white);
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
}

.title-underline {
  width: 50px;
  height: 3px;
  background: var(--wambss-copper);
  margin: var(--space-4) auto var(--space-6);
  border-radius: 0;
}

.hero-other-subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.65);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Mobile CTA button (hidden on desktop) */
.hero-actions-mobile {
  display: flex;
  justify-content: center;
  margin-top: var(--space-8);
  width: 100%;
}

.hero-actions-mobile .btn-hero-main {
  width: 100%;
  max-width: 360px;
  text-align: center;
  justify-content: center;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-premium { padding: 100px 0 60px; }
  .hero-grid-wrapper { grid-template-columns: 1fr; text-align: center; gap: var(--space-12); }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-trust-indicators { justify-content: center; }
  .hero-visual-section { perspective: none; }
  .glass-cta-card { transform: none; animation: none; max-width: 100%; }
  .title-outline { font-size: 4rem; }
}

/* Explicitly hide desktop CTA on mobile to avoid 992px boundary conflict */
@media (max-width: 991px) {
  .hero-actions-desktop { display: none !important; }
}

/* Hide mobile CTA on large screens where desktop CTA is visible */
@media (min-width: 992px) {
  .hero-actions-mobile { display: none; }
}

@media (max-width: 768px) {
  .hero-premium { padding: 85px 0 50px; min-height: auto; }
  .title-outline { font-size: 3rem; letter-spacing: 0.04em; }
  .title-fill { font-size: 1.7rem; }
  .hero-lead { font-size: var(--text-base); margin-bottom: var(--space-6); max-width: 100%; }
  .hero-trust-indicators { gap: var(--space-4); margin-bottom: var(--space-6); flex-wrap: wrap; }
  .trust-number { font-size: var(--text-2xl); }
  .hero-main-title { margin-bottom: var(--space-5); }
  .hero-badge { margin-bottom: var(--space-5); }
  .glass-cta-card { padding: var(--space-5); }
  .glass-list { margin-bottom: var(--space-5); }
  .hero-grid-wrapper { gap: var(--space-8); }
}

@media (max-width: 480px) {
  .hero-premium { padding: 75px 0 40px; }
  .title-outline { font-size: 2.2rem; letter-spacing: 0.02em; }
  .title-fill { font-size: 1.3rem; }
  .hero-trust-indicators { gap: var(--space-3); justify-content: space-around; }
  .trust-divider { height: 24px; }
  .trust-number { font-size: var(--text-xl); }
  .trust-label { font-size: 0.6rem; letter-spacing: 0.08em; }
  .hero-lead { font-size: var(--text-sm); margin-bottom: var(--space-4); }
  .hero-badge { font-size: 0.68rem; }
  .glass-list li { font-size: var(--text-xs); gap: 0.6rem; }
  .hero-actions-mobile { margin-top: var(--space-5); }
  .hero-actions-mobile .btn-hero-main { font-size: var(--text-sm) !important; padding: 1rem 1.5rem !important; }
}