/* ==========================================================================
   Siddique Tech Solution - Main Design System
   Founder & CEO: Muhammad Mussab Siddique
   High-Performance, Futuristic, Fully Responsive & SEO-Optimized
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-dark: #050811;
  --bg-primary: #070d1c;
  --bg-secondary: #0d162d;
  --bg-card: rgba(13, 22, 45, 0.7);
  --bg-card-hover: rgba(18, 32, 64, 0.85);
  --bg-glass: rgba(7, 13, 28, 0.8);

  /* Accents & Neon Glow */
  --cyan-glow: #00e5ff;
  --cyan-deep: #0099ff;
  --blue-electric: #2563eb;
  --purple-glow: #8b5cf6;
  --emerald-accent: #10b981;
  --gold-accent: #f59e0b;

  /* Gradients */
  --grad-cyan-blue: linear-gradient(135deg, #00e5ff 0%, #0072ff 100%);
  --grad-text-glow: linear-gradient(135deg, #ffffff 30%, #00e5ff 100%);
  --grad-accent-border: linear-gradient(135deg, rgba(0, 229, 255, 0.6), rgba(0, 114, 255, 0.2));
  --grad-dark-overlay: linear-gradient(180deg, rgba(5, 8, 17, 0.9) 0%, rgba(7, 13, 28, 0.95) 100%);

  /* Borders & Shadows */
  --border-subtle: rgba(0, 229, 255, 0.12);
  --border-hover: rgba(0, 229, 255, 0.4);
  --shadow-neon: 0 0 25px rgba(0, 229, 255, 0.25);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5), 0 0 1px 1px rgba(0, 229, 255, 0.1);
  --shadow-glow-box: 0 0 40px rgba(0, 229, 255, 0.15);

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --text-white: #ffffff;
  --text-light: #f1f5f9;
  --text-body: #94a3b8;
  --text-muted: #64748b;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Spacing */
  --container-max: 1240px;
  --header-height: 84px;
}

/* Base Reset & Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Background Ambient Glows */
body::before {
  content: '';
  position: fixed;
  top: -20%;
  left: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  filter: blur(80px);
}

body::after {
  content: '';
  position: fixed;
  bottom: 0%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  filter: blur(90px);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-white);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.3rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Badges */
.badge-tech {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: 9999px;
  color: var(--cyan-glow);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.badge-tech .dot {
  width: 8px;
  height: 8px;
  background-color: var(--cyan-glow);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--cyan-glow);
  animation: pulseDot 2s infinite ease-in-out;
}

/* Gradient Text */
.text-gradient {
  background: var(--grad-text-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-cyan {
  color: var(--cyan-glow);
}

/* ==========================================================================
   Preloader (Strictly 1 to 2 Seconds Loading - Exactly as Requested)
   ========================================================================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.4s ease-out, visibility 0.4s ease-out;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
  position: relative;
}

.preloader-logo-wrap {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-logo {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.6);
  z-index: 2;
  border: 2px solid rgba(0, 229, 255, 0.8);
}

.preloader-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--cyan-glow);
  border-right-color: var(--cyan-glow);
  animation: spinRing 1.2s linear infinite;
}

.preloader-ring-outer {
  position: absolute;
  top: -8px;
  left: -8px;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  border-radius: 50%;
  border: 2px solid transparent;
  border-bottom-color: var(--blue-electric);
  animation: spinRingReverse 1.8s linear infinite;
}

.preloader-brand-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.preloader-brand-title span {
  color: var(--cyan-glow);
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.5);
}

.preloader-bar-wrap {
  width: 220px;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  margin: 0.75rem auto 0;
  overflow: hidden;
  position: relative;
}

.preloader-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--grad-cyan-blue);
  box-shadow: 0 0 15px var(--cyan-glow);
  animation: preloaderFill 1.35s ease-in-out forwards;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-medium);
  background: transparent;
}

.site-header.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--cyan-glow);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.05);
  box-shadow: 0 0 22px rgba(0, 229, 255, 0.7);
}

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

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.brand-name span {
  color: var(--cyan-glow);
}

.brand-tagline {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
  position: relative;
  padding: 0.35rem 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--grad-cyan-blue);
  box-shadow: 0 0 8px var(--cyan-glow);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--cyan-glow);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* Cart Button */
.cart-nav-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 12px;
  color: var(--cyan-glow);
  transition: all var(--transition-fast);
}

.cart-nav-btn:hover {
  background: rgba(0, 229, 255, 0.18);
  border-color: var(--cyan-glow);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
  transform: translateY(-2px);
}

.cart-nav-btn svg {
  width: 20px;
  height: 20px;
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--blue-electric);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  height: 19px;
  min-width: 19px;
  padding: 0 5px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-dark);
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.6);
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-white);
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background-color: var(--text-white);
  transition: all var(--transition-medium);
  border-radius: 2px;
}

