/* ===================================
   CloudManager - Purple Cloud Gradient Theme
   Premium SaaS UI Design
   =================================== */

/* === CSS Variables === */
:root {
  /* Azure Blue + Navy Professional Theme */
  --primary: #1A73E8;
  --secondary: #0F1E38;
  --accent: #00C4FF;
  --background: #F4F8FC;
  --text: #1B1D23;
  --text-light: #636E72;
  --white: #FFFFFF;
  --success: #10B981;
  --warning: #F59E0B;
  --border: #E0EAF4;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #1A73E8 0%, #00C4FF 100%);
  --gradient-hero: linear-gradient(135deg, #0F1E38 0%, #1A73E8 60%, #00C4FF 100%);
  --gradient-accent: linear-gradient(135deg, #00C4FF 0%, #0099CC 100%);
  --gradient-glow: radial-gradient(circle, rgba(0, 196, 255, 0.3) 0%, transparent 70%);
  
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-2xl: 64px;
  --spacing-3xl: 96px;
  
  /* Border Radius */
  --radius-sm: 16px;
  --radius-md: 20px;
  --radius-lg: 24px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(26, 115, 232, 0.08);
  --shadow-md: 0 8px 24px rgba(26, 115, 232, 0.12);
  --shadow-lg: 0 16px 48px rgba(26, 115, 232, 0.16);
  --shadow-xl: 0 24px 64px rgba(26, 115, 232, 0.2);
  --shadow-neon: 0 8px 32px rgba(0, 196, 255, 0.4);
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Animations */
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Global Styles === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--text);
  background: var(--background);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

/* === Two-Tier Header === */
.purple-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: white;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.purple-header.scrolled {
  box-shadow: var(--shadow-md);
}

/* Top Header Bar */
.top-header-bar {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.header-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.header-logo img {
  height: 48px;
  width: auto;
  display: block;
}

.header-search {
  flex: 1;
  max-width: 500px;
  position: relative;
}

.header-search input {
  width: 100%;
  padding: 12px 50px 12px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--background);
}

.header-search input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
  background: white;
}

.header-search button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.header-search button:hover {
  background: var(--dark);
  transform: translateY(-50%) scale(1.05);
}

.header-nav {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav > li > a {
  position: relative;
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 16px 24px;
  display: block;
  transition: var(--transition-fast);
}

.header-nav > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: white;
  transition: var(--transition);
}

.header-nav > li > a:hover::after,
.header-nav > li > a.active::after {
  width: 80%;
}

.header-nav > li > a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.header-nav .dropdown {
  position: relative;
}

/* Bridge the gap between trigger and dropdown to prevent disappearing */
.header-nav .dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px;
  display: none;
}

.header-nav .dropdown:hover::after {
  display: block;
}

.header-nav .dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 280px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 
              0 0 0 1px rgba(26, 115, 232, 0.1);
  padding: 12px;
  display: none;
  /* Scrollable after ~6 items (each item ~48px + padding) */
  max-height: 320px;
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  z-index: 1000;
  pointer-events: none;
}

.header-nav .dropdown:hover .dropdown-menu,
.header-nav .dropdown-menu:hover {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: dropdownFadeIn 0.3s ease;
  pointer-events: auto;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mega-menu {
  min-width: 320px;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: var(--text);
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.dropdown-menu li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transition: transform 0.2s ease;
}

.dropdown-menu li a:hover::before {
  transform: scaleY(1);
}

.dropdown-menu li a:hover {
  background: linear-gradient(135deg, rgba(26, 115, 232, 0.08) 0%, rgba(0, 196, 255, 0.05) 100%);
  color: var(--primary);
  padding-left: 20px;
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.1);
}

.dropdown-menu li a i {
  color: var(--primary);
  opacity: 0.7;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.dropdown-menu li a:hover i {
  opacity: 1;
  transform: scale(1.1);
  color: var(--accent);
}

/* Custom scrollbar for dropdown menus */
.header-nav .dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

.header-nav .dropdown-menu::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.header-nav .dropdown-menu::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 3px;
}

.header-nav .dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.header-actions a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
}

.header-actions a:hover {
  background: rgba(26, 115, 232, 0.08);
  color: var(--primary);
}

/* User Dashboard Link */
.header-actions .user-dashboard-link {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white !important;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.header-actions .user-dashboard-link:hover {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(26, 115, 232, 0.4);
}

/* Logout Link */
.header-actions .logout-link {
  color: #EF4444 !important;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.header-actions .logout-link:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #DC2626 !important;
  border-color: rgba(239, 68, 68, 0.3);
}

.header-actions .btn-primary {
  padding: 8px 20px;
  font-size: 0.9rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--text);
  cursor: pointer;
}

