/* ============================================================
   COORG PACKAGING & PRINTING — Sharjah, UAE
   Premium UI | Blue / Silver / White
   ============================================================ */

/* ----- Fonts loaded via <link> in HTML for async loading ----- */

/* ----- CSS Custom Properties ----- */
:root {
  /* Brand Colors */
  --blue-900: #1e3a5f;
  --blue-800: #1e4d8c;
  --blue-700: #1a56db;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --blue-300: #93c5fd;
  --blue-200: #bfdbfe;
  --blue-100: #dbeafe;
  --blue-50: #eff6ff;

  --silver-600: #475569;
  --silver-500: #4b5563;
  --silver-400: #cbd5e1;
  --silver-300: #d1d5db;
  --silver-200: #e2e8f0;
  --silver-100: #f1f5f9;
  --silver-50: #f8fafc;

  --white: #ffffff;
  --black: #0f172a;

  /* Functional Colors */
  --color-primary: var(--blue-700);
  --color-primary-dark: var(--blue-900);
  --color-primary-light: var(--blue-500);
  --color-primary-lighter: var(--blue-50);
  --color-secondary: var(--silver-500);
  --color-accent: var(--blue-400);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 50%, var(--blue-600) 100%);
  --gradient-hero: linear-gradient(135deg, #0c1e32 0%, #1e3a5f 30%, #1a56db 70%, #2563eb 100%);
  --gradient-card: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(59, 130, 246, 0.02));
  --gradient-silver: linear-gradient(135deg, var(--silver-200), var(--silver-100), var(--white));
  --gradient-cta: linear-gradient(135deg, var(--blue-700), var(--blue-600), var(--blue-500));
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0.05));

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(30, 58, 95, 0.08);
  --shadow-md: 0 4px 16px rgba(30, 58, 95, 0.10);
  --shadow-lg: 0 10px 40px rgba(30, 58, 95, 0.12);
  --shadow-xl: 0 20px 60px rgba(30, 58, 95, 0.15);
  --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.20);
  --shadow-glass: 0 8px 32px rgba(30, 58, 95, 0.08);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.20);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Space Grotesk', 'Inter', sans-serif;

  /* Spacing */
  --section-py: 100px;
  --container: 1280px;
  --grid-gap: 28px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

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

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

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

body {
  font-family: var(--font-primary);
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

::selection {
  background: var(--blue-700);
  color: var(--white);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- Utility ----- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ----- Typography ----- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--black);
}

/* ----- SEO Keyword Highlighting ----- */
mark.keyword-highlight {
  background: linear-gradient(180deg, transparent 60%, rgba(37, 99, 235, 0.15) 60%);
  color: inherit;
  padding: 0 2px;
  border-radius: 2px;
  font-weight: 600;
}

mark.keyword-highlight:hover {
  background: linear-gradient(180deg, transparent 60%, rgba(37, 99, 235, 0.25) 60%);
}

/* ----- Glassmorphism Utility ----- */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glass);
}

.glass-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-glass);
}

/* Card anchor — makes service cards fully clickable */
a.service-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

a.service-card:hover {
  text-decoration: none;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition-normal);
  letter-spacing: 0.2px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: var(--transition-normal);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26, 86, 219, 0.30);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(26, 86, 219, 0.40);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.40);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--blue-700);
  border: 2px solid var(--blue-700);
}

.btn-outline:hover {
  background: var(--blue-700);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-light {
  background: var(--white);
  color: var(--blue-700);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.btn-sm { padding: 10px 22px; font-size: 0.88rem; }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.30);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.40);
}

.btn-sample {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.50);
}

.btn-sample:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* ----- Section Styles ----- */
.section {
  padding: var(--section-py) 0;
  /* Content-visibility with intrinsic size prevents CLS from lazy rendering */
  contain-intrinsic-size: 400px;
}

.section-bg {
  background: var(--silver-50);
}

.section-bg-alt {
  background: linear-gradient(180deg, var(--silver-50) 0%, var(--white) 100%);
}

.cta-section {
  contain-intrinsic-size: 250px;
}

.stats-bar {
  contain-intrinsic-size: 180px;
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--blue-700);
  background: var(--blue-50);
  padding: 8px 22px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
  border: 1px solid rgba(37, 99, 235, 0.10);
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 18px;
  line-height: 1.15;
}

.section-title span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--silver-600);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ----- Grid Layouts ----- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--grid-gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--grid-gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--grid-gap); }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--grid-gap); }

/* ============================================================
   MEGA MENU
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  will-change: transform;
  transition: box-shadow var(--transition-normal);
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--black);
  z-index: 1001;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(26, 86, 219, 0.25);
}

.logo-img {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  flex-shrink: 0;
  transition: var(--transition-normal);
}

.logo:hover .logo-img {
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(26, 86, 219, 0.30);
}

.footer-brand .logo-img {
  width: 72px;
  height: 72px;
  background: #ffffff;
  border-radius: var(--radius-sm);
  padding: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.9);
}

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

.logo span {
  font-weight: 400;
  color: var(--silver-500);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Mega Menu */
.mega-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.mega-nav > li {
  position: relative;
}

.mega-nav > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--black);
  transition: var(--transition-fast);
  position: relative;
}

.mega-nav > li > a:hover,
.mega-nav > li > a.active {
  color: var(--blue-700);
  background: var(--blue-50);
}

.mega-nav > li > a .arrow {
  font-size: 0.65rem;
  transition: var(--transition-fast);
  display: inline-block;
}

.mega-nav > li:hover > a .arrow {
  transform: rotate(180deg);
}

.mega-nav > li > a .arrow.active {
  transform: rotate(180deg);
}

/* Mega Dropdown */
.mega-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  min-width: 600px;
  padding: 24px;
  z-index: 100;
  pointer-events: none;
}

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

@media (max-width: 768px) {
  .mega-dropdown.mobile-open,
  .simple-dropdown.mobile-open {
    pointer-events: auto;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    position: static;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    background: transparent;
    min-width: auto;
  }
  
  .mega-dropdown.mobile-open .mega-dropdown-grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  
  .mega-dropdown.mobile-open .mega-dropdown-item {
    padding: 10px 12px;
  }
  
  .mega-dropdown.mobile-open .mega-dropdown-cta {
    display: none;
  }
  
  .simple-dropdown.mobile-open {
    padding: 4px 0 4px 16px;
  }
  
  .simple-dropdown.mobile-open a {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
}

.mega-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mega-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.mega-dropdown-item:hover {
  background: var(--blue-50);
  transform: translateX(4px);
  box-shadow: 0 2px 8px rgba(30, 58, 95, 0.06);
}

.mega-dropdown-icon {
  width: 42px;
  height: 42px;
  background: var(--blue-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.mega-dropdown-item:hover .mega-dropdown-icon {
  background: var(--blue-700);
  color: var(--white);
}

.mega-dropdown-text h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2px;
}

.mega-dropdown-text p {
  font-size: 0.82rem;
  color: var(--silver-600);
  line-height: 1.4;
}

.mega-dropdown-cta {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--silver-200);
  text-align: center;
}

.mega-dropdown-cta a {
  color: var(--blue-700);
  font-weight: 600;
  font-size: 0.9rem;
}

.mega-dropdown-cta a:hover {
  gap: 12px;
}

/* Simple Dropdown (for smaller menus) */
.simple-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  min-width: 220px;
  padding: 8px;
  z-index: 100;
  pointer-events: none;
}

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

