@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* Brand Color Palette matching Logo Background (#F5F3EB) */
  --bg-light: #F5F3EB;
  --bg-subtle: #ECE9DF;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FAF8F2;
  --bg-glass: rgba(255, 255, 255, 0.85);
  
  --green-deep: #163E23;
  --green-primary: #1E4D2B;
  --green-light: #28663A;
  --green-glow: #10B981;
  --green-tint: rgba(22, 62, 35, 0.08);

  --orange-brand: #FF7300;
  --orange-bright: #FF8C00;
  --orange-glow: rgba(255, 115, 0, 0.25);
  --orange-tint: rgba(255, 115, 0, 0.08);
  
  --text-main: #112417;
  --text-muted: #4A6051;
  --text-dim: #718578;
  
  --border-light: rgba(22, 62, 35, 0.1);
  --border-green: rgba(22, 62, 35, 0.25);
  --border-orange: rgba(255, 115, 0, 0.35);
  
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 15px rgba(22, 62, 35, 0.06);
  --shadow-md: 0 10px 30px rgba(22, 62, 35, 0.08);
  --shadow-lg: 0 20px 45px rgba(22, 62, 35, 0.12);
  --shadow-orange: 0 10px 30px -5px rgba(255, 115, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: var(--green-primary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--orange-brand);
}

/* Typography Helpers */
h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--green-deep) 30%, var(--green-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-orange {
  background: linear-gradient(135deg, var(--green-deep) 20%, var(--orange-brand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-orange {
  color: var(--orange-brand);
}

.text-green {
  color: var(--green-deep);
}

/* Light Grid overlay effect */
.bg-grid-overlay {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(22, 62, 35, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(22, 62, 35, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -1;
  pointer-events: none;
}

/* Header Container (Standalone Logo Outside Navbar + Floating Pill Glass Navbar) */
.navbar-wrapper {
  position: fixed;
  top: 14px;
  left: 3%;
  right: 3%;
  width: 94%;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hidden when scrolling down, visible when scrolling up */
.navbar-wrapper.nav-hidden {
  transform: translateY(-170%);
}

/* Standalone Prominent Logo Outside Navbar */
.standalone-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  background: transparent;
  padding: 0;
  border: none;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.standalone-logo-img {
  height: 110px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 6px 12px rgba(22, 62, 35, 0.12));
}

.standalone-logo-link:hover {
  transform: scale(1.05);
}

/* Floating Glassmorphism Navbar Container */
.navbar {
  flex: 1;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(22, 62, 35, 0.12);
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(22, 62, 35, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 15px 40px rgba(22, 62, 35, 0.12);
  border-color: var(--border-green);
}

/* Top Announcement Bar Inside Pill Header */
.nav-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 1.5rem;
  border-bottom: 1px solid rgba(22, 62, 35, 0.08);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

.top-left-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--green-deep);
}

.dot-indicator {
  width: 6px;
  height: 6px;
  background: var(--orange-brand);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--orange-brand);
}

.top-right-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-pill-tag {
  background: rgba(255, 115, 0, 0.12);
  border: 1px solid rgba(255, 115, 0, 0.3);
  color: var(--orange-brand);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 700;
}

/* Main Navigation Bar Row */
.nav-main-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 1.4rem;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--green-deep);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange-brand);
}

.dropdown-arrow {
  font-size: 0.6rem;
  opacity: 0.7;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Compact Pill Action Buttons */
.btn-pill-primary {
  background: linear-gradient(135deg, var(--orange-brand), #E05D00);
  color: #FFFFFF;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(255, 115, 0, 0.3);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 6px;
  border: none;
  cursor: pointer;
}

.btn-pill-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 115, 0, 0.5);
  background: linear-gradient(135deg, #FF801A, var(--orange-brand));
}

.btn-pill-menu {
  background: rgba(22, 62, 35, 0.06);
  border: 1px solid var(--border-green);
  color: var(--green-deep);
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.btn-pill-menu:hover {
  background: var(--green-deep);
  color: #FFFFFF;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--green-deep);
  font-size: 1.6rem;
  cursor: pointer;
}

/* Multi-Page Inner Sub-Banner */
.page-banner {
  padding: 11rem 5% 4rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), var(--bg-light));
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}

.page-banner-content {
  max-width: 850px;
  margin: 0 auto;
}

.page-banner-title {
  font-size: clamp(2.2rem, 4.2vw, 3.5rem);
  font-weight: 800;
  color: var(--green-deep);
  margin-bottom: 1rem;
}

.page-banner-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Company Journey 2020 Timeline */
.timeline-container {
  max-width: 900px;
  margin: 3rem auto 0;
  position: relative;
  padding-left: 2rem;
  border-left: 3px solid var(--border-green);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 1.8rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-badge {
  position: absolute;
  left: -3.2rem;
  top: 0;
  background: var(--orange-brand);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-orange);
  white-space: nowrap;
}

.timeline-badge.green {
  background: var(--green-deep);
  box-shadow: 0 4px 15px rgba(22, 62, 35, 0.2);
}

.timeline-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.timeline-card:hover {
  border-color: var(--border-green);
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.timeline-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
}

.timeline-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Client Brand Network Section & Infinite Marquee Ticker */
/* Categorized Horizontal Scrolling Brand Section (3 Categories) */
.category-marquee-block {
  margin-bottom: 2.5rem;
}

.category-row-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 1.5rem;
  text-align: center;
}

