﻿/*
Theme Name: TOLO LLC Business Theme
Theme URI: https://tolollc.com
Author: TOLO LLC Development Team
Author URI: https://tolollc.com
Description: A professional ERP, business consulting, and analytics company theme for TOLO LLC. Built with modern WordPress standards, fully responsive, with custom menus, widget areas, and theme customizer support.
Version: 1.1.1
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tolo-theme
Tags: business, corporate, professional, erp, technology, responsive, custom-menu, custom-logo, theme-options
*/

/* ============================================================
   TOLO LLC THEME - MAIN STYLESHEET
   Technology Â· Innovation Â· Value
   ============================================================ */

/* â”€â”€ CSS Custom Properties (Design Tokens) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  --color-primary:    #0B2447;
  --color-secondary:  #163166;
  --color-accent:     #22C55E;
  --color-accent-dark:#16a34a;
  --color-white:      #ffffff;
  --color-gray-50:    #f9fafb;
  --color-gray-100:   #f3f4f6;
  --color-gray-200:   #e5e7eb;
  --color-gray-400:   #9ca3af;
  --color-gray-500:   #6b7280;
  --color-gray-600:   #4b5563;
  --color-gray-700:   #374151;
  --color-gray-900:   #111827;

  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg:  0 10px 15px rgba(0,0,0,.07), 0 4px 6px rgba(0,0,0,.05);
  --shadow-xl:  0 20px 25px rgba(0,0,0,.08), 0 10px 10px rgba(0,0,0,.04);
  --shadow-2xl: 0 25px 50px rgba(0,0,0,.12);

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  20px;
  --radius-2xl: 24px;

  --container-max: 1280px;
  --container-pad: clamp(1rem, 4vw, 2rem);

  --transition: 150ms ease-out;
  --transition-slow: 250ms ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-gray-700);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-sans); font-weight: 800; line-height: 1.2; color: var(--color-primary); }
::selection { background: var(--color-accent); color: var(--color-white); }

/* â”€â”€ Container â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.tolo-container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* â”€â”€ Custom Scrollbar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-gray-100); }
::-webkit-scrollbar-thumb { background: var(--color-primary); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-accent); }

/* ================================================================
   HEADER & NAVIGATION
   ================================================================ */
#masthead {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-slow);
}
#masthead.scrolled { box-shadow: var(--shadow-lg); }

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}

/* Site Logo */
.site-branding { display: flex; align-items: center; flex-shrink: 1; min-width: 0; max-width: calc(100vw - 80px); overflow: hidden; }

.site-branding-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-wrap: nowrap;
  white-space: nowrap;
  max-width: 100%;
}

/* Logo image â€” constrained size */
.site-logo-img {
  width: 160px;
  height: 60px;
  max-width: 160px;
  max-height: 60px;
  object-fit: contain;
  display: block;
  border-radius: 0;
  box-shadow: none;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .site-logo-img { width: 120px !important; height: 48px !important; max-width: 120px !important; max-height: 48px !important; }
}
@media screen and (max-width: 480px) {
  .site-logo-img { width: 90px !important; height: 38px !important; max-width: 90px !important; max-height: 38px !important; }
}

/* Text branding lockup â€” shown on all sizes, tagline hidden on small phones */
.site-branding-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 1;
}
.site-branding-name {
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(90deg, var(--color-primary) 0%, #163166 50%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}
.site-branding-llc {
  font-weight: 300;
  letter-spacing: -0.02em;
  opacity: 0.8;
}
.site-branding-tagline {
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-top: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}
.tagline-line {
  flex-grow: 1;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.3;
}
/* Hide tagline text only on very small phones to save space and shrink title */
@media screen and (max-width: 480px) {
  .site-branding-tagline { display: none !important; }
  .site-branding-name { font-size: 1.1rem !important; }
  .site-branding-link { gap: 8px !important; }
}

.site-branding .custom-logo { height: 44px; width: auto; }

.site-branding .logo-icon {
  width: 44px; height: 44px;
  background: var(--color-primary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.site-branding .logo-text { line-height: 1; }
.site-branding .logo-name { font-size: 1.375rem; font-weight: 900; color: var(--color-primary); letter-spacing: 0.05em; }
.site-branding .logo-tag  { font-size: 0.5625rem; font-weight: 700; color: var(--color-gray-500); letter-spacing: 0.2em; text-transform: uppercase; }

/* Primary Navigation */
#primary-navigation { display: flex; align-items: center; }
.primary-menu {
  display: flex; align-items: center; gap: 0.25rem;
  list-style: none; margin: 0; padding: 0;
}
.primary-menu > li > a {
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-gray-600);
  position: relative;
  transition: color var(--transition);
}
.primary-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0.875rem; right: 0.875rem;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.primary-menu > li > a:hover,
.primary-menu > li.current-menu-item > a { color: var(--color-primary); }
.primary-menu > li > a:hover::after,
.primary-menu > li.current-menu-item > a::after { transform: scaleX(1); }

/* Sub-menu */
.primary-menu li { position: relative; }
.sub-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 200px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  list-style: none;
}
.primary-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-menu a {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: var(--color-gray-600);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.sub-menu a:hover { background: var(--color-gray-50); color: var(--color-primary); padding-left: 1.25rem; }

/* Header CTA */
.header-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-primary);
  color: var(--color-white) !important;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.header-cta a:hover { background: var(--color-secondary); box-shadow: var(--shadow-lg); }
.header-cta a svg { width: 16px; height: 16px; transition: transform var(--transition); }
.header-cta a:hover svg { transform: translateX(3px); }

/* Mobile Menu Toggle â€” hidden on desktop */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--color-white);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  color: var(--color-primary);
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
  position: relative;
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.menu-toggle:hover { background: var(--color-gray-50); border-color: var(--color-primary); }
.menu-toggle svg { width: 20px; height: 20px; }

/* Force show toggle on mobile â€” explicit rule to prevent inheritance issues */
@media screen and (max-width: 1024px) {
  .menu-toggle { display: flex !important; }
  #primary-navigation { display: none !important; }
  .header-cta { display: none !important; }
}

/* Mobile Nav â€” hidden by default, shown via JS .active class */
.mobile-nav {
  display: none;
  background: var(--color-white);
  border-top: 3px solid var(--color-accent);
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  animation-name: slideDown;
  animation-duration: 0.25s;
  animation-timing-function: ease;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-nav.active { display: block; }
.mobile-menu { list-style: none; margin: 0; padding: 0; }
.mobile-menu li a {
  display: block;
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-gray-700);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.mobile-menu li a:hover,
.mobile-menu li.current-menu-item a { background: var(--color-primary); color: var(--color-white); padding-left: 1.25rem; }
.mobile-cta { margin-top: 0.75rem; }
.mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  right: -100px; top: 50%;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,.06) 0%, rgba(11,36,71,.04) 100%);
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  right: -80px; top: 50%;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 2px solid rgba(34,197,94,.15);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-block: 5rem;
}
.hero-content { animation: fadeInLeft 0.8s ease-out both; }
.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero-title .accent { color: var(--color-accent); }
.hero-divider {
  width: 48px; height: 4px;
  background: var(--color-accent);
  border-radius: 2px;
  margin: 1.25rem 0;
}
.hero-description {
  font-size: 1.125rem;
  color: var(--color-gray-600);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 1rem;
}
.hero-badge {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.hero-badge-icon { width: 32px; height: 32px; flex-shrink: 0; margin-top: 2px; }
.hero-badge p { font-size: 0.875rem; color: var(--color-gray-500); line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
}
.btn svg { width: 16px; height: 16px; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: var(--color-primary); color: var(--color-white); }
.btn-primary:hover { background: var(--color-secondary); box-shadow: var(--shadow-xl); color: var(--color-white); }
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: var(--color-white); }
.btn-accent { background: var(--color-accent); color: var(--color-white); }
.btn-accent:hover { background: var(--color-accent-dark); box-shadow: var(--shadow-xl); color: var(--color-white); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

/* Hero Image */
.hero-visual {
  position: relative;
  animation: fadeInRight 0.8s ease-out 0.2s both;
}
.hero-image-wrap { position: relative; z-index: 1; }
.hero-image-wrap img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  object-fit: cover;
  max-height: 520px;
}
.hero-stat-card {
  position: absolute;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float 3s ease-in-out infinite;
}
.hero-stat-card.card-bottom { bottom: -1rem; left: -1.5rem; }
.hero-stat-card.card-top    { top: -1rem; right: -1.5rem; background: var(--color-primary); animation-delay: 0.5s; }
.stat-icon {
  width: 40px; height: 40px;
  background: rgba(34,197,94,.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.stat-icon svg { width: 20px; height: 20px; color: var(--color-accent); }
.stat-label { font-size: 0.6875rem; color: var(--color-gray-500); margin-bottom: 2px; }
.stat-value { font-size: 0.875rem; font-weight: 700; color: var(--color-primary); }
.stat-change { font-size: 0.6875rem; color: var(--color-accent); }
.card-top .stat-label { color: rgba(255,255,255,.6); }
.card-top .stat-value { color: var(--color-white); }
.card-top .stat-change { color: var(--color-accent); }

/* ================================================================
   INDUSTRIES BAR
   ================================================================ */
.industries-bar {
  background: var(--color-primary);
  padding: 2rem 0;
}
.industries-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}
.industries-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 160px;
  flex-shrink: 0;
}
.industries-label-icon { width: 40px; height: 40px; flex-shrink: 0; }
.industries-label p { color: var(--color-white); font-size: 0.875rem; font-weight: 500; line-height: 1.5; }
.industries-divider { width: 1px; height: 64px; background: rgba(255,255,255,.2); flex-shrink: 0; }
.industries-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  flex: 1;
  gap: 1rem;
}
.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: transform var(--transition);
  padding: 0.5rem 1rem;
}
.industry-item:hover { transform: translateY(-3px); }
.industry-item-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.industry-item:hover .industry-item-icon { opacity: 1; }
.industry-item-icon svg { width: 100%; height: 100%; }
.industry-item-icon svg path,
.industry-item-icon svg circle,
.industry-item-icon svg rect,
.industry-item-icon svg line { stroke: white !important; }
.industry-item span { color: rgba(255,255,255,.8); font-size: 0.75rem; font-weight: 500; text-align: center; }
.industry-item:hover span { color: white; }

