/* ==========================================================================
   AMAZYNO STUDIO | MASTER DESIGN SYSTEM & SERVICES STYLESHEET
   Features: Real Glassmorphism, Service-Specific Hero Backgrounds,
   Dark Readability Overlays, GPU Scroll Animations, Mobile Drawer,
   Accessibility & Reduced Motion Support.
   ========================================================================== */

/* ==========================================================================
   1. CSS VARIABLES & THEME TOKENS
   ========================================================================== */
:root {
  --primary: #f58232;
  --primary-light: #fb923c;
  --primary-dark: #d66819;
  --accent: #1e293b;
  --accent-2: #f59e0b;
  --accent-cyan: #06b6d4;
  --accent-emerald: #10b981;

  --bg-dark: #ffffff;
  --bg-card: #f8fafc;
  --bg-dark-hero: #090d16;
  --bg-dark-card: rgba(15, 23, 42, 0.75);

  --bg-glass-light: rgba(255, 255, 255, 0.82);
  --bg-glass-card: rgba(255, 255, 255, 0.92);
  --bg-glass-dark: rgba(15, 23, 42, 0.65);
  --border-glass: rgba(245, 130, 50, 0.18);
  --border-glass-light: rgba(255, 255, 255, 0.25);
  --border-glass-strong: rgba(245, 130, 50, 0.35);

  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --text-on-dark: #f8fafc;
  --text-sub-dark: #cbd5e1;

  --gradient-brand: linear-gradient(135deg, #f58232 0%, #fb923c 100%);
  --gradient-brand-subtle: linear-gradient(135deg, rgba(245, 130, 50, 0.15) 0%, rgba(251, 146, 60, 0.08) 100%);
  --gradient-dark-hero: linear-gradient(180deg, rgba(8, 12, 22, 0.88) 0%, rgba(12, 17, 30, 0.82) 60%, rgba(6, 9, 16, 0.94) 100%);
  --gradient-dark-card: linear-gradient(135deg, rgba(30, 41, 59, 0.85) 0%, rgba(15, 23, 42, 0.95) 100%);
  --gradient-glass-btn: linear-gradient(135deg, rgba(245, 130, 50, 0.95) 0%, rgba(251, 146, 60, 0.90) 100%);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 10px 35px rgba(245, 130, 50, 0.08), 0 2px 10px rgba(0, 0, 0, 0.03);
  --shadow-card-hover: 0 20px 45px rgba(245, 130, 50, 0.15), 0 4px 15px rgba(0, 0, 0, 0.06);
  --shadow-glow: 0 0 40px rgba(245, 130, 50, 0.25);
  --shadow-glass-btn: 0 8px 24px rgba(245, 130, 50, 0.28), inset 0 1px 1px rgba(255, 255, 255, 0.45), inset 0 -1px 1px rgba(0, 0, 0, 0.12);

  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --radius-pill: 9999px;

  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   2. GLOBAL BASE | RESET STYLES
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: var(--radius-pill);
}

/* ==========================================================================
   3. CORE REUSABLE UTILITIES
   ========================================================================== */
.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.section-padding {
  padding: 95px 0;
}

.container-amazyno {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 130, 50, 0.10);
  border: 1px solid rgba(245, 130, 50, 0.25);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.section-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-subtext {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.75;
}

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

.form-group label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.mega-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mega-badge.hot {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.mega-badge.new {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* ==========================================================================
   4. ACCESSIBILITY & PREFERS-REDUCED-MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .az-fade-up,
  .az-fade-in,
  .az-slide-left,
  .az-slide-right,
  .az-zoom-in,
  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .btn-glow::after,
  .btn-glass-primary::after,
  .btn-glass-secondary::after {
    display: none !important;
  }
}

/* ==========================================================================
   3. GPU-ACCELERATED SMOOTH SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.az-fade-up {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.az-fade-in {
  opacity: 0;
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity;
}

.az-slide-left {
  opacity: 0;
  transform: translate3d(-36px, 0, 0);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.az-slide-right {
  opacity: 0;
  transform: translate3d(36px, 0, 0);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.az-zoom-in {
  opacity: 0;
  transform: scale(0.94) translate3d(0, 20px, 0);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

/* Active State applied by IntersectionObserver */
.az-fade-up.is-visible,
.az-fade-in.is-visible,
.az-slide-left.is-visible,
.az-slide-right.is-visible,
.az-zoom-in.is-visible,
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

/* Cascading Stagger Delays */
.stagger-1 { transition-delay: 0.08s !important; }
.stagger-2 { transition-delay: 0.16s !important; }
.stagger-3 { transition-delay: 0.24s !important; }
.stagger-4 { transition-delay: 0.32s !important; }
.stagger-5 { transition-delay: 0.40s !important; }
.stagger-6 { transition-delay: 0.48s !important; }
.stagger-7 { transition-delay: 0.56s !important; }
.stagger-8 { transition-delay: 0.64s !important; }

/* Subtle Float Keyframe */
@keyframes azFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes azPulseGlow {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.04); }
}

