/* ZUNO JUNK REMOVAL & PARTNER PORTAL - COMPLETE DESIGN SYSTEM */
:root {
  --bg-dark: #05070a;
  --bg-card: rgba(10, 16, 26, 0.88);
  --bg-card-hover: rgba(15, 25, 40, 0.95);
  
  --neon-green: #00ff66;
  --neon-lime: #39ff14;
  --neon-glow: rgba(0, 255, 102, 0.5);
  --neon-glow-strong: 0 0 25px rgba(0, 255, 102, 0.7);
  
  --accent-cyan: #00f0ff;
  --accent-amber: #f59e0b;
  --accent-red: #ef4444;
  --accent-purple: #c084fc;
  
  --border-color: rgba(0, 255, 102, 0.25);
  --border-highlight: rgba(0, 255, 102, 0.6);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', var(--font-family);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-family);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(0, 255, 102, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 65%, rgba(0, 240, 255, 0.1) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(57, 255, 20, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #05070a 0%, #080d16 50%, #030508 100%);
  background-attachment: fixed;
  padding-bottom: 70px;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(135deg, transparent 45%, rgba(0, 255, 102, 0.03) 48%, transparent 51%),
    linear-gradient(135deg, transparent 55%, rgba(0, 240, 255, 0.02) 58%, transparent 61%);
  pointer-events: none;
  z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

.glass {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), inset 0 0 15px rgba(0, 255, 102, 0.04);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* HEADER & NAVBAR */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 7, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--border-color);
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-logo-img {
  height: 44px !important;
  max-height: 44px !important;
  width: 44px !important;
  max-width: 44px !important;
  filter: drop-shadow(0 0 10px var(--neon-glow));
  object-fit: contain !important;
  flex-shrink: 0;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-text h1 {
  font-size: 1.1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 60%, var(--neon-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

.brand-badge {
  font-size: 0.68rem;
  color: var(--neon-lime);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-shadow: 0 0 8px var(--neon-glow);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-shrink: 1;
}

.nav-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--neon-green);
  text-shadow: 0 0 10px var(--neon-glow);
}

.portal-switch-btn {
  background: rgba(192, 132, 252, 0.15) !important;
  border: 1px solid rgba(192, 132, 252, 0.4) !important;
  color: #c084fc !important;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  white-space: nowrap;
}

.portal-switch-btn:hover {
  background: rgba(192, 132, 252, 0.3) !important;
  color: #fff !important;
  box-shadow: 0 0 15px rgba(192, 132, 252, 0.5);
}

.header-right-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-phones-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.82rem;
  transition: var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.phone-pill-btn.english {
  background: rgba(0, 255, 102, 0.15) !important;
  border-color: var(--neon-green) !important;
  color: var(--neon-green) !important;
  box-shadow: 0 0 10px rgba(0, 255, 102, 0.2);
}

.phone-pill-btn.english:hover {
  background: var(--neon-green) !important;
  color: #05070a !important;
  box-shadow: var(--neon-glow-strong);
  transform: translateY(-2px);
}

.phone-pill-btn.spanish {
  background: rgba(0, 240, 255, 0.15) !important;
  border-color: var(--accent-cyan) !important;
  color: var(--accent-cyan) !important;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.phone-pill-btn.spanish:hover {
  background: var(--accent-cyan) !important;
  color: #05070a !important;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.6);
  transform: translateY(-2px);
}

.lang-toggle-btn {
  background: rgba(15, 23, 42, 0.9) !important;
  border: 1px solid var(--border-color) !important;
  color: #ffffff !important;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  white-space: nowrap;
}

.lang-toggle-btn:hover {
  background: rgba(0, 255, 102, 0.2) !important;
  border-color: var(--neon-green) !important;
}

/* HERO SECTION */
.hero-section {
  padding: 40px 0 70px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 255, 102, 0.12);
  border: 1px solid var(--neon-green);
  color: var(--neon-lime);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: 0 0 15px rgba(0, 255, 102, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-tag.partner-tag {
  background: rgba(192, 132, 252, 0.15);
  border-color: rgba(192, 132, 252, 0.4);
  color: #c084fc;
}

.hero-title {
  font-size: 3.2rem;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-title span.neon-glow-text {
  color: var(--neon-green);
  text-shadow: 0 0 20px var(--neon-glow);
  display: inline-block;
  transform: skewX(-5deg);
}

.hero-title span.purple-glow {
  color: #c084fc;
  text-shadow: 0 0 20px rgba(192, 132, 252, 0.5);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}

/* HOOK STARTING BOX */
.hook-starting-box {
  background: linear-gradient(135deg, rgba(0, 255, 102, 0.15) 0%, rgba(0, 240, 255, 0.08) 100%);
  border: 2px solid var(--neon-green);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 24px;
  box-shadow: var(--neon-glow-strong);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hook-price-tag {
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--neon-green);
  line-height: 1;
  text-shadow: 0 0 15px var(--neon-glow);
  text-align: right;
  white-space: nowrap;
}

.hook-price-tag span {
  font-size: 0.9rem;
  color: #fff;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.cta-beast-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #00ff66 0%, #059669 100%);
  color: #05070a;
  padding: 14px 26px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 0 25px var(--neon-glow);
  transition: var(--transition);
}

.cta-beast-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(0, 255, 102, 0.9);
  background: #ffffff;
  color: #05070a;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: rgba(0, 255, 102, 0.15);
  border-color: var(--neon-green);
  color: #fff;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.feat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
}

.feat-icon {
  color: var(--neon-green);
  font-size: 1rem;
}

.hero-card-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 3px solid var(--neon-green);
  box-shadow: 0 0 40px rgba(0, 255, 102, 0.4), 0 20px 50px rgba(0, 0, 0, 0.8);
}

.hero-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(5, 7, 10, 0.95) 20%, transparent);
  padding: 20px;
}