/* Navigation Bar (Below Header) */
.navigation-bar {
  background: linear-gradient(135deg, #0F1E38 0%, #1A4D8F 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navigation-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  justify-content: center;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-accent {
  background: var(--gradient-accent);
  color: white;
  box-shadow: var(--shadow-neon);
}

.btn-accent:hover {
  box-shadow: 0 12px 40px rgba(0, 229, 255, 0.6);
  transform: translateY(-2px) scale(1.02);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-outline:hover {
  background: white !important;
  color: #0F1E38 !important;
  border: 2px solid white !important;
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.8),
              0 0 30px rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

/* === Hero Carousel Section === */
.hero-carousel-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 128px; /* Adjusted for two-tier header */
}

@media (max-width: 1024px) {
  .hero-carousel-section {
    padding-top: 140px;
  }
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

/* Color Theme Variants */
.hero-slide-blue {
  background: linear-gradient(135deg, #0F1E38 0%, #1A73E8 60%, #00C4FF 100%);
}

.hero-slide-purple {
  background: linear-gradient(135deg, #2D1B69 0%, #7B2CBF 60%, #C77DFF 100%);
}

.hero-slide-green {
  background: linear-gradient(135deg, #064E3B 0%, #059669 60%, #10B981 100%);
}

.hero-slide-orange {
  background: linear-gradient(135deg, #7C2D12 0%, #EA580C 60%, #FB923C 100%);
}

.hero-slide-red {
  background: linear-gradient(135deg, #7F1D1D 0%, #DC2626 60%, #F87171 100%);
}

.hero-slide-cyan {
  background: linear-gradient(135deg, #164E63 0%, #0891B2 60%, #22D3EE 100%);
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* Carousel Indicators */
.hero-carousel-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid white;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.hero-indicator.active {
  background: white;
  width: 40px;
  border-radius: var(--radius-full);
}

.hero-indicator:hover {
  background: rgba(255, 255, 255, 0.7);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

/* Floating Clouds */
.floating-cloud {
  position: absolute;
  width: 220px;
  height: 90px;
  opacity: 0.8;
  animation: floatCloud 25s ease-in-out infinite;
  pointer-events: none;
}

.floating-cloud svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.1));
}

.floating-cloud.cloud-1 {
  top: 15%;
  left: 5%;
  animation-delay: 0s;
  animation-duration: 22s;
}

.floating-cloud.cloud-2 {
  top: 55%;
  right: 8%;
  animation-delay: 7s;
  animation-duration: 28s;
  width: 180px;
  height: 75px;
}

.floating-cloud.cloud-3 {
  top: 25%;
  left: 75%;
  animation-delay: 14s;
  animation-duration: 25s;
  width: 200px;
  height: 82px;
}

.floating-cloud.cloud-4 {
  top: 70%;
  left: 30%;
  animation-delay: 3s;
  animation-duration: 30s;
  width: 160px;
  height: 70px;
  opacity: 0.5;
}

.floating-cloud.cloud-5 {
  top: 40%;
  right: 25%;
  animation-delay: 10s;
  animation-duration: 24s;
  width: 190px;
  height: 78px;
  opacity: 0.6;
}

@keyframes floatCloud {
  0%, 100% { 
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.6;
  }
  25% { 
    transform: translateY(-40px) translateX(30px) scale(1.05);
    opacity: 0.8;
  }
  50% { 
    transform: translateY(-20px) translateX(-25px) scale(0.95);
    opacity: 0.7;
  }
  75% { 
    transform: translateY(-50px) translateX(15px) scale(1.02);
    opacity: 0.75;
  }
}

/* Neon Particles */
.neon-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.neon-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--accent);
  animation: particleFloat 15s ease-in-out infinite;
}

.neon-particle:nth-child(1) {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.neon-particle:nth-child(2) {
  top: 50%;
  left: 80%;
  animation-delay: 3s;
}

.neon-particle:nth-child(3) {
  top: 70%;
  left: 40%;
  animation-delay: 6s;
}

.neon-particle:nth-child(4) {
  top: 40%;
  left: 60%;
  animation-delay: 9s;
}

@keyframes particleFloat {
  0%, 100% { transform: translate(0, 0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  50% { transform: translate(100px, -200px); }
}

/* Floating Orbs on Left Side */
.hero-floating-orbs {
  position: absolute;
  left: 8%;
  top: 55%;
  transform: translateY(-50%);
  width: 140px;
  height: 240px;
  pointer-events: none;
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(0, 229, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 32px rgba(0, 229, 255, 0.3),
              inset 0 0 20px rgba(255, 255, 255, 0.1);
  animation: floatOrb 6s ease-in-out infinite;
}

.floating-orb.orb-1 {
  width: 65px;
  height: 65px;
  top: 0;
  left: 0;
  animation-delay: 0s;
  animation-duration: 5s;
}

.floating-orb.orb-2 {
  width: 55px;
  height: 55px;
  top: 85px;
  left: 40px;
  animation-delay: 1.5s;
  animation-duration: 6s;
}

.floating-orb.orb-3 {
  width: 60px;
  height: 60px;
  top: 165px;
  left: 8px;
  animation-delay: 3s;
  animation-duration: 5.5s;
}

@keyframes floatOrb {
  0%, 100% { 
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.8;
  }
  25% { 
    transform: translateY(-20px) translateX(10px) scale(1.05);
    opacity: 1;
  }
  50% { 
    transform: translateY(-30px) translateX(-10px) scale(0.95);
    opacity: 0.9;
  }
  75% { 
    transform: translateY(-15px) translateX(15px) scale(1.02);
    opacity: 0.85;
  }
}

/* 3D Rotating Cube */
.hero-3d-cube {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
}

.cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateCube 20s linear infinite;
}

.cube-face {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(0, 229, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.6);
}

.cube-face.front  { transform: translateZ(100px); }
.cube-face.back   { transform: rotateY(180deg) translateZ(100px); }
.cube-face.right  { transform: rotateY(90deg) translateZ(100px); }
.cube-face.left   { transform: rotateY(-90deg) translateZ(100px); }
.cube-face.top    { transform: rotateX(90deg) translateZ(100px); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(100px); }

@keyframes rotateCube {
  from { transform: rotateX(0deg) rotateY(0deg); }
  to { transform: rotateX(360deg) rotateY(360deg); }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px var(--spacing-md) 0;
  text-align: center;
}

.hero-title {
  color: white;
  font-weight: 900;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease;
  font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  margin: 0 auto var(--spacing-xl);
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

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

.scroll-indicator i {
  color: white;
  font-size: 2rem;
  opacity: 0.7;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Welcome Note === */
.welcome-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
}

.welcome-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26, 115, 232, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatCircle 20s ease-in-out infinite;
}

.welcome-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatCircle 15s ease-in-out infinite reverse;
}

@keyframes floatCircle {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

.welcome-note {
  position: relative;
  background: white;
  border-radius: 24px;
  padding: 48px 60px;
  box-shadow: 0 10px 40px rgba(26, 115, 232, 0.1), 
              0 0 0 1px rgba(26, 115, 232, 0.05);
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  transition: var(--transition);
  animation: fadeInUp 0.8s ease-out;
}

.welcome-note:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(26, 115, 232, 0.15), 
              0 0 0 1px rgba(26, 115, 232, 0.08);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.welcome-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  box-shadow: 0 8px 24px rgba(108, 92, 231, 0.3);
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(26, 115, 232, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 8px 32px rgba(26, 115, 232, 0.5), 
                0 0 24px rgba(0, 229, 255, 0.3);
    transform: scale(1.05);
  }
}

.welcome-content {
  flex: 1;
}

.welcome-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text);
  margin: 0;
}

.welcome-content strong {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.welcome-note a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: var(--transition);
  padding: 4px 12px;
  border-radius: 8px;
  background: rgba(26, 115, 232, 0.05);
}

.welcome-note a:hover {
  background: rgba(26, 115, 232, 0.1);
  color: var(--dark);
}

.welcome-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.welcome-actions .cta-primary,
.welcome-actions .cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.welcome-actions .cta-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 12px 24px rgba(26, 115, 232, 0.25);
}

.welcome-actions .cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(26, 115, 232, 0.3);
}

.welcome-actions .cta-secondary {
  border: 1px solid rgba(26, 115, 232, 0.25);
  color: var(--primary);
  background: rgba(26, 115, 232, 0.05);
}

.welcome-actions .cta-secondary:hover {
  background: rgba(26, 115, 232, 0.1);
  color: var(--dark);
}

.welcome-actions i {
  width: 18px;
  height: 18px;
}

.welcome-badges {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.welcome-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(26, 115, 232, 0.08) 0%, rgba(0, 196, 255, 0.08) 100%);
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  border: 1px solid rgba(26, 115, 232, 0.15);
  animation: fadeIn 1s ease-out backwards;
}

.welcome-badge:nth-child(1) { animation-delay: 0.2s; }
.welcome-badge:nth-child(2) { animation-delay: 0.4s; }
.welcome-badge:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.welcome-badge i {
  color: var(--accent);
}

.welcome-illustration {
  flex-shrink: 0;
  width: 280px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.welcome-illustration svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 16px rgba(26, 115, 232, 0.15));
}

/* Responsive Welcome Section */
@media (max-width: 1024px) {
  .welcome-illustration {
    width: 220px;
    height: 180px;
  }
}

@media (max-width: 768px) {
  .hero-floating-orbs {
    left: 5%;
    width: 120px;
    height: 200px;
  }
  
  .floating-orb.orb-1 {
    width: 60px;
    height: 60px;
  }
  
  .floating-orb.orb-2 {
    width: 50px;
    height: 50px;
    top: 70px;
    left: 30px;
  }
  
  .floating-orb.orb-3 {
    width: 55px;
    height: 55px;
    top: 140px;
    left: 5px;
  }
  
  .hero-3d-cube {
    right: 5%;
    width: 120px;
    height: 120px;
  }
  
  .cube-face {
    width: 120px;
    height: 120px;
  }
  
  .cube-face.front  { transform: translateZ(60px); }
  .cube-face.back   { transform: rotateY(180deg) translateZ(60px); }
  .cube-face.right  { transform: rotateY(90deg) translateZ(60px); }
  .cube-face.left   { transform: rotateY(-90deg) translateZ(60px); }
  .cube-face.top    { transform: rotateX(90deg) translateZ(60px); }
  .cube-face.bottom { transform: rotateX(-90deg) translateZ(60px); }
  
  .section {
    padding: 40px 0;
  }
  
  .welcome-section {
    padding: 30px 0;
  }
  
  .welcome-note {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 24px;
  }
  
  .welcome-icon {
    width: 64px;
    height: 64px;
    font-size: 2rem;
  }
  
  .welcome-content p {
    font-size: 1rem;
  }
  
  .welcome-badges {
    justify-content: center;
  }
  
  .welcome-illustration {
    width: 100%;
    max-width: 300px;
    height: 200px;
  }
  
  .section-header {
    margin-bottom: 30px;
  }
  
  .hero-content {
    padding: 60px var(--spacing-md) 0;
  }
}

/* === Section Styles === */
.section {
  padding: 60px 0;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  margin-bottom: var(--spacing-sm);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* === Service Cards === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(15, 30, 56, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
  border: 1px solid rgba(26, 115, 232, 0.08);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #1A73E8 0%, #00C4FF 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(15, 30, 56, 0.15),
              0 0 0 1px rgba(26, 115, 232, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: #FFFFFF;
  border: 2px solid rgba(102, 126, 234, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1),
              0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.service-icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 23px;
  background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  filter: blur(12px);
}

.service-card:hover .service-icon {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(102, 126, 234, 0.25),
              0 4px 12px rgba(102, 126, 234, 0.15);
  border-color: rgba(102, 126, 234, 0.3);
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FF 100%);
}

.service-card:hover .service-icon::after {
  opacity: 0.4;
}

.service-icon i {
  width: 40px;
  height: 40px;
  color: #667EEA;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.2));
  stroke-width: 2.5;
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon i {
  color: #764BA2;
  transform: scale(1.1);
}

.service-tag {
  display: inline-block;
  background: rgba(26, 115, 232, 0.1);
  color: #1A73E8;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: var(--spacing-sm);
  letter-spacing: 0.5px;
  border: 1px solid rgba(26, 115, 232, 0.2);
}

.service-tag.special {
  background: rgba(0, 196, 255, 0.1);
  color: #00C4FF;
  border-color: rgba(0, 196, 255, 0.2);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
  color: #0F1E38;
  line-height: 1.3;
  text-align: center;
}

.service-card p {
  color: #636E72;
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
  font-size: 0.95rem;
  text-align: center;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-lg);
  margin-top: var(--spacing-md);
  border-top: 1px solid rgba(26, 115, 232, 0.08);
  position: relative;
  z-index: 5;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0F1E38;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.service-price > span:last-child {
  font-size: 1rem;
  font-weight: 400;
  color: #636E72;
  white-space: nowrap;
}

.service-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
}

.service-link {
  padding: 10px 20px;
  border-radius: 10px;
  background: #1A73E8;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.25);
  white-space: nowrap;
}

.service-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 115, 232, 0.35);
  background: #1563D1;
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(4px);
}