/* ==========================================================================
   4. REAL GLASSMORPHISM CAPSULE BUTTONS & MICRO-INTERACTIONS
   ========================================================================== */
.btn-glow,
.btn-glass-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 32px;
  background: var(--gradient-glass-btn);
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.96rem;
  letter-spacing: 0.2px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-pill) !important;
  cursor: pointer;
  text-decoration: none !important;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: var(--shadow-glass-btn);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

/* Glass Inset Highlight and Shimmer Sweep */
.btn-glow::before,
.btn-glass-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: var(--radius-pill) var(--radius-pill) 0 0;
  pointer-events: none;
}

.btn-glow::after,
.btn-glass-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: skewX(-22deg);
  transition: none;
  pointer-events: none;
}

.btn-glow:hover,
.btn-glass-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 36px rgba(245, 130, 50, 0.42), inset 0 1px 2px rgba(255, 255, 255, 0.6), inset 0 -1px 2px rgba(0, 0, 0, 0.15);
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-glow:hover::after,
.btn-glass-primary:hover::after {
  left: 140%;
  transition: left 0.75s ease-in-out;
}

.btn-glow:active,
.btn-glass-primary:active {
  transform: translateY(-1px) scale(0.99);
  box-shadow: 0 4px 16px rgba(245, 130, 50, 0.3);
}

/* Glass Ghost Button - Capsule Pill */
.btn-ghost,
.btn-glass-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 30px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary) !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--border-glass-strong);
  border-radius: var(--radius-pill) !important;
  cursor: pointer;
  text-decoration: none !important;
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3), 0 4px 16px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-ghost:hover,
.btn-glass-secondary:hover {
  background: rgba(245, 130, 50, 0.12);
  border-color: var(--primary);
  color: var(--primary) !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 24px rgba(245, 130, 50, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

/* On Dark Backgrounds for Ghost Buttons */
.hero-cta-ghost,
.service-hero-section .btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-pill) !important;
}

.hero-cta-ghost:hover,
.service-hero-section .btn-ghost:hover {
  background: rgba(245, 130, 50, 0.2);
  border-color: var(--primary-light);
  color: #ffffff !important;
  box-shadow: 0 8px 25px rgba(245, 130, 50, 0.35);
}

/* General Button Capsule Rules */
button[type="submit"],
.btn-submit {
  border-radius: var(--radius-pill) !important;
}

/* ==========================================================================
   5. PREMIUM FLOATING CAPSULE NAVBAR & SCROLL-AWARE DEPTH
   ========================================================================== */
#amazyno-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, calc(100% - 40px));
  z-index: 1000;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(245, 130, 50, 0.22);
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12),
              0 4px 16px rgba(245, 130, 50, 0.08),
              inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: top 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scroll-Aware Floating Capsule Elevation */