.category-row-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green-deep);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.category-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.category-badge.global {
  background: rgba(255, 115, 0, 0.1);
  color: var(--orange-brand);
  border: 1px solid var(--border-orange);
}

.category-badge.national {
  background: rgba(22, 62, 35, 0.1);
  color: var(--green-deep);
  border: 1px solid var(--border-green);
}

.category-badge.hospitality {
  background: rgba(184, 134, 11, 0.1);
  color: #b8860b;
  border: 1px solid rgba(184, 134, 11, 0.3);
}

.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  margin: 0.5rem 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: inline-flex;
  gap: 1.2rem;
}

.marquee-scroll-left {
  animation: marqueeLeft 32s linear infinite;
}

.marquee-scroll-right {
  animation: marqueeRight 32s linear infinite;
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.brand-horizontal-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  height: 75px;
  min-width: 150px;
  flex-shrink: 0;
}

.brand-horizontal-card:hover {
  border-color: var(--orange-brand);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.brand-horizontal-logo {
  max-height: 48px;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
}
  color: var(--green-deep);
  white-space: nowrap;
}
  transition: var(--transition-fast);
  height: 80px;
  min-width: 150px;
  flex-shrink: 0;
}

.client-brand-logo-item:hover {
  border-color: var(--orange-brand);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.client-brand-logo-img {
  max-height: 52px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.chip-icon {
  width: 24px;
  height: 24px;
  background: rgba(22, 62, 35, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--green-deep);
  font-weight: 800;
}

/* Client Network Grid Cards */
.clients-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
}

.client-grid-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.client-grid-card:hover {
  background: #FFFFFF;
  border-color: var(--border-orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.client-name-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green-deep);
}

.client-cat-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  background: rgba(22, 62, 35, 0.06);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
}

/* 5-Stage Approach Flow Pill Bar */
.approach-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.flow-pill {
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  border: 1px solid var(--border-green);
  color: var(--green-deep);
  font-weight: 800;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
}

.flow-pill.highlight {
  background: var(--orange-brand);
  color: #FFFFFF;
  border-color: var(--orange-brand);
  box-shadow: var(--shadow-orange);
}

.flow-arrow {
  color: var(--orange-brand);
  font-weight: 800;
  font-size: 1.2rem;
}

/* Button Base Component */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange-brand), #E05D00);
  color: #FFFFFF;
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 115, 0, 0.45);
  background: linear-gradient(135deg, #FF801A, var(--orange-brand));
}

.btn-secondary {
  background: rgba(22, 62, 35, 0.08);
  color: var(--green-deep);
  border: 1px solid var(--border-green);
}

.btn-secondary:hover {
  background: var(--green-deep);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding: 11rem 5% 5rem;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 3rem;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(255, 115, 0, 0.1);
  border: 1px solid var(--border-orange);
  color: var(--orange-brand);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--orange-brand);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--orange-brand);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

.hero-title {
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--green-deep);
  min-height: 140px;
}

.hero-static-title {
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green-deep);
  display: inline-block;
  margin-bottom: 6px;
}