/* ================================================================
   SECTION COMMONS
   ================================================================ */
.section { padding-block: 5rem; }
.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1.2;
}
.section-title .accent { color: var(--color-accent); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-desc { font-size: 1.0625rem; color: var(--color-gray-500); max-width: 600px; margin: 1rem auto 0; }

/* ================================================================
   SERVICES SECTION
   ================================================================ */
.services-section { background: var(--color-gray-50); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-gray-100);
  transition: all var(--transition);
  text-align: center;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-icon { 
  margin-bottom: 1.5rem; 
  display: flex;
  justify-content: center;
}
.service-icon svg { width: 48px; height: 48px; }
.service-title { font-size: 1.125rem; font-weight: 800; color: var(--color-primary); margin-bottom: 0.75rem; }
.service-desc { font-size: 0.9375rem; color: var(--color-gray-600); line-height: 1.6; }

/* ================================================================
   BUSINESS UNDERSTANDING BANNER
   ================================================================ */
.business-banner {
  background: var(--color-primary);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.business-banner::before {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300' opacity='.05'%3E%3Ccircle cx='300' cy='150' r='120' fill='%2322C55E'/%3E%3C/svg%3E") no-repeat center;
  background-size: cover;
}
.business-banner-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}
.banner-icon-wrap {
  flex-shrink: 0;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: rgba(34,197,94,.15);
  border: 2px solid rgba(34,197,94,.3);
  display: flex; align-items: center; justify-content: center;
}
.banner-icon-wrap svg { width: 48px; height: 48px; }
.banner-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 1rem;
}
.banner-content h2 .accent { color: var(--color-accent); }
.banner-content p { font-size: 1rem; color: rgba(255,255,255,.75); line-height: 1.7; max-width: 700px; }

/* ================================================================
   ANALYTICS SECTION
   ================================================================ */
.analytics-section { background: var(--color-white); }
.analytics-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.analytics-image-wrap {
  position: relative;
}
.analytics-image-wrap img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  object-fit: cover;
}
.analytics-image-wrap::before {
  content: '';
  position: absolute;
  right: -2rem; bottom: -2rem;
  width: 192px; height: 192px;
  border-radius: 50%;
  border: 2px solid rgba(34,197,94,.25);
  pointer-events: none;
}
.analytics-image-wrap::after {
  content: '';
  position: absolute;
  left: -1rem; top: -1rem;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: rgba(34,197,94,.05);
  pointer-events: none;
}
.analytics-content { space-y: 1.5rem; }
.analytics-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  margin: 1.75rem 0;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-gray-700);
}
.feature-item svg { width: 20px; height: 20px; color: var(--color-accent); flex-shrink: 0; }
.analytics-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: all var(--transition);
}
.analytics-link svg { width: 16px; height: 16px; transition: transform var(--transition); }
.analytics-link:hover { color: var(--color-accent); }
.analytics-link:hover svg { transform: translateX(4px); }

/* ================================================================
   INDUSTRIES SECTION (Cards)
   ================================================================ */
.industries-section { background: var(--color-gray-50); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.25rem;
}
.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-gray-100);
  transition: all var(--transition-slow);
  cursor: pointer;
  text-align: center;
}
.industry-card:hover {
  border-color: rgba(34,197,94,.35);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.industry-card-icon { transition: transform var(--transition); }
.industry-card:hover .industry-card-icon { transform: scale(1.1); }
.industry-card-icon svg { width: 48px; height: 48px; }
.industry-card p {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.4;
}

/* ================================================================
   APPROACH SECTION
   ================================================================ */
.approach-section { background: var(--color-white); }
.approach-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
}
.approach-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--color-accent), var(--color-primary));
  pointer-events: none;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
}
.step-item:hover .step-circle { background: var(--color-accent); transform: scale(1.08); }
.step-num { font-size: 0.75rem; font-weight: 700; line-height: 1; margin-bottom: 3px; }
.step-icon svg { width: 28px; height: 28px; }
.step-title { font-size: 0.9375rem; font-weight: 700; color: var(--color-primary); }
.step-desc { font-size: 0.8125rem; color: var(--color-gray-500); line-height: 1.6; }

/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/cta-bg.jpg');
  background-size: cover;
  background-position: center;
}
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,36,71,.85);
}
.cta-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-content { display: flex; align-items: center; gap: 1.5rem; }
.cta-icon { flex-shrink: 0; }
.cta-text h2 { font-size: clamp(1.375rem, 3vw, 2rem); font-weight: 900; color: var(--color-white); }
.cta-text h2 .accent { color: var(--color-accent); }
.cta-text p { color: rgba(255,255,255,.7); font-size: 0.9375rem; margin-top: 0.25rem; }

/* ================================================================
   AOS (ANIMATE ON SCROLL) STYLES
   ================================================================ */
.aos-init {
  opacity: 0;
  transform: translateY(30px);
  transition-property: opacity, transform;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.aos-init.aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Delays */
.aos-init[data-aos-delay="50"]  { transition-delay: 50ms; }
.aos-init[data-aos-delay="100"] { transition-delay: 100ms; }
.aos-init[data-aos-delay="150"] { transition-delay: 150ms; }
.aos-init[data-aos-delay="200"] { transition-delay: 200ms; }
.aos-init[data-aos-delay="250"] { transition-delay: 250ms; }
.aos-init[data-aos-delay="300"] { transition-delay: 300ms; }
.aos-init[data-aos-delay="350"] { transition-delay: 350ms; }
.aos-init[data-aos-delay="400"] { transition-delay: 400ms; }
.aos-init[data-aos-delay="450"] { transition-delay: 450ms; }
.aos-init[data-aos-delay="500"] { transition-delay: 500ms; }
.aos-init[data-aos-delay="600"] { transition-delay: 600ms; }
.aos-init[data-aos-delay="700"] { transition-delay: 700ms; }
.aos-init[data-aos-delay="800"] { transition-delay: 800ms; }

/* ================================================================
   ABOUT SECTION
   ================================================================ */
.about-section { background: var(--color-white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-gray-100);
}
.about-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
}
.about-stat-label {
  font-size: 0.8125rem;
  color: var(--color-gray-500);
  margin-top: 0.25rem;
}
.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-card {
  background: var(--color-gray-50);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: box-shadow var(--transition);
}
.about-card:hover { box-shadow: var(--shadow-md); }
.about-card-emoji { font-size: 1.875rem; margin-bottom: 0.75rem; }
.about-card h4 { font-size: 0.9375rem; font-weight: 700; color: var(--color-primary); margin-bottom: 0.5rem; }
.about-card p { font-size: 0.8125rem; color: var(--color-gray-500); line-height: 1.6; }

/* ================================================================
   PAGE TRANSITIONS
   ================================================================ */
body {
  opacity: 0;
  animation: fadeInPage 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

/* ================================================================
   CREATIVE CONTACT CARDS
   ================================================================ */
.contact-creative-cards-section {
  overflow: hidden;
  position: relative;
}

.contact-creative-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.contact-creative-card-item {
  background: var(--color-white);
  padding: 3rem 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-gray-100);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-creative-card-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.05);
}

.card-bg-blob {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  filter: blur(40px);
  transition: all 0.6s ease;
  z-index: 0;
}

.contact-creative-card-item:hover .card-bg-blob {
  transform: scale(1.5) translate(-20%, 20%);
}

.card-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.card-content {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}

.card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gray-500);
  margin-bottom: 0.75rem;
  font-weight: 800;
}