#amazyno-nav.scrolled {
  top: 12px;
  padding: 8px 22px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  border: 1px solid rgba(245, 130, 50, 0.28);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.16),
              0 6px 20px rgba(245, 130, 50, 0.12),
              inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.nav-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
  line-height: 1;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  max-height: 44px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(245, 130, 50, 0.2);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(245, 130, 50, 0.35);
}

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

.nav-links a {
  color: var(--text-secondary);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.94rem;
  text-decoration: none !important;
  transition: all 0.25s ease;
  position: relative;
  padding: 6px 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: var(--radius-pill);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
  left: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-actions .btn-glow {
  border-radius: var(--radius-pill) !important;
  padding: 10px 24px !important;
  font-size: 0.92rem !important;
}

/* ==========================================================================
   6. MEGA-MENU NAVIGATION DROPDOWN
   ========================================================================== */
.nav-item-dropdown {
  position: relative;
}

.nav-link-dropdown {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-link-dropdown i.chevron-icon {
  font-size: 0.75rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--primary);
}

.nav-item-dropdown:hover .nav-link-dropdown i.chevron-icon,
.nav-item-dropdown.active .nav-link-dropdown i.chevron-icon {
  transform: rotate(180deg);
}

.mega-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(14px);
  width: 1020px;
  max-width: 95vw;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(245, 130, 50, 0.22);
  border-radius: 22px;
  padding: 30px 34px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14),
              0 6px 24px rgba(245, 130, 50, 0.10),
              inset 0 1px 0 rgba(255, 255, 255, 0.8);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.35s;
  z-index: 1050;
}

.mega-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background: #ffffff;
  border-left: 1px solid rgba(245, 130, 50, 0.22);
  border-top: 1px solid rgba(245, 130, 50, 0.22);
}

.nav-item-dropdown:hover .mega-dropdown-menu,
.nav-item-dropdown:focus-within .mega-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.mega-menu-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mega-menu-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--primary);
  padding-bottom: 10px;
  margin-bottom: 6px;
  border-bottom: 1px dashed rgba(245, 130, 50, 0.25);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mega-menu-item {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none !important;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.mega-menu-item::after {
  display: none !important;
}

.mega-menu-item:hover {
  background: rgba(245, 130, 50, 0.09);
  color: var(--primary);
  transform: translateX(4px);
  padding-left: 16px;
}

.mega-menu-item:hover::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
}

.mega-dropdown-footer {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(245, 130, 50, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(245, 130, 50, 0.04);
  padding: 12px 18px;
  border-radius: 12px;
}

.mega-footer-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mega-footer-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary) !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mega-footer-link:hover {
  text-decoration: underline !important;
}

/* ==========================================================================
   7. PERFECT LUXURY MOBILE NAVBAR & DRAWER
   ========================================================================== */
.nav-hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(245, 130, 50, 0.08);
  border: 1px solid rgba(245, 130, 50, 0.22);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  position: relative;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1e293b;
  border-radius: var(--radius-pill);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

.nav-hamburger:hover {
  background: rgba(245, 130, 50, 0.16);
  border-color: var(--primary);
}

.nav-hamburger:hover span {
  background: var(--primary);
}

/* Hamburger active transformation (3 bars to X) */
.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--primary);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--primary);
}

/* Mobile Drawer Backdrop */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 28, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
}

.mobile-nav-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Mobile Drawer Container */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(88vw, 390px);
  background: #ffffff;
  z-index: 10001;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -15px 0 50px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(245, 130, 50, 0.18);
  will-change: transform;
}

.mobile-nav-drawer.open {
  transform: translate3d(0, 0, 0);
}

/* Drawer Header */
.mobile-drawer-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(245, 130, 50, 0.12);
  background: #ffffff;
  flex-shrink: 0;
}

