/* ========================================
   HASTI ADVISORS - DARK MODERN THEME
   Homepage only - Dark, modern, animated
   ======================================== */

/* Import base styles for structure */

/* ========================================
   DARK THEME OVERRIDES
   ======================================== */

body {
  background: #0A0A0A;
  color: #E0E0E0;
}

/* ========================================
   HEADER - Dark with contrast
   ======================================== */

.header {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(44, 95, 93, 0.2);
}

.logo-icon {
  background: linear-gradient(135deg, #2C5F5D 0%, #3D8B86 100%);
  box-shadow: 0 4px 16px rgba(44, 95, 93, 0.4);
}

.logo-name {
  color: #FFFFFF;
}

/* Logo Container - Separated Icon and Text */
.logo-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo-icon-img {
  height: 80px;
  width: auto;
  display: block;
  filter: brightness(1.15) contrast(1.2) saturate(1.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover .logo-icon-img {
  filter: brightness(1.3) contrast(1.2) saturate(1.2) drop-shadow(0 0 20px rgba(61, 139, 134, 0.8));
  transform: scale(1.05) translateY(-2px);
}

.logo-text-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #FFFFFF;
  text-transform: uppercase;
  background: linear-gradient(135deg, #FFFFFF 0%, #B0B0B0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.logo:hover .logo-text-name {
  background: linear-gradient(135deg, #FFFFFF 0%, #3D8B86 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}

.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);
  transform: translateY(-2px);
}

/* ========================================
   HERO - Dark dramatic
   ======================================== */

.hero {
  background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 50%, #0A0A0A 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(44, 95, 93, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(61, 139, 134, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  background: linear-gradient(135deg, #FFFFFF 0%, #B0B0B0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(44, 95, 93, 0.3);
}

.hero-tagline {
  color: #3D8B86;
  font-weight: 400;
  text-shadow: 0 0 20px rgba(61, 139, 134, 0.5);
}

.hero-subtitle {
  color: #B0B0B0;
}

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

.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(44, 95, 93, 0.6);
  transform: translateY(-3px);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #3D8B86;
  color: #3D8B86;
}

.btn-secondary:hover {
  background: rgba(44, 95, 93, 0.1);
  box-shadow: 0 4px 24px rgba(44, 95, 93, 0.3);
}

/* ========================================
   EXPERTISE SECTION - Modern animated cards
   ======================================== */

.expertise {
  background: #0A0A0A;
  position: relative;
  padding: 100px 0;
}

.expertise::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(44, 95, 93, 0.03) 50%, transparent 100%);
  pointer-events: none;
}

.expertise h2 {
  color: #FFFFFF;
  margin-bottom: 80px;
  position: relative;
}

.expertise h2::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #3D8B86, transparent);
}

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

.expertise-card {
  background: linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 100%);
  border: 1px solid rgba(44, 95, 93, 0.2);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.6s ease-out backwards;
}

/* Stagger animation */
.expertise-card:nth-child(1) { animation-delay: 0.1s; }
.expertise-card:nth-child(2) { animation-delay: 0.2s; }
.expertise-card:nth-child(3) { animation-delay: 0.3s; }
.expertise-card:nth-child(4) { animation-delay: 0.4s; }
.expertise-card:nth-child(5) { animation-delay: 0.5s; }
.expertise-card:nth-child(6) { animation-delay: 0.6s; }
.expertise-card:nth-child(7) { animation-delay: 0.7s; }

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

.expertise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(44, 95, 93, 0.1), transparent);
  transition: left 0.5s ease;
}

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

.expertise-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3D8B86, transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.expertise-card:hover::after {
  transform: scaleX(1);
}

.expertise-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(44, 95, 93, 0.5);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(44, 95, 93, 0.2);
  background: linear-gradient(135deg, #1F1F1F 0%, #141414 100%);
}

.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 40px rgba(44, 95, 93, 0.2);
}

.expertise-card.highlight:hover {
  background: linear-gradient(135deg, rgba(44, 95, 93, 0.2) 0%, rgba(44, 95, 93, 0.1) 100%);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(44, 95, 93, 0.4);
}

/* Modern SVG Icons */
.expertise-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.expertise-card:hover .expertise-icon {
  transform: scale(1.1) rotate(5deg);
}

.expertise-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 16px rgba(44, 95, 93, 0.3));
}

