.connect-pad-icon {
  width: 140px;
  height: 140px;
  margin-bottom: 36px;
}
.connect-pad-label {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.connect-pad-desc {
  font-size: 1.35rem;
}

@media (max-width: 1200px) {
  .connect-pad-icon {
    width: 110px;
    height: 110px;
    margin-bottom: 28px;
  }
  .connect-pad-label {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  .connect-pad-desc {
    font-size: 1.15rem;
  }
}

@media (max-width: 900px) {
  .connect-pad-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
  }
  .connect-pad-label {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }
  .connect-pad-desc {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .connect-pad-icon {
    width: 110px;
    height: 110px;
    margin-bottom: 16px;
  }
  .connect-pad-label {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }
  .connect-pad-desc {
    font-size: 1.05rem;
  }
  .connect-pad-link {
    text-decoration: none !important;
    color: inherit !important;
  }
}
@media (max-width: 600px) {
  .connect-pad {
    aspect-ratio: 1 / 1;
    width: 90vw;
    height: auto;
    min-width: 90vw;
    min-height: 90vw;
    max-width: 90vw;
    max-height: 90vw;
    border-radius: 18px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }
}
@media (max-width: 600px) {
  .experts-section {
    padding: 4rem 0 4rem 0 !important;
    min-height: 500px !important;
  }
  .connect-wrapper {
    padding: 0;
    max-width: none;
    margin: 0;
  }
}
/* Bright White Pad Styles for Connect Section */
.connect-options {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
}

.connect-pad {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  padding: 56px 32px;
  min-width: 320px;
  max-width: 420px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s, transform 0.3s;
}

.connect-pad:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  transform: translateY(-6px) scale(1.04);
}

.connect-pad-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  width: 100%;
}

.connect-pad-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 32px;
}

.connect-pad-label {
  font-size: 2.1rem;
  font-weight: 700;
  color: #101820;
  margin-bottom: 8px;
  text-align: center;
}

.connect-pad-desc {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
}

@media (max-width: 1200px) {
  .connect-pad {
    padding: 40px 20px;
    min-width: 260px;
    max-width: 360px;
  }
  .connect-pad-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 24px;
  }
}

@media (max-width: 900px) {
  .connect-options {
    flex-direction: column;
    gap: 32px;
  }
  .connect-pad {
    max-width: 100%;
    min-width: 0;
    padding: 32px 12px;
  }
  .connect-pad-label {
    font-size: 2rem;
    margin-bottom: 6px;
  }
}

@media (max-width: 600px) {
  .connect-pad {
    padding: 18px 4px;
    border-radius: 18px;
  }
  .connect-pad-label {
    font-size: 1.1rem;
    margin-bottom: 4px;
  }
  .connect-pad-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 12px;
  }
  .connect-pad-desc {
    font-size: 0.95rem;
  }
}
/* Modern Connect Section Styles */
.connect-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

.connect-cap {
  width: 56px;
  height: 6px;
  background: #0074d9;
  border-radius: 3px;
  margin: 0 auto 18px auto;
  display: block;
}

.section-title {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 48px;
  color: #101820;
  text-align: center;
}

.connect-options {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
}

.connect-card {
  background: #fff;
  border: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border-radius: 32px;
  padding: 56px 32px;
  min-width: 320px;
  max-width: 420px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s;
  text-decoration: none;
}

.connect-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  transform: translateY(-6px) scale(1.04);
}

.connect-label {
  font-size: 2.1rem;
  font-weight: 700;
  color: #101820;
  margin-bottom: 8px;
  text-align: center;
}

.connect-card-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 32px;
}

.connect-desc {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 0;
  text-align: center;
}

@media (max-width: 1200px) {
  .connect-wrapper {
    padding: 0 1rem;
  }
  .section-title {
    font-size: 2.4rem;
    margin-bottom: 36px;
  }
  .connect-card {
    padding: 40px 20px;
    min-width: 260px;
    max-width: 360px;
  }
  .connect-card-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 24px;
  }
}

@media (max-width: 900px) {
  .connect-options {
    flex-direction: column;
    gap: 32px;
  }
  .connect-card {
    max-width: 100%;
    min-width: 0;
    padding: 32px 12px;
  }
  .section-title {
    font-size: 2rem;
    margin-bottom: 28px;
  }
}