.mobile-drawer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none !important;
  letter-spacing: -0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.mobile-drawer-logo-img {
  height: 38px;
  width: auto;
  max-height: 38px;
  max-width: 180px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(245, 130, 50, 0.2);
}

.mobile-drawer-logo span {
  -webkit-text-fill-color: #1e293b;
}

.mobile-drawer-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(245, 130, 50, 0.08);
  border: 1px solid rgba(245, 130, 50, 0.22);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.15rem;
  transition: all 0.25s ease;
  padding: 0;
}

.mobile-drawer-close:hover,
.mobile-drawer-close:active {
  background: var(--gradient-brand);
  border-color: transparent;
  color: #ffffff;
  transform: rotate(90deg) scale(1.05);
}

/* Drawer Scrollable Body */
.mobile-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 20px 36px;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-drawer-body::-webkit-scrollbar {
  width: 4px;
}
.mobile-drawer-body::-webkit-scrollbar-thumb {
  background: rgba(245, 130, 50, 0.3);
  border-radius: var(--radius-pill);
}

/* Drawer Navigation Links */
.mobile-drawer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 12px;
  color: #1e293b;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.mobile-nav-link i {
  color: var(--primary);
  font-size: 1.15rem;
  width: 20px;
  text-align: center;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: rgba(245, 130, 50, 0.08);
  color: var(--primary);
  padding-left: 20px;
}

/* Mobile Services Toggle Button */
.mobile-services-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 12px;
  background: transparent;
  border: none;
  color: #1e293b;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}

.mobile-services-toggle-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-services-toggle-left i {
  color: var(--primary);
  font-size: 1.15rem;
  width: 20px;
  text-align: center;
}

.mobile-services-toggle .toggle-arrow {
  font-size: 0.85rem;
  color: #94a3b8;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-services-toggle:hover {
  background: rgba(245, 130, 50, 0.08);
  color: var(--primary);
}

.mobile-services-toggle.open .toggle-arrow {
  transform: rotate(180deg);
  color: var(--primary);
}

/* Expandable Services Container in Drawer */
.mobile-services-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 4px;
}

.mobile-services-collapse.open {
  max-height: 1400px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.mobile-cat-group {
  margin-bottom: 12px;
  padding: 12px 14px;
  background: #f8fafc;
  border: 1px solid rgba(245, 130, 50, 0.12);
  border-radius: 14px;
}

.mobile-cat-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(245, 130, 50, 0.14);
}

.mobile-sub-link {
  display: block;
  padding: 8px 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #475569;
  text-decoration: none !important;
  border-radius: 8px;
  transition: all 0.2s ease;
  line-height: 1.4;
}

.mobile-sub-link:hover {
  color: var(--primary) !important;
  background: rgba(245, 130, 50, 0.08);
  padding-left: 14px;
}

/* Contact Details in Drawer */
.mobile-drawer-contact {
  background: #f8fafc;
  border: 1px solid rgba(245, 130, 50, 0.15);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-contact-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
}

.mobile-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #475569;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.mobile-contact-item i {
  color: var(--primary);
  font-size: 1rem;
}

.mobile-contact-item:hover {
  color: var(--primary);
}

.mobile-drawer-cta {
  margin-top: auto;
  padding-top: 10px;
}

.mobile-drawer-cta .btn-glow {
  width: 100%;
  justify-content: center;
}

/* ==========================================================================
   8. SERVICE-SPECIFIC HERO BACKGROUNDS & DARK OVERLAYS
   ========================================================================== */
.service-hero-section {
  position: relative;
  padding: 160px 0 100px;
  background-color: var(--bg-dark-hero);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  border-bottom: 1px solid rgba(245, 130, 50, 0.18);
  color: #ffffff;
}