/* SECTION HEADERS */
.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 36px;
}

.section-tag {
  color: var(--neon-lime);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  display: block;
  text-shadow: 0 0 10px var(--neon-glow);
}

.section-tag.purple {
  color: #c084fc;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
}

/* PRICING & CARDS */
.pricing-section {
  padding: 60px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pricing-card {
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: var(--neon-green);
  box-shadow: 0 0 25px rgba(0, 255, 102, 0.3);
}

.pricing-card.featured {
  border: 2px solid var(--neon-green);
  background: linear-gradient(180deg, rgba(0, 255, 102, 0.12) 0%, rgba(10, 16, 26, 0.95) 100%);
  box-shadow: var(--neon-glow-strong);
}

.featured-badge {
  position: absolute;
  top: -14px;
  right: 20px;
  background: var(--neon-green);
  color: #05070a;
  font-weight: 900;
  font-size: 0.72rem;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.pricing-tier {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 700;
}

.pricing-price {
  font-size: 3rem;
  font-family: var(--font-heading);
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1;
}

.pricing-price span {
  font-size: 0.95rem;
  color: var(--neon-green);
  font-weight: 600;
}

.pricing-volume {
  color: var(--accent-cyan);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 18px;
  display: block;
}

.pricing-list {
  list-style: none;
  margin-bottom: 22px;
  flex-grow: 1;
}

.pricing-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pricing-list li i {
  color: var(--neon-green);
}

/* SOCIO.HTML EXCLUSIVE FINANCIAL & METRICS STYLES */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.metric-card {
  padding: 24px;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  background: rgba(10, 16, 26, 0.88);
  border: 1px solid var(--border-color);
}

.metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--neon-green);
}

.metric-card.purple::before {
  background: var(--accent-purple);
}

.metric-card.cyan::before {
  background: var(--accent-cyan);
}

.metric-card.amber::before {
  background: var(--accent-amber);
}