@media (max-width: 600px) {
  .connect-wrapper {
    padding: 0 0.5rem;
  }
  .section-title {
    font-size: 1.4rem;
    margin-bottom: 18px;
  }
  .connect-card {
    padding: 18px 4px;
    border-radius: 18px;
  }
  .connect-label {
    font-size: 1.1rem;
    margin-bottom: 4px;
  }
  .connect-card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 12px;
  }
  .connect-options {
    gap: 18px;
  }
  .connect-cap {
    width: 36px;
    height: 4px;
    margin-bottom: 10px;
  }
  .connect-desc {
    font-size: 0.95rem;
  }
}
/* Blue Cap Line for Section Title */
.connect-cap {
  width: 56px;
  height: 6px;
  background: #0074d9;
  border-radius: 3px;
  margin: 0 auto 18px auto;
  display: block;
}

@media (max-width: 600px) {
  .connect-cap {
    width: 36px;
    height: 4px;
    margin-bottom: 10px;
  }
}
/* Modern Connect Section Styles */
.connect-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

.section-title {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 48px;
  color: #101820;
}

.connect-options {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
}

.connect-card {
  background: #fff;
  border: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border-radius: 32px;
  padding: 56px 32px;
  min-width: 320px;
  max-width: 420px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s;
  text-decoration: none;
}

.connect-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  transform: translateY(-6px) scale(1.04);
}

.connect-label {
  font-size: 2.1rem;
  font-weight: 700;
  color: #101820;
  margin-bottom: 8px;
}

.connect-card-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 32px;
}

@media (max-width: 900px) {
  .connect-options {
    flex-direction: column;
    gap: 32px;
  }
  .connect-card {
    max-width: 100%;
    min-width: 0;
  }
}
/* Connect Section Styles */
.connect-wrapper {
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #101820;
}