.card-value {
  display: block;
  font-size: clamp(1rem, 4vw, 1.25rem);
  font-weight: 800;
  color: var(--color-primary);
  text-decoration: none;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
  line-height: 1.3;
  word-break: break-word;
  overflow-wrap: break-word;
}

.card-value:hover {
  color: var(--color-accent);
}

.card-desc {
  font-size: 0.9375rem;
  color: var(--color-gray-500);
  line-height: 1.6;
}

.card-action {
  position: relative;
  z-index: 1;
}

.card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.card-btn i {
  transition: transform 0.3s ease;
}

.card-btn:hover {
  color: var(--color-accent);
}

.card-btn:hover i {
  transform: translateX(5px);
}

/* ================================================================
   CONTACT SECTION REFINEMENTS
   ================================================================ */
.contact-section { background: var(--color-gray-50); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info-card {
  background: var(--color-primary);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  color: var(--color-white);
}
.contact-info-title { font-size: 1.25rem; font-weight: 700; color: var(--color-white); margin-bottom: 1.75rem; }
.contact-info-list { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 0.875rem; }
.contact-info-icon { font-size: 1.125rem; margin-top: 2px; flex-shrink: 0; }
.contact-info-label { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,.5); margin-bottom: 2px; }
.contact-info-value { font-size: 0.9375rem; font-weight: 500; color: var(--color-white); }
.contact-social { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.15); }
.contact-social p { font-size: 0.875rem; color: rgba(255,255,255,.5); margin-bottom: 0.875rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  transition: all var(--transition);
  cursor: pointer;
}
.social-link:hover { background: var(--color-accent); }

.hours-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  border: 1px solid var(--color-gray-100);
  box-shadow: var(--shadow-sm);
  margin-top: 1.25rem;
}
.hours-card h4 { font-size: 0.9375rem; font-weight: 700; color: var(--color-primary); margin-bottom: 1rem; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.875rem; padding: 0.375rem 0; border-bottom: 1px solid var(--color-gray-100); }
.hours-row:last-child { border: none; }
.hours-day { color: var(--color-gray-500); }
.hours-time { font-weight: 600; color: var(--color-primary); }
.hours-time.closed { color: var(--color-gray-400); }

/* Contact Form */
.contact-form-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--color-gray-100);
  box-shadow: var(--shadow-sm);
}
.form-title { font-size: 1.25rem; font-weight: 700; color: var(--color-primary); margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group.form-row { margin-bottom: 0; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--color-gray-700); margin-bottom: 0.375rem; }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-family: var(--font-sans);
  color: var(--color-gray-700);
  background: var(--color-white);
  transition: all var(--transition);
  outline: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--color-gray-400); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(34,197,94,.15);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all var(--transition);
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--color-secondary); box-shadow: var(--shadow-lg); }
.form-submit svg { width: 16px; height: 16px; transition: transform var(--transition); }
.form-submit:hover svg { transform: translateX(3px); }

/* Success Message */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem;
  gap: 1rem;
}
.form-success.active { display: flex; }
.success-icon {
  width: 64px; height: 64px;
  background: rgba(34,197,94,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.success-icon svg { width: 32px; height: 32px; color: var(--color-accent); }
.success-title { font-size: 1.25rem; font-weight: 700; color: var(--color-primary); }
.success-desc { color: var(--color-gray-500); font-size: 0.9375rem; }

/* ================================================================
   FOOTER
   ================================================================ */
#colophon {
  background: var(--color-primary);
  padding-top: 4rem;
  position: relative;
  overflow: hidden;
}
#colophon::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/images/cta-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .15;
  z-index: 0;
}
#colophon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,36,71,.92) 0%, rgba(11,36,71,.97) 100%);
  z-index: 0;
}
#colophon > .tolo-container {
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand p { color: rgba(255,255,255,.5); font-size: 0.875rem; line-height: 1.7; margin-top: 1.25rem; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-white);
  font-size: 0.6875rem;
  font-weight: 700;
  transition: all var(--transition);
  cursor: pointer;
}
.footer-social-link:hover { background: var(--color-accent); }
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}
.footer-menu { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-menu a,
.footer-menu button {
  font-size: 0.875rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  text-align: left;
}
.footer-menu a::before,
.footer-menu button::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0;
  transition: opacity var(--transition);
  flex-shrink: 0;
}
.footer-menu a:hover,
.footer-menu button:hover { 
  color: var(--color-accent); 
  padding-left: 10px;
}
.footer-menu a:hover::before,
.footer-menu button:hover::before { opacity: 1; }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.875rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.625rem; }
.footer-contact-icon { font-size: 0.875rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-text { font-size: 0.875rem; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-contact-item:hover .footer-contact-text { color: rgba(255,255,255,.8); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,.35); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a,
.footer-bottom-links button {
  font-size: 0.75rem;
  color: rgba(255,255,255,.35);
  transition: color var(--transition);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}
.footer-bottom-links a:hover,
.footer-bottom-links button:hover { color: rgba(255,255,255,.7); }

/* ================================================================
   SCROLL TO TOP
   ================================================================ */
#scroll-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  width: 48px; height: 48px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: all var(--transition-slow);
  cursor: pointer;
  border: none;
}
#scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#scroll-top:hover { background: var(--color-accent-dark); }
#scroll-top svg { width: 20px; height: 20px; }

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: translateY(0); }
}

.aos-init { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.aos-animate { opacity: 1; transform: translateY(0); }
.aos-delay-1 { transition-delay: 0.1s; }
.aos-delay-2 { transition-delay: 0.2s; }
.aos-delay-3 { transition-delay: 0.3s; }
.aos-delay-4 { transition-delay: 0.4s; }

/* ================================================================
   INNER PAGES
   ================================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: 8rem 0 4rem;
  text-align: center;
}
.page-hero-title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; color: var(--color-white); }
.page-hero-breadcrumb { color: rgba(255,255,255,.6); font-size: 0.875rem; margin-top: 0.75rem; }
.page-hero-breadcrumb a { color: var(--color-accent); }

.page-content { padding-block: 4rem; max-width: 860px; margin: auto; }
.page-content h2 { color: var(--color-primary); margin-bottom: 1rem; margin-top: 2.5rem; }
.page-content p { color: var(--color-gray-600); margin-bottom: 1.25rem; line-height: 1.8; }
.page-content ul { padding-left: 1.5rem; list-style: disc; color: var(--color-gray-600); margin-bottom: 1.25rem; }
.page-content ul li { margin-bottom: 0.5rem; line-height: 1.7; }

/* Archive / Blog */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.post-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-gray-100);
  transition: all var(--transition-slow);
}
.post-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.post-card-thumb img { width: 100%; height: 220px; object-fit: cover; }
.post-card-body { padding: 1.5rem; }
.post-card-cat { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-accent); margin-bottom: 0.75rem; }
.post-card-title { font-size: 1.0625rem; font-weight: 700; color: var(--color-primary); margin-bottom: 0.75rem; line-height: 1.4; }
.post-card-excerpt { font-size: 0.875rem; color: var(--color-gray-500); line-height: 1.6; margin-bottom: 1rem; }
.post-card-meta { display: flex; align-items: center; gap: 1rem; font-size: 0.8125rem; color: var(--color-gray-400); }

/* Sidebar */
.sidebar-widget { margin-bottom: 2rem; }
.widget-title { font-size: 1rem; font-weight: 700; color: var(--color-primary); margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--color-accent); }

/* ================================================================
   WOOCOMMERCE (basic compat)
   ================================================================ */
.woocommerce-notices-wrapper { max-width: var(--container-max); margin-inline: auto; padding-inline: var(--container-pad); }

/* ================================================================
   RESPONSIVE â€” Base overrides (detailed rules at end of file)
   ================================================================ */
@media (max-width: 1280px) {
  .approach-steps { grid-template-columns: repeat(3, 1fr); }
  .approach-steps::before { display: none; }
}

/* ================================================================
   WORDPRESS CORE CLASSES
   ================================================================ */