.simple-dropdown a {
  display: block;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--black);
  transition: var(--transition-fast);
}

.simple-dropdown a:hover {
  background: var(--blue-50);
  color: var(--blue-700);
}

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


/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--black);
  border-radius: 3px;
  transition: var(--transition-normal);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M50 48v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-40V4h-2v4h-4v2h4v4h2V10h4V8h-4zM10 48v-4H8v4H4v2h4v4h2v-4h4v-2H10zM10 8V4H8v4H4v2h4v4h2V10h4V8H10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.20) 0%, transparent 65%);
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 60%);
  left: -150px;
  bottom: -100px;
  pointer-events: none;
}

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

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  color: var(--blue-200);
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 32px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #25d366;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
}

.hero-title {
  font-size: 4.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero-title span {
  background: linear-gradient(135deg, #60a5fa, #93c5fd, var(--white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 50px;
  margin-top: 60px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-number {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--blue-200);
  line-height: 1;
  font-family: var(--font-heading);
}

.hero-stat-label {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 550px;
  height: 550px;
  pointer-events: none;
}

.hero-visual-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-xl);
  padding: 40px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.hero-visual-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(37, 99, 235, 0.15), transparent 70%);
}

.hero-visual-icon {
  font-size: 5rem;
  opacity: 0.4;
  position: relative;
  z-index: 1;
}

.hero-visual-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  text-align: center;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

/* ============================================================
   SERVICE CARDS (Premium)
   ============================================================ */
.service-card {
  background: var(--white);
  border: 1px solid var(--silver-200);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-200);
}

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

.service-card-icon {
  width: 60px;
  height: 60px;
  background: var(--blue-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
  transition: var(--transition-normal);
}

.service-card:hover .service-card-icon {
  background: var(--gradient-primary);
  color: var(--white);
}

.service-card-icon span { transition: var(--transition-fast); }
.service-card:hover .service-card-icon span { filter: brightness(10); }

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--silver-600);
  font-size: 0.93rem;
  line-height: 1.7;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  font-weight: 600;
  font-size: 0.92rem;
  margin-top: 20px;
  transition: var(--transition-fast);
}

.service-card-link:hover {
  gap: 14px;
  color: var(--blue-900);
}

/* ============================================================
   INDUSTRY CARDS
   ============================================================ */
.industry-card {
  background: var(--white);
  border: 1px solid var(--silver-200);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition-normal);
  cursor: pointer;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-200);
}

.industry-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-50);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
  transition: var(--transition-normal);
}

.industry-card:hover .industry-icon {
  background: var(--gradient-primary);
  color: var(--white);
}

.industry-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.industry-card p {
  color: var(--silver-600);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.about-image-main {
  width: 100%;
  height: 480px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-image-main::after {
  content: '🏭';
  font-size: 8rem;
  opacity: 0.15;
  position: absolute;
}

.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  z-index: 2;
}

.about-image-badge .stat-number,
.about-image-badge span {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue-700);
  display: block;
  font-family: var(--font-heading);
  line-height: 1;
}

.about-image-badge p {
  font-size: 0.82rem;
  color: var(--silver-600);
  margin-top: 4px;
}

.about-content-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}

.about-content-text h2 span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-content-text p {
  color: var(--silver-600);
  margin-bottom: 14px;
  line-height: 1.8;
}

.about-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 0.95rem;
}

.about-feature-item .check {
  width: 22px;
  height: 22px;
  background: var(--blue-50);
  color: var(--blue-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--silver-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition-normal);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 28px;
  font-size: 5rem;
  line-height: 1;
  color: var(--blue-50);
  font-family: Georgia, serif;
  opacity: 0.6;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.testimonial-text {
  font-size: 0.98rem;
  color: var(--silver-600);
  line-height: 1.8;
  margin-bottom: 22px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.84rem;
  color: var(--silver-500);
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-bar {
  background: var(--white);
  border-top: 1px solid var(--silver-200);
  border-bottom: 1px solid var(--silver-200);
  padding: 50px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  padding: 10px;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.92rem;
  color: var(--silver-600);
  font-weight: 500;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--gradient-cta);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section .container { position: relative; z-index: 2; }

.cta-section h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   PORTFOLIO / GALLERY
   ============================================================ */
.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.portfolio-filter .filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--silver-200);
  background: transparent;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-normal);
  font-family: var(--font-primary);
  color: var(--silver-600);
}

.portfolio-filter .filter-btn:hover {
  border-color: var(--blue-700);
  color: var(--blue-700);
}

.portfolio-filter .filter-btn.active {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(26, 86, 219, 0.30);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portfolio-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 280px;
  background: var(--silver-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  cursor: pointer;
  transition: var(--transition-normal);
}

.portfolio-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.portfolio-item.tall {
  grid-row: span 2;
  height: auto;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition-normal);
}

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

.portfolio-overlay h4 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
}

.portfolio-overlay p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-card {
  background: var(--white);
  border: 1px solid var(--silver-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-normal);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-image {
  height: 220px;
  background: var(--silver-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}

.blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue-700);
}

.blog-body {
  padding: 24px;
}

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--silver-500);
  margin-bottom: 10px;
}

.blog-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-body p {
  color: var(--silver-600);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-link {
  color: var(--blue-700);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-link:hover { gap: 12px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.contact-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border: 1px solid var(--silver-200);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-200);
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  background: var(--blue-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 18px;
}

.contact-card h4 {
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--silver-600);
  font-size: 0.93rem;
  line-height: 1.6;
}

.contact-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--white);
  border: 1px solid var(--silver-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.contact-info-panel {
  background: var(--gradient-primary);
  padding: 50px 40px;
  color: var(--white);
}

.contact-info-panel h3 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.contact-info-panel > p {
  opacity: 0.75;
  margin-bottom: 36px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.contact-detail-item p {
  font-size: 0.88rem;
  opacity: 0.75;
}

.contact-form-panel {
  padding: 50px 40px;
}

.contact-form-panel h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-form-panel > p {
  color: var(--silver-600);
  margin-bottom: 28px;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--silver-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-primary);
  transition: var(--transition-fast);
  background: var(--silver-50);
  color: var(--black);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue-700);
  box-shadow: 0 0 0 4px rgba(26, 86, 219, 0.08);
  background: var(--white);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* Google Map */
.map-container {
  height: 400px;
  background: var(--silver-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 50px;
  border: 1px solid var(--silver-200);
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--silver-500);
}

.map-placeholder p {
  font-size: 0.95rem;
  margin-top: 10px;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--silver-200);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--blue-200);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.02rem;
  background: var(--white);
  transition: var(--transition-fast);
  gap: 16px;
}

.faq-question:hover {
  background: var(--silver-50);
}

.faq-question .faq-icon {
  font-size: 1.3rem;
  transition: var(--transition-normal);
  color: var(--blue-700);
  flex-shrink: 0;
  font-weight: 300;
}