.metric-val {
  font-size: 2.2rem;
  font-family: var(--font-heading);
  font-weight: 900;
  color: #fff;
  margin: 6px 0;
}

.metric-lbl {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.metric-sub {
  font-size: 0.8rem;
  color: var(--neon-lime);
  font-weight: 600;
}

/* EQUIPMENT COMPARISON GRID & TABLES FOR SOCIO */
.equipment-section {
  padding: 60px 0;
}

.equip-toggle-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.equip-toggle-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 4px;
  display: flex;
  gap: 4px;
}

.equip-toggle-btn {
  padding: 10px 22px;
  border-radius: 50px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.equip-toggle-btn.active {
  background: var(--neon-green);
  color: #05070a;
  font-weight: 900;
  box-shadow: 0 0 15px var(--neon-glow);
}

.equip-display-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.equip-details-card {
  border-radius: var(--radius-lg);
  padding: 30px;
}

.equip-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.equip-specs-table th, .equip-specs-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.equip-specs-table th {
  color: var(--text-muted);
  font-weight: 700;
}

/* CALCULATORS FOR SOCIO */
.calc-section {
  padding: 60px 0;
}

.calc-card {
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 600;
}

.form-control, select {
  width: 100%;
  padding: 11px 14px;
  background: rgba(5, 7, 10, 0.85);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus, select:focus {
  outline: none;
  border-color: var(--neon-green);
  box-shadow: 0 0 15px rgba(0, 255, 102, 0.3);
}

.calc-results-box {
  background: rgba(5, 7, 10, 0.7);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

.result-row.total {
  border-bottom: none;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--neon-green);
}

/* BENCHMARK COMPETITOR TABLE FOR SOCIO */
.benchmark-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  margin-top: 20px;
}

.benchmark-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.benchmark-table th {
  background: rgba(15, 23, 42, 0.95);
  padding: 16px 18px;
  color: var(--text-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--border-color);
}

.benchmark-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.benchmark-table tr.highlight-dvp {
  background: rgba(0, 255, 102, 0.08);
  border-left: 3px solid var(--neon-green);
}

.comp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.comp-badge.national {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.comp-badge.dumpster {
  background: rgba(245, 158, 11, 0.15);
  color: #fcd34d;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.comp-badge.dvp {
  background: rgba(0, 255, 102, 0.2);
  color: var(--neon-lime);
  border: 1px solid rgba(0, 255, 102, 0.4);
}

.listing-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 240, 255, 0.15);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: #67e8f9;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  margin-top: 12px;

}

.listing-link-btn:hover {
  background: rgba(0, 240, 255, 0.3);
  color: #fff;
}

/* CROSS SELLING & SERVICES */
.cross-sell-banner {
  padding: 30px 0 60px;
}

.banner-glass {
  border-radius: var(--radius-lg);
  padding: 30px;
  background: linear-gradient(135deg, rgba(0, 255, 102, 0.1), rgba(0, 240, 255, 0.05));
  border: 2px solid var(--neon-green);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: center;
}

.services-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--text-main);
  font-weight: 600;
}

.services-section {
  padding: 60px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--neon-green);
}

.service-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(0, 255, 102, 0.15);
  color: var(--neon-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
  border: 1px solid rgba(0, 255, 102, 0.3);
}

.service-title {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* CITIES GRID */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.city-card {
  padding: 18px 12px;
  text-align: center;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.city-card:hover {
  border-color: var(--neon-green);
}

.city-icon {
  font-size: 1.6rem;
  color: var(--neon-green);
  margin-bottom: 6px;
}

/* FOOTER */
.site-footer {
  background: #030508;
  border-top: 2px solid var(--border-color);
  padding: 50px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 10px;
  max-width: 380px;
}

.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dim);
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* STICKY BOTTOM PHONE BAR FOR MOBILE USERS */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(5, 7, 10, 0.96);
  border-top: 2px solid var(--neon-green);
  padding: 8px 12px;
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.9);
}