.wp-block-image { margin: 1.5rem 0; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.8125rem; color: var(--color-gray-500); text-align: center; margin-top: 0.5rem; }
.alignleft { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.aligncenter { margin-inline: auto; display: block; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden; position: absolute; width: 1px; }
.sticky { /* WordPress sticky post */ }
.bypostauthor { /* WordPress by post author */ }

/* ================================================================
   INNER PAGE ENHANCEMENTS
   ================================================================ */

/* â”€â”€ Page Hero â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.page-hero {
  padding: 100px 0 60px;
  background: var(--color-primary);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(11,36,71,0.95) 0%, rgba(22,49,102,0.8) 100%);
  z-index: 1;
}
.page-hero .tolo-container { position: relative; z-index: 2; }
.page-hero-title { color: var(--color-white); font-size: 3rem; margin-bottom: 1rem; }
.page-hero-breadcrumb { font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.page-hero-breadcrumb a { color: var(--color-accent); font-weight: 600; }
.page-hero-breadcrumb a:hover { text-decoration: underline; }

/* â”€â”€ About Page â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.about-intro-inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; align-items: center; }
.about-divider { width: 60px; height: 4px; background: var(--color-accent); margin: 1.5rem 0; border-radius: 2px; }
.about-intro-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.about-tag { background: var(--color-gray-100); color: var(--color-primary); padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.8125rem; font-weight: 600; }
.about-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.about-stat-box { background: var(--color-white); padding: 2rem 1.5rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); text-align: center; transition: transform var(--transition); }
.about-stat-box:hover { transform: translateY(-5px); }
.about-stat-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.about-stat-num { font-size: 1.75rem; font-weight: 900; color: var(--color-primary); line-height: 1; }
.about-stat-label { font-size: 0.75rem; color: var(--color-gray-500); margin-top: 0.5rem; font-weight: 600; text-transform: uppercase; }

.mv-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.mv-card { padding: 3rem; border-radius: var(--radius-xl); color: var(--color-white); position: relative; overflow: hidden; }
.mv-card--mission { background: var(--color-primary); }
.mv-card--vision { background: var(--color-secondary); }
.mv-icon { font-size: 3rem; margin-bottom: 1.5rem; opacity: 0.8; }
.mv-card h3 { color: var(--color-white); font-size: 1.75rem; margin-bottom: 1rem; }
.mv-card p { opacity: 0.9; line-height: 1.8; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.value-card { background: var(--color-white); padding: 2.5rem; border-radius: var(--radius-xl); border: 1px solid var(--color-gray-100); transition: all var(--transition-slow); }
.value-card:hover { border-color: var(--color-accent); box-shadow: var(--shadow-xl); transform: translateY(-5px); }
.value-icon { width: 60px; height: 60px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.5rem; }
.value-card h4 { font-size: 1.25rem; margin-bottom: 1rem; }
.value-card p { color: var(--color-gray-600); font-size: 0.9375rem; }

.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; margin-top: 3rem; }
.why-card { background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(12px); padding: 3rem 2.5rem; border-radius: var(--radius-xl); border: 1px solid rgba(255, 255, 255, 0.4); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05); transition: all var(--transition-slow); position: relative; overflow: hidden; z-index: 1; }
.why-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--color-accent); transform: scaleX(0); transform-origin: left; transition: transform var(--transition-slow); z-index: -1; }
.why-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1); border-color: rgba(34, 197, 94, 0.3); }
.why-card:hover::before { transform: scaleX(1); }
.why-emoji { font-size: 3rem; margin-bottom: 1.5rem; display: inline-block; background: rgba(255, 255, 255, 0.9); padding: 1rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.why-card h4 { font-size: 1.375rem; margin-bottom: 1rem; color: var(--color-primary); font-weight: 800; }
.why-card p { color: var(--color-gray-600); font-size: 0.9375rem; line-height: 1.7; }

.story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.timeline-item { position: relative; padding-left: 3rem; margin-bottom: 2rem; }
.timeline-item::before { content: ''; position: absolute; left: 0.5rem; top: 0; bottom: -2rem; width: 2px; background: var(--color-gray-200); }
.timeline-item:last-child::before { display: none; }
.timeline-dot { position: absolute; left: 0; top: 0.5rem; width: 1.25rem; height: 1.25rem; background: var(--color-white); border: 3px solid var(--color-accent); border-radius: 50%; z-index: 2; }
.timeline-year { font-weight: 800; color: var(--color-primary); font-size: 1.125rem; margin-bottom: 0.25rem; }
.timeline-text { color: var(--color-gray-600); font-size: 0.875rem; }

/* â”€â”€ Services Page â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.services-grid-full { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.service-card-full { display: flex; flex-direction: column; height: 100%; background: var(--color-white); padding: 3rem; border-radius: var(--radius-xl); border: 1px solid var(--color-gray-100); transition: all var(--transition-slow); }
.service-card-full:hover { border-color: var(--color-accent); box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.service-card-header { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1.5rem; }
.service-card-icon { width: 70px; height: 70px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; flex-shrink: 0; }
.service-card-title { font-size: 1.375rem; margin: 0; line-height: 1.3; }
.service-card-desc { color: var(--color-gray-600); margin-bottom: 2rem; font-size: 1rem; line-height: 1.6; }
.service-card-bullets { list-style: none; padding: 0; margin: auto 0 0 0; display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
.service-card-bullets li { position: relative; padding-left: 1.75rem; font-size: 0.875rem; color: var(--color-gray-700); font-weight: 500; line-height: 1.5; }
.service-card-bullets li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; top: 0.125rem; color: var(--color-accent); font-size: 0.875rem; }

.advantage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.advantage-card { background: var(--color-white); padding: 2rem; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow-sm); transition: transform var(--transition); }
.advantage-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.advantage-emoji { font-size: 2.5rem; margin-bottom: 1rem; }

/* â”€â”€ Equipment Page â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.equip-stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; background: var(--color-white); padding: 3rem; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); margin-top: -3rem; position: relative; z-index: 10; }
.equip-stat-item { text-align: center; }
.equip-stat-num { font-size: 2.5rem; font-weight: 900; color: var(--color-accent); line-height: 1; margin-bottom: 0.5rem; }
.equip-stat-label { font-size: 0.875rem; font-weight: 700; color: var(--color-primary); text-transform: uppercase; letter-spacing: 0.05em; }

.equip-category-block { background: var(--color-white); padding: 3rem; border-radius: var(--radius-xl); border: 1px solid var(--color-gray-100); margin-bottom: 2rem; }
.equip-cat-header { display: flex; gap: 2rem; align-items: flex-start; margin-bottom: 2rem; }
.equip-cat-icon { width: 80px; height: 80px; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 2rem; flex-shrink: 0; }
.equip-cat-title { font-size: 1.75rem; margin-bottom: 0.75rem; }
.equip-cat-desc { color: var(--color-gray-600); max-width: 800px; }
.equip-items-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1rem; list-style: none; padding: 0; }
.equip-items-list li { position: relative; padding-left: 2rem; font-weight: 600; color: var(--color-gray-700); }
.equip-items-list li::before { content: '\f105'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; color: var(--color-accent); }

.partner-brands-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.brand-pill { background: var(--color-white); padding: 1rem 2rem; border-radius: 50px; font-weight: 700; color: var(--color-primary); box-shadow: var(--shadow-sm); border: 1px solid var(--color-gray-100); transition: all var(--transition); }
.brand-pill:hover { border-color: var(--color-accent); transform: scale(1.05); }

.equip-process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.equip-process-item { position: relative; text-align: center; }
.equip-process-num { width: 50px; height: 50px; background: var(--color-accent); color: var(--color-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; margin: 0 auto 1.5rem; font-size: 1.25rem; }

/* â”€â”€ Projects Page â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.projects-outcomes-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.outcome-item { background: var(--color-white); padding: 2.5rem 1.5rem; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow-md); }
.outcome-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.outcome-num { font-size: 2.25rem; font-weight: 900; color: var(--color-primary); line-height: 1; }
.outcome-label { font-size: 0.8125rem; color: var(--color-gray-500); font-weight: 700; text-transform: uppercase; margin-top: 0.5rem; }

.projects-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 3.5rem; }
.filter-btn { padding: 0.75rem 2rem; border-radius: 50px; border: 2px solid var(--color-gray-200); font-weight: 700; color: var(--color-gray-500); transition: all var(--transition); }
.filter-btn:hover, .filter-btn.active { border-color: var(--color-accent); color: var(--color-primary); background: rgba(34,197,94,0.05); }

.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); gap: 2rem; }
.project-card { background: var(--color-white); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--color-gray-100); transition: all var(--transition-slow); display: flex; flex-direction: column; }
.project-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: rgba(34,197,94,0.3); }
.project-card-top { padding: 2.5rem; color: var(--color-white); min-height: 200px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; }
.project-badge { position: absolute; top: 1.5rem; right: 1.5rem; background: rgba(255,255,255,0.2); backdrop-filter: blur(4px); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.05em; }
.project-title { color: var(--color-white); font-size: 1.5rem; margin-bottom: 0.75rem; line-height: 1.3; }
.project-client { font-size: 0.875rem; opacity: 0.8; font-weight: 500; }
.project-card-body { padding: 2rem; flex-grow: 1; display: flex; flex-direction: column; }
.project-meta { font-size: 0.8125rem; color: var(--color-gray-500); margin-bottom: 1rem; display: flex; gap: 1rem; font-weight: 600; }
.project-outcome { font-size: 0.9375rem; color: var(--color-gray-700); line-height: 1.6; margin-bottom: 1.5rem; }
.project-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: auto; }
.project-tag { background: var(--color-gray-50); color: var(--color-gray-600); padding: 0.35rem 0.75rem; border-radius: 4px; font-size: 0.75rem; font-weight: 700; border: 1px solid var(--color-gray-100); }

.testimonial-quote-inner { max-width: 900px; margin: 0 auto; text-align: center; color: var(--color-white); }
.quote-icon { font-size: 6rem; font-family: serif; line-height: 1; opacity: 0.2; height: 3rem; }
.quote-text { font-size: 2.25rem; font-weight: 700; line-height: 1.4; margin-bottom: 2rem; font-style: italic; }
.quote-author-name { font-size: 1.125rem; font-weight: 800; color: var(--color-accent); }

/* â”€â”€ Gallery Page â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.gallery-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-bottom: 3.5rem; }
.gallery-filter-btn { padding: 0.6rem 1.5rem; border-radius: 50px; font-size: 0.875rem; font-weight: 700; color: var(--color-gray-600); background: var(--color-gray-100); transition: all var(--transition); }
.gallery-filter-btn.active { background: var(--color-primary); color: var(--color-white); }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); grid-auto-rows: 300px; grid-auto-flow: dense; gap: 1rem; }
.gallery-item { position: relative; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item-inner { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.gallery-placeholder-icon { font-size: 3rem; color: rgba(255,255,255,0.2); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(11,36,71,0.85); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.4s ease; padding: 2rem; text-align: center; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-item-inner { transform: scale(1.1); }
.gallery-overlay-icon { font-size: 2.5rem; color: var(--color-accent); margin-bottom: 1rem; transform: translateY(20px); transition: transform 0.4s ease; }
.gallery-item:hover .gallery-overlay-icon { transform: translateY(0); }
.gallery-label { display: block; color: var(--color-white); font-size: 1.25rem; font-weight: 800; margin-bottom: 0.5rem; }
.gallery-cat-badge { display: inline-block; background: var(--color-accent); color: var(--color-white); font-size: 0.65rem; font-weight: 900; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 50px; letter-spacing: 0.1em; }

.gallery-culture-strip { display: flex; justify-content: space-between; align-items: center; gap: 4rem; }
.gallery-culture-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.culture-stat-num { font-size: 2.5rem; font-weight: 900; color: var(--color-accent); line-height: 1; }
.culture-stat-label { font-size: 0.8125rem; color: rgba(255,255,255,0.6); margin-top: 0.5rem; font-weight: 700; text-transform: uppercase; }

/* â”€â”€ Contact Page â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-quick-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.contact-quick-card { background: var(--color-white); padding: 2rem; border-radius: var(--radius-xl); box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 1.5rem; transition: all var(--transition); border: 1px solid var(--color-gray-100); }
.contact-quick-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); border-color: var(--color-accent); }
.cqc-icon { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.cqc-label { font-size: 0.75rem; font-weight: 700; color: var(--color-gray-500); text-transform: uppercase; letter-spacing: 0.05em; }
.cqc-value { font-size: 1.0625rem; font-weight: 800; color: var(--color-primary); }

.contact-split-layout {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  margin-top: 3rem;
}
@media (min-width: 1024px) {
  .contact-split-layout {
    grid-template-columns: 2fr 3fr;
  }
}
.contact-split-info {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.contact-split-info::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(34,197,94,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.contact-split-form {
  padding: 3rem 2.5rem;
  background: var(--color-white);
}

.contact-info-list { list-style: none; padding: 0; margin: 0 0 2.5rem 0; display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1.25rem; }
.contact-info-icon { font-size: 1.5rem; color: var(--color-accent); margin-top: 0.25rem; }
.contact-info-label { font-size: 0.8125rem; font-weight: 700; color: rgba(255,255,255,0.6); text-transform: uppercase; margin-bottom: 0.25rem; }
.contact-info-value { font-size: 1.0625rem; font-weight: 600; color: var(--color-white); }
.contact-info-value.closed { color: #ef4444; }

.contact-social p { font-size: 0.875rem; font-weight: 700; color: rgba(255,255,255,0.6); text-transform: uppercase; margin-bottom: 1rem; }

.contact-split-form .form-title { font-size: 1.75rem; margin-bottom: 0.5rem; }
.contact-split-form .form-desc { font-size: 0.9375rem; color: var(--color-gray-500); margin-bottom: 2rem; }

.contact-map-placeholder { 
  width: 100%; 
  height: 500px; 
  background-color: var(--color-primary);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; 
  position: relative; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
}
.contact-map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,36,71,.82) 0%, rgba(22,49,102,.75) 100%);
  z-index: 1;
}
.map-overlay-card { 
  background: rgba(255, 255, 255, 0.1); 
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 3rem 2.5rem; 
  border-radius: var(--radius-xl); 
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255,255,255,.15); 
  width: 100%; 
  max-width: 440px; 
  text-align: center; 
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}
.map-overlay-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255,255,255,.2);
}
.map-overlay-card h4 {
  color: #fff;
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: .5rem;
}
.map-overlay-card p {
  color: rgba(255,255,255,.7);
  font-size: .9375rem;
  line-height: 1.6;
}
.map-pin-icon { 
  font-size: 2.5rem; 
  margin-bottom: 1rem; 
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: var(--color-white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--color-gray-100); transition: border-color var(--transition); }
.faq-item:hover { border-color: var(--color-accent); }
.faq-question { width: 100%; padding: 1.5rem 2rem; display: flex; justify-content: space-between; align-items: center; text-align: left; font-weight: 700; font-size: 1.125rem; color: var(--color-primary); transition: background var(--transition); }
.faq-question:hover { background: var(--color-gray-50); }
.faq-chevron { transition: transform 0.3s ease; color: var(--color-accent); }
.faq-item.active .faq-chevron { transform: rotate(180deg); }
.faq-answer { padding: 0 2rem 1.5rem; font-size: 0.9375rem; color: var(--color-gray-600); line-height: 1.7; border-top: 1px solid var(--color-gray-50); }

/* â”€â”€ Responsive Fixes â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {
  .about-intro-inner, .story-inner, .analytics-inner, .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .mv-inner { grid-template-columns: 1fr; }
  .equip-stats-strip, .projects-outcomes-strip { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
  .gallery-culture-strip { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .page-hero-title { font-size: 2.25rem; }
  .equip-stats-strip, .projects-outcomes-strip { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .equip-cat-header { flex-direction: column; gap: 1rem; }
  .about-stats-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-steps { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; gap: 1rem; }
  #scroll-top { bottom: 1rem; right: 1rem; }
  .projects-filter, .gallery-filter { flex-direction: column; align-items: stretch; }
  .filter-btn, .gallery-filter-btn { text-align: center; }
}

/* ================================================================
   APPROACH TIMELINE  (redesigned)
   ================================================================ */
.approach-timeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Central spine line */
.approach-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-primary));
  transform: translateX(-50%);
  border-radius: 2px;
}