.mobile-nav-toggle.open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background-color: var(--cyan-glow);
}

.mobile-nav-toggle.open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background-color: var(--cyan-glow);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.65rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition-medium);
  border: 1px solid transparent;
  outline: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--grad-cyan-blue);
  color: #050811;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 229, 255, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(0, 229, 255, 0.6);
  transform: translateY(-2px);
  color: #000;
}

.btn-outline {
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: var(--text-white);
}

.btn-outline:hover {
  background: rgba(0, 229, 255, 0.15);
  border-color: var(--cyan-glow);
  color: var(--cyan-glow);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.25);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: 8px;
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
  border-radius: 14px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 5rem;
  overflow: hidden;
}

#neural-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3.5rem;
}

.hero-content {
  max-width: 650px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-top: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.stat-item h3 {
  font-size: 1.95rem;
  font-weight: 800;
  color: var(--cyan-glow);
  margin-bottom: 0.25rem;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Hero Visual Card */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-glow {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-card), var(--shadow-glow-box);
  overflow: hidden;
  transition: transform var(--transition-medium), border-color var(--transition-medium);
}

.hero-card-glow:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-card-logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
  border: 2px solid var(--cyan-glow);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.hero-card-badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--emerald-accent);
  border-radius: 99px;
  font-weight: 600;
}

.hero-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.hero-features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-light);
}

.hero-features-list li svg {
  color: var(--cyan-glow);
  flex-shrink: 0;
}

.ceo-mini-endorsement {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.ceo-mini-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold-accent);
}

.ceo-mini-info h4 {
  font-size: 0.9rem;
  margin-bottom: 0.1rem;
}

.ceo-mini-info p {
  font-size: 0.75rem;
  color: var(--cyan-glow);
  font-weight: 500;
}

/* Floating Elements */
.float-card {
  position: absolute;
  background: rgba(13, 22, 45, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 0.75rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  animation: floatAnim 4s ease-in-out infinite;
  z-index: 3;
}

.float-card-1 {
  top: -15px;
  right: -10px;
}

.float-card-2 {
  bottom: -20px;
  left: -20px;
  animation-delay: 2s;
}

.float-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0, 229, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-glow);
}

.float-card-text p {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.float-card-text h5 {
  font-size: 0.85rem;
  color: var(--text-white);
}

/* ==========================================================================
   Section Layouts & Headers
   ========================================================================== */
.section-padding {
  padding-top: 6rem;
  padding-bottom: 6rem;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-top: 0.75rem;
}

/* ==========================================================================
   Services Grid & Cards
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 2rem;
}

.service-card {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2.2rem;
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--grad-cyan-blue);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.6), var(--shadow-neon);
}

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

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-glow);
  margin-bottom: 1.5rem;
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon-box {
  background: var(--grad-cyan-blue);
  color: #050811;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: auto;
}

.service-price-tag {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cyan-glow);
}

.service-price-tag small {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* ==========================================================================
   About Section & CEO Spotlight
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 4rem;
}

.about-image-wrapper {
  position: relative;
}

.about-main-image {
  border-radius: 24px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card), 0 0 30px rgba(0, 229, 255, 0.15);
  width: 100%;
  object-fit: cover;
}

.about-badge-overlay {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-hover);
  padding: 1.25rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  text-align: left;
}

.about-badge-overlay h4 {
  font-size: 1.1rem;
  color: var(--text-white);
}

.about-badge-overlay p {
  font-size: 0.82rem;
  color: var(--cyan-glow);
  font-weight: 600;
}

.about-content h2 {
  margin-bottom: 1.25rem;
}

.about-lead {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
}

.highlight-box {
  padding: 1.2rem;
  background: rgba(0, 229, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
}

.highlight-box h4 {
  font-size: 1rem;
  color: var(--cyan-glow);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.highlight-box p {
  font-size: 0.85rem;
  color: var(--text-body);
}

/* ==========================================================================
   Pricing Cards
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 2.5rem 2.2rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-medium);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.6), var(--shadow-neon);
}

.pricing-card.featured {
  background: rgba(16, 28, 58, 0.85);
  border-color: var(--cyan-glow);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.25);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.pricing-ribbon {
  position: absolute;
  top: -12px;
  right: 25px;
  background: var(--grad-cyan-blue);
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.9rem;
  border-radius: 99px;
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.4);
}

.pricing-header {
  margin-bottom: 1.75rem;
}

.pricing-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

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

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin: 1.5rem 0 2rem;
}

.pricing-amount {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--text-white);
  line-height: 1;
}

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cyan-glow);
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-light);
}

.pricing-features li svg {
  color: var(--cyan-glow);
  flex-shrink: 0;
}

.pricing-features li.disabled {
  color: var(--text-muted);
  text-decoration: line-through;
}

.pricing-features li.disabled svg {
  color: var(--text-muted);
}

.pricing-cta {
  margin-top: auto;
}

/* ==========================================================================
   Portfolio Grid & Filter
   ========================================================================== */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-body);
  padding: 0.55rem 1.25rem;
  border-radius: 99px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--cyan-glow);
  color: #050811;
  border-color: var(--cyan-glow);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.portfolio-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-medium);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.7), var(--shadow-neon);
}

