/* ========================================
   HASTI STRATEGIC PARTNERS - STATIC MVP STYLES (UPDATED)
   Based on NXT Law design principles with 2025 single-page enhancements.
   ======================================== */

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

html {
  /* Smooth scroll only if user hasn't opted for reduced motion */
  scroll-behavior: auto;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
  color: #1A1A1A;
  line-height: 1.6;
  font-size: 16px;
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   HEADER - Fixed Navigation
   ======================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  padding: 16px 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo-text, .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #2C5F5D;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  border-radius: 6px;
}

.logo-name {
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
  letter-spacing: 0.5px;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: #1A1A1A;
  font-weight: 500;
  font-size: 15px;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #2C5F5D;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: #2C5F5D;
}

.btn-cta {
  padding: 10px 24px;
  background: #2C5F5D;
  color: #fff !important;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: #234A48;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 93, 0.3);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1A1A1A;
  transition: all 0.3s ease;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn-primary,
.btn-primary-large {
  display: inline-block;
  padding: 14px 32px;
  background: #2C5F5D;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.btn-primary:hover,
.btn-primary-large:hover {
  background: #234A48;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(44, 95, 93, 0.3);
}

.btn-primary-large {
  padding: 18px 40px;
  font-size: 18px;
}

.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: #2C5F5D;
  font-weight: 600;
  border: 2px solid #2C5F5D;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 16px;
}

.btn-secondary:hover {
  background: #2C5F5D;
  color: #fff;
  transform: translateY(-2px);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  margin-top: 74px;
  padding: 120px 0 100px;
  background: linear-gradient(135deg, #2C5F5D 0%, #1A3A38 100%);
  color: #fff;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-tagline {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 24px;
  opacity: 0.9;
  font-style: italic;
}

.hero-subtitle {
  font-size: 22px;
  margin-bottom: 48px;
  opacity: 0.95;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   PAGE HERO (Internal Pages)
   ======================================== */

.page-hero {
  margin-top: 74px;
  padding: 80px 0 60px;
  background: #2C5F5D;
  color: #fff;
  text-align: center;
}

.page-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
}

.page-hero .hero-tagline {
  font-size: 18px;
  opacity: 0.9;
  font-style: italic;
}

/* ========================================
   SECTIONS - General
   ======================================== */

section {
  padding: 80px 0;
}

section h2 {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #1A1A1A;
}

section h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1A1A1A;
}

.lead {
  font-size: 20px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 24px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   EXPERTISE SECTION (Homepage)
   ======================================== */

.expertise {
  background: #F8F8F8;
  padding: 80px 0;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.expertise-card {
  background: #fff;
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.expertise-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.expertise-card.highlight {
  background: linear-gradient(135deg, #F0F9F9 0%, #E6F5F5 100%);
  border: 2px solid #2C5F5D;
}

.expertise-icon {
  font-size: 56px;
  margin-bottom: 24px;
}

.expertise-card h3 {
  margin-bottom: 12px;
}

.expertise-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

.expertise-icon-image img {
  width: 48px;
  height: 48px;
  display: block;
  margin: 0 auto; /* NEW VERSION NOTE: Supports swap-in finance artwork */
}

/* ========================================
   ABOUT SECTION (NEW VERSION ADD)
   ======================================== */

.about {
  padding: 80px 0;
  background: #fff;
}

.about h2 {
  text-align: center;
  margin-bottom: 24px;
}

.about-intro {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 18px;
  color: #444;
}

/* Ensure About section headings use dark text on white background (live site look) */
.about {
  background: #fff; /* reinforce */
}
.about h2 {
  color: #1A1A1A;
}
.about-intro {
  color: #444;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.about-card {
  background: #F5F9F9;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(44, 95, 93, 0.12);
}

.about-card h3 {
  margin-bottom: 12px;
  color: #2C5F5D;
}

.about-card p {
  color: #4C5C5C;
  font-size: 15px;
  line-height: 1.6;
}

/* ========================================
   SERVICES SUMMARY (NEW VERSION ADD)
   ======================================== */

.services-summary {
  padding: 80px 0;
  background: #0A0A0A;
}

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

.services-summary-content h2 {
  margin-bottom: 24px;
  color: #FFFFFF;
  font-size: 2.5rem;
  font-weight: 700;
}

.services-summary-content p {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.service-card {
  background: linear-gradient(135deg, rgba(61, 139, 134, 0.08) 0%, rgba(44, 95, 93, 0.12) 100%);
  border: 1px solid rgba(61, 139, 134, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: slideInUp 0.8s ease-out both;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: left 0.8s;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 20px 60px rgba(61, 139, 134, 0.15),
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(61, 139, 134, 0.4);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 25px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(61, 139, 134, 0.2), rgba(44, 95, 93, 0.3));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: #3D8B86;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(61, 139, 134, 0.3), rgba(44, 95, 93, 0.4));
  transform: scale(1.1) rotate(5deg);
}

.service-card:hover .service-icon svg {
  color: #4AE7DC;
}

.service-content h3 {
  color: #FFFFFF;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.service-content p {
  color: #FFFFFF;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  transition: all 0.3s ease;
}

.service-card:hover .service-content h3 {
  color: #4AE7DC;
}

.service-card:hover .service-content p {
  color: #4AE7DC;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .service-card {
    padding: 30px 20px;
  }

  .services-summary-content h2 {
    font-size: 2rem;
  }

  .services-summary-content p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
  }

  .service-content h3 {
    font-size: 1.2rem;
  }
}

/* ========================================
   EXPERIENCE HIGHLIGHTS (NEW VERSION ADD)
   ======================================== */

.experience-highlights {
  padding: 80px 0;
  background: radial-gradient(ellipse at center, rgba(61, 139, 134, 0.05) 0%, rgba(10, 10, 10, 1) 70%);
  position: relative;
  overflow: hidden;
}

.experience-highlights h2 {
  text-align: center;
  color: #FFFFFF;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
}

.experience-highlights::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(61, 139, 134, 0.03) 0%, transparent 50%, rgba(44, 95, 93, 0.02) 100%);
  pointer-events: none;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 950px;
  margin: 0 auto;
  animation: fadeInStagger 1.2s ease-out;
}

.experience-item.csuite-highlight {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(61, 139, 134, 0.15) 0%, rgba(44, 95, 93, 0.20) 100%);
  border: 2px solid rgba(61, 139, 134, 0.3);
  padding: 50px 40px;
  text-align: center;
  margin-top: 20px;
}

.experience-item.csuite-highlight .experience-number {
  font-size: 3rem;
  color: #4AE7DC;
  text-shadow: 0 0 30px rgba(74, 231, 220, 0.5);
}

.experience-item.csuite-highlight .experience-label {
  font-size: 1.2rem;
  color: #FFFFFF;
  font-weight: 600;
}

.experience-item {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, rgba(61, 139, 134, 0.08) 0%, rgba(44, 95, 93, 0.12) 100%);
  border: 1px solid rgba(61, 139, 134, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  animation: slideInUp 0.8s ease-out both;
}

.experience-item:nth-child(1) { animation-delay: 0.1s; }
.experience-item:nth-child(2) { animation-delay: 0.2s; }
.experience-item:nth-child(3) { animation-delay: 0.3s; }
.experience-item:nth-child(4) { animation-delay: 0.4s; }
.experience-item:nth-child(5) { animation-delay: 0.5s; }

.experience-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: left 0.8s;
}