/* === Special Services === */
.special-service-card {
  border: 2px solid var(--primary);
  background: linear-gradient(135deg, rgba(26, 115, 232, 0.03) 0%, rgba(0, 196, 255, 0.05) 100%);
}

/* === Special Enterprise Services Section === */
.special-services-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #0F1E38 0%, #1A73E8 50%, #00C4FF 100%);
  overflow: hidden;
}

.special-services-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  opacity: 0.15;
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
}

.bg-shape.shape-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -150px;
  animation: floatShape 25s ease-in-out infinite;
}

.bg-shape.shape-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  animation: floatShape 20s ease-in-out infinite reverse;
}

.bg-shape.shape-3 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: floatShape 30s ease-in-out infinite;
}

@keyframes floatShape {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(50px, -50px) scale(1.1);
  }
}

.special-section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  animation: premiumPulse 3s ease-in-out infinite;
}

@keyframes premiumPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.5),
                0 0 60px rgba(0, 229, 255, 0.3);
  }
}

.premium-badge i {
  color: #FFD700;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.special-section-header h2 {
  color: white;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.special-section-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.special-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Enhanced Special Service Cards */
.special-services-grid .service-card {
  background: white;
  border-radius: 24px;
  padding: 40px 32px;
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2),
              0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.special-services-grid .service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #1A73E8 0%, #00C4FF 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.special-services-grid .service-card:hover::before {
  transform: scaleX(1);
}