.portfolio-thumb {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #0d162d;
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-thumb img {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 8, 17, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-info {
  padding: 1.75rem;
}

.portfolio-tag {
  font-size: 0.75rem;
  color: var(--cyan-glow);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  display: inline-block;
}

.portfolio-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

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

/* ==========================================================================
   Shopping Cart Page Styles
   ========================================================================== */
.cart-section {
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 6rem;
  min-height: 80vh;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.cart-items-box,
.cart-summary-box {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 2.2rem;
  box-shadow: var(--shadow-card);
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th {
  text-align: left;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cart-table td {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  vertical-align: middle;
}

.cart-item-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 229, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-glow);
  flex-shrink: 0;
}

.cart-item-title {
  font-size: 1rem;
  color: var(--text-white);
  font-weight: 600;
}

.cart-item-plan {
  font-size: 0.78rem;
  color: var(--cyan-glow);
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 2px;
}

.qty-btn {
  background: none;
  border: none;
  color: var(--text-light);
  width: 28px;
  height: 28px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
}

.qty-btn:hover {
  color: var(--cyan-glow);
}

.qty-val {
  width: 32px;
  text-align: center;
  font-weight: 600;
  color: #fff;
  font-size: 0.9rem;
}

.cart-remove-btn {
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
  padding: 0.35rem;
  border-radius: 6px;
  transition: all var(--transition-fast);
}

.cart-remove-btn:hover {
  background: rgba(239, 68, 68, 0.15);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-body);
}

.summary-row.total {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  margin-top: 1.2rem;
}

.summary-row.total .total-amount {
  color: var(--cyan-glow);
}

.coupon-group {
  display: flex;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.coupon-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 0.65rem 1rem;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
}

.coupon-input:focus {
  border-color: var(--cyan-glow);
}

.empty-cart-state {
  text-align: center;
  padding: 3rem 1rem;
}

.empty-cart-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.2rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Forms & Contact Page
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.contact-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-glow);
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.contact-item-text p, .contact-item-text a {
  font-size: 0.92rem;
  color: var(--text-body);
}

.contact-item-text a:hover {
  color: var(--cyan-glow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 0.85rem 1.15rem;
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--cyan-glow);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.25);
  background: rgba(255, 255, 255, 0.07);
}

textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

/* ==========================================================================
   Footer & Newsletter Subscription
   ========================================================================== */
.site-footer {
  background: #03050b;
  border-top: 1px solid var(--border-subtle);
  padding-top: 5rem;
  padding-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.4fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  font-size: 0.92rem;
  color: var(--text-body);
  margin-top: 1.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background: var(--cyan-glow);
  color: #050811;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.4rem;
  color: #fff;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--cyan-glow);
  box-shadow: 0 0 8px var(--cyan-glow);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-body);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a:hover {
  color: var(--cyan-glow);
  transform: translateX(4px);
}

/* Newsletter Subscription Box */
.newsletter-box {
  background: rgba(13, 22, 45, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.newsletter-box p {
  font-size: 0.88rem;
  color: var(--text-body);
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.newsletter-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: all var(--transition-fast);
}

.newsletter-input:focus {
  border-color: var(--cyan-glow);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.25);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a:hover {
  color: var(--cyan-glow);
}

/* ==========================================================================
   Toast Notifications
   ========================================================================== */
.toast-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: rgba(13, 22, 45, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--cyan-glow);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 229, 255, 0.3);
  color: #fff;
  border-radius: 14px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 320px;
  max-width: 420px;
  animation: slideToastIn 0.35s ease-out;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast.toast-success {
  border-color: var(--emerald-accent);
}

.toast.toast-success .toast-icon {
  color: var(--emerald-accent);
}

.toast-icon {
  font-size: 1.35rem;
  flex-shrink: 0;
}

.toast-message {
  font-size: 0.88rem;
  line-height: 1.4;
}

.toast-message strong {
  display: block;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 2px;
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 8, 17, 0.85);
  backdrop-filter: blur(10px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-window {
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-card), 0 0 50px rgba(0, 229, 255, 0.2);
  transform: scale(0.9);
  transition: transform var(--transition-bounce);
  position: relative;
}

.modal-overlay.active .modal-window {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

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