/* Dark Contrast Overlay for Maximum Readability */
.service-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 12, 22, 0.86) 0%, rgba(12, 17, 30, 0.80) 50%, rgba(6, 9, 16, 0.94) 100%),
    radial-gradient(circle at 80% 20%, rgba(245, 130, 50, 0.20) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

/* Ambient Ambient Glow Orb */
.service-hero-section::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 130, 50, 0.22), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
  animation: azPulseGlow 8s ease-in-out infinite;
}

.service-hero-section .container-amazyno {
  position: relative;
  z-index: 2;
}

/* Specialized Service Background Classes */
.service-hero-section.hero-bg-seo {
  background-image: url('../img/hero/hero_seo.jpg');
}

.service-hero-section.hero-bg-target-audience {
  background-image: url('../img/hero/hero_target_audience.jpg');
}

.service-hero-section.hero-bg-ux-ui {
  background-image: url('../img/hero/hero_ux_ui.jpg');
}

.service-hero-section.hero-bg-web-dev {
  background-image: url('../img/hero/hero_web_dev.jpg');
}

.service-hero-section.hero-bg-about {
  background-image: url('../img/hero/hero_about.jpg');
}

.service-hero-section.hero-bg-contact {
  background-image: url('../img/hero/hero_contact.jpg');
}

.service-hero-section.hero-bg-ai {
  background-image: url('../img/hero/hero_ai.jpg');
}

.service-hero-section.hero-bg-creative {
  background-image: url('../img/hero/hero_creative.jpg');
}

.service-hero-section.hero-bg-performance-marketing {
  background-image: url('../img/hero/hero_ai.jpg');
}

/* Hero Typography and Elements */
.service-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-sub-dark);
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-breadcrumb a {
  color: var(--text-sub-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.service-breadcrumb a:hover {
  color: var(--primary-light);
}

.service-breadcrumb span.current {
  color: var(--primary-light);
  font-weight: 700;
}

.service-hero-title {
  font-family: 'Orbitron', 'Outfit', sans-serif;
  font-size: clamp(2.3rem, 4.6vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.service-hero-title .gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.service-hero-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  color: var(--text-sub-dark);
  line-height: 1.8;
  margin-bottom: 34px;
  max-width: 640px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Mobile-Enhanced Hero CTA Container */
.service-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 36px;
}

.service-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.25s ease;
}

.hero-pill:hover {
  background: rgba(245, 130, 50, 0.18);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.hero-pill i {
  color: var(--primary-light);
  font-size: 0.95rem;
}

/* ==========================================================================
   9. GLASS EFFECT ON VISUAL PANELS & CARDS
   ========================================================================== */
/* Interactive Visual Box in Hero */
.service-visual-box {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18),
              0 8px 24px rgba(245, 130, 50, 0.12),
              inset 0 1px 0 rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
  color: var(--text-primary);
}

.service-visual-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-brand);
}

.visual-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(245, 130, 50, 0.14);
}

.visual-title-wrap h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0;
  color: var(--text-primary);
}

.visual-title-wrap p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.visual-metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.metric-card-inner {
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(245, 130, 50, 0.18);
  border-radius: 16px;
  padding: 18px 14px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.metric-card-inner:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 10px 24px rgba(245, 130, 50, 0.15);
}

.metric-card-inner .num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.85rem;
  font-weight: 900;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.metric-card-inner .label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 700;
}

.visual-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.visual-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.visual-checklist li i {
  color: var(--accent-emerald);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Feature Grid Cards */
.service-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.service-feat-card {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 130, 50, 0.16);
  border-radius: 20px;
  padding: 34px 30px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.service-feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-feat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 130, 50, 0.45);
  box-shadow: var(--shadow-card-hover);
}

.service-feat-card:hover::before {
  opacity: 1;
}

.feat-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(245, 130, 50, 0.09);
  border: 1px solid rgba(245, 130, 50, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 22px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-feat-card:hover .feat-icon-box {
  background: var(--gradient-brand);
  color: #ffffff;
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 8px 20px rgba(245, 130, 50, 0.3);
}

.service-feat-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.service-feat-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Process Timeline */
.process-grid-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}