/* Dynamic Typewriter Text & Cursor */
.typewriter-text {
  display: inline;
}

.typewriter-cursor {
  color: var(--orange-brand);
  font-weight: 300;
  animation: blink 0.8s infinite;
  margin-left: 2px;
}

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

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 2.2rem;
}

.hero-cta-group {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 3rem;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green-deep);
  line-height: 1;
}

.stat-number span {
  color: var(--orange-brand);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Modern Clean Dashboard Graphic Card */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-dashboard-card {
  width: 100%;
  max-width: 420px;
  background: #FFFFFF;
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: var(--transition-smooth);
}

.hero-dashboard-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(22, 62, 35, 0.15);
  border-color: var(--border-orange);
}

.dashboard-header-badge {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.status-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(22, 62, 35, 0.08);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--green-deep);
  font-weight: 700;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: var(--orange-brand);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--orange-brand);
}

/* Live Analytics Vector Graphic */
.dashboard-vector-box {
  height: 180px;
  background: linear-gradient(180deg, rgba(245, 243, 235, 0.8), rgba(255, 115, 0, 0.05));
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.chart-header-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  height: 90px;
  padding-top: 10px;
}

.chart-bar-item {
  flex: 1;
  background: rgba(22, 62, 35, 0.15);
  border-radius: 4px 4px 0 0;
  transition: height 0.5s ease;
  position: relative;
}

.chart-bar-item.highlight {
  background: linear-gradient(to top, var(--orange-brand), #FF801A);
  box-shadow: 0 4px 12px rgba(255, 115, 0, 0.4);
}

.dashboard-footer-metrics {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  background: var(--bg-subtle);
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.metric-box {
  display: flex;
  flex-direction: column;
}

.metric-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--green-deep);
}

.metric-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Sections Base */
.section {
  padding: 6rem 5%;
  position: relative;
}

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

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange-brand);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--green-deep);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Highlight Features Section: Fullstack & LinkedIn */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

/* Why Choose Us - 4-Column Balanced Grid (Zero Blank Space) */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 1100px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .why-us-grid {
    grid-template-columns: 1fr;
  }
}

.why-us-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.why-us-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-deep), var(--orange-brand));
  opacity: 0.8;
  transition: var(--transition-fast);
}

.why-us-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-orange);
  box-shadow: var(--shadow-md);
}

.why-us-card:hover::before {
  opacity: 1;
  height: 5px;
}

.why-us-card-num {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(22, 62, 35, 0.07);
  line-height: 1;
  user-select: none;
}

.why-us-card:hover .why-us-card-num {
  color: rgba(255, 115, 0, 0.15);
}

.why-us-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 0.9rem 2rem;
  box-shadow: var(--shadow-sm);
  max-width: 900px;
  margin: 0 auto;
}

/* Leadership Team (Founder & Co-Founder Only) */
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 950px;
  margin: 0 auto;
}

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

.leadership-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.8rem 2.2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.leadership-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-orange);
  box-shadow: var(--shadow-md);
}

.leadership-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 115, 0, 0.1);
  border: 1px solid var(--border-orange);
  color: var(--orange-brand);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.leadership-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 115, 0, 0.08);
  border: 2px solid var(--border-orange);
  color: var(--orange-brand);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-sm);
}

.leadership-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green-deep);
  margin-bottom: 0.3rem;
}

.leadership-role {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--orange-brand);
  margin-bottom: 1rem;
}

.leadership-bio {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Journey From 2020 Timeline Grid */
.journey-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 1150px;
  margin: 0 auto;
}

.journey-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
}

.journey-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-green);
  box-shadow: var(--shadow-md);
}

.journey-card.highlight-journey {
  border-color: var(--border-orange);
  background: linear-gradient(180deg, #FFFFFF, rgba(255, 115, 0, 0.04));
}

.journey-year {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green-deep);
  margin-bottom: 0.6rem;
}

.journey-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--green-deep);
  margin-bottom: 0.6rem;
}

.journey-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-deep);
}

.trust-bar-divider {
  color: var(--border-green);
  opacity: 0.5;
}

.highlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

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

.highlight-card.green-accent:hover {
  border-color: var(--border-green);
  box-shadow: var(--shadow-lg);
}