.special-services-grid .service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3),
              0 0 0 1px rgba(26, 115, 232, 0.2),
              0 0 40px rgba(26, 115, 232, 0.3);
}

.special-services-grid .service-badge {
  background: linear-gradient(135deg, #00C4FF 0%, #1A73E8 100%);
  color: white;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 229, 255, 0.3);
  display: inline-block;
  margin: 0 auto 12px;
}

.special-services-grid .service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1A73E8 0%, #00C4FF 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  box-shadow: 0 10px 30px rgba(26, 115, 232, 0.3);
  transition: var(--transition);
}

.special-services-grid .service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(26, 115, 232, 0.5);
}

.special-services-grid .service-icon i {
  color: white;
  font-size: 2.5rem;
}

.special-services-grid .service-title {
  font-size: 1.75rem;
  color: var(--text);
  margin-bottom: 12px;
  font-weight: 800;
  text-align: center;
}

.special-services-grid .service-description {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 1rem;
  text-align: center;
}

.special-services-grid .service-price {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #1A73E8 0%, #00C4FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.special-services-grid .service-price-period {
  color: var(--text-light);
  font-size: 1rem;
}

.special-services-grid .service-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(0, 229, 255, 0.08);
  border-radius: var(--radius-full);
  transition: var(--transition);
  border: 2px solid transparent;
}

.special-services-grid .service-link:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .special-services-section {
    padding: 60px 0;
  }
  
  .special-section-header {
    margin-bottom: 40px;
  }
  
  .special-services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* === Package Cards === */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.package-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  position: relative;
  border: 2px solid transparent;
}

.package-card.featured {
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
              var(--gradient-primary) border-box;
  transform: scale(1.05);
  box-shadow: var(--shadow-xl), 0 0 60px rgba(26, 115, 232, 0.3);
}

.package-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  padding: 8px 24px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.package-card h3 {
  font-size: 2rem;
  margin: var(--spacing-md) 0;
}

.package-price {
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: var(--spacing-md) 0;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: var(--spacing-xl) 0;
  text-align: left;
}

.package-features li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: checkmarkAppear 0.3s ease forwards;
  opacity: 0;
}

.package-card:hover .package-features li {
  animation: checkmarkAppear 0.3s ease forwards;
}

.package-features li:nth-child(1) { animation-delay: 0.1s; }
.package-features li:nth-child(2) { animation-delay: 0.2s; }
.package-features li:nth-child(3) { animation-delay: 0.3s; }
.package-features li:nth-child(4) { animation-delay: 0.4s; }
.package-features li:nth-child(5) { animation-delay: 0.5s; }