.expertise-icon-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(44, 95, 93, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

.expertise-card h3 {
  color: #FFFFFF;
  margin-bottom: 16px;
  font-size: 22px;
  transition: color 0.3s ease;
}

.expertise-card:hover h3 {
  color: #3D8B86;
}

.expertise-card p {
  color: #A0A0A0;
  line-height: 1.7;
  transition: color 0.3s ease;
}

.expertise-card:hover p {
  color: #C0C0C0;
}

/* ========================================
   STATISTICS - Dark glass morphism
   ======================================== */

.statistics {
  background: #0A0A0A;
  border-top: 1px solid rgba(44, 95, 93, 0.1);
  border-bottom: 1px solid rgba(44, 95, 93, 0.1);
}

.stat-item {
  padding: 32px;
  background: rgba(26, 26, 26, 0.5);
  border-radius: 16px;
  border: 1px solid rgba(44, 95, 93, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(44, 95, 93, 0.1);
  border-color: rgba(44, 95, 93, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(44, 95, 93, 0.3);
}

.stat-number {
  background: linear-gradient(135deg, #3D8B86 0%, #2C5F5D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(44, 95, 93, 0.5);
}

.stat-label {
  color: #808080;
}

/* ========================================
   JOURNEY FLOW - Visual process timeline
   ======================================== */

.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;
  animation: flowFadeIn 0.6s ease-out backwards;
}

.flow-step[data-step="1"] { animation-delay: 0.2s; }
.flow-step[data-step="2"] { animation-delay: 0.4s; }
.flow-step[data-step="3"] { animation-delay: 0.6s; }
.flow-step[data-step="4"] { animation-delay: 0.8s; }

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

.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;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.flow-icon svg {
  width: 32px;
  height: 32px;
  color: #3D8B86;
  transition: all 0.4s ease;
}

.flow-step:hover .flow-icon {
  background: linear-gradient(135deg, rgba(61, 139, 134, 0.3) 0%, rgba(44, 95, 93, 0.2) 100%);
  border-color: rgba(61, 139, 134, 0.6);
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 12px 32px rgba(61, 139, 134, 0.3);
}

.flow-step:hover .flow-icon svg {
  color: #FFFFFF;
  transform: scale(1.1);
}

.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;
  transition: all 0.3s ease;
}

.flow-arrow svg {
  width: 32px;
  height: 32px;
  color: #3D8B86;
}

.flow-step:hover .flow-arrow {
  opacity: 0.7;
  transform: translateX(4px);
}

.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;
}

.btn-secondary {
  padding: 14px 32px;
  background: transparent;
  border: 2px solid #3D8B86;
  border-radius: 8px;
  color: #3D8B86;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #2C5F5D 0%, #3D8B86 100%);
  color: #FFFFFF;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 95, 93, 0.4);
}

/* Responsive Flow */
@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%;
  }
}

/* ========================================
   DIFFERENTIATORS - Modern dark cards with creative typography
   ======================================== */

.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 Item Cards */
.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 FINAL - Dark gradient
   ======================================== */

.cta-final {
  background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 50%, #0A0A0A 100%);
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(44, 95, 93, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(61, 139, 134, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-final h2,
.cta-final p {
  position: relative;
  z-index: 1;
}

.cta-final h2 {
  color: #FFFFFF;
}

.cta-final p {
  color: #B0B0B0;
}

/* ========================================
   FOOTER - Dark refined
   ======================================== */

.footer {
  background: #0A0A0A;
  border-top: 1px solid rgba(44, 95, 93, 0.2);
}

.footer-logo .logo-icon {
  background: linear-gradient(135deg, #2C5F5D 0%, #3D8B86 100%);
}

.footer-logo .logo-name {
  color: #FFFFFF;
}

/* Footer Logo Container - Separated Icon and Text */
.footer-logo-container {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
}

.footer-logo-icon {
  height: 100px;
  width: auto;
  display: block;
  filter: brightness(1.15) contrast(1.2) saturate(1.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-logo-icon:hover {
  filter: brightness(1.3) contrast(1.2) saturate(1.2) drop-shadow(0 0 24px rgba(61, 139, 134, 0.9));
  transform: scale(1.05);
}

.footer-logo-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1.8px;
  color: #FFFFFF;
  text-transform: uppercase;
  background: linear-gradient(135deg, #FFFFFF 0%, #3D8B86 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.footer-logo-container:hover .footer-logo-text {
  background: linear-gradient(135deg, #3D8B86 0%, #2C5F5D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2.2px;
}

.footer-col h4 {
  color: #FFFFFF;
}

.footer-col a {
  color: #A0A0A0;
}

.footer-col a:hover {
  color: #3D8B86;
}

.footer-tagline {
  color: #707070;
}

.social-links a {
  background: linear-gradient(135deg, #2C5F5D 0%, #3D8B86 100%);
  box-shadow: 0 4px 16px rgba(44, 95, 93, 0.3);
}

.social-links a:hover {
  background: #3D8B86;
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(44, 95, 93, 0.5);
}

.footer-bottom {
  border-top: 1px solid rgba(44, 95, 93, 0.1);
}

.footer-bottom p {
  color: #707070;
}

/* ========================================
   MOBILE MENU DARK
   ======================================== */

@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);
  }

  .mobile-toggle span {
    background: #FFFFFF;
  }
}

/* ========================================
   SCROLLBAR DARK
   ======================================== */

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #0A0A0A;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #2C5F5D 0%, #3D8B86 100%);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: #3D8B86;
}

/* ========================================
   ABOUT & SERVICES PAGES - Dark Theme
   ======================================== */

.page-hero {
  background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
  border-bottom: 1px solid rgba(44, 95, 93, 0.2);
}

.page-hero h1 {
  color: #FFFFFF;
  background: linear-gradient(135deg, #FFFFFF 0%, #3D8B86 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  color: #B0B0B0;
}

.mission {
  background: #0A0A0A;
}

.mission h2 {
  color: #FFFFFF;
}

.mission p {
  color: #B0B0B0;
}

.mission .lead {
  color: #E0E0E0;
}

.approach {
  background: #0A0A0A;
}

.approach h2 {
  color: #FFFFFF;
}

.approach-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.5) 0%, rgba(15, 15, 15, 0.5) 100%);
  border: 1px solid rgba(44, 95, 93, 0.2);
  transition: all 0.3s ease;
}

.approach-card: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.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 95, 93, 0.2);
}