.experience-item:hover::before {
  left: 100%;
}

.experience-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 20px 60px rgba(61, 139, 134, 0.15),
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(61, 139, 134, 0.3);
}

.experience-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(61, 139, 134, 0.2), rgba(44, 95, 93, 0.3));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.experience-icon svg {
  width: 24px;
  height: 24px;
  color: #3D8B86;
  transition: all 0.3s ease;
}

.experience-item:hover .experience-icon {
  background: linear-gradient(135deg, rgba(61, 139, 134, 0.3), rgba(44, 95, 93, 0.4));
  transform: rotateY(180deg) scale(1.1);
}

.experience-item:hover .experience-icon svg {
  color: #4AE7DC;
}

.experience-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3D8B86;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(61, 139, 134, 0.3);
  transition: all 0.3s ease;
}

.experience-item:hover .experience-number {
  color: #4AE7DC;
  text-shadow: 0 0 30px rgba(74, 231, 220, 0.5);
  transform: scale(1.1);
}

.experience-label {
  color: #FFFFFF;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 600;
  transition: all 0.3s ease;
}

.experience-item:hover .experience-label {
  color: #4AE7DC;
}

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

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

.experience-number.counting {
  animation: countUp 0.6s ease-out;
}

@media (max-width: 768px) {
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .experience-item.csuite-highlight {
    grid-column: 1 / -1;
    padding: 40px 25px;
    margin-top: 15px;
  }

  .experience-item.csuite-highlight .experience-number {
    font-size: 2.5rem;
  }

  .experience-item.csuite-highlight .experience-label {
    font-size: 1.1rem;
  }

  .experience-item {
    padding: 30px 15px;
  }

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

  .experience-label {
    font-size: 0.9rem;
    font-weight: 600;
  }

  .experience-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
  }

  .experience-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* ========================================
   STATISTICS SECTION (kept for legacy reference)
   ======================================== */