.approach-timeline-row {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 4rem;
  position: relative;
}

/* Left rows: card on the left, node in the middle */
.timeline-left {
  flex-direction: row;
  justify-content: flex-end;
}
.timeline-left .timeline-card {
  order: -1;
  margin-right: 0;
}

/* Right rows: node in middle, card on the right */
.timeline-right {
  flex-direction: row;
  justify-content: flex-start;
}
.timeline-right .timeline-card {
  margin-left: 0;
}

/* Spine node (circle + number) */
.timeline-node {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  top: 0;
}

.timeline-node-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  box-shadow: 0 0 0 6px rgba(255,255,255,.9), var(--shadow-lg);
  transition: transform var(--transition);
}
.approach-timeline-row:hover .timeline-node-circle {
  transform: scale(1.12);
}

.timeline-step-num {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-gray-400);
}

/* The content card */
.timeline-card {
  width: calc(50% - 80px);
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-gray-100);
  transition: all var(--transition-slow);
}
.timeline-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2xl);
}

.timeline-card-header {
  padding: 1.5rem 2rem;
  color: #fff;
}
.timeline-phase-label {
  font-size: .6875rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  display: block;
  margin-bottom: .25rem;
}
.timeline-phase-name {
  font-size: 1.75rem;
  font-weight: 900;
  color: #fff;
  margin: 0;
}

.timeline-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: calc(100% - 85px); /* approximate header height subtraction */
}
.timeline-headline {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: .75rem;
}
.timeline-desc {
  font-size: .9375rem;
  color: var(--color-gray-600);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.timeline-deliverables {
  background: var(--color-gray-50);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--color-gray-100);
  margin-top: auto;
}
.timeline-deliverables-label {
  font-size: .6875rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-primary);
  display: block;
  margin-bottom: 1rem;
}
.timeline-deliverables ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.timeline-deliverables ul li {
  font-size: .875rem;
  font-weight: 600;
  color: var(--color-gray-700);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.4;
}
.timeline-deliverables ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  position: absolute;
  left: 0;
  top: 0.125rem;
  color: var(--color-accent);
  font-weight: 900;
  font-size: .875rem;
}