.connect-options {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.connect-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: transparent;
  border: 3px solid black;
  border-radius: 20px;
  padding: 40px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.connect-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.connect-label {
  font-size: 1.8rem;
  font-weight: 600;
  color: #101820;
  margin-bottom: 20px;
}

.connect-card-icon {
  width: 100px;
  height: 100px;
}

@media (min-width: 768px) {
  .connect-options {
    flex-direction: row;
    justify-content: center;
  }

  .connect-card {
    width: 45%;
  }
}
@media (max-width: 600px) {
  /* Make logo and links containers more compact for mobile */
  .footer-logo-container,
  .footer-links-container {
    width: 44% !important;
    max-width: 44% !important;
    flex: 1 1 44% !important;
    box-sizing: border-box !important;
  }
}
@media (max-width: 600px) {
  .footer-links-container > div {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1rem !important;
  }
}
@media (max-width: 600px) {
  /* Stack navigation links vertically for mobile */
  .custom-footer > div[style*="justify-content:space-between"] > div[style*="flex-direction:column"] > div[style*="flex-direction:row"] {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1rem !important;
  }
}
@media (max-width: 600px) {
  .custom-footer > div[style*="justify-content:space-between"] > div[style*="flex-direction:row"] {
    flex-direction: column !important;
    align-items: flex-end !important;
    gap: 1rem !important;
  }
}
@media (max-width: 600px) {
  .custom-footer img[alt="AfroTechnology Logo"] {
    margin-bottom: 2.7rem !important;
  }
}
@media (max-width: 600px) {
  /* Add space between subscription button and logo */
  .custom-footer form {
    margin-bottom: 2.2rem !important;
  }
  .custom-footer img[alt="AfroTechnology Logo"] {
    margin-top: 2.2rem !important;
  }
}
@media (max-width: 600px) {
  .custom-footer > div[style*="display:flex"] {
    gap: 0.7rem !important;
  }
}
@media (max-width: 600px) {
  .footer-left-col {
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }
  .footer-left-col h2 {
    text-align: center !important;
    width: 100% !important;
  }
  .footer-left-col .footer-icons-col {
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }
  .footer-left-col .footer-icons-col > div {
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
  }
  .footer-left-col .footer-icons-col img {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .footer-left-col .footer-icons-col span {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
}
@media (max-width: 600px) {
  .custom-footer [style*='flex-direction:column'] {
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }
}
@media (max-width: 600px) {
  .custom-footer h2 {
    font-size: 1.3rem !important;
    line-height: 1.2 !important;
    text-align: center !important;
  }
}
/* Responsive icon text and images for footer */
@media (max-width: 600px) {
  .custom-footer [style*='font-size:1.3rem'] {
    font-size: 1rem !important;
  }
  .custom-footer [alt='SEO Icon'],
  .custom-footer [alt='WiFi Icon'] {
    height: 24px !important;
    width: 24px !important;
  }
}
/* Responsive headline for footer */
@media (max-width: 600px) {
  .custom-footer h2 {
    font-size: 1.3rem !important;
    line-height: 1.2 !important;
  }
}
/* Responsive Landing Page for Small Devices */
/* --- All landing area changes below this line are for mobile screens only (max-width: 600px) --- */
@media (max-width: 600px) {
  .hero-title-main {
    max-width: 100vw !important;
    padding: 1.2rem 0.5rem !important;
    margin-bottom: 1.2rem !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: none !important;
  }
  .hero-title-main h1 {
    font-size: 3.7rem !important;
    line-height: 1.05 !important;
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
    font-weight: 900 !important;
  }
}
@media (max-width: 600px) {
  /* Remove all hero landing area containers for mobile screens */
  .hero-container {
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    max-width: 100% !important;
    min-width: 0 !important;
    width: 100% !important;
    overflow: visible !important;
  }
}
@media (max-width: 600px) {
  /* Fresh mobile styles for hero landing area */
  .hero-content {
    flex-direction: column !important;
    gap: 1.5rem !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 0.7rem !important;
  }
  .hero-title-main h1 {
    font-size: 2.3rem !important;
    line-height: 1.15 !important;
    text-align: left !important;
    margin: 0 0 0.5rem 0 !important;
    padding: 0 !important;
  }
  .hero-title-highlight h1 {
    font-size: 2.7rem !important;
    line-height: 1.15 !important;
    text-align: left !important;
    margin: 0 0 1.2rem 0 !important;
    padding: 0 !important;
  }
  .hero-paragraph-container p {
    font-size: 1.1rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1.2rem !important;
    text-align: left !important;
  }
  .hero-cta-client-combined {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    max-width: 100% !important;
    padding: 0 !important;
  }
}
@media (max-width: 600px) {
  .footer-lead-section,
  .custom-footer {
    padding: 1.2rem 0 1rem 0 !important;
  }
  .footer-lead-section > div,
  .custom-footer > div {
    flex-direction: column !important;
    gap: 1.2rem !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    max-width: 100% !important;
    padding: 0 1rem !important;
  }
  .footer-lead-section h2 {
    font-size: 1.3rem !important;
    margin-bottom: 0.7rem !important;
    text-align: left !important;
  }
  .footer-lead-section .footer-icons {
    flex-direction: column !important;
    gap: 0.7rem !important;
  }
  .footer-lead-section form {
    width: 100% !important;
  }
  .footer-lead-section input[type="email"] {
    font-size: 0.95rem !important;
    padding: 0.5rem 0.8rem !important;
  }
  .footer-lead-section button {
    font-size: 0.95rem !important;
    padding: 0.5rem 0 !important;
  }
  .custom-footer img {
    height: 48px !important;
    max-width: 120px !important;
    margin-bottom: 0.7rem !important;
  }
  .custom-footer a {
    font-size: 0.95rem !important;
    margin-bottom: 0.5rem !important;
  }
  /* Stack landing area vertically for small screens */
  .hero {
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    padding: 2rem 0.7rem !important;
    min-height: auto !important;
  }
  .hero-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.2rem !important;
    width: 100% !important;
    padding: 0 !important;
    text-align: left !important;
  }
  .hero-text {
    width: 100% !important;
    padding: 1rem 0 !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
  }
  .hero-stats {
    width: 100% !important;
    align-items: stretch !important;
    flex-direction: column !important;
    gap: 1rem !important;
    margin: 0 !important;
  }
  .cta-section {
    width: 100% !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 1rem !important;
    padding: 0 !important;
    margin-top: 1rem !important;
  }
  .hero h1 {
    font-size: 1.3rem !important;
    word-break: break-word !important;
    white-space: normal !important;
    line-height: 1.2 !important;
    text-align: left !important;
    hyphens: auto !important;
  }
}
/*
Theme Name: AfroTechnology IT Solutions
Author: AfroTechnology Team
Version: 2.0
Description: Advanced WordPress theme for IT solutions company with cutting-edge design
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* CSS Custom Properties for Advanced Theming */
:root {
  /* Primary Color Palette */
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --primary-color: #667eea;
  --primary-dark: #5a67d8;
  --primary-light: #7c3aed;
  
  /* Advanced Color System */
  --bg-primary: #0a0e1a;
  --bg-secondary: #0f1419;
  --bg-glass: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(255, 255, 255, 0.2);
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Spacing System */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.1);
  
  /* Animations */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Advanced Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Enhanced Mobile Viewport Settings */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
  /* Prevent horizontal scroll on mobile */
  overflow-x: hidden;
  /* Hide vertical scrollbar while keeping scroll functionality */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer and Edge */
}

/* Hide scrollbar for Webkit browsers (Chrome, Safari, Opera) */
html::-webkit-scrollbar {
  display: none;
}

body {
  font-family: var(--font-primary);
  margin: 0;
  padding: 0;
  background: #020408;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  font-feature-settings: 'kern' 1, 'liga' 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Improved mobile touch behavior */
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  /* Hide vertical scrollbar while keeping scroll functionality */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer and Edge */
}

/* Hide scrollbar for Webkit browsers (Chrome, Safari, Opera) */
body::-webkit-scrollbar {
  display: none;
}

/* Adjust body padding for large screens */
@media (min-width: 1400px) {
  body {
    padding: 0;
  }
  
  html {
    scroll-padding-top: 60px;
  }
}

/* Advanced Header with Glassmorphism */
header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #333333;
  padding: var(--space-sm) var(--space-xl);
  border-radius: 50px;
  margin: var(--space-md) auto 0 auto;
  max-width: 1100px;
  position: fixed;
  top: var(--space-md);
  left: 0;
  right: 0;
  z-index: 1000;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow-glass);
  overflow: hidden;
  /* Ensure completely static positioning */
  transform: none !important;
  animation: none !important;
  will-change: auto;
  /* Allow color transitions but no position changes */
  transition: background-color var(--transition-normal), color var(--transition-normal), box-shadow var(--transition-normal);
}