@keyframes checkmarkAppear {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.package-features li i {
  color: var(--success);
  font-size: 1.25rem;
}

/* === Guarantee Box === */
.guarantee-box {
  background: linear-gradient(135deg, #00B894, #00CEC9);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  color: white;
  text-align: center;
  box-shadow: var(--shadow-lg);
  margin: var(--spacing-2xl) 0;
  position: relative;
  overflow: hidden;
}

.guarantee-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
}

.guarantee-box h3 {
  font-size: 2rem;
  margin-bottom: var(--spacing-md);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.guarantee-box p {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
  color: white;
  position: relative;
  z-index: 1;
}

/* === Service Updates === */
.updates-box {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  max-width: 900px;
  margin: var(--spacing-2xl) auto;
  border: 2px solid rgba(26, 115, 232, 0.1);
}

.updates-box h3 {
  font-size: 2rem;
  margin-bottom: var(--spacing-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.update-item {
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  background: rgba(26, 115, 232, 0.03);
  margin-bottom: var(--spacing-md);
  transition: var(--transition);
  border: 1px solid transparent;
}

.update-item:hover {
  background: rgba(26, 115, 232, 0.08);
  border-color: var(--primary);
  transform: translateX(8px);
}

.update-item.is-pinned {
  border-color: rgba(194, 65, 12, 0.4);
  background: rgba(251, 146, 60, 0.08);
}

.update-item h4 {
  font-size: 1.05rem;
  margin: 0;
}

.update-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.update-link:hover {
  color: var(--accent);
}

.updates-footer {
  text-align: center;
  margin-top: var(--spacing-lg);
}

/* === Footer === */
.purple-footer {
  background: linear-gradient(180deg, #2D3436 0%, #1E272E 100%);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--spacing-3xl) 0 var(--spacing-md);
  position: relative;
  overflow: hidden;
}

.purple-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: radial-gradient(circle at 50% 0%, rgba(26, 115, 232, 0.05) 0%, transparent 70%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-2xl);
  position: relative;
  z-index: 1;
}

.footer-column h4 {
  color: white;
  font-size: 1.125rem;
  margin-bottom: var(--spacing-md);
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
  margin-right: var(--spacing-sm);
}

.footer-social a:hover {
  background: var(--gradient-primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.4);
}

/* === ChatBox === */
.chatbox-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.chatbox-toggle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: var(--shadow-xl), 0 0 40px rgba(26, 115, 232, 0.5);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: chatPulse 2s ease infinite;
}

@keyframes chatPulse {
  0%, 100% { box-shadow: var(--shadow-xl), 0 0 40px rgba(26, 115, 232, 0.5); }
  50% { box-shadow: var(--shadow-xl), 0 0 60px rgba(26, 115, 232, 0.8); }
}

.chatbox-toggle:hover {
  transform: scale(1.1);
}

.chatbox-window {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 400px;
  height: 600px;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chatbox-window.active {
  display: flex;
  animation: slideInUp 0.4s ease;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chatbox-header {
  background: var(--gradient-primary);
  color: white;
  padding: var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbox-messages {
  flex: 1;
  padding: var(--spacing-md);
  overflow-y: auto;
  background: var(--background);
}

.chat-bubble {
  background: white;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  max-width: 80%;
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--spacing-sm);
}

.chat-message.user .chat-bubble {
  background: var(--gradient-primary);
  color: white;
  margin-left: auto;
}

/* === Mobile Menu Overlay === */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 999;
  display: none;
}

.mobile-menu-overlay.active {
  display: block;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 90vw;
  height: 100vh;
  background: white;
  z-index: 1001;
  transition: right 0.3s ease;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md);
  border-bottom: 2px solid var(--border);
  background: var(--gradient-primary);
  color: white;
}

.mobile-menu-header h3 {
  font-size: 1.25rem;
  margin: 0;
  color: white;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.75rem;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-nav > li {
  border-bottom: 1px solid var(--border);
}

.mobile-menu-nav > li[style*="border-top"] {
  border-top: 2px solid var(--border) !important;
  margin-top: 8px;
  padding-top: 8px;
  border-bottom: none;
}

.mobile-menu-nav > li > a {
  display: flex;
  align-items: center;
  padding: 16px var(--spacing-md);
  color: var(--text);
  text-decoration: none;
  transition: var(--transition-fast);
  font-weight: 500;
}

.mobile-menu-nav > li > a:hover {
  background: rgba(26, 115, 232, 0.05);
  color: var(--primary);
}

.mobile-menu-nav > li > a i:first-child {
  margin-right: 12px;
  flex-shrink: 0;
}

.mobile-menu-nav > li > a .submenu-toggle-icon {
  margin-left: auto;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.mobile-menu-nav > li.active > a .submenu-toggle-icon {
  transform: rotate(180deg);
}

.mobile-menu-nav .submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--background);
  display: none;
}

.mobile-menu-nav .submenu.active {
  display: block;
}

.mobile-menu-nav .submenu li {
  border-bottom: 1px solid rgba(224, 234, 244, 0.5);
}

.mobile-menu-nav .submenu li:last-child {
  border-bottom: none;
}

.mobile-menu-nav .submenu a {
  display: block;
  padding: 12px var(--spacing-md) 12px calc(var(--spacing-md) + 24px);
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.mobile-menu-nav .submenu a:hover {
  background: rgba(26, 115, 232, 0.08);
  color: var(--primary);
  padding-left: calc(var(--spacing-md) + 32px);
}

/* === Responsive === */
@media (max-width: 1024px) {
  .navigation-bar {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .header-search {
    max-width: 300px;
    flex: 0 1 auto;
  }
  
  .header-actions a {
    font-size: 0;
  }
  
  .header-actions a i {
    margin: 0;
  }
  
  .hero-3d-cube {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-header-bar .header-container {
    gap: var(--spacing-sm);
    flex-wrap: wrap;
  }
  
  .header-logo {
    flex-shrink: 0;
  }
  
  .header-logo img {
    height: 40px;
  }
  
  .header-search {
    order: 3;
    flex: 1 1 100%;
    max-width: 100%;
    margin-top: 8px;
    min-width: 0;
  }
  
  .header-search input {
    font-size: 0.85rem;
    padding: 10px 40px 10px 16px;
  }
  
  .header-actions {
    gap: 4px;
    flex-shrink: 0;
    margin-left: auto;
  }
  
  .header-actions a:nth-child(n+3) {
    display: none;
  }
  
  .mobile-toggle {
    order: 2;
    margin-left: auto;
  }
  
  .hero-carousel-section {
    padding-top: 80px;
  }
  
  .hero-section {
    min-height: 90vh;
  }
  
  .services-grid,
  .packages-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .chatbox-window {
    width: calc(100vw - 60px);
    right: 15px;
  }
}

@media (max-width: 480px) {
  .top-header-bar .header-container {
    padding: 0 12px;
  }
  
  .header-logo img {
    height: 36px;
  }
  
  .header-search {
    margin-top: 6px;
  }
  
  .header-search input {
    font-size: 0.8rem;
    padding: 8px 36px 8px 14px;
  }
  
  .header-search button {
    width: 32px;
    height: 32px;
    right: 4px;
  }
  
  .header-actions {
    gap: 2px;
  }
  
  .header-actions a {
    padding: 6px 10px;
  }
}

/* ===================================
   AUTH PAGES (Login & Sign Up)
   =================================== */

.auth-section {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F4F8FC 0%, #E0EAF4 100%);
  padding: 40px 20px;
  margin-top: 120px;
}

.auth-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  width: 100%;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(15, 30, 56, 0.15);
  margin: 0 auto;
  min-height: fit-content;
}

/* Form Side */
.auth-form-side {
  padding: 30px 40px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: visible;
  overflow-x: visible;
}

.auth-form-wrapper {
  width: 100%;
  max-width: 420px;
  overflow: visible;
}

.auth-header {
  text-align: center;
  margin-bottom: 20px;
}

.auth-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.auth-logo img {
  height: 48px;
  width: auto;
  display: block;
}

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

.auth-header h1 {
  font-size: 2rem;
  color: #0F1E38;
  margin-bottom: 12px;
  font-weight: 700;
}

.auth-header p {
  color: #636E72;
  font-size: 1rem;
}

/* Form Styles */
.auth-form {
  margin-top: 20px;
}

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

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0F1E38;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"] {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E0EAF4;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  color: #0F1E38;
}

.form-group input:focus {
  outline: none;
  border-color: #1A73E8;
  box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.1);
}

.password-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-toggle {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: #636E72;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.password-toggle:hover {
  color: #1A73E8;
}

/* Password Strength */
.password-strength {
  margin-top: 8px;
}

.strength-bar {
  height: 4px;
  background: #E0EAF4;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 6px;
}

.strength-bar-fill {
  height: 100%;
  width: 0%;
  background: #E0EAF4;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.strength-text {
  font-size: 0.8rem;
  color: #636E72;
  font-weight: 500;
}

/* Form Row */
.form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #636E72;
  cursor: pointer;
  user-select: none;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #1A73E8;
}

.forgot-link {
  color: #1A73E8;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.forgot-link:hover {
  color: #00C4FF;
}

/* Auth Buttons */
.btn-auth {
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-auth-primary {
  background: linear-gradient(135deg, #1A73E8 0%, #00C4FF 100%);
  color: white;
  box-shadow: 0 8px 24px rgba(26, 115, 232, 0.3);
}

.btn-auth-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26, 115, 232, 0.4);
}

/* Social Login */
.social-divider {
  text-align: center;
  margin: 30px 0 20px;
  position: relative;
}

.social-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #E0EAF4;
}

.social-divider span {
  background: white;
  padding: 0 16px;
  color: #636E72;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

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

.btn-social {
  padding: 12px;
  border: 2px solid #E0EAF4;
  border-radius: 10px;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0F1E38;
  transition: all 0.3s ease;
}

.btn-social:hover {
  border-color: #1A73E8;
  background: rgba(26, 115, 232, 0.05);
  transform: translateY(-2px);
}

.btn-social svg {
  flex-shrink: 0;
}

/* Auth Footer */
.auth-footer {
  text-align: center;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #E0EAF4;
}

.auth-footer p {
  color: #636E72;
  font-size: 0.95rem;
}

.auth-footer a {
  color: #1A73E8;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.auth-footer a:hover {
  color: #00C4FF;
}

/* Info Side */
.auth-info-side {
  background: linear-gradient(135deg, #0F1E38 0%, #1A73E8 60%, #00C4FF 100%);
  padding: 25px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.auth-info-side::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatShape 20s ease-in-out infinite;
}

.auth-info-side::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatShape 25s ease-in-out infinite reverse;
}

.auth-info-content {
  position: relative;
  z-index: 1;
  max-width: 420px;
  overflow: visible;
}

.auth-info-icon {
  margin-bottom: 30px;
  color: white;
  opacity: 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.auth-info-icon.floating-icon {
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

.auth-info-content h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  font-weight: 700;
  color: white;
}

.auth-info-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 32px;
}

/* Trust Statistics */
.auth-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.auth-stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.9;
  font-weight: 500;
}

.auth-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 2rem;
  margin-bottom: 0;
}