.card-icon-badge {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(255, 115, 0, 0.1);
  border: 1px solid var(--border-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--orange-brand);
  font-size: 1.6rem;
}

.green-accent .card-icon-badge {
  background: rgba(22, 62, 35, 0.08);
  border-color: var(--border-green);
  color: var(--green-deep);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-deep);
  margin-bottom: 1rem;
}

.card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-main);
  font-weight: 500;
}

.check-icon {
  width: 18px;
  height: 18px;
  color: var(--orange-brand);
  flex-shrink: 0;
}

.green-accent .check-icon {
  color: var(--green-deep);
}

/* Core Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.8rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-top {
  margin-bottom: 1.5rem;
}

.service-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--orange-brand);
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.service-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green-deep);
  margin-bottom: 0.75rem;
}

.service-summary {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 1rem;
}

.tag {
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: rgba(22, 62, 35, 0.06);
  font-size: 0.75rem;
  color: var(--green-deep);
  font-weight: 600;
  border: 1px solid var(--border-light);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-deep);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 1.5rem;
  text-decoration: none;
}

.service-link svg {
  transition: transform 0.2s ease;
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
  color: var(--orange-brand);
}

/* Process Timeline */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  position: relative;
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition-smooth);
}

.process-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(22, 62, 35, 0.12);
  position: absolute;
  top: 1rem;
  right: 1.2rem;
}

.process-card:hover .step-number {
  color: var(--orange-brand);
}

.step-stage {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
  color: var(--green-deep);
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Portfolio Filter Showcase */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--orange-brand);
  color: #FFFFFF;
  border-color: var(--orange-brand);
  box-shadow: var(--shadow-orange);
}

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

.portfolio-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.portfolio-item:hover {
  border-color: var(--border-green);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.portfolio-thumb {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22, 62, 35, 0.9), transparent);
}

.portfolio-category-tag {
  position: relative;
  z-index: 2;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--green-deep);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.portfolio-content {
  padding: 1.5rem;
}

.portfolio-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
}

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

/* Contact & Location Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(255, 115, 0, 0.1);
  border: 1px solid var(--border-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-brand);
  flex-shrink: 0;
}

.info-details h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-deep);
  margin-bottom: 4px;
}

.info-details p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-deep);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-md);
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  font-family: var(--font-main);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--orange-brand);
  box-shadow: 0 0 12px rgba(255, 115, 0, 0.2);
  background: #FFFFFF;
}

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

/* Modals */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 36, 23, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  background: #FFFFFF;
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 650px;
  padding: 2.5rem;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 25px 60px rgba(22, 62, 35, 0.25);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-backdrop.active .modal-card {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--bg-subtle);
  border: none;
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--orange-brand);
  color: #fff;
}

/* Toast notification */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--green-deep);
  border: 1px solid var(--green-primary);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* Footer */
footer {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-light);
  padding: 4rem 5% 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 1rem;
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  color: var(--green-deep);
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--orange-brand);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .nav-top-bar {
    display: none;
  }
  .navbar-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .standalone-logo-img {
    height: 85px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 11rem;
    text-align: center;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-stats {
    max-width: 600px;
    margin: 0 auto;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 850px) {
  .nav-links, .nav-actions {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    padding: 2rem;
    border-radius: 0 0 24px 24px;
    box-shadow: var(--shadow-lg);
  }
  .timeline-container {
    padding-left: 1rem;
  }
  .timeline-badge {
    position: relative;
    left: 0;
    margin-bottom: 0.5rem;
    display: inline-block;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ==========================================================================
   DROPDOWN MENU NAVIGATION & ENHANCED BLUEPRINT COMPONENTS
   ========================================================================== */

/* Dropdown Menu */
.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  width: 320px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(22, 62, 35, 0.15);
  padding: 0.8rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1100;
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  padding: 0.65rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-fast);
  text-decoration: none;
  border-bottom: 1px solid rgba(22, 62, 35, 0.04);
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu li a:hover {
  background: rgba(255, 115, 0, 0.08);
  color: var(--orange-brand);
  padding-left: 1.8rem;
}

.dropdown-menu li a .dropdown-num {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--orange-brand);
  background: rgba(255, 115, 0, 0.12);
  padding: 2px 6px;
  border-radius: 4px;
}

/* Service Detail In-Page Anchor Section */
.service-detail-section {
  scroll-margin-top: 140px;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

.service-detail-section:last-child {
  border-bottom: none;
}

/* Quick Jump Filter Chips for Services Page */
.quick-jump-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.8rem;
}

.chip-link {
  padding: 0.5rem 1.1rem;
  background: #FFFFFF;
  border: 1px solid var(--border-green);
  border-radius: var(--radius-full);
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.chip-link:hover {
  background: var(--orange-brand);
  color: #FFFFFF;
  border-color: var(--orange-brand);
  transform: translateY(-2px);
}

/* Deliverables Checkmark List */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.75rem;
  margin: 1.2rem 0 1.8rem;
}

.deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-main);
  background: rgba(22, 62, 35, 0.04);
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--green-glow);
  font-weight: 500;
}