.faq-item.active .faq-question .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--silver-600);
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px;
}

/* ============================================================
   PAGE HEADER (Inner Pages)
   ============================================================ */
.page-header {
  padding: 130px 0 70px;
  background: var(--gradient-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header .container { position: relative; z-index: 2; }

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
  color: var(--blue-200);
}

.breadcrumb a:hover { text-decoration: underline; }

.page-header h1 {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
}

.page-content {
  padding: 80px 0;
}

/* ============================================================
   SERVICE DETAIL (Packaging/Printing Pages)
   ============================================================ */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--silver-200);
  transition: var(--transition-normal);
}

.service-detail-grid:last-child { margin-bottom: 0; }

.service-detail-grid:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.service-detail-grid.reverse .service-detail-image { order: 2; }
.service-detail-grid.reverse .service-detail-content { order: 1; }

.service-detail-image {
  height: 300px;
  background: var(--gradient-card);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  border: 1px solid var(--silver-200);
}

.service-detail-content h3 {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-detail-content p {
  color: var(--silver-600);
  line-height: 1.8;
  margin-bottom: 14px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.92rem;
  color: var(--silver-600);
}

.service-features li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: var(--blue-50);
  color: var(--blue-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   VALUES / TEAM GRIDS
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 36px 20px;
  background: var(--white);
  border: 1px solid var(--silver-200);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.value-card-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 16px;
  transition: var(--transition-normal);
}

.value-card:hover .value-card-icon {
  background: var(--gradient-primary);
  color: var(--white);
}

.value-card h4 {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.value-card p {
  color: var(--silver-600);
  font-size: 0.88rem;
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--silver-200);
  border-radius: var(--radius-lg);
  padding: 36px 20px;
  transition: var(--transition-normal);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-avatar {
  width: 90px;
  height: 90px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}

.team-card h4 {
  font-weight: 700;
  margin-bottom: 2px;
}

.team-card .role {
  color: var(--blue-700);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.team-card p {
  color: var(--silver-600);
  font-size: 0.84rem;
  line-height: 1.6;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -18px;
  top: 45px;
  font-size: 1.5rem;
  color: var(--blue-200);
}

.process-number {
  width: 56px;
  height: 56px;
  background: var(--blue-50);
  border: 2px solid var(--blue-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--blue-700);
  margin: 0 auto 18px;
  font-family: var(--font-heading);
}

.process-step h4 {
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step p {
  color: var(--silver-600);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--blue-900);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.7fr 1.7fr 1.05fr;
  gap: 30px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .logo { color: var(--white); margin-bottom: 18px; }
.footer-brand .logo span { color: rgba(255, 255, 255, 0.6); }
.footer-brand .logo-icon { background: var(--gradient-cta); }

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 22px;
  font-size: 0.92rem;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition-normal);
  color: rgba(255, 255, 255, 0.7);
}

.footer-social a:hover {
  background: var(--blue-500);
  color: var(--white);
  transform: translateY(-3px);
}

.footer h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--blue-400);
  border-radius: 2px;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

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

/* Two-column service lists (Packaging / Printing) */
.footer-links.two-col {
  columns: 2;
  column-gap: 24px;
}

.footer-links.two-col li {
  break-inside: avoid;
  margin-bottom: 9px;
}

.footer-links.two-col a {
  font-size: 0.85rem;
}

/* Contact info rows with SVG icons */
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 13px;
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  fill: var(--blue-300);
  margin-top: 4px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition-fast);
}

.footer-contact a:hover {
  color: var(--blue-300);
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 18px;
  line-height: 1.6;
}

.footer-newsletter-form {
  display: flex;
}

.footer-newsletter-form input {
  flex: 1;
  padding: 11px 16px;
  border: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--font-primary);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.footer-newsletter-form button {
  padding: 11px 20px;
  background: var(--gradient-cta);
  border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 600;
  cursor: pointer;
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-newsletter-form button:hover {
  opacity: 0.9;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a:hover { color: var(--blue-300); }

/* ============================================================
   FLOATING UI ELEMENTS
   ============================================================ */

/* Floating Social Icons - SVG replacements for emojis */
.social-float-link .social-icon {
  font-size: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-float-link .social-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.social-float-link:hover .social-icon svg {
  fill: #fff;
}

/* Footer Social Icons - SVG replacements */
.footer-social a {
  font-size: 0;
}

.footer-social a svg {
  width: 22px;
  height: 22px;
  fill: rgba(255, 255, 255, 0.8);
  display: block;
  transition: fill var(--transition-fast);
}

.footer-social a:hover svg {
  fill: #fff;
}

.footer-social a:hover {
  background: var(--blue-500);
  color: #fff;
  transform: translateY(-3px);
}

/* WhatsApp Float - SVG icon */
.whatsapp-float {
  font-size: 0;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  display: block;
}

/* Call Float - SVG icon */
.call-float {
  font-size: 0;
}

.call-float svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* Social Media Float (Left Side) */
.social-float {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-left: none;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-md);
}

.social-float-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  position: relative;
  transition: var(--transition-fast);
  color: var(--silver-600);
  text-decoration: none;
}

.social-float-link:hover {
  color: var(--white);
}

.social-float-link .social-icon {
  font-size: 1.15rem;
  line-height: 1;
  transition: var(--transition-fast);
}

/* Brand hover colors */
.social-float-link[aria-label="Facebook"]:hover { background: #1877f2; }
.social-float-link[aria-label="Instagram"]:hover { background: #e4405f; }
.social-float-link[aria-label="LinkedIn"]:hover { background: #0a66c2; }
.social-float-link[aria-label="X (Twitter)"]:hover { background: #000000; }
.social-float-link[aria-label="YouTube"]:hover { background: #ff0000; }
.social-float-link[aria-label="Pinterest"]:hover { background: #e60023; }
.social-float-link[aria-label="Medium"]:hover { background: #12100e; }

.social-float-link:hover .social-icon {
  transform: scale(1.15);
}

.social-tooltip {
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  color: var(--black);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
  border: 1px solid var(--silver-200);
}

.social-float-link:hover .social-tooltip {
  opacity: 1;
  left: calc(100% + 16px);
}

/* Mobile: social float as bottom bar */
@media(max-width: 768px) {
  .social-float {
    position: fixed;
    left: 0;
    bottom: 0;
    top: auto;
    right: 0;
    transform: none;
    flex-direction: row;
    justify-content: center;
    gap: 0;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    z-index: 999;
  }
  .social-float-link { width: 48px; height: 44px; }
  .social-float-link .social-icon svg { width: 22px; height: 22px; }
  .social-tooltip { display: none; }
  .whatsapp-float { bottom: 76px; }
  .call-float { display: none; }
  .quote-float { display: none; }
  .back-to-top { bottom: 76px; left: 16px; }
  /* Simplify CTA on mobile - icon-only WhatsApp since floating btn exists */
  .hero-buttons .btn-whatsapp,
  .cta-buttons .btn-whatsapp { width: 48px; height: 48px; padding: 0; font-size: 1.3rem; border-radius: 50%; min-width: unset; justify-content: center; overflow: hidden; }
  .cta-section .cta-buttons .btn-light:last-child { padding: 12px 20px; font-size: 0.85rem; }
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.40);
  z-index: 999;
  transition: var(--transition-normal);
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.50);
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  color: var(--black);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* Floating Call Button */
.call-float {
  position: fixed;
  bottom: 92px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--blue-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  box-shadow: 0 4px 15px rgba(26, 86, 219, 0.30);
  z-index: 999;
  transition: var(--transition-normal);
}

.call-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(26, 86, 219, 0.40);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  background: var(--white);
  color: var(--blue-700);
  border: 1px solid var(--silver-200);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-normal);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--blue-700);
  color: var(--white);
  transform: translateY(-4px);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 30px 0;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--silver-200);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  transition: var(--transition-normal);
}

.trust-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-200);
}

.trust-badge-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.trust-badge-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1px;
}