.auth-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 0;
}

.auth-feature i {
  color: #00C4FF;
  flex-shrink: 0;
}

.auth-feature span {
  color: white;
}

/* Cloud Platforms */
.auth-platforms {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.platform-label {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 16px;
  font-weight: 600;
}

.platform-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.platform-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  backdrop-filter: blur(5px);
}

.platform-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.platform-icon i {
  color: white;
}

.platform-icon span {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 1024px) {
  .auth-container {
    grid-template-columns: 1fr;
  }
  
  .auth-info-side {
    display: none;
  }
  
  .auth-form-side {
    padding: 40px 30px;
  }
}

@media (max-width: 640px) {
  .auth-section {
    padding: 120px 15px 40px;
  }
  
  .auth-container {
    border-radius: 16px;
  }
  
  .auth-form-side {
    padding: 30px 20px;
  }
  
  .auth-header h1 {
    font-size: 1.75rem;
  }
  
  .social-buttons {
    grid-template-columns: 1fr;
  }
  
  .btn-social {
    justify-content: center;
  }
  
  .auth-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .auth-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .platform-icons {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===================================
   CONTACT US PAGE
   =================================== */

.contact-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #F4F8FC 0%, #E0EAF4 100%);
  padding: 180px 20px 80px;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
}

.contact-page-header {
  text-align: center;
  margin-bottom: 80px;
}

.contact-page-header h1 {
  font-size: 2.75rem;
  color: #0F1E38;
  margin-bottom: 16px;
  font-weight: 800;
}

.contact-page-header p {
  font-size: 1.2rem;
  color: #636E72;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.contact-content-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Contact Form Side */
.contact-form-side {
  width: 100%;
}

.contact-form-card {
  background: white;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 80px rgba(15, 30, 56, 0.1);
}

.contact-form-card h2 {
  font-size: 1.75rem;
  color: #0F1E38;
  margin-bottom: 12px;
  font-weight: 700;
}

.form-subtitle {
  color: #636E72;
  margin-bottom: 32px;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-form .form-group {
  margin-bottom: 24px;
}

.contact-form input[type="text"],
.contact-form input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E0EAF4;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  color: #0F1E38;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus {
  outline: none;
  border-color: #1A73E8;
  box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.1);
}

.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E0EAF4;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  color: #0F1E38;
  cursor: pointer;
}