.deliverable-icon {
  color: var(--green-glow);
  font-weight: 800;
  flex-shrink: 0;
}

/* Testimonial Cards */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
  margin-top: 2.5rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-orange);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: #FFB800;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 0.98rem;
  color: var(--text-main);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.5rem;
}

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

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(22, 62, 35, 0.08);
  border: 2px solid var(--orange-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--green-deep);
  font-size: 1rem;
}

.author-info h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--green-deep);
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.8rem;
  margin-top: 2.5rem;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  text-align: center;
  padding: 2rem 1.5rem;
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-green);
  box-shadow: var(--shadow-md);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-deep), var(--green-primary));
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: var(--shadow-sm);
}

.team-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green-deep);
}

.team-role {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange-brand);
  margin-bottom: 0.8rem;
}

.team-bio {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 850px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: var(--border-orange);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 1.2rem 1.6rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--green-deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-toggle-icon {
  font-size: 1.2rem;
  color: var(--orange-brand);
  transition: transform 0.3s ease;
  font-weight: 800;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.6rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.6rem 1.4rem;
}

/* ==========================================================================
   ULTRA-RESPONSIVE MOBILE & TABLET MEDIA QUERIES (320px to 1200px)
   ========================================================================== */

@media (max-width: 900px) {
  .navbar-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 4%;
    width: 100%;
  }

  .standalone-logo-img {
    height: 58px;
    width: auto;
  }

  .navbar {
    width: auto;
  }

  .nav-main-bar {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .nav-links {
    display: none;
  }

  .nav-links.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 75px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 75px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 2.5rem 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 2500;
    overflow-y: auto;
  }

  .nav-links.mobile-open li a {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--green-deep);
  }

  .mobile-nav-toggle {
    display: block !important;
    font-size: 1.6rem;
    background: transparent;
    border: none;
    color: var(--green-deep);
    cursor: pointer;
    padding: 6px 12px;
  }

  .hero {
    padding-top: 9rem;
    padding-bottom: 4rem;
  }

  .hero-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
    text-align: center;
  }

  .leadership-grid {
    grid-template-columns: 1fr !important;
  }

  .highlights-grid {
    grid-template-columns: 1fr !important;
  }

  .brand-network-section {
    padding: 3.5rem 3% !important;
  }

  .category-row-title {
    font-size: 1rem !important;
  }

  .category-badge {
    font-size: 0.68rem !important;
  }

  .brand-horizontal-card {
    height: 60px !important;
    min-width: 130px !important;
    padding: 0.5rem 1rem !important;
  }

  .brand-horizontal-logo {
    max-height: 38px !important;
    max-width: 95px !important;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 600px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  .standalone-logo-img {
    max-height: 48px !important;
    max-width: 140px !important;
    height: auto !important;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section {
    padding: 3rem 4% !important;
  }

  .page-banner {
    padding: 7.5rem 4% 2.5rem !important;
  }

  .page-banner-title {
    font-size: 1.8rem !important;
  }

  .page-banner-desc {
    font-size: 0.92rem !important;
  }

  .deliverables-grid {
    grid-template-columns: 1fr !important;
  }

  /* Prevent iOS Safari Auto-Zoom on Input Focus */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  select,
  textarea {
    font-size: 16px !important;
  }

  /* Responsive Modal for Mobile */
  .modal-card {
    width: 92% !important;
    max-height: 85vh !important;
    overflow-y: auto !important;
    padding: 1.5rem !important;
    border-radius: 16px !important;
  }
}