/* Removed decorative top gradient line above header/nav */
header::before {
  content: none !important;
  display: none !important;
}

header.scrolled {
  background: rgba(0, 0, 0, 0.98) !important;
  color: #ffffff !important;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* Ensure position stays fixed even when scrolled */
  transform: none !important;
  top: var(--space-md) !important;
  position: fixed !important;
}

.header-content {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  /* Ensure static content positioning */
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

/* Ensure logo stays left and hamburger stays right */
.brand {
  flex: 0 0 auto;
  margin-right: auto;
}

.menu-toggle {
  flex: 0 0 auto;
}

/* Prevent any dynamic header position changes */
header,
header * {
  transform: none !important;
  animation: none !important;
}

/* Override any scroll-based classes that might affect position */
header.scrolled,
header.hidden,
header.visible {
  /* Allow color changes */
  transform: none !important;
  top: var(--space-md) !important;
  position: fixed !important;
  /* Colors are handled by the normal .scrolled class above */
}

/* Advanced Logo Design */
.brand {
  display: flex;
  flex-direction: column;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  position: relative;
  height: 30px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  height: 30px;
  cursor: pointer;
  transition: opacity var(--transition-normal);
}

.logo-link:hover {
  opacity: 0.8;
}

.logo-link:focus {
  outline: 2px solid #00d4ff;
  outline-offset: 2px;
  border-radius: 4px;
}

.logo-image {
  height: 30px;
  width: auto;
  object-fit: contain;
  max-width: 180px;
  transition: opacity var(--transition-normal);
}

.logo-white {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity var(--transition-normal);
}

.logo-black {
  opacity: 1;
  position: relative;
  transition: opacity var(--transition-normal);
}

header.scrolled .logo-white {
  opacity: 1;
}

header.scrolled .logo-black {
  opacity: 0;
}

.tagline {
  font-size: 0.75rem;
  color: #cbd5e0;
  margin-top: 2px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.8;
  transition: color var(--transition-normal);
  display: none;
}

header.scrolled .tagline {
  color: #666;
}

/* Under-Header Fixed Cart Bar */
.cart-under-header {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  top: 118px; /* Stable position under header on load */
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  padding: 0.6rem 1.1rem 0.55rem 0.95rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: auto;
  max-width: calc(100% - 2rem);
  transition: background .3s, box-shadow .3s, opacity .25s ease, transform .25s ease;
}
/* Hidden state when cart empty (fragment adds .is-empty) */
.cart-under-header.is-empty { opacity:0; pointer-events:none; transform:translate(-50%, -6px); }
@media (max-width: 640px){
  .cart-under-header { top: 132px; }
}
body.admin-bar .cart-under-header { /* push below WP admin bar */
  top: 150px; /* Adjusted for admin bar without JS */
}
.cart-under-header-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  color: #0a0e1a;
  line-height: 1;
  letter-spacing: .5px;
}
header.scrolled ~ .cart-under-header {
  /* Match the scrolled header exact dark style (pure near-black) */
  background: rgba(0, 0, 0, 0.98);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}
