/* ========================================
   Header & Navigation
======================================== */
.site-header {
  background: rgba(7, 35, 74, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
  background: rgba(7, 35, 74, 0.98);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: var(--spacing-md);
}

.site-branding a {
  display: inline-block;
}

.site-branding img,
.custom-logo {
  height: 40px !important;
  max-height: 40px !important;
  width: auto !important;
  max-width: 200px !important;
  transition: height 0.3s ease;
}

.custom-logo-link img {
  height: 40px !important;
  max-height: 40px !important;
  width: auto !important;
  max-width: 200px !important;
}

.site-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 10002 !important;
  position: relative !important;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hamburger .line {
  width: 25px;
  height: 3px;
  background: #FFFFFF;
  transition: all var(--transition-base);
}

.mobile-menu-toggle[aria-expanded="true"] .line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle[aria-expanded="true"] .line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Desktop only - menu displayed normally */
@media (min-width: 769px) {
  .menu-container {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
  }
}

.primary-menu {
  display: flex;
  list-style: none;
  gap: var(--spacing-md);
  margin: 0;
  padding: 0;
}

.primary-menu li {
  position: relative;
}

.primary-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-base);
  position: relative;
}

.primary-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  transition: width var(--transition-base);
}

.primary-menu a:hover,
.primary-menu .current-menu-item a {
  color: #FFFFFF;
}

.primary-menu a:hover::after,
.primary-menu .current-menu-item a::after {
  width: 80%;
}

.nav-actions .btn-sm {
  padding: 0.625rem 1.5rem;
  font-size: 0.9rem;
}

/* ========================================
   Hero Section - Modern 2024
======================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh; /* Dynamic viewport height for mobile */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--color-white);
  padding: 0; /* Remove top padding so hero starts from top, visible through transparent header */
  padding-bottom: var(--spacing-xl);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/hero.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll; /* Changed from fixed for better mobile performance */
  z-index: 1;
}

/* Re-enable fixed attachment on larger screens where it performs better */
@media (min-width: 1024px) {
  .hero-background {
    background-attachment: fixed;
  }
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.7) 0%, rgba(40, 40, 40, 0.6) 50%, rgba(20, 20, 20, 0.7) 100%);
  z-index: 1;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: var(--spacing-2xl) var(--spacing-md);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-size: var(--fs-h1);
  font-weight: 800;
  margin-bottom: var(--spacing-xl);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-align: center;
  width: 100%;
  color: #FFFFFF;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.8), 0 2px 20px rgba(0, 0, 0, 0.6);
}

.hero-title .text-accent {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  text-shadow: none;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

.hero-subtitle {
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: var(--spacing-xl);
  font-weight: 400;
  max-width: 950px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8), 0 2px 15px rgba(0, 0, 0, 0.6);
}

.hero-actions {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-white);
  font-size: 0.875rem;
  animation: bounce 2s infinite;
}

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

.btn-light {
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-light:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

/* ========================================
   Stats Section
======================================== */
.stats-section {
  background: var(--color-white);
  padding: var(--spacing-xl) 0;
  border-bottom: 1px solid var(--color-gray-200);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  text-align: center;
}

.stat-item {
  padding: var(--spacing-md);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--color-gray-700);
  font-weight: 500;
}

/* ========================================
   Section Styles - Full Viewport Height
======================================== */
.section {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: var(--spacing-2xl) 0;
}

.section .container {
  width: 100%;
}

/* Only apply full viewport height on larger screens */
@media (min-width: 1024px) {
  .section {
    min-height: 100vh;
  }
}

/* ========================================
   Section Headers - Modern 2024
======================================== */
.section-header {
  margin-bottom: var(--spacing-2xl);
}

.section-title {
  margin-bottom: var(--spacing-md);
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 3px;
}

.text-center .section-title::after {
  left: 50%;
}

.section-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: var(--spacing-md) auto 0;
}

/* ========================================
   Service Cards
======================================== */
.service-card {
  position: relative;
}

.card-link {
  color: var(--color-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--spacing-sm);
  transition: gap var(--transition-base);
}

.card-link:hover {
  gap: 0.75rem;
}

/* ========================================
   Industries Section
======================================== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--spacing-lg);
}

.industry-card {
  background: transparent;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  text-align: center;
  transition: all var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.industry-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  background: transparent;
}

.industry-icon {
  width: 64px;
  height: 64px;
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #FFF;
  padding: var(--spacing-sm);
  box-shadow:
    0 6px 18px rgba(255, 255, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.industry-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.industry-card:hover .industry-icon {
  transform: scale(1.1) rotate(-10deg);
  box-shadow:
    0 8px 24px rgba(255, 255, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.industry-card:hover .industry-icon::before {
  opacity: 1;
}

.industry-icon svg {
  width: 32px;
  height: 32px;
}

.industry-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
  color: #FFFFFF;
  line-height: 1.4;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ========================================
   Case Studies
======================================== */
.case-study-card {
  overflow: hidden;
  padding: 0;
}