/* Responsive: stack to single column on tablet/mobile */
@media (max-width: 900px) {
  .approach-timeline::before { left: 32px; }

  .approach-timeline-row,
  .timeline-left,
  .timeline-right {
    flex-direction: column;
    padding-left: 80px;
    justify-content: flex-start;
  }

  .timeline-node {
    left: 32px;
    transform: translateX(-50%);
  }
  .timeline-node-circle { width: 48px; height: 48px; font-size: 1rem; }

  .timeline-card {
    width: 100%;
    order: 0 !important;
    margin: 0 !important;
  }
  .timeline-left .timeline-card { order: 0 !important; }
}

@media (max-width: 480px) {
  .approach-timeline-row { padding-left: 60px; }
  .approach-timeline::before { left: 24px; }
  .timeline-node { left: 24px; }
  .timeline-node-circle { width: 40px; height: 40px; font-size: .875rem; }
}

/* ================================================================
   INDUSTRIES DETAIL GRID  (new richer card style)
   ================================================================ */
.industries-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.industry-detail-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--color-gray-100);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-slow);
}
.industry-detail-card:hover {
  border-color: rgba(34,197,94,.35);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.industry-detail-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--color-gray-50);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  color: var(--color-primary);
  transition: background var(--transition);
}
.industry-detail-card:hover .industry-detail-icon {
  background: rgba(34,197,94,.1);
}
.industry-detail-icon svg {
  width: 32px;
  height: 32px;
}

.industry-detail-content h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: .35rem;
  line-height: 1.3;
}
.industry-detail-content p {
  font-size: .875rem;
  color: var(--color-gray-500);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .industries-detail-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   FOOTER â€” CAPABILITY ITEMS  (What We Do section)
   ================================================================ */
.footer-capability-item {
  padding: .5rem 0;
  transition: opacity var(--transition);
}
.footer-capability-item:hover {
  opacity: .85;
}
.footer-capability-item:hover span:first-child {
  background: rgba(34,197,94,.2) !important;
}

/* ================================================================
   CONTACT FORM ENHANCEMENTS & OVERLAY
   ================================================================ */

/* ================================================================
   CONTACT CREATIVE SECTION
   ================================================================ */
.contact-creative-section {
  position: relative;
  background: var(--color-gray-50);
  overflow: hidden;
  padding: 5rem 0 0 0;
}
.contact-creative-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem auto;
  padding: 0 2rem;
}
.contact-creative-header .section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  background: rgba(34,197,94,0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.contact-creative-header .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.contact-creative-header .section-desc {
  color: var(--color-gray-600);
  font-size: 1.125rem;
  line-height: 1.6;
}

.contact-creative-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.contact-creative-info {
  background: #000;
  color: var(--color-white);
  padding: 6rem 10% 6rem 15%;
  position: relative;
}
.contact-creative-info::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('assets/images/contactUs.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.6;
}
.contact-creative-info::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
.info-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 500px;
  margin-left: auto;
}
.info-heading {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 4rem 0;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.contact-info-icon {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--color-accent);
  flex-shrink: 0;
}
.contact-info-label {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.25rem;
  font-weight: 700;
}
.contact-info-value {
  font-size: 1.125rem;
  font-weight: 500;
}
.contact-creative-form {
  background: var(--color-white);
  padding: 6rem 15% 6rem 10%;
}
.form-content-wrapper {
  max-width: 600px;
}
.form-content-wrapper .form-title {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.form-content-wrapper .form-desc {
  color: var(--color-gray-500);
  margin-bottom: 2.5rem;
}

@media (max-width: 1024px) {
  .contact-creative-split { grid-template-columns: 1fr; }
  .contact-creative-info { padding: 4rem 5%; }
  .info-content-wrapper { margin: 0 auto; }
  .contact-creative-form { padding: 4rem 5%; }
  .form-content-wrapper { margin: 0 auto; }
}

/* Success Overlay */
.success-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.success-overlay.active {
  visibility: visible;
  opacity: 1;
}
.success-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 36, 71, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.success-overlay-content {
  position: relative;
  background: var(--color-white);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-xl);
  text-align: center;
  max-width: 480px;
  width: 90%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: translateY(30px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.success-overlay.active .success-overlay-content {
  transform: translateY(0) scale(1);
}

/* Animated Checkmark */
.success-checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}
.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: var(--color-accent);
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.checkmark-svg {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: var(--color-white);
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px var(--color-accent);
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}
.checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}
@keyframes stroke {
  100% { stroke-dashoffset: 0; }
}
@keyframes scale {
  0%, 100% { transform: none; }
  50% { transform: scale3d(1.1, 1.1, 1); }
}
@keyframes fill {
  100% { box-shadow: inset 0px 0px 0px 60px var(--color-accent); }
}

.success-overlay-title {
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.success-overlay-desc {
  color: var(--color-gray-600);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Shake Animation for Invalid Fields */
.field-shake {
  animation: shake 0.6s cubic-bezier(.36,.07,.19,.97) both;
}
@keyframes shake {
  10%, 90% { transform: translate3d(-1px, 0, 0); }
  20%, 80% { transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
  40%, 60% { transform: translate3d(4px, 0, 0); }
}

/* Social Icons Branding â€” Brand colors by default */
.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.social-links .social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: #fff;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: none;
}
.social-links .social-link:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 12px 20px -4px rgba(0,0,0,0.25);
}
/* Brand colors â€” always visible */
.social-links .social-link--linkedin  { background: #0A66C2; }
.social-links .social-link--facebook  { background: #1877F2; }
.social-links .social-link--x         { background: #14171A; }
.social-links .social-link--whatsapp  { background: #25D366; }
.social-links .social-link--instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
/* Hover brightens */
.social-links .social-link--linkedin:hover  { background: #0077d5; }
.social-links .social-link--facebook:hover  { background: #2d8cf0; }
.social-links .social-link--x:hover         { background: #000; }
.social-links .social-link--whatsapp:hover  { background: #2bea74; }
.social-links .social-link--instagram:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); filter: brightness(1.15); }

/* Footer social: slightly smaller, semi-transparent base that reveals brand on hover */
.footer-social .social-link {
  width: 40px;
  height: 40px;
  font-size: 1rem;
}


/* ================================================================
   LIGHTBOX SYSTEM
   ================================================================ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 36, 71, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2rem;
}
.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.5rem;
}
.lightbox-close:hover {
  background: var(--color-accent);
  transform: rotate(90deg);
}
.lightbox-content {
  max-width: 1000px;
  width: 100%;
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lightbox-overlay.active .lightbox-content {
  transform: scale(1) translateY(0);
}
.lightbox-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  background: #000;
  position: relative;
}
.lightbox-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 80vh;
  object-fit: contain;
}
.lightbox-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
  color: #fff;
}
.lightbox-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.lightbox-meta {
  font-size: 0.875rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.gallery-item { cursor: pointer; }

/* ================================================================
   PREMIUM PROJECT CARDS V2
   ================================================================ */
.projects-showcase-section {
  background: var(--color-gray-50);
  position: relative;
  overflow: hidden;
}
.projects-showcase-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.projects-showcase-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 2px solid rgba(11,36,71,0.03);
  pointer-events: none;
}

/* Masonry-like grid */
.projects-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

/* Project Card V2 */
.project-card-v2 {
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--color-gray-100);
  transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}
.project-card-v2:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.15);
  border-color: rgba(34,197,94,0.25);
}

/* Featured card spans 2 rows */
.project-card-featured {
  grid-row: span 2;
}
.project-card-featured .project-header-v2 {
  min-height: 260px;
}
.project-card-featured .project-title-v2 {
  font-size: 1.75rem;
}

/* Number overlay */
.project-number {
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  z-index: 1;
  pointer-events: none;
  transition: color 0.3s ease;
}
.project-card-v2:hover .project-number {
  color: rgba(255,255,255,0.12);
}

/* Card Header */
.project-header-v2 {
  padding: 2rem 2rem 1.75rem;
  color: #fff;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.project-header-content {
  position: relative;
  z-index: 2;
}

/* Decorative circles */
.project-header-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.08);
  transition: transform 0.6s ease;
}
.deco-circle-1 {
  width: 200px;
  height: 200px;
  top: -60px;
  right: -40px;
}
.deco-circle-2 {
  width: 120px;
  height: 120px;
  bottom: -30px;
  right: 40px;
  border-color: rgba(255,255,255,0.05);
}
.project-card-v2:hover .deco-circle-1 {
  transform: scale(1.15) translate(-10px, 10px);
}
.project-card-v2:hover .deco-circle-2 {
  transform: scale(1.2) translate(5px, -5px);
}

/* Badge */
.project-badge-v2 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
  width: fit-content;
}
.project-card-v2:hover .project-badge-v2 {
  background: rgba(255,255,255,0.25);
  transform: scale(1.05);
}
.project-badge-v2 i {
  font-size: 0.6875rem;
  opacity: 0.8;
}