.trust-badge-text p {
  font-size: 0.78rem;
  color: var(--silver-500);
  margin: 0;
}

/* Mobile Sticky CTA Bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--silver-200);
  padding: 10px 16px;
  z-index: 997;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
}

.mobile-cta-bar .container {
  display: flex;
  gap: 10px;
  align-items: center;
}

.mobile-cta-bar .btn {
  flex: 1;
  padding: 12px 16px;
  font-size: 0.85rem;
  justify-content: center;
  white-space: nowrap;
}

.mobile-cta-bar .btn-whatsapp-mobile {
  background: #25d366;
  color: #fff;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: block;
  }
  
  body {
    padding-bottom: 70px;
  }
  
  .mobile-cta-bar .btn {
    font-size: 0.8rem;
    padding: 10px 12px;
  }
  
  .whatsapp-float {
    bottom: 80px;
  }
  
  .call-float {
    bottom: 148px;
  }
  
  .trust-badges {
    gap: 14px;
  }
  
  .trust-badge {
    padding: 12px 16px;
    width: calc(50% - 8px);
  }
}

@media (max-width: 480px) {
  .trust-badge { width: 100%; }
}

/* Request Quote Modal Button */
.quote-float {
  position: fixed;
  bottom: 160px;
  right: 24px;
  z-index: 999;
}

.quote-float-btn {
  writing-mode: vertical-rl;
  padding: 14px 10px;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  font-family: var(--font-primary);
  text-transform: uppercase;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
}

.quote-float-btn:hover {
  transform: translateX(-4px);
  box-shadow: var(--shadow-xl);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }

/* Scale on hover for cards */
.hover-scale {
  transition: var(--transition-normal);
}

.hover-scale:hover {
  transform: scale(1.03);
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--blue-900);
  color: var(--white);
  padding: 16px 30px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  transition: var(--transition-normal);
  z-index: 99999;
  max-width: 90vw;
  text-align: center;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/*   ============================================================
   WHY US PAGE — Our Promise section
   ============================================================ */
.why-promise {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.why-promise-badge {
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  color: var(--white);
  text-align: center;
}

.why-promise-badge p {
  opacity: 0.85;
  line-height: 1.8;
}

/* ============================================================
   LEGAL PAGES (Privacy Policy / Terms & Conditions)
   ============================================================ */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--silver-200);
  border-radius: var(--radius-lg);
  padding: 56px 60px;
  box-shadow: var(--shadow-sm);
}

.legal-content .legal-date {
  font-size: 0.85rem;
  color: var(--silver-500);
  margin-bottom: 36px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--silver-200);
}

.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  margin: 34px 0 12px;
  padding-bottom: 8px;
  position: relative;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h2::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.legal-content p {
  color: var(--silver-600);
  line-height: 1.85;
  margin-bottom: 14px;
  font-size: 0.96rem;
}

.legal-content ul {
  margin: 0 0 16px;
  padding-left: 20px;
  list-style: disc;
}