.case-study-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.case-study-card:hover .case-study-image img {
  transform: scale(1.1);
}

.case-study-content {
  padding: var(--spacing-lg);
}

/* ========================================
   CTA Section
======================================== */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  color: var(--color-white);
  padding: var(--spacing-2xl) 0;
  text-align: center;
}

.cta-title {
  font-size: var(--fs-h2);
  margin-bottom: var(--spacing-md);
  color: var(--color-white);
}

.cta-text {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   Footer
======================================== */
.site-footer {
  background: var(--color-dark);
  color: var(--color-gray-300);
}

.footer-main {
  padding: var(--spacing-2xl) 0 var(--spacing-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--spacing-lg);
}

.footer-about {
  max-width: 400px;
}

.footer-logo img {
  height: 40px !important;
  max-height: 40px !important;
  width: auto !important;
  max-width: 200px !important;
  margin-bottom: var(--spacing-md);
  filter: brightness(0) invert(1);
}

.footer-title {
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
}

.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--color-white);
  transition: all var(--transition-base);
}

.social-links a:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-3px);
}

.footer-widget {
  margin-bottom: var(--spacing-md);
}

.widget-title {
  color: var(--color-white);
  font-size: 1.125rem;
  margin-bottom: var(--spacing-md);
}

.footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-widget li {
  margin-bottom: 0.5rem;
}

.footer-widget a {
  color: var(--color-gray-300);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-widget a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--spacing-md) 0;
}

.footer-bottom-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.copyright {
  margin: 0;
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: var(--spacing-md);
}

.footer-legal a {
  color: var(--color-gray-300);
  font-size: 0.9rem;
}

/* ========================================
   About Section
======================================== */
.about-content {
  max-width: 1000px;
  margin: 0 auto;
}

.about-block {
  margin-bottom: var(--spacing-xl);
  text-align: center;
}

.about-subtitle {
  font-size: var(--fs-h3);
  color: #FFFFFF;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 900px;
  margin: 0 auto;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

.mv-card {
  background: transparent;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-xl);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: shimmerGlow 3s linear infinite;
}