.approach-card h3 {
  color: #FFFFFF;
}

.approach-card p {
  color: #A0A0A0;
}

.serve {
  background: #0A0A0A;
  border-top: 1px solid rgba(44, 95, 93, 0.2);
}

.serve h2 {
  color: #FFFFFF;
}

.persona-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.5) 0%, rgba(15, 15, 15, 0.5) 100%);
  border: 1px solid rgba(44, 95, 93, 0.2);
  transition: all 0.3s ease;
}

.persona-card: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.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 95, 93, 0.2);
}

.persona-card h3 {
  color: #FFFFFF;
}

.persona-card p {
  color: #A0A0A0;
}

.differentiators-detailed {
  background: #0A0A0A;
}

.differentiators-detailed h2 {
  color: #FFFFFF;
}

.diff-detailed-item {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.5) 0%, rgba(15, 15, 15, 0.5) 100%);
  border: 1px solid rgba(44, 95, 93, 0.2);
  transition: all 0.3s ease;
}

.diff-detailed-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.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 95, 93, 0.2);
}

.diff-detailed-item h3 {
  color: #3D8B86;
}

.diff-detailed-item p {
  color: #B0B0B0;
}

.diff-detailed-item ul li {
  color: #A0A0A0;
}

/* Services Page */
.services-intro {
  background: #0A0A0A;
}

.services-intro h2 {
  color: #FFFFFF;
}

.services-intro p {
  color: #B0B0B0;
}

.service-detail {
  background: #0A0A0A;
  border-top: 1px solid rgba(44, 95, 93, 0.2);
}

.service-detail h2 {
  color: #FFFFFF;
  background: linear-gradient(135deg, #3D8B86 0%, #2C5F5D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-detail h3 {
  color: #FFFFFF;
}

.service-detail p,
.service-detail li {
  color: #B0B0B0;
}

.service-detail strong {
  color: #3D8B86;
}

.engagement-models {
  background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
}

.engagement-models h2 {
  color: #FFFFFF;
}

.model-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.5) 0%, rgba(15, 15, 15, 0.5) 100%);
  border: 1px solid rgba(44, 95, 93, 0.2);
  transition: all 0.3s ease;
}

.model-card: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.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 95, 93, 0.2);
}

.model-card h3 {
  color: #3D8B86;
}

.model-card p,
.model-card ul li {
  color: #A0A0A0;
}

.contact-section {
  background: #0A0A0A;
  border-top: 1px solid rgba(44, 95, 93, 0.2);
}

.contact-section h2 {
  color: #FFFFFF;
}

.contact-section p {
  color: #B0B0B0;
}

.contact-form {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.5) 0%, rgba(15, 15, 15, 0.5) 100%);
  border: 1px solid rgba(44, 95, 93, 0.2);
}

.form-group label {
  color: #FFFFFF;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(10, 10, 10, 0.5);
  border: 1px solid rgba(61, 139, 134, 0.2);
  color: #FFFFFF;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(61, 139, 134, 0.5);
  background: rgba(10, 10, 10, 0.7);
  box-shadow: 0 0 0 3px rgba(61, 139, 134, 0.1);
}

.form-group ::placeholder {
  color: #606060;
}

.btn-primary {
  background: linear-gradient(135deg, #2C5F5D 0%, #3D8B86 100%);
  box-shadow: 0 4px 16px rgba(44, 95, 93, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 6px 24px rgba(44, 95, 93, 0.5);
}

/* ========================================
   MODAL POPUP
   ======================================== */

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.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);
  }
}

.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;
}

.modal-close:hover {
  background: rgba(61, 139, 134, 0.2);
  border-color: rgba(61, 139, 134, 0.5);
  transform: rotate(90deg);
}

.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;
}

.btn-submit {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, #2C5F5D 0%, #3D8B86 100%);
  border: none;
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(44, 95, 93, 0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 95, 93, 0.5);
}

.hidden {
  display: none;
}

/* Modal Responsive */
@media (max-width: 768px) {
  .modal-content {
    padding: 32px 24px;
    width: 95%;
  }

  .modal-header h2 {
    font-size: 26px;
  }

  .modal-form .form-row {
    grid-template-columns: 1fr;
  }

  .checkbox-group {
    grid-template-columns: 1fr;
  }

  /* Expertise cards - mobile spacing and consistent aspect ratio */
  .expertise-card {
    padding: 32px 24px;
    min-height: 240px;
  }

  .expertise-icon {
    min-height: 56px;
  }

  /* Hide decorative backgrounds on mobile for cleaner look */
  .expertise-icon-bg {
    display: none;
  }

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