.contact-form select:focus {
  outline: none;
  border-color: #1A73E8;
  box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.1);
}

.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E0EAF4;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  color: #0F1E38;
  resize: vertical;
  font-family: inherit;
  min-height: 120px;
}

.contact-form textarea:focus {
  outline: none;
  border-color: #1A73E8;
  box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.1);
}

/* Contact Info Side */
.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(15, 30, 56, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(26, 115, 232, 0.08);
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(15, 30, 56, 0.12);
  border-color: rgba(26, 115, 232, 0.15);
}

.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(26, 115, 232, 0.1) 0%, rgba(0, 196, 255, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #1A73E8;
}

.contact-info-card h3 {
  font-size: 1.25rem;
  color: #0F1E38;
  margin-bottom: 8px;
  font-weight: 700;
}

.contact-info-card p {
  color: #636E72;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.contact-info-card a {
  color: #1A73E8;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.contact-info-card a:hover {
  color: #00C4FF;
  transform: translateX(4px);
}

.contact-info-card address {
  font-style: normal;
  line-height: 1.7;
  color: #636E72;
}

/* Social Media */
.contact-social {
  background: linear-gradient(135deg, #0F1E38 0%, #1A73E8 60%, #00C4FF 100%);
  border-radius: 20px;
  padding: 32px;
  color: white;
}

.contact-social h3 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Temporary: hide all public-facing social media UI */
.footer-social,
.social-links,
.social-buttons,
.btn-social,
.social-divider,
.contact-social {
  display: none !important;
}

/* Response Time Badge */
.response-time-badge {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
  border: 2px solid rgba(16, 185, 129, 0.2);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #059669;
}

.response-time-badge i {
  flex-shrink: 0;
}

.response-time-badge strong {
  display: block;
  color: #0F1E38;
  font-size: 1rem;
  margin-bottom: 4px;
}

.response-time-badge p {
  color: #636E72;
  margin: 0;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-content-wrapper {
    grid-template-columns: 1fr;
  }
  
  .contact-form-card {
    padding: 36px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 140px 15px 60px;
  }
  
  .contact-page-header {
    margin-bottom: 50px;
  }
  
  .contact-page-header h1 {
    font-size: 2rem;
  }
  
  .contact-page-header p {
    font-size: 1rem;
  }
  
  .contact-form-card {
    padding: 28px 20px;
  }
  
  .contact-info-card {
    padding: 24px;
  }
  
  .social-links {
    flex-wrap: wrap;
  }
}

/* ===================================
   SERVICES LISTING PAGE
   =================================== */

.services-page {
  min-height: 100vh;
  background: #F4F8FC;
}

.services-hero {
  background: linear-gradient(135deg, #0F1E38 0%, #1A73E8 60%, #00C4FF 100%);
  color: white;
  padding: 140px 0 80px;
}

.services-hero .breadcrumb {
  background: none;
  padding: 0;
  margin-bottom: 20px;
}

.services-hero .breadcrumb-item,
.services-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.services-hero .breadcrumb-item a:hover {
  color: #00C4FF;
}

.services-hero .breadcrumb-item.active {
  color: white;
}

.services-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.6);
}

.services-hero h1 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.services-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.services-container {
  padding: 60px 15px;
  max-width: 1400px;
}

.services-toolbar {
  background: white;
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 40px;
  box-shadow: 0 8px 32px rgba(15, 30, 56, 0.08);
}

.search-box {
  position: relative;
  display: flex;
  gap: 12px;
}

.search-box > i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #636E72;
  width: 20px;
  height: 20px;
  z-index: 1;
}

.search-input {
  flex: 1;
  padding: 14px 16px 14px 48px;
  border: 2px solid #E0EAF4;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s;
}

.search-input:focus {
  outline: none;
  border-color: #1A73E8;
  box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.1);
}

.btn-search {
  padding: 14px 20px;
  background: #1A73E8;
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.btn-search:hover {
  background: #0F8FE8;
  transform: translateY(-2px);
}

.btn-search i {
  width: 20px;
  height: 20px;
}

.filter-bar {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.filter-select {
  padding: 14px 18px;
  border: 2px solid #E0EAF4;
  border-radius: 12px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
  background: white;
  min-width: 150px;
}

.filter-select:focus {
  outline: none;
  border-color: #1A73E8;
  box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.1);
}

.btn-clear {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 115, 232, 0.1);
  border: 2px solid #1A73E8;
  border-radius: 12px;
  color: #1A73E8;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-clear:hover {
  background: #1A73E8;
  color: white;
}