.project-title-v2 {
  color: #fff;
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.project-client-v2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.project-client-v2 i {
  font-size: 0.75rem;
  opacity: 0.6;
}

/* Card Body */
.project-body-v2 {
  padding: 1.75rem 2rem 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Meta pills */
.project-meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.875rem;
  background: var(--color-gray-50);
  border: 1px solid var(--color-gray-100);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-gray-600);
}
.meta-pill i {
  font-size: 0.6875rem;
  color: var(--color-accent);
}

/* Outcome */
.project-outcome-v2 {
  border-left: 3px solid var(--color-accent);
  padding-left: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(34,197,94,0.03);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.outcome-label-v2 {
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}
.project-outcome-v2 p {
  font-size: 0.9375rem;
  color: var(--color-gray-700);
  line-height: 1.65;
  margin: 0;
}

/* Tags */
.project-tags-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}
.project-tag-v2 {
  background: var(--color-gray-50);
  color: var(--color-gray-600);
  padding: 0.35rem 0.875rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid var(--color-gray-100);
  transition: all 0.2s ease;
}
.project-tag-v2:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

/* View link */
.project-view-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary);
  cursor: pointer;
  transition: all 0.2s ease;
  padding-top: 0.5rem;
  border-top: 1px solid var(--color-gray-100);
}
.project-view-link:hover {
  color: var(--color-accent);
}
.project-view-link i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}
.project-view-link:hover i {
  transform: translateX(5px);
}

/* Fade-in animation for filter */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   FOOTER POWERED BY
   ================================================================ */
.footer-powered-by {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
}
.footer-powered-by .powered-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.4); }
}
.footer-powered-by a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}
.footer-powered-by a strong {
  font-weight: 800;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-powered-by a:hover {
  color: var(--color-accent);
}
.footer-powered-by a:hover strong {
  color: var(--color-accent);
}

/* ================================================================
   COMPREHENSIVE RESPONSIVE FIXES
   ================================================================ */

/* â”€â”€ Desktop+ polish â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (min-width: 1281px) {
  .projects-grid-v2 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* â”€â”€ Tablet landscape â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1280px) {
  .projects-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .project-card-featured {
    grid-row: span 1;
  }
}

/* â”€â”€ Tablet portrait / small laptop â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {
  /* Hero: stack and fix overlap */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-block: 2rem;
  }
  .hero-section {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 2rem;
  }
  .hero-visual { order: -1; }
  .hero-title { font-size: clamp(1.75rem, 5vw, 2.75rem); }

  /* Branding text visible on all sizes â€” tagline hidden on phones via 480px rule */
  /* Hero stat cards: reposition */
  .hero-stat-card.card-bottom {
    bottom: -0.5rem;
    left: 0;
  }
  .hero-stat-card.card-top {
    top: -0.5rem;
    right: 0;
  }

  /* Actions */
  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Navigation â€” handled by explicit @media screen rule near top */

  /* Two-column grids â†’ single */
  .analytics-inner,
  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  /* Projects */
  .projects-grid-v2 { grid-template-columns: repeat(2, 1fr); }

  .quote-text { font-size: 1.5rem; }

  /* CTA */
  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-content { flex-direction: column; }

  /* Contact & Forms â€” collapse early to prevent overlap on tablets */
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; gap: 1rem; }
  .contact-creative-split { grid-template-columns: 1fr; }
  .contact-creative-info { padding: 4rem 5%; }
  .contact-creative-form { padding: 4rem 5%; }
}

/* â”€â”€ Mobile landscape / large phone â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 768px) {
  /* Section spacing */
  .section { padding-block: clamp(2.5rem, 6vw, 4rem); }

  /* Hero buttons */
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
  }

  /* Hero stat cards: hide on mobile to prevent clutter */
  .hero-stat-card {
    display: none;
  }

  /* Industries bar */
  .industries-bar-inner { flex-direction: column; align-items: flex-start; }
  .industries-divider { display: none; }
  .industries-list { justify-content: flex-start; gap: 0.75rem; }

  /* Grids â†’ single or 2-col */
  .services-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-steps { grid-template-columns: repeat(2, 1fr); }
  .about-cards { grid-template-columns: 1fr; }
  .analytics-features { grid-template-columns: 1fr; }
  .projects-grid-v2 { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  .footer-powered-by { justify-content: center; }

  /* Business banner */
  .business-banner-inner { flex-direction: column; text-align: center; }
  .business-banner-inner .banner-icon-wrap { margin: 0 auto; }

  /* CTA */
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-content { flex-direction: column; }



  /* Page hero */
  .page-hero { padding: 90px 0 40px; }
  .page-hero-title { font-size: 2rem; }

  /* Home Page Contact Cards - Fix Mobile Padding */
  .contact-info-card,
  .contact-form-card {
    padding: 1.5rem;
  }

  /* Projects specifics */
  .project-card-featured .project-header-v2 { min-height: 180px; }
  .project-card-featured .project-title-v2 { font-size: 1.375rem; }
  .projects-outcomes-strip { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .outcome-item { padding: 1.5rem 1rem; }

  /* Quote */
  .quote-text { font-size: 1.25rem; }
}

/* â”€â”€ Phone portrait â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 480px) {
  /* Container padding boost */
  :root { --container-pad: 1rem; }

  /* Hero */
  .hero-title { font-size: 1.625rem; }
  .hero-description { font-size: 0.9375rem; }
  .hero-badge { flex-direction: column; text-align: center; }

  /* Single column everything */
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-steps { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; gap: 1rem; }
  .projects-grid-v2 { grid-template-columns: 1fr; }
  .projects-outcomes-strip { grid-template-columns: 1fr; }

  /* Scroll to top */
  #scroll-top { bottom: 1rem; right: 1rem; width: 40px; height: 40px; }

  /* Filter tabs stack */
  .projects-filter, .gallery-filter { flex-direction: column; align-items: stretch; }
  .filter-btn, .gallery-filter-btn { text-align: center; padding: 0.625rem 1rem; }

  /* Project cards */
  .project-header-v2 { min-height: 160px; padding: 1.5rem; }
  .project-body-v2 { padding: 1.25rem 1.5rem 1.5rem; }
  .project-number { font-size: 3.5rem; }
  .project-title-v2 { font-size: 1.125rem; }

  /* Footer */
  .footer-brand p { font-size: 0.8125rem; }

  /* Outcomes */
  .outcome-num { font-size: 1.75rem; }
  .outcome-item { padding: 1.25rem 1rem; }
}

/* â”€â”€ Very small screens â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 360px) {
  .hero-title { font-size: 1.375rem; }
  .btn { padding: 0.75rem 1.25rem; font-size: 0.875rem; }
  .section-title { font-size: 1.375rem; }
  .project-header-v2 { min-height: 140px; }
  .project-number { font-size: 2.5rem; }
}

/* ================================================================
   GLOBAL OVERFLOW GUARD â€” prevents ANY horizontal scroll on mobile
   ================================================================ */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
*, *::before, *::after {
  box-sizing: border-box;
}
img, video, iframe, embed, object {
  max-width: 100%;
  height: auto;
}

/* ================================================================
   OVERALL POLISH
   ================================================================ */

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Improved transitions */
.service-card,
.industry-card,
.about-card,
.value-card,
.step-item,
.contact-quick-card {
  will-change: transform;
}

/* Smooth section spacing with clamp */
.section {
  padding-block: clamp(3rem, 6vw, 5rem);
}

/* Mobile nav â€” no override needed, display:none/block handles it */