@keyframes shimmerGlow {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.mv-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--border-radius-xl);
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.4), rgba(255, 165, 0, 0.2), rgba(255, 215, 0, 0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mv-card:hover {
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-12px) scale(1.02);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(255, 215, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background: transparent;
}

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

.mv-card:hover::after {
  opacity: 1;
}

.mv-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border-radius: 50%;
  color: #000;
  box-shadow:
    0 8px 24px rgba(255, 215, 0, 0.4),
    0 0 20px rgba(255, 215, 0, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.mv-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FFA500, #FFD700);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mv-card:hover .mv-icon {
  transform: scale(1.15) rotate(-10deg);
  box-shadow:
    0 12px 32px rgba(255, 215, 0, 0.5),
    0 0 40px rgba(255, 215, 0, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

.mv-card:hover .mv-icon::before {
  opacity: 1;
}

.mv-card h3 {
  font-size: var(--fs-h4);
  color: #FFFFFF;
  margin-bottom: var(--spacing-sm);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mv-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.core-values {
  margin-top: var(--spacing-2xl);
}

.values-title {
  font-size: var(--fs-h3);
  text-align: center;
  color: #FFFFFF;
  margin-bottom: var(--spacing-2xl);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-family: var(--font-heading);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--spacing-xl);
}

.value-item {
  text-align: center;
  padding: var(--spacing-xl);
  background: transparent;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: var(--border-radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.value-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: shimmer 3s linear infinite;
}

.value-item:hover {
  transform: translateY(-12px) scale(1.02);
  background: transparent;
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(255, 215, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.value-item:hover::before {
  opacity: 1;
}

.value-item:hover .value-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow:
    0 12px 32px rgba(255, 215, 0, 0.5),
    0 0 40px rgba(255, 215, 0, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

.value-item:hover .value-icon::before {
  opacity: 1;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border-radius: 50%;
  color: #000;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow:
    0 8px 24px rgba(255, 215, 0, 0.4),
    0 0 20px rgba(255, 215, 0, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.value-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FFA500, #FFD700);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.value-icon svg {
  transition: transform 0.3s ease;
}

.value-item:hover .value-icon svg {
  transform: scale(1.1);
}

.value-item h4 {
  font-size: 1.15rem;
  color: #FFFFFF;
  margin: 0;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

/* ========================================
   Core Values Section (Standalone)
======================================== */
.core-values-section {
  background: linear-gradient(180deg,
    rgba(7, 35, 74, 0.6) 0%,
    rgba(7, 35, 74, 0.4) 50%,
    rgba(7, 35, 74, 0.6) 100%);
  position: relative;
  overflow: hidden;
}

.core-values-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 165, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: transparent;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: var(--border-radius-xl);
  padding: var(--spacing-2xl);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: shimmer 3s linear infinite;
}

.value-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: transparent;
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(255, 215, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

.value-card .value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border-radius: 50%;
  color: #000;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow:
    0 8px 24px rgba(255, 215, 0, 0.4),
    0 0 20px rgba(255, 215, 0, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.value-card:hover .value-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow:
    0 12px 32px rgba(255, 215, 0, 0.5),
    0 0 40px rgba(255, 215, 0, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

.value-card:hover .value-icon svg {
  transform: scale(1.1);
}

.value-card h3 {
  font-size: 1.35rem;
  color: #FFFFFF;
  margin: 0 0 var(--spacing-md) 0;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

.value-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

@media (max-width: 768px) {
  .core-values-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .value-card {
    padding: var(--spacing-xl);
  }
}

/* ========================================
   Services Section - Detailed List
======================================== */
.services-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.service-detail-card {
  background: transparent;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: var(--border-radius-xl);
  padding: var(--spacing-xl);
  display: flex;
  gap: var(--spacing-lg);
  align-items: flex-start;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.service-detail-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #FFD700, #FFA500, #FFD700);
  background-size: 100% 200%;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: shimmerVertical 3s linear infinite;
}

@keyframes shimmerVertical {
  0% { background-position: 0 -200%; }
  100% { background-position: 0 200%; }
}

.service-detail-card:hover {
  transform: translateX(12px) scale(1.02);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(255, 215, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 215, 0, 0.4);
  background: transparent;
}

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

.service-number {
  font-size: 3rem;
  font-weight: 900;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  min-width: 80px;
  opacity: 0.6;
}

.service-content h3 {
  font-size: var(--fs-h4);
  color: #FFFFFF;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.service-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #FFD700;
  font-weight: 700;
  font-size: 1.2rem;
}

/* ========================================
   Sectors Section
======================================== */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--spacing-lg);
}

/* Center the last sector card (Sports & Creative Industries) */
.sectors-grid .sector-card:last-child {
  grid-column: 1 / -1;
  max-width: 450px;
  margin: 0 auto;
  width: 100%;
}

.sector-card {
  background: transparent;
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-xl);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.sector-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: shimmer 3s linear infinite;
}

.sector-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-12px) scale(1.02);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5);
  background: transparent;
}

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

.sector-icon {
  width: 80px;
  height: 80px;
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  color: #FFF;
  box-shadow:
    0 8px 24px rgba(255, 255, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.sector-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-lg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sector-card:hover .sector-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow:
    0 12px 32px rgba(255, 255, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.sector-card:hover .sector-icon::before {
  opacity: 1;
}

.sector-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: #FFFFFF;
  line-height: 1.4;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ========================================
   Partnership Section
======================================== */
.partnership-section {
  background: transparent;
}

.partnership-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.partnership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.partnership-grid .partnership-card:last-child {
  grid-column: 1 / -1;
  max-width: 450px;
  margin: 0 auto;
  width: 100%;
}

.partnership-card {
  background: transparent;
  padding: var(--spacing-2xl);
  border-radius: var(--border-radius-xl);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.partnership-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: shimmer 3s linear infinite;
}

.partnership-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-12px) scale(1.02);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5);
  background: transparent;
}

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

.partnership-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  color: #FFF;
  box-shadow:
    0 8px 24px rgba(255, 255, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.partnership-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-lg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.partnership-card:hover .partnership-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow:
    0 12px 32px rgba(255, 255, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.partnership-card:hover .partnership-icon::before {
  opacity: 1;
}

.partnership-card h3 {
  font-size: 1.125rem;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.5;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.partnership-cta-text {
  font-size: 1.25rem;
  color: #FFFFFF;
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.partnership-actions {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
}

/* ========================================
   Contact Section
======================================== */
.contact-page {
  min-height: 100vh;
  background: transparent;
  position: relative;
}

.contact-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/background.png');
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* Changed from fixed for better mobile performance */
  opacity: 0.3;
  z-index: -1;
}

/* Re-enable fixed attachment on larger screens */
@media (min-width: 1024px) {
  .contact-page::before {
    background-attachment: fixed;
  }
}

.contact-page .page-header {
  padding-top: calc(80px + var(--spacing-xl));
  background: transparent;
  margin-bottom: 0;
}

.contact-page .section {
  min-height: auto;
}

.contact-section {
  background: transparent;
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Contact Page Layout - Stacked */
.contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2xl);
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.contact-info > h2,
.contact-info > p {
  grid-column: 1 / -1;
}

.contact-info h2 {
  font-size: var(--fs-h3);
  color: #FFFFFF;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-info > p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
}

.social-links-contact {
  margin-top: var(--spacing-lg);
}

.social-links-contact h4 {
  color: #FFFFFF;
  margin-bottom: var(--spacing-md);
  font-size: 1.1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-form {
  background: transparent;
  padding: var(--spacing-2xl) var(--spacing-xl);
  border-radius: var(--border-radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

.contact-form h2 {
  font-size: var(--fs-h3);
  color: #FFFFFF;
  margin-bottom: var(--spacing-xl);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
}

/* Contact Form Styles */
.ghbc-contact-form .form-group {
  margin-bottom: var(--spacing-xl);
}

.ghbc-contact-form label {
  display: block;
  color: #FFFFFF;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.ghbc-contact-form input,
.ghbc-contact-form textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-md);
  color: #FFFFFF;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.ghbc-contact-form input:focus,
.ghbc-contact-form textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow:
    0 0 0 3px rgba(255, 215, 0, 0.15),
    0 4px 12px rgba(255, 215, 0, 0.2),
    inset 0 1px 2px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.ghbc-contact-form input::placeholder,
.ghbc-contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.ghbc-contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.ghbc-contact-form button[type="submit"] {
  width: 100%;
  margin-top: var(--spacing-md);
}

.contact-item {
  display: flex;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  background: transparent;
  border-radius: var(--border-radius-xl);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4);
  position: relative;
}

.contact-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  bottom: 0;
  height: 80%;
  width: 3px;
  background: linear-gradient(180deg, #FFD700, #FFA500, #FFD700);
  background-size: 50% 200%;
  opacity: 0;
  border-radius: var(--border-radius-xl) 0 0 var(--border-radius-xl);
  transition: transform 0.3s ease;
  transform: translateY(-50%) scaleY(0);
}

.contact-item:hover {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(-8px) scale(1.02);
}

.contact-item:hover::before {
  opacity: 1;
  transform: translateY(-50%) scaleY(1);
}

.contact-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #FFF;
  flex-shrink: 0;
  box-shadow:
    0 6px 18px rgba(255, 255, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.contact-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-item:hover .contact-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow:
    0 8px 24px rgba(255, 255, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.contact-item:hover .contact-icon::before {
  opacity: 1;
}

.contact-item h4 {
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-item a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color var(--transition-base);
  font-size: 0.95rem;
}

.contact-item a:hover {
  color: rgba(255, 255, 255, 1);
}

/* ========================================
   Animations
======================================== */
.animate-fade-in {
  animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-delay {
  animation: fadeIn 0.8s ease-out 0.2s both;
}

.animate-fade-in-delay-2 {
  animation: fadeIn 0.8s ease-out 0.4s both;
}

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

/* ========================================
   Responsive Design
======================================== */

/* Tablet Landscape (1024px and below) */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .hero-content {
    padding: var(--spacing-xl) var(--spacing-md);
  }
}

/* Tablet Portrait (768px and below) */
@media (max-width: 768px) {
  /* Allow sections to be flexible on mobile instead of forcing 100vh */
  .section {
    min-height: auto;
    padding: var(--spacing-xl) 0;
  }

  .hero-section {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 0;
    padding-bottom: var(--spacing-md);
  }

  .hero-content {
    padding: var(--spacing-md);
  }

  .hero-container {
    padding: 0 var(--spacing-sm);
    padding-top: 65px; /* Adjusted for mobile header height */
    min-height: calc(100vh - 65px);
  }

  .hero-content-left {
    padding: var(--spacing-sm) 0;
    max-width: 100%;
  }

  .hero-title-modern {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: var(--spacing-md);
  }

  .hero-title-accent {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    margin-bottom: var(--spacing-md);
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: var(--spacing-sm);
  }

  .btn-hero {
    width: 100%;
    justify-content: center;
  }

  .hero-scroll {
    bottom: 1rem;
  }

  .mobile-menu-toggle {
    display: block;
  }

  /* Ensure parent containers don't clip the menu */
  .site-header .container,
  .main-navigation,
  .nav-wrapper {
    overflow: visible !important;
  }

  /* Target WordPress generated menu wrapper */
  .nav-wrapper > div[class*="menu"],
  .nav-wrapper > .menu-container,
  #primary-menu-wrapper,
  .menu-container {
    position: fixed !important;
    top: 0 !important;
    bottom: 0 !important;
    left: -100% !important;
    width: 80% !important;
    max-width: 400px !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: #07234a !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
    box-shadow:
      0 0 0 1px rgba(255, 215, 0, 0.1) inset,
      0 20px 60px rgba(0, 0, 0, 0.6),
      0 0 40px rgba(255, 215, 0, 0.1) !important;
    transition: left 0.3s ease !important;
    padding: 5rem 1.5rem 1.5rem !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    z-index: 10001 !important;
    isolation: isolate !important;
    border-right: 3px solid #FFD700 !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    pointer-events: auto !important;
  }

  /* Active state for all possible menu wrappers */
  .menu-container.active,
  .nav-wrapper > div[class*="menu"].active,
  .nav-wrapper > .menu-container.active,
  #primary-menu-wrapper.active,
  body.menu-open .menu-container,
  body.menu-open .nav-wrapper > div[class*="menu"],
  body.menu-open .nav-wrapper > .menu-container,
  body.menu-open #primary-menu-wrapper {
    left: 0 !important;
    right: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    background: #07234a !important;
    border-right: 3px solid #FFD700 !important;
    box-shadow: 5px 0 50px rgba(255, 215, 0, 0.5) !important;
    z-index: 10001 !important;
  }

  /* Remove parent transform/positioning that creates containing blocks */
  @media (max-width: 768px) {
    .site-header,
    .main-navigation,
    .site-header .container,
    .nav-wrapper {
      transform: none !important;
      will-change: auto !important;
      perspective: none !important;
    }

    /* NUCLEAR OPTION - Force menu visible when body has menu-open class */
    /* This targets the EXACT structure from the HTML - works with or without .active class */
    body.menu-open div.menu-container.active,
    body.menu-open div.menu-container,
    body.menu-open .menu-container {
      position: fixed !important;
      top: 0 !important;
      bottom: 0 !important;
      left: 0 !important;
      right: auto !important;
      width: 80% !important;
      max-width: 400px !important;
      height: 100vh !important;
      background: #07234a !important;
      z-index: 10001 !important;
      display: flex !important;
      flex-direction: column !important;
      visibility: visible !important;
      opacity: 1 !important;
      overflow-y: auto !important;
      padding: 5rem 1.5rem 1.5rem !important;
      border-right: 5px solid #FFD700 !important;
      box-shadow: 5px 0 50px rgba(255, 215, 0, 0.8) !important;
    }

    /* Force the UL inside to be visible */
    body.menu-open div.menu-container.active ul#menu-ghbc-header-v1 {
      display: flex !important;
      flex-direction: column !important;
      list-style: none !important;
      margin: 0 !important;
      padding: 0 !important;
      width: 100% !important;
      visibility: visible !important;
      opacity: 1 !important;
    }

    /* Force each LI to be visible */
    body.menu-open div.menu-container.active ul#menu-ghbc-header-v1 li {
      display: block !important;
      width: 100% !important;
      visibility: visible !important;
      opacity: 1 !important;
    }

    /* Force each link to be visible with white text */
    body.menu-open div.menu-container.active ul#menu-ghbc-header-v1 li a {
      display: block !important;
      width: 100% !important;
      padding: 1.2rem 1.5rem !important;
      color: #ffffff !important;
      background: transparent !important;
      text-decoration: none !important;
      font-size: 1.1rem !important;
      font-weight: 500 !important;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
      visibility: visible !important;
      opacity: 1 !important;
    }

    /* Hover state for links */
    body.menu-open div.menu-container.active ul#menu-ghbc-header-v1 li a:hover {
      background: rgba(255, 215, 0, 0.15) !important;
      color: #FFD700 !important;
    }
  }

  /* Prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden !important;
  }

  /* Lower header z-index when menu is open so menu can appear above it */
  body.menu-open .site-header {
    z-index: 999 !important;
  }

  /* Mobile Menu Overlay - DISABLED per user request */
  /* body.menu-open::before {
    content: '' !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.8) !important;
    z-index: 9999 !important;
    animation: fadeIn 0.3s ease-in-out !important;
  } */

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* Force all menu lists to be visible on mobile */
  body.menu-open .menu-container .primary-menu,
  body.menu-open .menu-container ul,
  body.menu-open #menu-ghbc-header-v1,
  .menu-container.active .primary-menu,
  .menu-container.active ul,
  .menu-container.active #menu-ghbc-header-v1,
  .menu-container .primary-menu,
  .menu-container ul,
  #menu-ghbc-header-v1 {
    flex-direction: column !important;
    gap: 0 !important;
    position: relative !important;
    z-index: 1 !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Force all menu items to be visible */
  body.menu-open .menu-container .primary-menu li,
  body.menu-open .menu-container ul li,
  body.menu-open .menu-container li,
  .menu-container.active .primary-menu li,
  .menu-container.active ul li,
  .menu-container.active li,
  .menu-container .primary-menu li,
  .menu-container ul li,
  .menu-container li {
    position: relative !important;
    z-index: 1 !important;
    width: 100% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Force all menu links to be visible with white text */
  body.menu-open .menu-container .primary-menu a,
  body.menu-open .menu-container ul li a,
  body.menu-open .menu-container a,
  .menu-container.active .primary-menu a,
  .menu-container.active ul li a,
  .menu-container.active a,
  .menu-container .primary-menu a,
  .menu-container ul li a,
  .menu-container a {
    padding: 1rem 1.5rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    position: relative !important;
    z-index: 1 !important;
    color: #ffffff !important;
    display: block !important;
    text-decoration: none !important;
    font-size: 1.05rem !important;
    font-weight: 500 !important;
    width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: transparent !important;
  }

  .menu-container .primary-menu a:hover,
  .menu-container ul li a:hover {
    background: rgba(255, 215, 0, 0.1) !important;
    color: #FFD700 !important;
  }

  .nav-actions {
    margin-top: var(--spacing-md);
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.75rem);
    margin-bottom: var(--spacing-md);
  }

  .hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.25rem);
    margin-bottom: var(--spacing-md);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: var(--spacing-sm);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .service-detail-card {
    flex-direction: column;
    text-align: center;
  }

  .service-number {
    font-size: 2.5rem;
    min-width: auto;
  }

  .service-detail-card:hover {
    transform: translateY(-5px);
  }

  .service-card-modern {
    grid-template-columns: auto 1fr;
    padding: var(--spacing-md);
  }

  .service-right,
  .service-left,
  .service-center {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }

  .service-badge {
    font-size: 2rem;
  }

  .service-icon-modern {
    display: none;
  }

  .mission-vision-grid,
  .values-grid,
  .partnership-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .bento-large,
  .bento-medium,
  .bento-small {
    grid-column: span 1;
    grid-row: span 1;
  }

  .bento-item {
    padding: var(--spacing-md);
  }

  .contact-form {
    padding: var(--spacing-xl);
  }

  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }

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

  .footer-bottom-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .section-header {
    margin-bottom: var(--spacing-xl);
  }
}

/* Mobile Landscape and Small Tablets (640px and below) */
@media (max-width: 640px) {
  .site-branding img {
    height: 35px;
  }

  .hero-section {
    padding: 0;
    padding-bottom: var(--spacing-sm);
  }

  .hero-container {
    padding-top: 55px; /* Adjusted for smaller mobile header */
  }

  .stats-section {
    padding: var(--spacing-lg) 0;
  }

  .stat-number {
    font-size: 2.25rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .sector-card,
  .value-item {
    min-height: 150px;
    padding: var(--spacing-md);
  }

  .sector-icon,
  .value-icon {
    width: 60px;
    height: 60px;
  }

  .mv-card {
    padding: var(--spacing-md);
  }

  .mv-icon {
    width: 60px;
    height: 60px;
  }

  .partnership-card {
    padding: var(--spacing-md);
  }

  .partnership-icon {
    width: 70px;
    height: 70px;
  }

  .contact-item {
    padding: var(--spacing-md);
  }

  .contact-icon {
    width: 48px;
    height: 48px;
  }

  .contact-form {
    padding: var(--spacing-md);
  }
}

/* Mobile Portrait (480px and below) */
@media (max-width: 480px) {
  .site-branding img {
    height: 32px;
  }

  .hero-title {
    font-size: clamp(1.75rem, 10vw, 2.25rem);
  }

  .hero-subtitle {
    font-size: clamp(0.9rem, 4.5vw, 1.1rem);
    line-height: 1.6;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.375rem 1rem;
  }

  .hero-title-modern {
    font-size: clamp(1.75rem, 10vw, 2.5rem);
  }

  .hero-title-accent {
    font-size: clamp(1.1rem, 5vw, 1.5rem);
  }

  .hero-description {
    font-size: 0.9375rem;
  }

  .btn-hero {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }

  .stats-grid,
  .industries-grid,
  .sectors-grid,
  .values-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  .stat-number {
    font-size: 2rem;
  }

  .service-detail-card {
    padding: var(--spacing-md);
  }

  .service-number {
    font-size: 2rem;
  }

  .sector-card h4,
  .value-item h4 {
    font-size: 0.95rem;
  }

  .about-subtitle,
  .values-title {
    font-size: clamp(1.5rem, 6vw, 1.75rem);
  }

  .about-text {
    font-size: 1rem;
  }

  .partnership-card h3 {
    font-size: 1rem;
  }

  .partnership-cta-text {
    font-size: 1.1rem;
  }

  .footer-logo img {
    height: 35px;
  }
}

/* Very Small Devices (360px and below) */
@media (max-width: 360px) {
  .site-branding img {
    height: 30px;
  }

  .hero-title {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 0.875rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .service-number {
    font-size: 1.75rem;
  }

  .sector-icon,
  .value-icon,
  .mv-icon {
    width: 50px;
    height: 50px;
  }

  .sector-icon svg,
  .value-icon svg,
  .mv-icon svg {
    width: 28px;
    height: 28px;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
}

/* ========================================
   MODERN REDESIGN - 2025
   Asymmetric layouts, Bento grids, Unique designs
======================================== */

/* ========================================
   Modern Hero Section - Asymmetric Split
======================================== */
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: relative;
  z-index: 10;
  padding-top: 90px; /* Add padding to content so it's not hidden behind header when it becomes solid */
}

.hero-diagonal-shape {
  display: none;
}

.hero-content-left {
  position: relative;
  z-index: 10;
  padding: var(--spacing-md) 0;
  text-align: center;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 50px;
  color: #FFD700;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.8s ease-out;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-title-modern {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  margin-bottom: var(--spacing-sm);
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.8);
  animation: fadeInUp 1s ease-out 0.2s both;
}

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

.hero-title-highlight {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  text-shadow: none;
  filter: drop-shadow(0 0 0 transparent);
}

.hero-title-accent {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-xl);
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin-bottom: var(--spacing-xl);
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-cta-group {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-2xl);
  animation: fadeInUp 1s ease-out 0.8s both;
  flex-wrap: wrap;
}

.btn-hero {
  padding: 1.125rem 2.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-hero svg {
  transition: transform 0.3s ease;
}

.btn-hero:hover svg {
  transform: translateX(5px);
}

/* Hero Stats Cards - Hidden */
.hero-stats-cards {
  display: none;
}

/* Hero Right Side - Hidden */
.hero-content-right {
  display: none;
}

/* Section Curve Divider */
.section-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.section-curve svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
}

/* ========================================
   Modern Section Headers
======================================== */
.section-header-modern {
  margin-bottom: var(--spacing-2xl);
}

.section-header-center {
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  color: #FFD700;
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.label-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #FFD700, #FFA500);
}

.label-text {
  padding: 0.5rem 1.25rem;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.section-title-large {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.title-highlight {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: var(--spacing-md);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   Bento Grid Layout - About Section
======================================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
  grid-auto-rows: minmax(200px, auto);
}

/* Center the last item in About GHBC bento-grid only (3rd card) */
#about .bento-grid .bento-item:last-child {
  grid-column: 1 / -1;
  max-width: 550px;
  margin: 0 auto;
  width: 100%;
}

/* Bento Item Sizes */
.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-medium {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 300px;
}

.bento-small {
  grid-column: span 1;
  grid-row: span 1;
}

/* Bento Item Styles */
.bento-item {
  background: transparent;
  border-radius: var(--border-radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--spacing-xl);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.bento-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3));
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: shimmer 3s linear infinite;
}

.bento-item:hover {
  transform: translateY(-8px);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.bento-item:hover::before {
  opacity: 1;
}

/* Bento Content */
.bento-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.bento-content h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: #FFFFFF;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.bento-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  flex: 1;
}

.bento-icon-badge {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
  color: #FFF;
}

.bento-icon-large {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  color: rgba(255, 255, 255, 0.9);
}

/* Bento Gradients */
.bento-gradient-1 {
  background: transparent;
}

.bento-gradient-2 {
  background: transparent;
}

/* Bento Value Cards - Compact */
.bento-value {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bento-content-compact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
}

.value-icon-compact {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.bento-value:hover .value-icon-compact {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.bento-content-compact h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Section Decorations */
.section-decoration {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.3;
}

.decoration-left {
  top: 10%;
  left: -200px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  filter: blur(60px);
}

.decoration-right {
  bottom: 10%;
  right: -200px;
  background: radial-gradient(circle, rgba(255, 165, 0, 0.1) 0%, transparent 70%);
  filter: blur(60px);
}

/* ========================================
   Services Section - Diagonal Staggered
======================================== */
.services-section-modern {
  position: relative;
  overflow: hidden;
}

.services-staggered {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.service-card-modern {
  /* This is the key for layout */
  flex: 1 1 calc(50% - 1rem); 
  min-width: 300px;

  /* Your existing styles... */
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-xl);
  padding: var(--spacing-xl);
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: var(--spacing-lg);
  align-items: start;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Staggered Alignment */
.service-right {
  margin-left: auto;
  max-width: 100%;
}

.service-left {
  margin-right: auto;
  max-width: 100%;
}

.service-center {
  margin: 0 auto;
  max-width: 100%;
}

.service-card-modern::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #FFD700, #FFA500, #FFD700);
  background-size: 100% 200%;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: shimmerVertical 3s linear infinite;
}

.service-card-modern:hover {
  transform: translateX(-12px) scale(1.02);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.service-left:hover {
  transform: translateX(12px) scale(1.02);
}

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

.service-badge {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
}

.service-badge-featured {
  opacity: 1;
  animation: pulse 2s ease-in-out infinite;
}

.service-icon-modern {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card-modern:hover .service-icon-modern {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.2);
}

.service-body h3 {
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.service-features-modern {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features-modern li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.service-features-modern li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
  font-size: 1.2rem;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem; /* Adjust the space between cards */
}

/* Featured Service */
.service-featured {
  /* THIS IS THE FIX: */
  flex-basis: 100%; /* This tells it to span the full width */
  
  /* Your other styles for it */
  background: transparent;
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 8px 60px rgba(255, 215, 0, 0.2);
}

/* Floating Background Shapes */
.services-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.2;
  filter: blur(80px);
}

.shape-circle-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
  top: 10%;
  left: -10%;
  animation: float 8s ease-in-out infinite;
}

.shape-circle-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 165, 0, 0.3) 0%, transparent 70%);
  bottom: 10%;
  right: -5%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  25% {
    transform: translateY(-20px) translateX(10px);
  }
  50% {
    transform: translateY(-40px) translateX(0px);
  }
  75% {
    transform: translateY(-20px) translateX(-10px);
  }
}

/* ========================================
   Hide Archives and Categories from Footer
======================================== */
.footer-widget .widget_archive,
.footer-widget .widget_categories {
  display: none !important;
}

/* ========================================
   Particle Animation Background
======================================== */
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Ensure content stays above particles */
.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

/* ========================================
   Responsive Images - Universal
======================================== */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure images in content areas are responsive */
.hero-background img,
.case-study-image img,
.site-branding img,
.footer-logo img,
article img,
.content img {
  max-width: 100%;
  height: auto;
}

/* ========================================
   Enhanced Mobile Touch Targets
======================================== */
/* Ensure all interactive elements meet minimum touch target size (44x44px) */
@media (max-width: 768px) {
  .btn,
  button,
  .primary-menu a,
  .mobile-menu-toggle {
    min-height: 44px;
    min-width: 44px;
  }

  /* Improve tap target spacing for mobile menu */
  .primary-menu a {
    padding: 1rem 1.5rem;
    display: block;
  }

  /* Better mobile button sizing */
  .btn {
    padding: 1rem 2rem;
    width: 100%;
    max-width: 100%;
  }

  /* Social links touch targets */
  .social-links a,
  .social-links-contact a {
    min-width: 48px;
    min-height: 48px;
    padding: 0.75rem;
  }
}

/* ========================================
   Mobile Performance Optimizations
======================================== */
@media (max-width: 768px) {
  /* Reduce animation complexity on mobile */
  * {
    animation-duration: 0.3s !important;
    transition-duration: 0.3s !important;
  }

  /* Disable expensive filters and effects on mobile */
  .hero-background::before {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* Optimize blur effects for mobile performance */
}

/* ========================================
   Mobile Typography Enhancements
======================================== */
@media (max-width: 768px) {
  /* Improve text readability on mobile */
  body {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  /* Better line height for mobile reading */
  p,
  .about-text,
  .section-subtitle,
  .hero-subtitle {
    line-height: 1.7;
  }

  /* Prevent text overflow */
  h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
}

/* ========================================
   Landscape Mobile Optimizations
======================================== */
@media (max-width: 896px) and (orientation: landscape) {
  /* Reduce hero height in landscape mode */
  .hero-section {
    min-height: auto;
    padding: var(--spacing-xl) 0;
  }

  /* Make sections more compact in landscape */
  .section {
    padding: var(--spacing-lg) 0;
  }

  /* Adjust navigation for landscape */
  .menu-container {
    height: 100vh;
    padding: 4rem var(--spacing-md) var(--spacing-md);
  }
}

/* ========================================
   Tablet Optimizations
======================================== */
@media (min-width: 768px) and (max-width: 1024px) {
  /* Optimize grid layouts for tablets */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-grid,
  .sectors-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  /* Better use of tablet screen space */
  .container {
    max-width: 90%;
  }

  /* Tablet-specific button sizing */
  .btn {
    padding: 0.875rem 2rem;
  }
}

/* ========================================
   Very Large Screens (> 1920px)
======================================== */
@media (min-width: 1920px) {
  :root {
    --container-max: 1400px;
  }

  .container {
    max-width: var(--container-max);
  }

  /* Prevent content from becoming too wide */
  .hero-content,
  .about-content,
  .services-list {
    max-width: 1200px;
  }
}
