/* ==========================================================================
   BigZaint Master Glassmorphism Design System (glassmorphism.css)
   Ultra-modern, Frosted Glass UI, Mesh Gradients & Micro-interactions
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Color Tokens */
  --glass-bg-light: rgba(255, 255, 255, 0.76);
  --glass-bg-dark: rgba(15, 23, 42, 0.75);
  --glass-border-light: rgba(255, 255, 255, 0.6);
  --glass-border-dark: rgba(255, 255, 255, 0.12);
  --glass-shadow: 0 10px 30px -5px rgba(31, 38, 135, 0.12), 0 4px 12px 0 rgba(0, 0, 0, 0.04);
  --glass-shadow-hover: 0 20px 40px -10px rgba(249, 115, 22, 0.25), 0 8px 24px 0 rgba(31, 38, 135, 0.15);
  --glass-blur: blur(20px);

  /* Primary Colors */
  --brand-orange: #ff6b00;
  --brand-orange-light: #ff8533;
  --brand-orange-dark: #e05d00;
  --brand-gradient: linear-gradient(135deg, #ff6b00 0%, #ff8800 50%, #ff5500 100%);
  --brand-gradient-hover: linear-gradient(135deg, #ff8533 0%, #ffa040 50%, #ff6b00 100%);

  /* Neutral Accent Shades */
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --text-light: #f8fafc;
}

/* Global Smoothness */
* {
  box-sizing: border-box;
}

body.glass-theme {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #f1f5f9;
  background-image: 
    radial-gradient(at 0% 0%, rgba(255, 237, 213, 0.8) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(224, 231, 255, 0.7) 0px, transparent 50%),
    radial-gradient(at 50% 100%, rgba(254, 215, 170, 0.5) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(243, 232, 255, 0.7) 0px, transparent 50%);
  background-attachment: fixed;
  background-size: cover;
  color: var(--text-dark);
  min-height: 100vh;
}

/* --------------------------------------------------------------------------
   1. Glass Containers & Cards
   -------------------------------------------------------------------------- */
.glass-panel,
.glass-card {
  background: var(--glass-bg-light);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-light);
  border-radius: 20px;
  box-shadow: var(--glass-shadow);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card-interactive {
  cursor: pointer;
}

.glass-card-interactive:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--glass-shadow-hover);
  border-color: rgba(249, 115, 22, 0.4);
}

/* --------------------------------------------------------------------------
   2. Glass Top Navbar
   -------------------------------------------------------------------------- */
.glass-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: all 0.3s ease;
}

.glass-navbar {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.glass-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  text-decoration: none;
  letter-spacing: -0.8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.glass-brand span {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.glass-nav-links a {
  font-weight: 600;
  font-size: 15px;
  color: #334155;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 30px;
  transition: all 0.25s ease;
}

.glass-nav-links a:hover {
  color: var(--brand-orange);
  background: rgba(249, 115, 22, 0.08);
}

/* Buttons */
.btn-glass-primary {
  background: var(--brand-gradient);
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 24px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.35);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-glass-primary:hover {
  background: var(--brand-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.45);
}

.btn-glass-secondary {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  color: #0f172a !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid rgba(203, 213, 225, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-glass-secondary:hover {
  background: #ffffff;
  border-color: var(--brand-orange);
  color: var(--brand-orange) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* --------------------------------------------------------------------------
   3. Glass Hero & Search Box
   -------------------------------------------------------------------------- */
.glass-hero-section {
  padding-top: 140px;
  padding-bottom: 50px;
  text-align: center;
  position: relative;
}

.glass-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.glass-hero-title span {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass-hero-subtitle {
  font-size: 18px;
  color: #475569;
  max-width: 650px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.glass-search-box {
  max-width: 960px;
  margin: 0 auto;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(249, 115, 22, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}

.glass-input-group {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 10px 16px;
  flex: 1;
  transition: all 0.25s ease;
}

.glass-input-group:focus-within {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.15);
}

.glass-input-group i {
  color: #94a3b8;
  font-size: 18px;
}

.glass-input-group input,
.glass-input-group select {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 15px;
  font-weight: 500;
  color: #0f172a;
}

/* --------------------------------------------------------------------------
   4. Glass Category Items Grid
   -------------------------------------------------------------------------- */
.glass-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.glass-category-item {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 20px 12px;
  text-align: center;
  text-decoration: none;
  color: #1e293b;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.glass-category-item:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-6px);
  border-color: var(--brand-orange-light);
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.18);
  color: var(--brand-orange);
}

.glass-category-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.02));
  border: 1px solid rgba(249, 115, 22, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--brand-orange);
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.glass-category-item:hover .glass-category-icon {
  background: var(--brand-gradient);
  color: #ffffff;
  transform: scale(1.1) rotate(4deg);
}

.glass-category-title {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

/* --------------------------------------------------------------------------
   5. Glass Badges & Tags
   -------------------------------------------------------------------------- */
.glass-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.glass-badge-sponsored {
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.4);
  color: #ea580c;
}

.glass-badge-verified {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #047857;
}

/* --------------------------------------------------------------------------
   6. Responsive Layout Adjustments
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .glass-navbar {
    padding: 10px 16px;
    border-radius: 30px;
  }
  .glass-hero-title {
    font-size: 32px;
  }
  .glass-search-box {
    flex-direction: column;
    padding: 14px;
    border-radius: 24px;
  }
  .glass-category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --------------------------------------------------------------------------
   7. Next-Gen Dominator UI Utility Components
   -------------------------------------------------------------------------- */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
  }
}

.btn-sticky-call {
  flex: 1;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  padding: 13px 18px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}

.btn-sticky-whatsapp {
  flex: 1;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  padding: 13px 18px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.shield-badge {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid #3b82f6;
  color: #38bdf8;
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.quick-chip {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  color: #334155;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.quick-chip:hover {
  background: var(--brand-gradient);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
}

/* ==========================================================================
   Next-Gen Ultra-Premium UI Dominator Upgrades
   ========================================================================== */

/* 1. Hero Ambient Mesh Glow */
.hero-mesh-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 40%, #0f172a 100%);
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 45px 30px;
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.4);
  margin-bottom: 25px;
}

.hero-mesh-section::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 70%;
  height: 180%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.hero-mesh-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 60%;
  height: 160%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

/* 2. Gradient Typography */
.gradient-title-dark {
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
}

.gradient-title-blue {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
}

/* 3. Floating Glass Search Box */
.hero-search-glass {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 60px;
  padding: 8px 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-search-glass:focus-within {
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.35), 0 0 0 3px rgba(37, 99, 235, 0.3);
}

/* 4. 3D Elevated Cards */
.card-3d-lift {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.card-3d-lift:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12), 0 0 20px rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.4);
}

/* 5. Soft Icon Radial Glow */
.icon-soft-glow {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(37, 99, 235, 0.03) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  transition: transform 0.3s ease;
}

.card-3d-lift:hover .icon-soft-glow {
  transform: scale(1.15) rotate(5deg);
  background: radial-gradient(circle, rgba(249, 115, 22, 0.25) 0%, rgba(249, 115, 22, 0.05) 70%);
}

/* 6. Glowing Verification & Rating Badges */
.badge-rating-gold {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.badge-response-instant {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