.btn-clear i {
  width: 20px;
  height: 20px;
}

.results-count {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #E0EAF4;
  color: #636E72;
}

.results-count strong {
  color: #1A73E8;
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(15, 30, 56, 0.08);
  transition: all 0.3s;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(15, 30, 56, 0.15);
  border-color: rgba(26, 115, 232, 0.2);
}

.service-card-header {
  position: relative;
  padding: 32px;
  background: linear-gradient(135deg, rgba(26, 115, 232, 0.05), rgba(0, 196, 255, 0.05));
  display: flex;
  justify-content: center;
}

.badge-discount {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #10B981, #059669);
  color: white;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.service-icon {
  width: 90px;
  height: 90px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(26, 115, 232, 0.1), rgba(0, 196, 255, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-icon i {
  width: 50px;
  height: 50px;
  color: #1A73E8;
}

.service-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0F1E38;
  margin-bottom: 14px;
  line-height: 1.4;
}

.service-card-body p {
  font-size: 1rem;
  color: #636E72;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.service-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.service-tags .tag {
  padding: 5px 14px;
  background: rgba(26, 115, 232, 0.1);
  color: #1A73E8;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: lowercase;
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid #E0EAF4;
  color: #636E72;
  font-size: 0.9rem;
}

.service-meta i {
  width: 18px;
  height: 18px;
  color: #1A73E8;
}

.service-card-footer {
  padding: 24px 28px;
  background: #F4F8FC;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #E0EAF4;
  position: relative;
  z-index: 5;
}

.price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-old {
  font-size: 0.9rem;
  color: #636E72;
  text-decoration: line-through;
}

.price-current {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1A73E8;
}

.btn-details {
  padding: 12px 24px;
  background: #1A73E8;
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  position: relative;
  z-index: 10;
  cursor: pointer;
  white-space: nowrap;
}

.btn-details:hover {
  background: #0F8FE8;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 115, 232, 0.3);
}

.btn-details i {
  width: 18px;
  height: 18px;
}

.pagination-nav {
  display: flex;
  justify-content: center;
  margin: 50px 0;
}

.pagination {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination li {
  display: inline-block;
}

.pagination a {
  padding: 12px 18px;
  border: 2px solid #E0EAF4;
  border-radius: 10px;
  background: white;
  color: #0F1E38;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pagination a:hover {
  border-color: #1A73E8;
  background: rgba(26, 115, 232, 0.05);
  color: #1A73E8;
}

.pagination li.active a {
  background: #1A73E8;
  border-color: #1A73E8;
  color: white;
}

.pagination li.disabled a {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.pagination a i {
  width: 16px;
  height: 16px;
}

.no-results {
  text-align: center;
  padding: 100px 20px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(15, 30, 56, 0.08);
}

.no-results i {
  width: 80px;
  height: 80px;
  color: #E0EAF4;
  margin-bottom: 24px;
}

.no-results h3 {
  font-size: 1.75rem;
  color: #0F1E38;
  margin-bottom: 12px;
}

.no-results p {
  font-size: 1rem;
  color: #636E72;
  margin-bottom: 28px;
}

.no-results .btn-reset {
  padding: 14px 32px;
  background: #1A73E8;
  color: white;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: all 0.3s;
}

.no-results .btn-reset:hover {
  background: #0F8FE8;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .services-hero {
    padding: 120px 0 60px;
  }
  
  .services-hero h1 {
    font-size: 2rem;
  }
  
  .services-container {
    padding: 40px 15px;
  }
  
  .services-toolbar {
    padding: 20px;
  }
  
  .search-box {
    flex-direction: column;
  }
  
  .btn-search {
    width: 100%;
    justify-content: center;
  }
  
  .filter-bar {
    width: 100%;
    flex-wrap: wrap;
  }
  
  .filter-select {
    flex: 1;
    min-width: 120px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card-footer {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  
  .btn-details {
    width: 100%;
    justify-content: center;
  }
}


/* ========================================
   Toast Notifications
   ======================================== */
.toast-container {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
}

.toast {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(15, 30, 56, 0.15), 0 0 0 1px rgba(15, 30, 56, 0.05);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateX(450px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.toast-success .toast-icon {
  background: linear-gradient(135deg, #10B981, #059669);
  color: white;
}

.toast-error .toast-icon {
  background: linear-gradient(135deg, #EF4444, #DC2626);
  color: white;
}

.toast-warning .toast-icon {
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: white;
}

.toast-info .toast-icon {
  background: linear-gradient(135deg, #1A73E8, #00C4FF);
  color: white;
}

.toast-message {
  flex: 1;
  color: #0F1E38;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 500;
}

.toast-close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: #636E72;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #0F1E38;
}

.toast-success {
  border-left: 4px solid #10B981;
}

.toast-error {
  border-left: 4px solid #EF4444;
}

.toast-warning {
  border-left: 4px solid #F59E0B;
}

.toast-info {
  border-left: 4px solid #1A73E8;
}

@media (max-width: 768px) {
  .toast-container {
    right: 10px;
    left: 10px;
    max-width: none;
    top: 90px;
  }
  
  .toast {
    transform: translateY(-100px);
  }
  
  .toast.show {
    transform: translateY(0);
  }
}

/* ========================================
   jQuery Validation Error Styles
   ======================================== */
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #EF4444 !important;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1) !important;
}

label.error {
  color: #EF4444;
  font-size: 0.85rem;
  margin-top: 6px;
  display: block;
  animation: fadeInError 0.3s ease;
}

@keyframes fadeInError {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.field-error {
  color: #EF4444;
  font-size: 0.85rem;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.field-error::before {
  content: "⚠";
  font-size: 1rem;
}