/* Print styles */
@media print {
  #masthead,
  .mobile-nav,
  .menu-toggle,
  #scroll-top,
  .cta-banner,
  #colophon,
  .hero-stat-card { display: none !important; }
  body { color: #000; background: #fff; }
  .hero-section { min-height: auto; padding-top: 0; }
}

/* ================================================================
   COMPREHENSIVE PAGE-BY-PAGE RESPONSIVE SYSTEM
   Covers: About, Services, Industries, Analytics, Approach,
   Contact, Gallery, Projects, Equipment, Home (front-page)
   ================================================================ */

/* === Tablet (<=1024px) === */
@media (max-width: 1024px) {
  .about-intro-inner { grid-template-columns: 1fr; gap: 2rem; }
  .story-inner       { grid-template-columns: 1fr; gap: 2rem; }
  .mv-inner          { grid-template-columns: 1fr; gap: 1.5rem; }
  .why-grid          { grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
  .values-grid       { grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
  .about-stats-grid  { grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
  .advantage-grid    { grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
  .services-grid-full{ grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
  .industries-detail-grid { grid-template-columns: 1fr; gap: 2rem; }
  .approach-timeline-row  { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-creative-cards-grid { grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
  .contact-creative-split      { grid-template-columns: 1fr; }
  .form-content-wrapper, .info-content-wrapper { padding: 3rem 5%; }
  .gallery-grid          { grid-template-columns: repeat(2,1fr); gap: 1rem; }
  .gallery-culture-stats { grid-template-columns: repeat(2,1fr); gap: 1rem; }
  .testimonial-quote-inner { grid-template-columns: 1fr; gap: 2rem; }
  .equip-stats-strip   { grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
  .partner-brands-grid { grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
}

/* === Mobile landscape (<=768px) === */
@media (max-width: 768px) {
  .section-title    { font-size: clamp(1.5rem, 5vw, 2rem); }
  .section-subtitle { font-size: clamp(0.875rem, 2.5vw, 1rem); }
  .page-hero-title  { font-size: clamp(1.75rem, 6vw, 2.5rem); }
  .page-hero        { padding: 100px 0 50px; }
  .container, .container-wide { padding-inline: 1.25rem; width: 100%; }

  .about-intro-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .story-inner       { grid-template-columns: 1fr; gap: 1.5rem; }
  .mv-inner          { grid-template-columns: 1fr; gap: 1.25rem; }
  .why-grid          { grid-template-columns: 1fr; gap: 1rem; }
  .values-grid       { grid-template-columns: 1fr; gap: 1rem; }
  .about-stats-grid  { grid-template-columns: repeat(2,1fr); gap: 1rem; }
  .story-section img, .about-intro-section img {
    width: 100%; height: auto; max-height: 260px;
    object-fit: cover; border-radius: 12px;
  }

  .services-grid-full { grid-template-columns: 1fr; gap: 1.25rem; }
  .advantage-grid     { grid-template-columns: 1fr; gap: 1rem; }

  .industries-detail-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .projects-grid { grid-template-columns: 1fr; gap: 1.25rem; }

  .approach-timeline-row { grid-template-columns: 1fr; gap: 1.25rem; }
  .approach-timeline-row::before { display: none; }

  .contact-creative-cards-grid { grid-template-columns: 1fr; gap: 1rem; }
  .contact-creative-split      { grid-template-columns: 1fr; }
  .form-content-wrapper, .info-content-wrapper { padding: 2.5rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; gap: 0.875rem; }
  .card-icon-wrapper { width: 48px; height: 48px; font-size: 1.25rem; }

  .gallery-grid          { grid-template-columns: repeat(2,1fr); gap: 0.75rem; }
  .gallery-culture-stats { grid-template-columns: repeat(2,1fr); gap: 0.75rem; }
  .gallery-image-wrapper { aspect-ratio: 4/3; overflow: hidden; }
  .gallery-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }

  .testimonial-quote-inner { grid-template-columns: 1fr; gap: 1.5rem; }

  .equip-stats-strip   { grid-template-columns: repeat(2,1fr); gap: 1rem; }
  .partner-brands-grid { grid-template-columns: repeat(2,1fr); gap: 1rem; }

  .analytics-inner { grid-template-columns: 1fr; gap: 2rem; }
  .analytics-image-wrap { max-height: 260px; overflow: hidden; border-radius: 12px; }
  .analytics-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
  .contact-inner    { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-left-col { display: none; }
}

/* === Phone portrait (<=480px) === */
@media (max-width: 480px) {
  :root { --container-pad: 1rem; }
  .container, .container-wide { padding-inline: 1rem; }
  .section-title   { font-size: 1.375rem; }
  .page-hero-title { font-size: 1.75rem; }
  .page-hero       { padding: 90px 0 40px; }

  .about-stats-grid { grid-template-columns: 1fr; gap: 0.875rem; }
  .mv-inner { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid-full { grid-template-columns: 1fr; }
  .advantage-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .industries-detail-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .gallery-culture-stats { grid-template-columns: repeat(2,1fr); }
  .projects-grid { grid-template-columns: 1fr; }
  .equip-stats-strip { grid-template-columns: 1fr; }
  .partner-brands-grid { grid-template-columns: repeat(2,1fr); }
  .contact-creative-cards-grid { grid-template-columns: 1fr; }
  .form-content-wrapper, .info-content-wrapper { padding: 2rem 1rem; }

  .cta-banner-inner {
    flex-direction: column; text-align: center;
    gap: 1.25rem; padding: 2rem 1rem;
  }
  .cta-content { flex-direction: column; align-items: center; }
  .cta-banner-inner .btn { width: 100%; justify-content: center; }

  .service-card, .industry-card, .about-card,
  .value-card, .step-item, .contact-quick-card,
  .project-card-featured, .equip-card {
    width: 100%; min-width: 0;
  }

  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  pre   { overflow-x: auto; white-space: pre-wrap; word-break: break-word; }
}

/* === Very small phones (<=360px) === */
@media (max-width: 360px) {
  .section-title       { font-size: 1.25rem; }
  .page-hero-title     { font-size: 1.5rem; }
  .btn                 { padding: 0.75rem 1rem; font-size: 0.875rem; }
  .gallery-grid        { grid-template-columns: 1fr; }
  .partner-brands-grid { grid-template-columns: 1fr; }
  .gallery-culture-stats { grid-template-columns: 1fr; }
  .equip-stats-strip   { grid-template-columns: 1fr; }
  .about-stats-grid    { grid-template-columns: 1fr; }
}


/* ================================================================
   CONTACT PAGE — Creative Cards & Social Links
   ================================================================ */

/* Grid of quick-contact cards */
.contact-creative-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

/* Individual card */
.contact-creative-card-item {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  overflow: hidden;
}
.contact-creative-card-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* Decorative blob — MUST NOT intercept clicks */
.card-bg-blob {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;   /* ← KEY FIX: lets clicks pass through to the button */
  z-index: 0;
}

/* All card children sit above the blob */
.card-icon-wrapper,
.card-content,
.card-action {
  position: relative;
  z-index: 1;
}

/* Icon circle */
.card-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  flex-shrink: 0;
}

/* Card text content */
.card-content { flex: 1; }
.card-label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-gray-400);
  margin-bottom: 0.25rem;
}
.card-value {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  word-break: break-word;
  transition: color 0.2s;
}
.card-value:hover { color: var(--color-accent); }
.card-desc {
  font-size: 0.875rem;
  color: var(--color-gray-500);
  line-height: 1.55;
  margin-top: 0.375rem;
}

/* "Get Connected" action area */
.card-action {
  margin-top: 0.5rem;
}

/* The clickable button */
.card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.5rem 0;
  position: relative;        /* ensures z-index works */
  z-index: 2;                /* sits above blob layer */
  pointer-events: auto;      /* explicitly clickable */
  transition: color 0.2s, gap 0.2s;
}
.card-btn:hover {
  color: var(--color-accent);
  gap: 0.75rem;
}
.card-btn i {
  font-size: 0.8125rem;
  transition: transform 0.2s;
}
.card-btn:hover i {
  transform: translateX(4px);
}

/* ─── Social Link Icons ─────────────────────────────────────── */
.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1rem;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
  position: relative;
  z-index: 1;
  pointer-events: auto;      /* ← explicitly clickable */
}
.social-link:hover { transform: translateY(-2px); opacity: 0.9; }
.social-link--linkedin  { background: #0077B5; }
.social-link--facebook  { background: #1877F2; }
.social-link--x         { background: #000; }
.social-link--whatsapp  { background: #25D366; }
.social-link--instagram { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }

/* Responsive: collapse cards to 2-col on tablets, 1-col on phones */
@media (max-width: 768px) {
  .contact-creative-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .contact-creative-cards-grid { grid-template-columns: 1fr; }
  .card-icon-wrapper { width: 48px; height: 48px; font-size: 1.125rem; }
}


/* Fix for inline 1fr 1fr grids */
@media (max-width: 768px) {
  .responsive-split-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}

/* Fix for index.php grid */
@media (max-width: 992px) {
  .content-area-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}


/* Contact Page Map Icon */
.contact-map-section .fa-location-dot:before, 
.contact-map-section .fa-map-marker-alt:before {
    content: "\f3c5";
    color: crimson;
    transition: all 0.4s ease;
    display: inline-block;
}

.contact-map-section .fa-location-dot:hover:before, 
.contact-map-section .fa-map-marker-alt:hover:before {
    color: #ff1a1a;
    transform: scale(1.25) translateY(-3px);
    text-shadow: 0 0 15px rgba(220, 20, 60, 0.6);
}
.contact-map-section .fa-location-dot.pulse:before, 
.contact-map-section .fa-map-marker-alt.pulse:before {
    animation: pulse-location 2s infinite ease-in-out;
}

@keyframes pulse-location {
    0% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.1) translateY(-2px); }
    100% { transform: scale(1) translateY(0); }
}



/* Analytics Feature Cards */
.feature-item-card:hover {
    transform: translateY(-3px);
    border-color: var(--color-accent) !important;
    box-shadow: var(--shadow-md) !important;
}
.feature-item-card:hover .feature-icon-wrapper {
    background: var(--color-accent) !important;
    color: var(--color-white) !important;
}
