/* Navbar CSS has been moved to global.css to apply globally */

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: -2;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(11, 30, 54, 0.8), rgba(11, 30, 54, 0.95));
  z-index: -1;
}
.hero-content {
  max-width: 900px !important;
}
.hero-content h1 {
  color: #FFFFFF;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.hero-subtitle {
  color: var(--c-gray-metallic);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.btn-cta {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}

/* Section Common */
.section {
  padding: 6rem 0;
}
.bg-light {
  background-color: #F8FAFC;
}
.bg-dark {
  background-color: var(--c-navy);
  color: white;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.section-header.light-text h2, .section-header.light-text p {
  color: white;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.about-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--c-gray);
  border-left: 4px solid var(--c-navy);
}
.about-card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: var(--c-navy);
}

/* Services Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.service-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-gray);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.service-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--c-orange);
}
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Features List (Dark Mode Layout) */
.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.feature-item {
  background: rgba(255,255,255,0.05);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s ease;
}
.feature-item:hover {
  background: rgba(255,255,255,0.1);
}
.feature-item h4 {
  color: var(--c-orange);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.feature-item p {
  color: var(--c-gray-metallic);
  font-size: 0.95rem;
}

/* Consultancy List */
.consultancy-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
}
.consultancy-list li {
  background: white;
  padding: 1.5rem 2rem;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
  border-left: 4px solid var(--c-orange);
  font-size: 1.05rem;
  color: var(--text-main);
}
.consultancy-list li strong {
  color: var(--c-navy);
  font-family: var(--font-mono);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
}

/* Team Configuration */
.team-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.team-text {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: var(--text-muted);
}
.team-member {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: white;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  border: 1px solid var(--c-gray);
}
.member-avatar {
  width: 60px;
  height: 60px;
  background: var(--c-navy);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.2rem;
  font-family: var(--font-mono);
}
.member-info {
  text-align: left;
}
.member-info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--c-navy);
}
.member-info p {
  margin: 0;
  color: var(--c-orange);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Footer / CTA */
.footer {
  background: var(--c-navy);
  color: white;
  padding: 5rem 0 2rem;
  text-align: center;
}
.cta-box {
  background: var(--c-navy-light);
  padding: 4rem 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.cta-box h2 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.cta-box p {
  color: var(--c-gray-metallic);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  color: var(--c-gray-metallic);
  font-size: 0.9rem;
  font-family: var(--font-mono);
}

/* Navigation responsiveness handled in global.css */