.statistics {
  background: #1A1A1A;
  color: #fff;
  padding: 80px 0;
}

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

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #2C5F5D;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 14px;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========================================
   DIFFERENTIATORS SECTION
   ======================================== */

.differentiators {
  background: #0A0A0A;
  position: relative;
  overflow: hidden;
}

.differentiators::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(61, 139, 134, 0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-30px) translateX(-30px); }
}

/* Creative Section Header */
.section-header-creative {
  position: relative;
  margin-bottom: 80px;
  text-align: center;
}

.why-title {
  position: relative;
  display: inline-block;
  font-size: 64px;
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
  z-index: 2;
}

.why-text {
  display: inline-block;
  color: #FFFFFF;
  margin-right: 16px;
  animation: slideInLeft 0.8s ease-out;
}

.hasti-text {
  display: inline-block;
  background: linear-gradient(135deg, #3D8B86 0%, #2C5F5D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-right: 16px;
  position: relative;
  animation: slideInUp 0.8s ease-out 0.2s backwards;
}

.hasti-text::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #3D8B86 0%, #2C5F5D 100%);
  animation: expandWidth 0.6s ease-out 0.8s backwards;
}

@keyframes expandWidth {
  from { width: 0; }
  to { width: 100%; }
}

.advisors-text {
  display: inline-block;
  color: #FFFFFF;
  animation: slideInRight 0.8s ease-out 0.4s backwards;
}

.title-backdrop {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 120px;
  font-weight: 900;
  color: rgba(61, 139, 134, 0.03);
  white-space: nowrap;
  letter-spacing: 8px;
  z-index: 1;
  pointer-events: none;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.diff-item {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.5) 0%, rgba(15, 15, 15, 0.5) 100%);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(44, 95, 93, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.diff-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(61, 139, 134, 0.1), transparent);
  transition: left 0.6s ease;
}

.diff-item:hover::before {
  left: 100%;
}

.diff-item:hover {
  background: linear-gradient(135deg, rgba(31, 31, 31, 0.7) 0%, rgba(20, 20, 20, 0.7) 100%);
  border-color: rgba(44, 95, 93, 0.5);
  transform: translateX(12px) translateY(-4px);
  box-shadow: -8px 8px 32px rgba(44, 95, 93, 0.3);
}

/* Inner Flex Layout - Number beside Content */
.diff-item-inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

/* Number Wrapper with Shadow Effect */
.diff-number-wrapper {
  position: relative;
  flex-shrink: 0;
  width: 100px;
}