.process-grid-step {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(245, 130, 50, 0.16);
  border-radius: 18px;
  padding: 30px 24px;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.02), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.process-grid-step:hover {
  border-color: var(--primary);
  box-shadow: 0 14px 34px rgba(245, 130, 50, 0.14);
  transform: translateY(-5px);
}

.step-badge-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  background: rgba(245, 130, 50, 0.1);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(245, 130, 50, 0.28);
  transition: all 0.3s ease;
}

.process-grid-step:hover .step-badge-num {
  background: var(--gradient-brand);
  color: #ffffff;
  transform: scale(1.08);
}

.process-grid-step h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.process-grid-step p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* Deliverables Box */
.deliverables-box {
  background: linear-gradient(135deg, rgba(250, 250, 250, 0.95) 0%, rgba(255, 247, 237, 0.85) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 130, 50, 0.24);
  border-radius: 22px;
  padding: 42px;
  margin-top: 48px;
  box-shadow: 0 10px 35px rgba(245, 130, 50, 0.08);
}

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

.deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(245, 130, 50, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 4px 14px rgba(0, 0, 0, 0.02);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.deliverable-item:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
}

.deliverable-item i {
  color: var(--primary);
  font-size: 1.25rem;
  margin-top: 2px;
}

.deliverable-item strong {
  font-family: 'Outfit', sans-serif;
  font-size: 0.98rem;
  color: var(--text-primary);
  display: block;
}

.deliverable-item span {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* FAQ Accordion Component */
.faq-section {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.faq-container {
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(245, 130, 50, 0.16);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.02);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(245, 130, 50, 0.12);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-primary);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question i {
  font-size: 0.95rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--primary);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 26px;
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 26px 22px;
}

/* Service CTA Box & Quote Form */
#quote-form {
  background:
    linear-gradient(135deg, rgba(30, 41, 59, 0.94) 0%, rgba(15, 23, 42, 0.90) 50%, rgba(30, 20, 15, 0.92) 100%),
    url("../img/hero/hero_contact.jpg") center center / cover no-repeat;
  position: relative;
  border-top: 1px solid rgba(245, 130, 50, 0.18);
}

#quote-form .section-heading {
  color: #ffffff;
}

#quote-form .section-subtext {
  color: #cbd5e1;
}

#quote-form .section-badge {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fb923c;
}

.service-cta-card {
  background:
    linear-gradient(135deg, rgba(30, 41, 59, 0.92) 0%, rgba(15, 23, 42, 0.96) 100%),
    url("../img/hero/hero_contact.jpg") center center / cover no-repeat;
  border-radius: 26px;
  padding: 64px 50px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.3);
  margin-top: 40px;
  border: 1px solid rgba(245, 130, 50, 0.28);
}

.service-cta-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 130, 50, 0.35), transparent 70%);
  filter: blur(45px);
  pointer-events: none;
}

.service-cta-card h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 900;
  margin-bottom: 16px;
  color: #ffffff;
}

.service-cta-card p {
  font-size: 1.08rem;
  color: #cbd5e1;
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 34px;
}

/* Value Cards on About Page */
.about-value-card {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(245, 130, 50, 0.16);
  border-radius: 22px;
  padding: 38px 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.about-value-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 22px 48px rgba(245, 130, 50, 0.16);
}