header.scrolled ~ .cart-under-header .cart-under-header-link { color: #fff; }
.cart-under-header-icon svg { display:block; color: currentColor; }
.cart-under-header-count {
  background: var(--primary-color,#667eea);
  color: #fff;
  min-width: 1.6rem;
  height: 1.6rem;
  font-size: .7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  padding: 0 .4rem;
}
.cart-under-header:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,0.15);
}
@media (max-width: 640px){
  .cart-under-header { left: auto; right: 1rem; transform:none; }
}

/* Advanced Navigation - Now handled in /assets/css/navigation.css */

/* Advanced Main Content */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

main {
  background: transparent;
  margin: 0;
  padding: 0;
  position: relative;
}

/* Revolutionary Hero Section */
.hero {
  text-align: left;
  padding: 8rem var(--space-xl);
  background: #020408;
  color: white;
  margin: 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Animated Background */
.hero::before {
  display: none;
}

.hero::after {
  display: none;
}

.hero-content {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 1800px;
  /* Group all content together */
  background: yellow;
  padding: var(--space-xl) var(--space-3xl);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  width: 100%;
}

/* CTA Section for Side-by-Side Layout */
.cta-section {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: var(--space-2xl);
  flex-wrap: wrap;
}

/* Client Showcase Styling */
.client-showcase {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.client-avatars {
  display: flex;
  align-items: center;
}

.avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 3px solid #020408;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  font-size: 1rem;
  margin-right: -12px;
}

.avatar:last-child {
  margin-right: 0;
}

.avatar-1 {
  background: linear-gradient(45deg, #00d4ff, #0099cc);
}

.avatar-2 {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
}

.avatar-3 {
  background: linear-gradient(45deg, #4834d4, #686de0);
}

.client-text {
  display: flex;
  flex-direction: column;
}

.client-count {
  font-weight: 700;
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.client-subtitle {
  font-size: 0.9rem;
  color: #94a3b8;
  font-weight: 400;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--space-lg);
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 .highlight {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: 2px;
  animation: expand 2s ease-out;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: var(--space-2xl);
  opacity: 0.9;
  color: #cbd5e0;
  line-height: 1.7;
  font-weight: 400;
}

/* Advanced CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: #ffffff;
  color: #020408;
  padding: var(--space-md) var(--space-2xl);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-normal);
  border: none;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left var(--transition-slow);
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
  background: #f8f9fa;
}

.cta-button::after {
  content: "→";
  font-size: 1.2rem;
  transition: transform var(--transition-normal);
}

.cta-button:hover::after {
  transform: translateX(4px);
}

/* Hero Stats Section */
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  align-items: flex-end;
}

/* Slideshow Styling */
.slideshow-container {
  position: relative;
  max-width: 700px;
  margin: auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-glass);
}

.slide {
  display: none;
  position: relative;
}

.slide.active {
  display: block;
}

.slide-image {
  width: 100%;
  height: 550px;
  object-fit: cover;
  display: block;
}

.slideshow-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: inline-block;
  transition: background-color var(--transition-normal);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.dot.active, .dot:hover {
  background-color: #00d4ff;
  box-shadow: 0 2px 12px rgba(0, 212, 255, 0.5);
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  min-width: 280px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.stat-label {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 900;
  color: #00d4ff;
  margin-bottom: var(--space-md);
  font-family: var(--font-mono);
}

.stat-change {
  background: rgba(0, 212, 255, 0.2);
  color: #00d4ff;
  padding: var(--space-sm) var(--space-md);
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

/* Revolutionary Services Section */
.services-section {
  background: var(--bg-secondary);
  padding: 8rem var(--space-xl);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  display: none;
}

.services-section h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: var(--space-3xl);
  color: #ffffff;
  font-weight: 800;
  position: relative;
  z-index: 2;
}

.services-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

/* Services Section Heading */
#services h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: var(--space-3xl);
  color: #ffffff;
  font-weight: 800;
  position: relative;
  z-index: 2;
}

#services h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-3xl) 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: -1;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover::after {
  opacity: 0.05;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(102, 126, 234, 0.3);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.service-icon {
  font-size: 4rem;
  margin-bottom: var(--space-lg);
  color: #00d4ff;
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotateY(360deg);
  filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.5));
}