.diff-number {
  position: relative;
  font-size: 80px;
  font-weight: 900;
  background: linear-gradient(135deg, #3D8B86 0%, #2C5F5D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  z-index: 2;
  transition: all 0.4s ease;
}

.diff-number-shadow {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 80px;
  font-weight: 900;
  color: rgba(61, 139, 134, 0.15);
  line-height: 1;
  z-index: 1;
  transition: all 0.4s ease;
}

.diff-item:hover .diff-number {
  transform: translate(-6px, -6px);
  filter: drop-shadow(0 0 24px rgba(61, 139, 134, 0.9));
}

.diff-item:hover .diff-number-shadow {
  transform: translate(6px, 6px);
  color: rgba(61, 139, 134, 0.3);
}

/* Content Styling */
.diff-content h3 {
  color: #FFFFFF;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.highlight-text {
  background: linear-gradient(135deg, #3D8B86 0%, #2C5F5D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  position: relative;
}

.diff-content p {
  color: #B0B0B0;
  line-height: 1.7;
  font-size: 16px;
}

.diff-content p strong {
  color: #FFFFFF;
  font-weight: 600;
}

/* ========================================
   CTA SECTIONS
   ======================================== */

.cta-final {
  background: #2C5F5D;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.cta-final h2 {
  color: #fff;
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-final p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

/* ========================================
   MISSION SECTION (About Page)
   ======================================== */

.mission {
  background: #fff;
  padding: 80px 0;
}

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

.mission-content h2 {
  text-align: left;
  margin-bottom: 32px;
}

.mission-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

/* ========================================
   APPROACH SECTION (About Page)
   ======================================== */

.approach {
  background: #F8F8F8;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.approach-card {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.approach-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.approach-card p {
  color: #666;
  font-size: 15px;
}

/* ========================================
   WHO WE SERVE SECTION (About Page)
   ======================================== */

.who-we-serve {
  background: #fff;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.serve-card {
  background: #F8F8F8;
  padding: 40px;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.serve-card:hover {
  border-color: #2C5F5D;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.serve-card.highlight {
  background: linear-gradient(135deg, #F0F9F9 0%, #E6F5F5 100%);
  border-color: #2C5F5D;
}

.serve-card h3 {
  color: #2C5F5D;
  margin-bottom: 8px;
}

.serve-card p {
  color: #333;
  line-height: 1.7;
  margin-bottom: 12px;
}

.serve-card p strong {
  display: block;
  color: #666;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

/* ========================================
   VALUE PROPS DETAILED (About Page)
   ======================================== */

.value-props-detailed {
  background: #F8F8F8;
}

.value-detailed-grid {
  max-width: 900px;
  margin: 0 auto;
}

.value-detailed-item {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  align-items: flex-start;
}

.value-number {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2C5F5D;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
}

.value-content h3 {
  margin-bottom: 16px;
  font-size: 24px;
}

.value-content p {
  color: #666;
  line-height: 1.8;
  font-size: 16px;
}

/* ========================================
   SERVICE DETAIL SECTIONS (Services Page)
   ======================================== */

.service-detail {
  padding: 80px 0;
}

.service-detail.alt {
  background: #F8F8F8;
}

.service-detail.highlight {
  background: linear-gradient(135deg, #F0F9F9 0%, #E6F5F5 100%);
  position: relative;
}

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

.service-icon-large {
  font-size: 80px;
  text-align: center;
  margin-bottom: 24px;
}

.service-detail h2 {
  text-align: center;
  margin-bottom: 16px;
}

.service-tagline {
  text-align: center;
  font-size: 22px;
  color: #2C5F5D;
  font-weight: 600;
  margin-bottom: 32px;
  font-style: italic;
}

.specialty-badge {
  display: inline-block;
  background: #2C5F5D;
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.service-content > p {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 32px;
}

.service-content h3 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
}

.service-content ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 32px;
}

.service-content li {
  color: #333;
  line-height: 1.8;
  margin-bottom: 12px;
  font-size: 16px;
}

.service-engagement {
  background: rgba(44, 95, 93, 0.05);
  padding: 32px;
  border-radius: 12px;
  border-left: 4px solid #2C5F5D;
  margin: 32px 0;
}

.service-engagement h3 {
  margin-top: 0;
  margin-bottom: 16px;
}

.service-engagement p {
  color: #333;
  margin-bottom: 8px;
  font-size: 16px;
}

.service-content .btn-primary {
  margin-top: 32px;
  display: inline-block;
}

/* ========================================
   ENGAGEMENT MODELS SECTION
   ======================================== */

.engagement-models {
  background: #F8F8F8;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.engagement-card {
  background: #fff;
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.engagement-card:hover {
  border-color: #2C5F5D;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.engagement-card.featured {
  border-color: #2C5F5D;
  background: linear-gradient(135deg, #F0F9F9 0%, #E6F5F5 100%);
}

.engagement-card h3 {
  margin-bottom: 16px;
  text-align: center;
}

.price {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #2C5F5D;
  margin-bottom: 24px;
}

.engagement-card ul {
  list-style: none;
}

.engagement-card li {
  color: #666;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.engagement-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2C5F5D;
  font-weight: 700;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
  background: #fff;
  padding: 80px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form {
  background: #F8F8F8;
  padding: 40px;
  border-radius: 12px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1A1A1A;
  font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2C5F5D;
}

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

.contact-form .btn-primary {
  width: 100%;
  margin-top: 8px;
}

/* Form Status Messages for EmailJS Integration */
.form-status {
  margin: 20px 0;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.status-message.success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.status-message.error {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.btn-submit {
  position: relative;
  width: 100%;
  padding: 14px 28px;
  background: linear-gradient(135deg, #3D8B86 0%, #2C5F5D 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61, 139, 134, 0.3);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-loading {
  display: none;
}

.contact-info {
  padding: 40px 32px;
  background: #F8F8F8;
  border-radius: 12px;
}

/* Modal form specific styles (from dark theme) */
.modal-header { margin-bottom: 32px; text-align: center; }
.modal-header h2 { font-size: 32px; font-weight: 800; background: linear-gradient(135deg, #FFFFFF 0%, #3D8B86 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 12px; }
.modal-header p { color: #B0B0B0; font-size: 16px; line-height: 1.6; }

.modal-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.modal-form .form-group { margin-bottom: 20px; }
.modal-form label { display: block; color: #FFFFFF; font-weight: 600; margin-bottom: 8px; font-size: 14px; }
.modal-form input, .modal-form select, .modal-form textarea { width: 100%; padding: 14px 16px; background: rgba(26,26,26,0.5); border: 1px solid rgba(61,139,134,0.2); border-radius: 8px; color: #FFFFFF; font-size: 15px; transition: all 0.3s ease; }
.modal-form input:focus, .modal-form select:focus, .modal-form textarea:focus { outline: none; border-color: rgba(61,139,134,0.5); background: rgba(26,26,26,0.7); box-shadow: 0 0 0 3px rgba(61,139,134,0.1); }
.modal-form textarea { resize: vertical; font-family: inherit; }
.modal-form ::placeholder { color: #606060; }

.checkbox-group { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 12px; }
.checkbox-group label { display: flex; align-items: center; gap: 8px; font-weight: 400; color: #B0B0B0; cursor: pointer; transition: color 0.2s ease; }
.checkbox-group label:hover { color: #FFFFFF; }
.checkbox-group input[type="checkbox"] { width: auto; accent-color: #3D8B86; cursor: pointer; }

.modal-close { position: absolute; top: 20px; right: 20px; background: rgba(61,139,134,0.1); border: 1px solid rgba(61,139,134,0.3); color: #FFFFFF; width: 40px; height: 40px; border-radius: 50%; font-size: 28px; line-height: 1; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; z-index: 10002; }
.modal-close:hover { background: rgba(61,139,134,0.2); border-color: rgba(61,139,134,0.5); transform: rotate(90deg); }

.contact-info h3 {
  margin-bottom: 24px;
  color: #2C5F5D;
}

.contact-info p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.contact-info a {
  color: #2C5F5D;
  font-weight: 600;
}

.social-links-contact {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.social-links-contact a {
  padding: 10px 20px;
  background: #2C5F5D;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.social-links-contact a:hover {
  background: #234A48;
  transform: translateY(-2px);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: #1A1A1A;
  color: #fff;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 40px;
}

.footer-col h4 {
  margin-bottom: 24px;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #2C5F5D;
}

.footer-tagline {
  color: #999;
  margin-top: 16px;
  font-size: 15px;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2C5F5D;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #fff;
  color: #2C5F5D;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: #999;
  font-size: 14px;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

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

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

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

  .experience-item {
    padding: 20px;
  }

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

  .engagement-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  /* Header */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 100px 32px;
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    align-items: flex-start;
    gap: 24px;
  }

  .nav.active {
    right: 0;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }

  /* Hero */
  .hero {
    padding: 80px 0 60px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    text-align: center;
  }

  /* Page Hero */
  .page-hero h1 {
    font-size: 32px;
  }

  /* Sections */
  section {
    padding: 60px 0;
  }

  section h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }

  /* Grids */
  .expertise-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .approach-grid,
  .serve-grid,
  .diff-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .experience-item {
    padding: 24px 20px;
    font-size: 14px;
  }

  /* Differentiators mobile */
  .why-title {
    font-size: 36px;
  }

  .title-backdrop {
    font-size: 80px;
    letter-spacing: 4px;
  }

  .diff-item-inner {
    flex-direction: column;
    gap: 16px;
  }

  .diff-number-wrapper {
    width: 80px;
  }

  .diff-number,
  .diff-number-shadow {
    font-size: 60px;
  }

  /* Expertise cards - better mobile spacing */
  .expertise-card {
    padding: 32px 24px;
  }

  .expertise-card h3 {
    font-size: 20px;
  }

  .expertise-card p {
    font-size: 15px;
    line-height: 1.7;
  }

  /* Hide extra text on mobile for cleaner cards */
  .mobile-hide {
    display: none;
  }

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

  .experience-item {
    padding: 20px;
  }

  .services-list {
    gap: 12px;
  }

  /* Differentiators */
  .diff-item {
    flex-direction: column;
    gap: 16px;
  }

  /* Contact */
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  /* Service Icon */
  .service-icon-large {
    font-size: 60px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-tagline,
  .hero-subtitle {
    font-size: 16px;
  }

  section h2 {
    font-size: 28px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }

  .btn-primary-large {
    padding: 14px 28px;
    font-size: 16px;
  }

  /* Extra small screen adjustments for expertise */
  .expertise-card {
    padding: 24px 20px;
  }

  .expertise-icon {
    font-size: 48px;
    margin-bottom: 16px;
  }
}

/* ========================================
   ADMIN PORTAL LINK
   ======================================== */
.nav-admin {
  opacity: 0.6;
  font-size: 1.1rem;
  margin-left: 1rem;
  border-left: 1px solid rgba(61, 139, 134, 0.2);
  padding-left: 1rem !important;
  transition: all 0.3s ease;
}

.nav-admin:hover {
  opacity: 1;
  transform: scale(1.1);
  color: #3D8B86;
}

.nav-admin::after {
  display: none; /* Remove underline for icon */
}

@media (max-width: 768px) {
  .nav-admin {
    border-left: none;
    margin-left: 0;
    padding-left: 0 !important;
    margin-top: 0.5rem;
  }

  /* ========================================
     MOBILE OPTIMIZATIONS - iOS & TOUCH
     ======================================== */

  /* Fix iOS auto-zoom on input focus */
  input,
  textarea,
  select,
  .field-input,
  .field-textarea {
    font-size: 16px !important;
  }

  /* Increase tap target sizes for better touch UX */
  .nav {
    gap: 32px; /* Increased from 24px */
  }

  .nav-link {
    padding: 12px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Mobile modal optimizations */
  .modal-content {
    width: 95%;
    max-width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 24px 20px;
    margin: 5vh auto;
  }

  .modal-form input,
  .modal-form textarea,
  .modal-form select {
    font-size: 16px !important; /* Prevent iOS zoom */
  }

  /* Reduce header height for more viewport space */
  .header {
    padding: 12px 0;
  }

  .hero {
    margin-top: 60px; /* Adjusted for smaller header */
  }

  /* Better container breathing room */
  .container {
    padding: 0 20px; /* Increased from 16px */
  }

  /* Full-width buttons with max-width */
  .hero-buttons {
    width: 100%;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  /* Switch to single column for very small screens */
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 25px 20px;
  }

  /* Fluid typography for better scaling */
  .hero h1 {
    font-size: clamp(24px, 8vw, 32px);
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: clamp(16px, 4.5vw, 20px);
  }

  section h2 {
    font-size: clamp(24px, 7vw, 32px);
  }
}

/* ========================================
   TOUCH-SPECIFIC STYLES
   ======================================== */

/* Active/pressed states for touch feedback */
.btn-primary:active,
.btn-secondary:active,
.nav-link:active,
.btn-cta:active {
  transform: scale(0.98);
  opacity: 0.9;
}

/* Disable hover effects on touch devices */
@media (hover: none) and (pointer: coarse) {
  .expertise-card:hover {
    transform: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  }

  .diff-item:hover {
    transform: none;
  }

  .btn-primary:hover,
  .btn-secondary:hover,
  .btn-cta:hover {
    transform: none;
  }

  /* Keep active states for touch feedback */
  .btn-primary:active,
  .btn-secondary:active,
  .btn-cta:active {
    transform: scale(0.98);
  }

  .expertise-card:active {
    transform: scale(0.98);
  }
}

/* ========================================
   DARK THEME CONSOLIDATION (single stylesheet)
   ======================================== */

/* Global */
body { background: #0A0A0A; color: #E0E0E0; }
section h2, section h3 { color: #FFFFFF; }
html, body { overflow-x: hidden; }

/* Header & Nav */
.header { background: rgba(10,10,10,0.95); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(44,95,93,0.2); }
.nav-link { color: #E0E0E0; }
.nav-link:hover, .nav-link.active { color: #3D8B86; }
.btn-cta { background: linear-gradient(135deg, #2C5F5D 0%, #3D8B86 100%); box-shadow: 0 4px 16px rgba(44,95,93,0.3); }
.btn-cta:hover { box-shadow: 0 6px 24px rgba(44,95,93,0.5); }

/* Buttons */
.btn-primary, .btn-primary-large { background: linear-gradient(135deg, #2C5F5D 0%, #3D8B86 100%); border: 1px solid rgba(44,95,93,0.3); box-shadow: 0 4px 24px rgba(44,95,93,0.4); }
.btn-secondary { border-color: #3D8B86; color: #3D8B86; }
.btn-secondary:hover { background: rgba(44,95,93,0.1); color: #fff; }

/* Logo */
.logo-container { display: flex; align-items: center; gap: 20px; }
.logo-icon { background: linear-gradient(135deg, #2C5F5D 0%, #3D8B86 100%); box-shadow: 0 4px 16px rgba(44,95,93,0.4); }
.logo-name, .logo-text-name { color: #FFFFFF; }
.logo-icon-img { height: 80px; width: auto; display: block; filter: brightness(1.1) contrast(1.1); }

/* Hero */
.hero { background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 50%, #0A0A0A 100%); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 50%, rgba(44,95,93,.15) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(61,139,134,.1) 0%, transparent 50%); pointer-events: none; }

/* Expertise section */
.expertise { background: #0A0A0A; position: relative; }
.expertise::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 0%, rgba(44,95,93,0.03) 50%, transparent 100%); pointer-events: none; }
.expertise-card { background: linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 100%); border: 1px solid rgba(44,95,93,0.2); box-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.expertise-card.highlight { background: linear-gradient(135deg, rgba(44,95,93,0.15) 0%, rgba(44,95,93,0.05) 100%); border: 1px solid rgba(44,95,93,0.4); box-shadow: 0 0 24px rgba(44,95,93,0.2); }

/* Icon normalization (SVG/IMG consistent, no rotation) */
.expertise-icon { width: 64px; height: 64px; margin: 0 auto 20px; position: relative; }
.expertise-icon svg, .expertise-icon img { width: 100%; height: 100%; display: block; object-fit: contain; transform: none !important; }
.expertise-icon-image img { width: 100%; height: 100%; }
.expertise-icon-bg { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80px; height: 80px; background: radial-gradient(circle, rgba(44,95,93,0.12) 0%, transparent 70%); border-radius: 50%; z-index: 0; }
.expertise-icon svg { z-index: 1; position: relative; }
/* Ensure inline SVGs are visible even if gradients fail - provide a color fallback */
.expertise-icon { color: #3D8B86; }
.expertise-icon svg { stroke: currentColor !important; fill: none !important; }

/* Modal base styles - ensure the modal is centered and hidden by default */
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 10000; align-items: center; justify-content: center; }
.modal.active { display: flex; }
.modal-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); backdrop-filter: blur(8px); z-index: 10000; }
.modal-content { position: relative; background: linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 100%); border: 1px solid rgba(61,139,134,0.3); border-radius: 20px; max-width: 600px; width: 90%; max-height: 90vh; overflow-y: auto; padding: 48px; box-shadow: 0 24px 80px rgba(0,0,0,0.8), 0 0 80px rgba(61,139,134,0.2); animation: slideUp 0.4s cubic-bezier(0.4,0,0.2,1); z-index: 10001; }
@keyframes slideUp { from { opacity: 0; transform: translateY(40px);} to { opacity: 1; transform: translateY(0);} }

/* Other sections */
.differentiators, .cta-final, .footer, .mission, .approach, .who-we-serve, .value-props-detailed, .services-summary, .contact-section { background: #0A0A0A; }
.footer { border-top: 1px solid rgba(44,95,93,0.2); }
.footer-col a { color: #A0A0A0; }
.footer-col a:hover { color: #3D8B86; }

/* Mobile refinements */
@media (max-width: 768px) {
  .nav { background: rgba(10,10,10,0.98); backdrop-filter: blur(20px); border-left: 1px solid rgba(44,95,93,0.2); }
  .logo-icon-img { height: 56px; }
  .expertise-icon { width: 56px; height: 56px; }
  .mobile-hide { display: none; }
}

@media (max-width: 480px) {
  .expertise-icon { width: 52px; height: 52px; }
}

/* ========================================
   JOURNEY FLOW (Your Path to Operational Excellence)
   Restored styles from dark theme
   ======================================== */
.journey-flow { background: #0A0A0A; padding: 100px 0; position: relative; overflow: hidden; }
.journey-flow::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(61,139,134,0.05) 0%, transparent 70%); pointer-events: none; }
.journey-title { text-align: center; font-size: 48px; font-weight: 900; color: #FFFFFF; margin-bottom: 80px; }
.gradient-text { background: linear-gradient(135deg, #3D8B86 0%, #2C5F5D 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.flow-wrapper { display: flex; justify-content: space-between; align-items: center; max-width: 1100px; margin: 0 auto 60px; position: relative; }
.flow-step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; }
.flow-icon { width: 80px; height: 80px; background: linear-gradient(135deg, rgba(61,139,134,0.2) 0%, rgba(44,95,93,0.1) 100%); border: 2px solid rgba(61,139,134,0.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.flow-icon svg { width: 32px; height: 32px; color: #3D8B86; }
.flow-content h3 { font-size: 22px; font-weight: 700; color: #FFFFFF; margin-bottom: 8px; }
.flow-content p { font-size: 14px; color: #A0A0A0; line-height: 1.6; max-width: 180px; }
.flow-arrow { position: absolute; right: -40px; top: 35px; opacity: 0.3; }
.flow-arrow svg { width: 32px; height: 32px; color: #3D8B86; }
.flow-step:last-child .flow-arrow { display: none; }
.flow-cta { text-align: center; margin-top: 60px; padding-top: 60px; border-top: 1px solid rgba(61,139,134,0.2); }
.flow-cta p { font-size: 18px; color: #B0B0B0; margin-bottom: 24px; }
.flow-cta p strong { color: #3D8B86; font-weight: 700; }

@media (max-width: 1024px) {
  .flow-wrapper { flex-wrap: wrap; gap: 60px; }
  .flow-step { flex-basis: calc(50% - 30px); }
  .flow-arrow { display: none; }
}

@media (max-width: 768px) {
  .journey-title { font-size: 36px; }
  .flow-wrapper { flex-direction: column; }
  .flow-step { flex-basis: 100%; }
  .flow-content p { max-width: 100%; }
  .flow-icon { width: 72px; height: 72px; }
  .flow-icon svg { width: 28px; height: 28px; }
}