.legal-content ul li {
  color: var(--silver-600);
  line-height: 1.8;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.legal-content ul li strong {
  color: var(--black);
}

.legal-content a {
  color: var(--blue-700);
  text-decoration: underline;
  transition: var(--transition-fast);
}

.legal-content a:hover {
  color: var(--blue-900);
}

@media (max-width: 768px) {
  .legal-content { padding: 36px 24px; }
  .legal-content h2 { font-size: 1.1rem; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .hero-visual { display: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:not(:last-child)::after { display: none; }

  /* Keep the 8-item nav + 2 header buttons compact on mid-size screens */
  .mega-nav > li > a { padding: 8px 9px; font-size: 0.83rem; }
  .header-actions { gap: 8px; }
  .header-actions .btn { padding: 9px 15px; font-size: 0.82rem; }
}

@media (max-width: 1024px) {
  .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 2.2rem; }
  .hero-title { font-size: 3.2rem; }
  .mega-dropdown { min-width: 480px; }
  .footer-links.two-col { columns: 1; }

  /* Tablet header compaction: 8 nav items + 2 buttons must fit */
  .mega-nav > li > a { padding: 8px 7px; font-size: 0.8rem; }
  .header-actions { gap: 6px; }
  .header-actions .btn { padding: 8px 12px; font-size: 0.78rem; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .mega-nav {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    height: calc(100vh - 76px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: var(--transition-normal);
    border-top: 1px solid var(--silver-200);
  }

  .mega-nav.open {
    transform: translateX(0);
  }

  .mega-nav > li {
    width: 100%;
  }

  .mega-nav > li > a {
    width: 100%;
    padding: 14px 16px;
    justify-content: space-between;
  }

  .mega-dropdown,
  .simple-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0;
    min-width: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
  }

  .mega-nav > li:hover .mega-dropdown,
  .mega-nav > li:hover .simple-dropdown {
    transform: none;
    max-height: 1000px;
    padding: 8px 0;
  }

  .mega-dropdown.mobile-open,
  .simple-dropdown.mobile-open {
    max-height: 1000px;
    padding: 8px 0;
  }

  .mega-nav .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    pointer-events: none;
  }

  .mega-nav .arrow.active {
    transform: rotate(180deg);
  }

  @media (max-width: 768px) {
    .mega-nav > li > a .arrow {
      pointer-events: auto;
      padding: 8px 4px;
      margin: -8px 0;
      cursor: pointer;
      z-index: 5;
      position: relative;
      font-size: 0.7rem;
    }
  }

  .mega-dropdown-grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .mega-dropdown-item { padding: 10px 12px; }
  .mega-dropdown-cta { display: none; }
  .header-actions .btn { display: none; }

  .hero-title { font-size: 2.4rem; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-stat { text-align: center; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .about-content { grid-template-columns: 1fr; gap: 40px; }
  .about-features-list { grid-template-columns: 1fr; }
  .contact-form-wrap { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-links.two-col { columns: 1; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .page-header h1 { font-size: 2.4rem; }
  .section-title { font-size: 1.8rem; }
  .cta-section h2 { font-size: 2rem; }

  .service-detail-grid { grid-template-columns: 1fr; padding: 24px; }
  .service-detail-grid.reverse .service-detail-image { order: 0; }
  .service-detail-grid.reverse .service-detail-content { order: 0; }

  .contact-info-panel { padding: 36px 24px; }
  .contact-form-panel { padding: 36px 24px; }
  .contact-form-wrap { gap: 0; }
  .contact-detail-item { margin-bottom: 18px; }
  .contact-detail-icon { width: 40px; height: 40px; font-size: 1rem; }
  .contact-info-panel h3 { font-size: 1.3rem; }
  .contact-info-panel > p { margin-bottom: 24px; }
  .contact-form-panel h3 { font-size: 1.2rem; }
  .contact-form-panel > p { margin-bottom: 20px; }
  .form-group { margin-bottom: 14px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }

  .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }

  .quote-float { display: none; }
  .whatsapp-float { width: 48px; height: 48px; font-size: 1.3rem; bottom: 20px; right: 20px; }
  .call-float { display: none; }

  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item.tall { grid-row: span 1; }
}


/* ============================================================
   RESPONSIVE — MOBILE ENHANCEMENTS
   ============================================================ */

/* ----- 768px Tablet Portrait ----- */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 60px 0; contain-intrinsic-size: 250px; }
  .section-header { margin-bottom: 40px; }
  .section-title { font-size: 1.8rem; }
  .section-subtitle { font-size: 0.95rem; }
  .section-label { font-size: 0.78rem; padding: 6px 18px; letter-spacing: 2px; }

  .why-promise { grid-template-columns: 1fr; gap: 36px; }
  .why-promise-badge { padding: 36px 24px; }
  
  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero-badge { font-size: 0.82rem; padding: 8px 18px; margin-bottom: 24px; }
  .hero-title { font-size: 2.2rem; margin-bottom: 16px; }
  .hero-text { font-size: 1rem; margin-bottom: 28px; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 24px; margin-top: 40px; padding-top: 24px; }
  .hero-stat { flex: 1 1 45%; text-align: center; }
  .hero-stat-number { font-size: 1.6rem; }
  .hero-stat-label { font-size: 0.82rem; }
  
  .service-card { padding: 24px 20px; }
  .service-card-icon { width: 48px; height: 48px; font-size: 1.3rem; margin-bottom: 16px; }
  .service-card h3 { font-size: 1.1rem; }
  .service-card p { font-size: 0.88rem; }
  .service-card-link { font-size: 0.85rem; margin-top: 14px; }
  
  .industry-card { padding: 22px 18px; }
  .industry-icon { width: 48px; height: 48px; font-size: 1.3rem; }
  .industry-card h3 { font-size: 0.95rem; }
  .industry-card p { font-size: 0.82rem; }
  
  .testimonial-card { padding: 28px 22px; }
  .testimonial-card::before { font-size: 3rem; right: 18px; top: 10px; }
  .testimonial-text { font-size: 0.92rem; }
  
  .stats-bar { padding: 40px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-number { font-size: 2rem; }
  .stat-label { font-size: 0.85rem; }
  
  .cta-section { padding: 60px 0; }
  .cta-section h2 { font-size: 1.8rem; }
  .cta-section p { font-size: 0.95rem; margin-bottom: 28px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 300px; justify-content: center; }
  
  .page-header { padding: 100px 0 50px; }
  .page-header h1 { font-size: 2.2rem; }
  .page-header p { font-size: 0.95rem; }
  .breadcrumb { font-size: 0.82rem; flex-wrap: wrap; }
  .page-content { padding: 50px 0; }
  
  .about-content { gap: 32px; }
  .about-image-main { height: 300px; }
  .about-image-badge { position: relative; bottom: 0; right: 0; margin-top: -20px; margin-left: auto; width: fit-content; }
  .about-content-text h2 { font-size: 1.6rem; }
  .about-content-text p { font-size: 0.92rem; }
  .about-features-list { grid-template-columns: 1fr; gap: 10px; }
  .about-feature-item { font-size: 0.88rem; }
  
  .service-detail-grid { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
  .service-detail-grid.reverse .service-detail-image { order: 1; }
  .service-detail-grid.reverse .service-detail-content { order: 2; }
  .service-detail-image { height: 200px; font-size: 3rem; }
  .service-detail-content h3 { font-size: 1.2rem; }
  .service-detail-content p { font-size: 0.9rem; }
  .service-features li { font-size: 0.88rem; }
  
  .contact-cards { grid-template-columns: 1fr; gap: 16px; margin-bottom: 36px; }
  .contact-card { padding: 28px 20px; }
  .contact-card-icon { width: 50px; height: 50px; font-size: 1.3rem; }
  .contact-card h4 { font-size: 0.95rem; }
  .contact-card p { font-size: 0.88rem; }
  .contact-form-wrap { gap: 0; }
  .contact-info-panel { padding: 36px 24px; }
  .contact-info-panel h3 { font-size: 1.4rem; }
  .contact-info-panel > p { font-size: 0.9rem; }
  .contact-detail-item { gap: 12px; }
  .contact-detail-icon { width: 42px; height: 42px; font-size: 1rem; }
  .contact-form-panel { padding: 36px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .map-container { height: 280px; margin-top: 36px; }
  
  .faq-question { padding: 16px 18px; font-size: 0.95rem; }
  .faq-answer { font-size: 0.9rem; }
  .faq-item.active .faq-answer { padding: 0 18px 16px; }
  
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .value-card { padding: 28px 16px; }
  .value-card h4 { font-size: 0.95rem; }
  .value-card p { font-size: 0.84rem; }
  
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .team-card { padding: 28px 16px; }
  .team-avatar { width: 72px; height: 72px; font-size: 1.8rem; }
  
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .process-step { padding: 24px 12px; }
  .process-step:not(:last-child)::after { display: none; }
  .process-number { width: 48px; height: 48px; font-size: 1rem; }
  .process-step h4 { font-size: 0.95rem; }
  .process-step p { font-size: 0.85rem; }
  
  .blog-card .blog-body { padding: 18px; }
  .blog-image { height: 180px; }
  .blog-body h3 { font-size: 1.05rem; }
  .blog-body p { font-size: 0.85rem; }
  .blog-meta { font-size: 0.78rem; flex-wrap: wrap; gap: 10px; }
  
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .portfolio-item { height: 200px; }
  .portfolio-filter { gap: 8px; }
  .portfolio-filter .filter-btn { padding: 8px 16px; font-size: 0.82rem; }
  
  .footer { padding: 50px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .footer h4 { font-size: 0.95rem; margin-bottom: 16px; }
  .footer-links a { font-size: 0.88rem; }
  .footer-newsletter-form { flex-direction: column; gap: 10px; }
  .footer-newsletter-form input { border-radius: var(--radius-sm); }
  .footer-newsletter-form button { border-radius: var(--radius-sm); width: 100%; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; font-size: 0.82rem; padding: 18px 0; }
  
  .social-float {
    position: fixed;
    left: 0;
    bottom: 0;
    top: auto;
    right: 0;
    transform: none;
    flex-direction: row;
    justify-content: center;
    gap: 0;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    z-index: 999;
  }
  .social-float-link { width: 48px; height: 44px; }
  .social-float-link .social-icon svg { width: 22px; height: 22px; }
  .social-tooltip { display: none; }
  .whatsapp-float { bottom: 76px; width: 52px; height: 52px; right: 16px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
  .call-float { display: none; }
  .quote-float { display: none; }
  .back-to-top { bottom: 80px; left: 16px; }
  
  .btn { padding: 12px 24px; font-size: 0.9rem; }
  .btn-sm { padding: 8px 18px; font-size: 0.84rem; }
  .btn-lg { padding: 14px 32px; font-size: 1rem; }
  
  .header-inner { height: 64px; padding: 0 16px; }
  .logo { font-size: 1.15rem; gap: 10px; }
  .logo-icon { width: 50px; height: 50px; font-size: 0.95rem; }
  .mega-nav { top: 64px; height: calc(100vh - 64px); }
  
  .footer-newsletter { grid-column: 1; }
  
  .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 20px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .grid-5 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  
  .hero-visual { display: none; }
  .hero-glow { width: 400px; height: 400px; right: -200px; }
  .hero-glow-2 { width: 300px; height: 300px; left: -150px; bottom: -50px; }
}

/* ----- 600px Small Tablet ----- */
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .section-header { margin-bottom: 32px; }
  .section-title { font-size: 1.6rem; }
  .section-subtitle { font-size: 0.9rem; }
  
  .hero { padding: 88px 0 48px; }
  .hero-title { font-size: 1.9rem; }
  .hero-text { font-size: 0.95rem; }
  .hero-stats { gap: 16px; }
  .hero-stat { flex: 1 1 100%; }
  
  .header-inner { height: 60px; padding: 0 12px; }
  .mega-nav { top: 60px; height: calc(100vh - 60px); }
  
  .grid-4 { grid-template-columns: 1fr 1fr; gap: 12px; }
  
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-number { font-size: 1.8rem; }
  
  .portfolio-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .portfolio-item { height: 160px; }
  
  .team-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .values-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  
  .page-header { padding: 80px 0 40px; }
  .page-header h1 { font-size: 1.8rem; }
  
  .about-image-main { height: 240px; }
  
  .service-detail-grid { padding: 20px; }
  .service-detail-image { height: 180px; font-size: 2.5rem; }
}

/* ----- 480px Mobile Phones ----- */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .section { padding: 40px 0; }
  .section-title { font-size: 1.4rem; }
  .section-subtitle { font-size: 0.88rem; }
  .section-label { font-size: 0.75rem; padding: 5px 14px; letter-spacing: 1.5px; }
  
  .hero { padding: 76px 0 40px; min-height: auto; }
  .hero-badge { font-size: 0.78rem; padding: 6px 14px; margin-bottom: 18px; }
  .hero-title { font-size: 1.7rem; }
  .hero-text { font-size: 0.9rem; margin-bottom: 24px; }
  .hero-buttons { gap: 12px; }
  .hero-buttons .btn { font-size: 0.88rem; padding: 12px 20px; }
  .hero-stats { margin-top: 28px; padding-top: 18px; gap: 16px; }
  .hero-stat-number { font-size: 1.3rem; }
  .hero-stat-label { font-size: 0.78rem; }
  
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; gap: 16px; }
  
  .service-card { padding: 20px 16px; }
  .service-card-icon { width: 44px; height: 44px; font-size: 1.2rem; margin-bottom: 14px; }
  .service-card h3 { font-size: 1.05rem; }
  .service-card p { font-size: 0.85rem; }
  
  .industry-card { padding: 18px 14px; }
  .industry-icon { width: 44px; height: 44px; font-size: 1.2rem; margin-bottom: 12px; }
  
  .stats-grid { grid-template-columns: 1fr; gap: 20px; }
  .stat-number { font-size: 2rem; }
  .stat-label { font-size: 0.88rem; }
  
  .testimonial-card { padding: 24px 18px; }
  .testimonial-card::before { font-size: 2.5rem; top: 8px; right: 14px; }
  .testimonial-stars { font-size: 0.9rem; margin-bottom: 10px; }
  .testimonial-text { font-size: 0.88rem; margin-bottom: 16px; }
  .testimonial-avatar { width: 40px; height: 40px; font-size: 0.85rem; }
  .testimonial-name { font-size: 0.88rem; }
  .testimonial-role { font-size: 0.8rem; }
  
  .cta-section { padding: 48px 0; }
  .cta-section h2 { font-size: 1.5rem; }
  .cta-section p { font-size: 0.9rem; }
  .cta-buttons .btn { width: 100%; }
  
  .page-header { padding: 70px 0 36px; }
  .page-header h1 { font-size: 1.6rem; }
  .page-header p { font-size: 0.88rem; }
  .breadcrumb { font-size: 0.78rem; gap: 6px; }
  .page-content { padding: 36px 0; }
  
  .about-content { gap: 24px; }
  .about-image-main { height: 200px; }
  .about-image-badge { padding: 14px 16px; }
  .about-image-badge .stat-number { font-size: 1.4rem; }
  .about-image-badge p { font-size: 0.78rem; }
  .about-content-text h2 { font-size: 1.4rem; }
  .about-content-text p { font-size: 0.88rem; }
  .about-features-list { gap: 8px; }
  .about-feature-item { font-size: 0.85rem; gap: 8px; }
  .about-feature-item .check { width: 18px; height: 18px; font-size: 0.65rem; }
  
  .service-detail-grid { padding: 16px; gap: 16px; margin-bottom: 36px; }
  .service-detail-image { height: 160px; font-size: 2.2rem; }
  .service-detail-content h3 { font-size: 1.1rem; }
  .service-detail-content p { font-size: 0.85rem; }
  .service-features li { font-size: 0.84rem; }
  .service-features li::before { width: 18px; height: 18px; font-size: 0.6rem; }
  
  .contact-card { padding: 24px 16px; }
  .contact-card-icon { width: 44px; height: 44px; font-size: 1.1rem; margin-bottom: 12px; }
  .contact-info-panel { padding: 28px 18px; }
  .contact-info-panel h3 { font-size: 1.2rem; }
  .contact-form-panel { padding: 28px 18px; }
  .contact-form-panel h3 { font-size: 1.2rem; }
  .map-container { height: 220px; margin-top: 28px; }
  
  .faq-question { padding: 14px 16px; font-size: 0.9rem; gap: 12px; }
  .faq-question .faq-icon { font-size: 1.1rem; }
  .faq-answer { font-size: 0.85rem; padding: 0 16px; }
  .faq-item.active .faq-answer { padding: 0 16px 14px; }
  
  /* Search Overlay Mobile */
  .search-overlay-content { padding: 0 16px; top: 10%; }
  .search-input { font-size: 1rem; padding: 14px 18px; }
  .search-header { gap: 10px; }
  .search-result-item { padding: 14px 16px; }
  .search-result-title { font-size: 0.9rem; }
  .search-result-url { font-size: 0.75rem; }
  .search-hint { font-size: 0.8rem; }
}

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.search-overlay-content {
  width: 100%;
  max-width: 640px;
  margin-top: 15vh;
  padding: 0 24px;
}

.search-header {
  display: flex;
  gap: 14px;
  align-items: center;
}

.search-input {
  flex: 1;
  padding: 18px 24px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.15rem;
  font-family: var(--font-primary);
  outline: none;
  transition: var(--transition-fast);
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.search-input:focus {
  border-color: var(--blue-400);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.search-close {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.search-close:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.search-results {
  margin-top: 20px;
  max-height: 50vh;
  overflow-y: auto;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 8px;
  transition: var(--transition-fast);
  animation: fadeInResult 0.3s ease both;
  text-decoration: none;
  color: var(--white);
}

.search-result-item:hover {
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateX(4px);
}

.search-result-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.search-result-title {
  font-weight: 600;
  font-size: 0.95rem;
  flex: 1;
}

.search-result-title mark {
  background: rgba(37, 99, 235, 0.3);
  color: var(--blue-200);
  padding: 1px 4px;
  border-radius: 3px;
}

.search-result-url {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

.search-empty {
  text-align: center;
  padding: 40px 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
}

.search-hint {
  text-align: center;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.85rem;
}

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

/* Scrollbar styling for search results */
.search-results::-webkit-scrollbar {
  width: 6px;
}

.search-results::-webkit-scrollbar-track {
  background: transparent;
}

.search-results::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}

.search-results::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}
  .values-grid { grid-template-columns: 1fr; gap: 12px; }
  .value-card { padding: 24px 16px; }
  .value-card-icon { width: 48px; height: 48px; font-size: 1.2rem; }
  .value-card h4 { font-size: 0.95rem; }
  .value-card p { font-size: 0.84rem; }
  
  .team-grid { grid-template-columns: 1fr; gap: 16px; }
  .team-card { padding: 24px 16px; }
  
  .process-grid { grid-template-columns: 1fr; gap: 0; }
  .process-step { padding: 20px 12px; }
  .process-number { width: 44px; height: 44px; font-size: 0.95rem; }
  
  .blog-image { height: 160px; }
  .blog-body { padding: 16px; }
  .blog-body h3 { font-size: 1rem; }
  .blog-meta { font-size: 0.75rem; }
  .blog-category { font-size: 0.72rem; padding: 4px 10px; top: 10px; left: 10px; }
  
  .portfolio-grid { grid-template-columns: 1fr; gap: 12px; }
  .portfolio-item { height: 200px; }
  .portfolio-overlay { padding: 16px; }
  .portfolio-filter .filter-btn { padding: 6px 14px; font-size: 0.78rem; }
  
  .footer { padding: 40px 0 0; }
  .footer-grid { gap: 28px; padding-bottom: 28px; }
  .footer h4 { font-size: 0.9rem; }
  .footer-links a { font-size: 0.85rem; }
  .footer-brand p { font-size: 0.85rem; }
  .footer-social a { width: 36px; height: 36px; }
  .footer-newsletter p { font-size: 0.85rem; }
  .footer-newsletter-form input { padding: 10px 14px; font-size: 0.85rem; }
  .footer-newsletter-form button { padding: 10px 14px; font-size: 0.85rem; }
  
  .btn { padding: 10px 20px; font-size: 0.85rem; }
  .btn-sm { padding: 8px 16px; font-size: 0.82rem; }
  .btn-lg { padding: 12px 28px; font-size: 0.95rem; }
  .btn-block { width: 100%; }
  
  .hamburger { padding: 4px; }
  .hamburger span { width: 22px; height: 2px; }
  .header-inner { height: 56px; padding: 0 12px; }
  .logo { font-size: 1.05rem; gap: 8px; }
  .logo-icon { width: 36px; height: 36px; font-size: 0.85rem; }
  .mega-nav { top: 56px; height: calc(100vh - 56px); }
  .mega-nav > li > a { padding: 12px 14px; font-size: 0.88rem; }
  .header-actions { gap: 8px; }
  .header-search { width: 36px; height: 36px; font-size: 1rem; }
  
  .hero-glow { display: none; }
  .hero-glow-2 { display: none; }
  
  .section-header { margin-bottom: 28px; }
  
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}

/* ============================================================
   DARK MODE
   ============================================================ */
@media (prefers-color-scheme: dark) {
  :root {
    --blue-900: #0f1923;
    --blue-800: #0e2a4f;
    --blue-700: #1a56db;
    --blue-600: #2563eb;
    --blue-500: #3b82f6;
    --blue-400: #60a5fa;
    --blue-300: #93c5fd;
    --blue-200: #bfdbfe;
    --blue-100: #1e3a5f;
    --blue-50: #1a2d44;
    --silver-600: #94a3b8;
    --silver-500: #4b5563;
    --silver-400: #475569;
    --silver-300: #334155;
    --silver-200: #1e293b;
    --silver-100: #0f172a;
    --silver-50: #0a0f1a;
    --white: #0f172a;
    --black: #f1f5f9;
    --color-primary: var(--blue-500);
    --color-primary-dark: #0f1923;
    --color-primary-light: var(--blue-400);
    --color-primary-lighter: #1a2d44;
    --color-secondary: var(--silver-400);
    --color-accent: var(--blue-300);
    --gradient-primary: linear-gradient(135deg, #0e2a4f 0%, #1a56db 50%, #2563eb 100%);
    --gradient-hero: linear-gradient(135deg, #060e18 0%, #0f1923 30%, #0e2a4f 70%, #1a56db 100%);
    --gradient-card: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(59, 130, 246, 0.03));
    --gradient-silver: linear-gradient(135deg, #1e293b, #0f172a, #0a0f1a);
    --gradient-cta: linear-gradient(135deg, #0e2a4f, #1a56db, #2563eb);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.15);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }

  body { background: #0a0f1a; color: #e2e8f0; }

  ::selection { background: #1a56db; color: #fff; }

  /* Header */
  .header {
    background: rgba(10, 15, 26, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .header.scrolled { box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3); }

  /* Navigation */
  .mega-nav > li > a { color: #e2e8f0; }
  .mega-nav > li > a:hover,
  .mega-nav > li > a.active { color: #60a5fa; background: #1a2d44; }

  .mega-dropdown {
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  }

  .mega-dropdown-item:hover { background: #1a2d44; }
  .mega-dropdown-icon { background: #1a2d44; }
  .mega-dropdown-item:hover .mega-dropdown-icon { background: #1a56db; color: #fff; }
  .mega-dropdown-text h4 { color: #f1f5f9; }
  .mega-dropdown-text p { color: #94a3b8; }
  .mega-dropdown-cta { border-top-color: #1e293b; }

  .simple-dropdown {
    background: rgba(15, 23, 42, 0.98);
    border-color: rgba(255, 255, 255, 0.06);
  }
  .simple-dropdown a { color: #e2e8f0; }
  .simple-dropdown a:hover { background: #1a2d44; color: #60a5fa; }

  .hamburger span { background: #e2e8f0; }
  .header-search { background: #1e293b; color: #94a3b8; }
  .header-search:hover { background: #1a2d44; color: #60a5fa; }

  @media (max-width: 768px) {
    .mega-nav { background: rgba(10, 15, 26, 0.98); }
  }

  /* Cards */
  .service-card {
    background: #0f172a;
    border-color: #1e293b;
  }
  .service-card:hover {
    border-color: #1a56db;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  }
  .service-card-icon { background: #1a2d44; }
  .service-card h3 { color: #f1f5f9; }
  .service-card:hover h3 { color: #60a5fa; }
  .service-card p { color: #94a3b8; }
  .service-card-link { color: #60a5fa; }

  .industry-card {
    background: #0f172a;
    border-color: #1e293b;
  }
  .industry-card:hover { border-color: #1a56db; }
  .industry-icon { background: #1a2d44; }
  .industry-card h3 { color: #f1f5f9; }
  .industry-card p { color: #94a3b8; }

  .testimonial-card {
    background: #0f172a;
    border-color: #1e293b;
  }
  .testimonial-card::before { color: #1a2d44; }
  .testimonial-text { color: #94a3b8; }
  .testimonial-name { color: #f1f5f9; }
  .testimonial-role { color: #64748b; }

  .value-card {
    background: #0f172a;
    border-color: #1e293b;
  }
  .value-card-icon { background: #1a2d44; }
  .value-card h4 { color: #f1f5f9; }
  .value-card p { color: #94a3b8; }

  .team-card {
    background: #0f172a;
    border-color: #1e293b;
  }
  .team-card h4 { color: #f1f5f9; }
  .team-card p { color: #94a3b8; }

  .blog-card {
    background: #0f172a;
    border-color: #1e293b;
  }
  .blog-body h3 { color: #f1f5f9; }
  .blog-body p { color: #94a3b8; }
  .blog-meta { color: #64748b; }

  .process-step h4 { color: #f1f5f9; }
  .process-step p { color: #94a3b8; }
  .process-number { background: #1a2d44; border-color: #1a56db; color: #60a5fa; }
  .process-step:not(:last-child)::after { color: #334155; }

  /* Stats */
  .stats-bar {
    background: #0f172a;
    border-color: #1e293b;
  }
  .stat-label { color: #94a3b8; }

  /* Sections */
  .section-bg { background: #0a0f1a; }
  .section-bg-alt { background: linear-gradient(180deg, #0a0f1a 0%, #0f172a 100%); }
  .section-label { background: #1a2d44; border-color: rgba(37, 99, 235, 0.2); }
  .section-subtitle { color: #94a3b8; }

  /* About */
  .about-image-badge { background: #0f172a; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); }
  .about-image-badge p { color: #94a3b8; }
  .about-content-text p { color: #94a3b8; }
  .about-feature-item .check { background: #1a2d44; }

  /* Contact */
  .contact-card {
    background: #0f172a;
    border-color: #1e293b;
  }
  .contact-card-icon { background: #1a2d44; }
  .contact-card h4 { color: #f1f5f9; }
  .contact-card p { color: #94a3b8; }
  .contact-form-wrap {
    background: #0f172a;
    border-color: #1e293b;
  }
  .contact-form-panel h3 { color: #f1f5f9; }
  .contact-form-panel > p { color: #94a3b8; }
  .form-group label { color: #e2e8f0; }
  .form-group input,
  .form-group textarea,
  .form-group select {
    background: #1e293b;
    border-color: #334155;
    color: #f1f5f9;
  }
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    background: #0f172a;
    border-color: #60a5fa;
  }
  .form-row { gap: 18px; }
  .map-container { background: #1e293b; border-color: #334155; }

  /* FAQ */
  .faq-item { border-color: #1e293b; }
  .faq-item:hover { border-color: #1a56db; }
  .faq-question { background: #0f172a; color: #f1f5f9; }
  .faq-question:hover { background: #1a2d44; }
  .faq-answer { color: #94a3b8; }

  /* Service Detail */
  .service-detail-grid {
    background: #0f172a;
    border-color: #1e293b;
  }
  .service-detail-content h3 { color: #f1f5f9; }
  .service-detail-content p { color: #94a3b8; }
  .service-detail-image { border-color: #334155; }
  .service-features li { color: #94a3b8; }
  .service-features li::before { background: #1a2d44; }

  /* Portfolio */
  .portfolio-item { background: #1e293b; }
  .portfolio-filter .filter-btn { border-color: #334155; color: #94a3b8; }
  .portfolio-filter .filter-btn:hover { border-color: #60a5fa; color: #60a5fa; }

  /* Blog */
  .blog-image { background: #1e293b; }
  .blog-category { background: rgba(15, 23, 42, 0.9); }

  /* Trust Badges */
  .trust-badge {
    background: #0f172a;
    border-color: #1e293b;
  }

  /* Social Float */
  .social-float {
    background: rgba(15, 23, 42, 0.92);
    border-color: rgba(255, 255, 255, 0.06);
  }
  .social-float-link { color: #64748b; }
  .social-tooltip {
    background: #0f172a;
    color: #f1f5f9;
    border-color: #1e293b;
  }

  @media (max-width: 768px) {
    .social-float { background: rgba(10, 15, 26, 0.95); border-top-color: rgba(255, 255, 255, 0.06); }
  }

  /* Back to Top */
  .back-to-top {
    background: #0f172a;
    color: #60a5fa;
    border-color: #1e293b;
  }
  .back-to-top:hover { background: #1a56db; color: #fff; }

  /* Footer is already dark - keep as is */
}

/* ============================================================
   HERO SVG SHAPES
   ============================================================ */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.hero-shape {
  position: absolute;
  opacity: 0.6;
}

.hero-shape-1 {
  width: 280px;
  height: 280px;
  top: 10%;
  right: 8%;
  animation: floatShape1 12s ease-in-out infinite;
}

.hero-shape-2 {
  width: 200px;
  height: 200px;
  top: 55%;
  right: 25%;
  animation: floatShape2 15s ease-in-out infinite;
}

.hero-shape-3 {
  width: 160px;
  height: 160px;
  top: 25%;
  right: 35%;
  animation: floatShape3 10s ease-in-out infinite;
}

.hero-shape-4 {
  width: 120px;
  height: 120px;
  top: 70%;
  right: 10%;
  animation: floatShape4 18s ease-in-out infinite;
}

.hero-shape-5 {
  width: 100px;
  height: 100px;
  top: 40%;
  right: 50%;
  animation: floatShape5 14s ease-in-out infinite;
}

@keyframes floatShape1 {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  33% { transform: translateY(-20px) rotate(5deg) scale(1.02); }
  66% { transform: translateY(10px) rotate(-3deg) scale(0.98); }
}

@keyframes floatShape2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(8deg); }
  50% { transform: translateY(5px) rotate(-5deg); }
  75% { transform: translateY(-8px) rotate(3deg); }
}

@keyframes floatShape3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-10px, -15px) scale(1.05); }
}

@keyframes floatShape4 {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  33% { transform: translateY(-12px) rotate(-6deg) scale(1.03); }
  66% { transform: translateY(8px) rotate(4deg) scale(0.97); }
}

@keyframes floatShape5 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.6; }
  25% { transform: translate(8px, -10px) rotate(10deg) scale(1.1); opacity: 0.8; }
  50% { transform: translate(-5px, -5px) rotate(-5deg) scale(0.9); opacity: 0.5; }
  75% { transform: translate(5px, -12px) rotate(8deg) scale(1.05); opacity: 0.7; }
}

/* Hide hero shapes on smaller screens */
@media (max-width: 768px) {
  .hero-shapes { display: none; }
}