.service-card h3 {
  color: #ffffff;
  margin-bottom: var(--space-md);
  font-size: 1.4rem;
  font-weight: 700;
  transition: color var(--transition-normal);
}

.service-card:hover h3 {
  color: #ffffff;
}

.service-card p {
  color: #94a3b8;
  line-height: 1.7;
  font-size: 1rem;
  transition: color var(--transition-normal);
}

.service-card:hover p {
  color: #cbd5e0;
}

/* Advanced About Section */
.about {
  background: var(--bg-primary);
  margin: 0;
  padding: 8rem var(--space-xl);
  position: relative;
  overflow: hidden;
}

.about::before {
  display: none;
}

.about h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: var(--space-3xl);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  position: relative;
  z-index: 2;
}

.about h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

.about p {
  text-align: center;
  color: #94a3b8;
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto var(--space-3xl) auto;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* Revolutionary Contact Section */
.contact {
  text-align: center;
  margin: 0;
  padding: 8rem var(--space-xl);
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.contact::before {
  display: none;
}

.contact h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-md);
  font-weight: 800;
  position: relative;
  z-index: 2;
}

.contact > p {
  color: #94a3b8;
  font-size: 1.25rem;
  margin-bottom: var(--space-3xl);
  position: relative;
  z-index: 2;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xl) auto;
  max-width: 1000px;
  position: relative;
  z-index: 2;
}

.contact-item {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.contact-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.contact-item:hover::before {
  transform: scaleX(1);
}

.contact-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(102, 126, 234, 0.3);
  box-shadow: 0 15px 30px rgba(102, 126, 234, 0.1);
}