.mobile-phones-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mobile-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 0.85rem;
  text-decoration: none;
}

.mobile-phone-btn.en {
  background: var(--neon-green);
  color: #05070a;
}

.mobile-phone-btn.es {
  background: var(--accent-cyan);
  color: #05070a;
}

/* MEDIA QUERIES FOR FULL RESPONSIVENESS */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .metrics-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .equip-display-grid, .calc-card {
    grid-template-columns: 1fr;
  }
  .cities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .banner-glass {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .metrics-row {
    grid-template-columns: 1fr;
  }
  .pricing-grid, .services-grid, .booking-steps-grid {
    grid-template-columns: 1fr;
  }
  .dual-phones-grid {
    grid-template-columns: 1fr;
  }
  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .header-phones-wrapper {
    display: none;
  }
  .mobile-sticky-bar {
    display: block;
  }
  .brand-text h1 {
    font-size: 0.95rem;
  }
}

/* 5-TIER PRICING GRID */
.pricing-grid-5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

/* AI VIRTUAL ASSISTANT WIDGET STYLES */
#zuno-ai-widget-container {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 9999;
  font-family: var(--font-main);
}

#zuno-ai-launcher {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #05070a 0%, #0f172a 100%);
  color: var(--neon-lime);
  border: 2px solid var(--neon-lime);
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 255, 102, 0.4);
  transition: all 0.3s ease;
}

#zuno-ai-launcher:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 255, 102, 0.6);
}

.ai-pulse-ring {
  position: absolute;
  top: -4px; right: -4px; bottom: -4px; left: -4px;
  border-radius: 50px;
  border: 2px solid var(--neon-lime);
  animation: aiPulse 2s infinite;
  pointer-events: none;
}

@keyframes aiPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.15); opacity: 0; }
}

.ai-chat-modal {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 360px;
  max-width: 90vw;
  height: 480px;
  background: #090d16;
  border: 1px solid rgba(0, 255, 102, 0.4);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 30px rgba(0, 255, 102, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ai-chat-modal.hidden {
  display: none !important;
  opacity: 0;
  pointer-events: none;
}

.ai-chat-header {
  background: #0f172a;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ai-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ai-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 255, 102, 0.15);
  border: 1px solid var(--neon-lime);
  color: var(--neon-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  position: relative;
}

.status-online {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 9px;
  height: 9px;
  background: var(--neon-lime);
  border-radius: 50%;
  border: 2px solid #0f172a;
}

.ai-title {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}

.ai-subtitle {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.ai-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
}

.ai-close-btn:hover { color: #fff; }

.ai-chat-body {
  flex: 1;
  padding: 14px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ai-msg {
  display: flex;
  flex-direction: column;
  max-width: 85%;
}

.ai-msg.bot { align-self: flex-start; }
.ai-msg.user { align-self: flex-end; }

.ai-msg-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.85rem;
  line-height: 1.45;
}

.ai-msg.bot .ai-msg-bubble {
  background: rgba(15, 23, 42, 0.9);
  color: #e2e8f0;
  border: 1px solid rgba(255,255,255,0.08);
  border-top-left-radius: 2px;
}

.ai-msg.user .ai-msg-bubble {
  background: var(--neon-lime);
  color: #05070a;
  font-weight: 600;
  border-top-right-radius: 2px;
}

.ai-quick-actions {
  display: flex;
  gap: 6px;
  padding: 8px 12px;
  overflow-x: auto;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: #090d16;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.ai-quick-actions::-webkit-scrollbar {
  display: none;
}

.ai-preview-box {
  padding: 8px 14px;
  background: rgba(0,0,0,0.6);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ai-preview-box.hidden {
  display: none !important;
}

.ai-chip {
  background: rgba(255,255,255,0.06);
  color: #cbd5e1;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  white-space: nowrap;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.ai-chip:hover {
  border-color: var(--neon-lime);
  color: var(--neon-lime);
}

.ai-chip.whatsapp {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  border-color: rgba(37, 211, 102, 0.4);
}

.ai-chat-footer {
  padding: 10px 12px;
  background: #0f172a;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ai-upload-btn, .ai-send-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.ai-send-btn {
  background: var(--neon-lime);
  color: #05070a;
  border: none;
}

#ai-user-input {
  flex: 1;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 8px 14px;
  color: #fff;
  font-size: 0.85rem;
  outline: none;
}

#ai-user-input:focus {
  border-color: var(--neon-lime);
}

@media (max-width: 600px) {
  #zuno-ai-widget-container {
    bottom: 75px;
    right: 12px;
  }
  .ai-chat-modal {
    width: 94vw;
    right: 3vw;
    bottom: 60px;
    height: 420px;
  }
}

/* PREMIUM BOOKING FORM STYLES */
.booking-card-wrapper {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 255, 102, 0.35);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 255, 102, 0.15);
  max-width: 960px;
  margin: 0 auto;
}