.about-value-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(245, 130, 50, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  margin-bottom: 22px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-value-card:hover .about-value-icon {
  background: var(--gradient-brand);
  color: #ffffff;
  transform: rotate(-8deg) scale(1.1);
  box-shadow: 0 8px 20px rgba(245, 130, 50, 0.3);
}

/* Form Controls */
.form-control-az {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(245, 130, 50, 0.22);
  background: #ffffff;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control-az:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(245, 130, 50, 0.18);
}

/* ==========================================================================
   10. GLOBAL DARK OBSIDIAN FOOTER
   ========================================================================== */
footer {
  background: #12141a !important;
  color: #94a3b8 !important;
  padding: 85px 0 34px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  position: relative;
}

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

.footer-logo {
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
  margin-bottom: 20px !important;
  line-height: 1;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  max-height: 48px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(245, 130, 50, 0.25);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
  transform: scale(1.05);
}

.footer-desc {
  color: #94a3b8 !important;
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-col h6 {
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 22px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #94a3b8 !important;
  text-decoration: none !important;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.footer-links a:hover {
  color: var(--primary-light) !important;
  padding-left: 6px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.5;
}

.footer-contact-list li i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-list li a {
  color: #94a3b8 !important;
  text-decoration: none;
  transition: all 0.25s ease;
  word-break: break-all;
}

.footer-contact-list li a:hover {
  color: var(--primary-light) !important;
  padding-left: 4px;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.footer-social-btn:hover {
  background: var(--gradient-brand) !important;
  border-color: transparent !important;
  color: #ffffff !important;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(245, 130, 50, 0.35);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #64748b !important;
  padding-top: 26px;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  margin: 0;
  color: #64748b !important;
  font-size: 0.88rem;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-bottom-links a {
  color: #64748b !important;
  text-decoration: none !important;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary-light) !important;
}

/* Scroll-to-Top Glass Button */
#scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
  box-shadow: 0 8px 25px rgba(245, 130, 50, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

#scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

#scroll-top-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 35px rgba(245, 130, 50, 0.55);
}

/* Metric Item Variant in Visual Box */
.metric-item {
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(245, 130, 50, 0.18);
  border-radius: 16px;
  padding: 18px 14px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.metric-item:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 10px 24px rgba(245, 130, 50, 0.15);
}

.metric-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.85rem;
  font-weight: 900;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 4px;
  display: block;
}

.metric-desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 700;
  display: block;
}

.visual-status-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  color: #059669;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: dotPulse 2s infinite ease-in-out;
}

/* Contact Card Box */
.contact-card-box {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(245, 130, 50, 0.16);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.contact-card-box:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 18px 40px rgba(245, 130, 50, 0.14);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(245, 130, 50, 0.09);
  border: 1px solid rgba(245, 130, 50, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.contact-card-box:hover .contact-card-icon {
  background: var(--gradient-brand);
  color: #ffffff;
  transform: scale(1.1) rotate(-4deg);
}

.contact-card-content h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.contact-card-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.contact-card-content a {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-card-content a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* ==========================================================================
   11. COMPREHENSIVE RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 1024px) {
  .mega-dropdown-menu {
    width: 760px;
    padding: 24px;
  }
  .mega-menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .service-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .deliverables-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-actions .btn-glow,
  .nav-actions .btn-glass-primary,
  .mega-dropdown-menu {
    display: none !important;
  }

  .nav-hamburger {
    display: flex !important;
  }

  .service-hero-section {
    padding: 130px 0 70px;
  }

  .service-hero-title {
    font-size: 2.2rem;
  }

  .service-hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .service-hero-cta .btn-glow,
  .service-hero-cta .btn-ghost,
  .service-hero-cta .btn-glass-primary,
  .service-hero-cta .btn-glass-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  .service-features-grid {
    grid-template-columns: 1fr;
  }

  .process-grid-row {
    grid-template-columns: 1fr;
  }

  .deliverables-grid {
    grid-template-columns: 1fr;
  }

  .deliverables-box {
    padding: 28px 20px;
  }

  .service-cta-card {
    padding: 40px 24px;
  }

  .visual-metric-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  #scroll-top-btn {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .service-hero-section {
    padding: 115px 0 60px;
  }

  .service-hero-title {
    font-size: 1.85rem;
  }

  .service-visual-box {
    padding: 24px 18px;
  }

  .hero-pill {
    font-size: 0.76rem;
    padding: 6px 12px;
  }
}