.contact-item h4 {
  color: #00d4ff;
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.contact-item p {
  color: #cbd5e0;
  font-size: 1rem;
  font-weight: 500;
}

/* Advanced Footer */
footer {
  background: #0f172a;
  color: white;
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--primary-gradient);
  opacity: 0.6;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: all var(--transition-normal);
  font-weight: 500;
  position: relative;
  padding: var(--space-sm);
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: width var(--transition-normal);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-links a:hover {
  color: #ffffff;
}

footer p {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.8;
}

/* Advanced Typography */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: var(--space-md);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

h1 {
  margin-top: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
}

p {
  margin-bottom: var(--space-md);
  line-height: 1.7;
  color: #94a3b8;
}

/* Scrollbar Hidden - Custom scrollbar styles removed as scrollbar is hidden */
/* Scrolling functionality remains intact, only visual scrollbar is hidden */

/* Advanced Animations */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes grid-move {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes expand {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Utility Classes */
.text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow {
  filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.5));
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Advanced Responsive Design */

/* Extra Large Screens (4K, Ultra-wide, TV screens) */
@media (min-width: 1920px) {
  header {
    max-width: 1200px;
    padding: 1px var(--space-lg);
    border-radius: 50px;
    margin: var(--space-lg) auto 0 auto;
    top: var(--space-lg);
  }
  
  .logo {
    height: 22px;
  }
  
  .logo-link {
    height: 22px;
  }
  
  .logo-image {
    height: 22px;
    max-width: 120px;
  }
  
  body {
    padding: 0;
  }
  
  html {
    scroll-padding-top: 35px;
  }
}

/* Large Desktop Screens */
@media (min-width: 1400px) and (max-width: 1919px) {
  header {
    max-width: 1200px;
    padding: 2px var(--space-lg);
    border-radius: 50px;
    margin: var(--space-lg) auto 0 auto;
    top: var(--space-lg);
  }
  
  .logo {
    height: 24px;
  }
  
  .logo-link {
    height: 24px;
  }
  
  .logo-image {
    height: 24px;
    max-width: 140px;
  }
  
  body {
    padding: 0;
  }
  
  html {
    scroll-padding-top: 45px;
  }
  
  /* Enhanced CTA Section for Large Screens */
  .cta-section {
    justify-content: flex-start;
    gap: 3rem;
  }
  
  .client-showcase {
    gap: 2rem;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    text-align: center;
  }
  
  .hero-stats {
    align-items: center;
  }
  
  .services {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

/* Laptop Screens - Keep side-by-side layout */
@media (min-width: 1025px) and (max-width: 1399px) {
  .cta-section {
    justify-content: flex-start;
    gap: 2.5rem;
    flex-wrap: nowrap;
  }
  
  .client-showcase {
    gap: 1.5rem;
  }
  
  .avatar {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 1rem;
    --space-2xl: 1.5rem;
    --space-3xl: 2rem;
  }

  body {
    padding: 0;
  }

  header {
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) auto 0 auto;
    position: fixed;
    top: var(--space-lg);
    left: var(--space-md);
    right: var(--space-md);
    max-width: calc(100vw - 2rem);
    width: auto;
    min-width: 320px;
    /* Enhanced mobile header */
    border-radius: 50px;
    overflow: visible; /* Allow mobile menu to show */
  }
  
  .header-content {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: relative;
  }
  
  .brand {
    order: 1;
    flex: 0 0 auto;
    margin-right: auto;
    flex-shrink: 0;
  }
  
  .menu-toggle {
    display: flex;
    order: 2;
    flex: 0 0 auto;
  }
  
  /* Mobile Navigation - Now handled in /assets/css/navigation.css */
  
  /* Mobile Hero Adjustments */
  .hero {
    padding: 6rem var(--space-md);
    min-height: 90vh;
  }
  
  .hero-content {
    gap: var(--space-2xl);
  }
  
  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: var(--space-md);
  }
  
  .hero p {
    font-size: 1.1rem;
    margin-bottom: var(--space-xl);
  }
  
  /* Stack CTA Section Vertically on Mobile */
  .cta-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .stat-card {
    min-width: 250px;
  }
  
  /* Mobile Sections */
  .services-section,
  .about,
  .contact {
    padding: 6rem var(--space-md);
  }
  
  .services {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .service-card {
    padding: var(--space-xl);
  }
  
  .contact-info {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .footer-links {
    flex-direction: column;
    gap: var(--space-md);
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.1rem !important;
    word-break: break-word !important;
    white-space: normal !important;
    line-height: 1.15 !important;
    text-align: left !important;
    hyphens: auto !important;
  }
  body {
    padding: 0;
  }

  header {
    padding: var(--space-sm) var(--space-md);
    margin: var(--space-lg) auto 0 auto;
    position: fixed;
    top: var(--space-lg);
    left: var(--space-sm);
    right: var(--space-sm);
    max-width: calc(100vw - 1rem);
    width: auto;
    min-width: 280px;
    /* Better mobile spacing */
    border-radius: 50px;
  }
  
  .header-content {
    gap: var(--space-sm);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
  }
  
  .brand {
    order: 1;
    flex: 0 0 auto; /* Don't grow or shrink */
    margin-right: auto; /* Push menu-toggle to far right */
  }
  
  .menu-toggle {
    order: 2;
    flex: 0 0 auto; /* Don't grow or shrink */
  }
  
  .logo {
    order: 1; /* Logo on the left */
    height: 35px; /* Smaller logo on very small screens */
  }
  
  .logo-link {
    height: 35px; /* Match logo height */
  }
  
  .logo-image {
    height: 35px;
    max-width: 180px;
  }
  
  .tagline {
    font-size: 0.65rem;
  }
  
  .hero {
    padding: 4rem var(--space-sm);
    min-height: 85vh;
  }
  
  .hero h1 {
    font-size: clamp(1.75rem, 10vw, 2.5rem);
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.9rem;
  }
  
  /* Stack CTA Section Vertically on Small Mobile */
  .cta-section {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
  }
  
  .client-showcase {
    justify-content: center;
  }
  
  .avatar {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }
  
  .services-section,
  .about,
  .contact {
    padding: 4rem var(--space-sm);
  }
  
  .service-card {
    padding: var(--space-lg);
  }
  
  .service-icon {
    font-size: 3rem;
  }
  
  .stat-card {
    min-width: 200px;
    padding: var(--space-lg);
  }
  
  .stat-value {
    font-size: 2rem;
  }
}

/* High Performance Optimizations */
* {
  will-change: auto;
}

.service-card,
.contact-item,
.stat-card,
.cta-button {
  contain: layout style paint;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero::before,
  .hero::after {
    animation: none;
  }
}

/* Dark Theme Support */
@media (prefers-color-scheme: dark) {
  /* Already optimized for dark theme */
}

/* Print Styles */
@media print {
  * {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
  }
  
  .header,
  .footer,
  .menu-toggle {
    display: none !important;
  }
  
  .hero,
  .services-section,
  .about,
  .contact {
    background: white !important;
    padding: 1rem !important;
  }
}

/* WooCommerce Logo Size Fixes */
/* Ensure logo has consistent size on WooCommerce pages */
.woocommerce .logo,
.woocommerce-page .logo,
.single-product .logo,
.woocommerce-shop .logo,
.woocommerce-cart .logo,
.woocommerce-checkout .logo {
  height: 30px !important;
}

.woocommerce .logo-link,
.woocommerce-page .logo-link,
.single-product .logo-link,
.woocommerce-shop .logo-link,
.woocommerce-cart .logo-link,
.woocommerce-checkout .logo-link {
  height: 30px !important;
}

.woocommerce .logo-image,
.woocommerce-page .logo-image,
.single-product .logo-image,
.woocommerce-shop .logo-image,
.woocommerce-cart .logo-image,
.woocommerce-checkout .logo-image {
  height: 30px !important;
  max-width: 180px !important;
}

/* Mobile responsive logo fixes for all pages including WooCommerce */
@media (max-width: 768px) {
  .logo,
  .woocommerce .logo,
  .woocommerce-page .logo,
  .single-product .logo,
  .woocommerce-shop .logo,
  .woocommerce-cart .logo,
  .woocommerce-checkout .logo {
    height: 28px !important;
  }
  
  .logo-link,
  .woocommerce .logo-link,
  .woocommerce-page .logo-link,
  .single-product .logo-link,
  .woocommerce-shop .logo-link,
  .woocommerce-cart .logo-link,
  .woocommerce-checkout .logo-link {
    height: 28px !important;
  }
  
  .logo-image,
  .woocommerce .logo-image,
  .woocommerce-page .logo-image,
  .single-product .logo-image,
  .woocommerce-shop .logo-image,
  .woocommerce-cart .logo-image,
  .woocommerce-checkout .logo-image {
    height: 28px !important;
    max-width: 150px !important;
  }
}

@media (max-width: 480px) {
  .logo,
  .woocommerce .logo,
  .woocommerce-page .logo,
  .single-product .logo,
  .woocommerce-shop .logo,
  .woocommerce-cart .logo,
  .woocommerce-checkout .logo {
    height: 26px !important;
  }
  
  .logo-link,
  .woocommerce .logo-link,
  .woocommerce-page .logo-link,
  .single-product .logo-link,
  .woocommerce-shop .logo-link,
  .woocommerce-cart .logo-link,
  .woocommerce-checkout .logo-link {
    height: 26px !important;
  }
  
  .logo-image,
  .woocommerce .logo-image,
  .woocommerce-page .logo-image,
  .single-product .logo-image,
  .woocommerce-shop .logo-image,
  .woocommerce-cart .logo-image,
  .woocommerce-checkout .logo-image {
    height: 26px !important;
    max-width: 120px !important;
  }
}

/* Homepage Featured Products Section */
.homepage-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15) !important;
}

.homepage-product-card:hover .product-image-wrapper img {
  transform: scale(1.05);
}

.homepage-product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.homepage-product-card:hover::before {
  opacity: 1;
}

/* Special Featured Product Highlight */
.featured-highlight {
  position: relative;
  animation: featuredGlow 3s ease-in-out infinite alternate;
}

.featured-highlight::before {
  opacity: 1 !important;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
  background-size: 200% 100%;
  animation: gradientShift 2s ease-in-out infinite;
}

.featured-highlight:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 50px rgba(102, 126, 234, 0.3) !important;
}

@keyframes featuredGlow {
  0% {
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
  }
  100% {
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.featured-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(102, 126, 234, 0.5) !important;
}

.product-view-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4) !important;
}

.view-all-products-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4) !important;
}

/* Responsive Design for Products Section */
@media (max-width: 768px) {
  .homepage-products-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 1.5rem !important;
  }
  
  .featured-products-section {
    padding: 4rem 0 !important;
  }
  
  .section-title {
    font-size: 2rem !important;
  }
}

@media (max-width: 480px) {
  .homepage-products-grid {
    grid-template-columns: 1fr !important;
  }
  
  .section-title {
    font-size: 1.8rem !important;
  }
}