.booking-steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.deposit-badge-box {
  background: linear-gradient(135deg, rgba(0, 255, 102, 0.12) 0%, rgba(6, 182, 212, 0.08) 100%);
  border: 1px solid rgba(0, 255, 102, 0.4);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.time-slot-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.time-slot-btn:hover {
  border-color: var(--neon-lime);
  color: var(--neon-lime);
  background: rgba(0, 255, 102, 0.08);
}

.time-slot-btn.active {
  background: var(--neon-lime);
  color: #05070a;
  border-color: var(--neon-lime);
  font-weight: 900;
  box-shadow: 0 0 15px rgba(0, 255, 102, 0.4);
}

.pay-options-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.pay-option-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.25s ease;
}

.pay-option-card:hover {
  border-color: var(--neon-lime);
  background: rgba(0, 255, 102, 0.04);
}

.pay-option-card.active {
  border-color: var(--neon-lime);
  background: rgba(0, 255, 102, 0.1);
  box-shadow: 0 0 15px rgba(0, 255, 102, 0.15);
}

.pay-option-card input[type="radio"] {
  accent-color: var(--neon-lime);
  margin-top: 3px;
  width: 16px;
  height: 16px;
}

.pay-card-content {
  flex: 1;
}

.pay-card-title {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pay-card-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}

.discount-pill {
  background: var(--neon-lime);
  color: #05070a;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
}

.booking-summary-bar {
  margin-top: 30px;
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  background: rgba(5, 7, 10, 0.5);
  border-radius: var(--radius-md);
}

.summary-lbl {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.summary-amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--neon-lime);
  text-shadow: 0 0 20px rgba(0, 255, 102, 0.5);
  line-height: 1.1;
  font-family: var(--font-heading);
}

.summary-sub {
  font-size: 0.82rem;
  color: var(--accent-cyan);
  display: block;
  font-weight: 600;
}

.booking-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 16px 24px;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
}

.secure-badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.pay-icons {
  display: flex;
  gap: 8px;
  font-size: 1.1rem;
  color: #cbd5e1;
}

/* Form Control Select & Option fixes */
.form-control, select, input[type="date"] {
  background: #090d16 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  color-scheme: dark;
}

select option {
  background: #0f172a !important;
  color: #ffffff !important;
  padding: 10px;
}

@media (max-width: 768px) {
  .booking-steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .booking-card-wrapper {
    padding: 20px 16px;
  }
  .booking-summary-bar {
    flex-direction: column;
    align-items: stretch;
  }
}

/* PERIOD BUTTON STYLES FOR PARTNER DASHBOARD */
.period-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.period-btn:hover {
  color: #fff;
}

.period-btn.active {
  background: #c084fc;
  color: #05070a;
  font-weight: 900;
  box-shadow: 0 0 15px rgba(192, 132, 252, 0.4);
}


