/* ============================================
   Moore Lutchman & Co - Suriname
   Matching Moore TT Design System
   ============================================ */

:root {
  --primary: #02212E;
  --primary-light: #0a3a4f;
  --secondary: #5C0696;
  --secondary-light: #7A08C7;
  --accent: #39BEF6;
  --accent-dark: #1a9fd8;
  --white: #ffffff;
  --light-gray: #f5f7fa;
  --gray: #6c757d;
  --dark-gray: #383838;
  --text: #333333;
  --text-light: #666666;
  --gradient-primary: linear-gradient(135deg, #02212E 0%, #5C0696 100%);
  --gradient-accent: linear-gradient(135deg, #39BEF6 0%, #5C0696 100%);
  --gradient-hero: linear-gradient(135deg, #02212E 0%, #0a3a4f 40%, #5C0696 100%);
  --shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
  --radius: 8px;
  --radius-lg: 16px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

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

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-full {
  width: 100%;
  padding: 0;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }

.section-subtitle {
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.section-title { margin-bottom: 1rem; }

.section-desc {
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

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

/* ============================================
   Header & Navigation - Moore TT Style
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--primary);
  transition: var(--transition);
  height: 72px;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 72px;
  padding: 0 0 0 0;
}

/* Hamburger - always visible on left like Moore TT */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 16px 24px;
  background: none;
  border: none;
  border-right: 1px solid rgba(255,255,255,0.1);
  height: 72px;
  justify-content: center;
  align-items: center;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 1px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5.5px, 5.5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5.5px, -5.5px);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 40px 0 24px;
  height: 72px;
}

.logo-icon {
  width: 40px;
  height: 40px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
}

.logo-text .sub {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  margin-top: 2px;
}

/* Nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  margin-left: auto;
  height: 72px;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  position: relative;
}

.nav-menu a:hover {
  color: var(--white);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 60%;
}

/* Get in Touch CTA - purple bg like Moore TT */
.nav-cta {
  background: var(--secondary) !important;
  color: var(--white) !important;
  padding: 0 32px !important;
  height: 72px !important;
  border-radius: 0 !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--secondary-light) !important;
}

/* Search icon */
.nav-search {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  cursor: pointer;
  transition: var(--transition);
}

.nav-search:hover {
  background: var(--accent-dark);
}

.nav-search svg {
  width: 20px;
  height: 20px;
  color: var(--white);
  stroke: var(--white);
}

/* ============================================
   Hero Section - Full-width image style
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 72px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

/* Dark-to-transparent overlay at bottom */
.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  background: linear-gradient(to top, rgba(2, 33, 46, 0.85) 0%, rgba(2, 33, 46, 0.5) 50%, transparent 100%);
  padding: 80px 0 48px;
}

.hero-overlay-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 60px;
}

.hero-text {
  max-width: 600px;
}

.hero-text h2 {
  color: var(--white);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0;
}

.hero-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* Accent bar under hero */
.hero-accent-bar {
  height: 6px;
  background: var(--accent);
  position: relative;
  z-index: 10;
}

/* ============================================
   Services Carousel - Moore TT Style
   ============================================ */
.services-carousel-section {
  padding: 80px 0 60px;
  background: var(--white);
  position: relative;
}

.services-carousel-wrapper {
  display: flex;
  position: relative;
  padding-left: 48px;
}

/* Vertical SERVICES label - fixed on left while cards scroll */
.services-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 20px;
  z-index: 2;
  padding: 0 12px;
}

/* Horizontal scroll track */
.services-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 0;
  flex: 1;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.services-track::-webkit-scrollbar {
  display: none;
}

.service-slide {
  min-width: 300px;
  max-width: 340px;
  flex-shrink: 0;
  padding: 40px 32px 48px;
  border-right: 1px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.service-slide:last-child {
  border-right: none;
}

.service-slide:hover {
  background: var(--light-gray);
}

/* Geometric icons like Moore TT */
.service-geo-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 40px;
}

.service-geo-icon svg {
  width: 100%;
  height: 100%;
}

.service-slide h3 {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--primary);
  margin-bottom: 20px;
  min-height: 80px;
}

.service-slide p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Carousel navigation */
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 60px 0;
}

.carousel-counter {
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 12px;
}

.carousel-counter .current {
  color: var(--primary);
  font-weight: 600;
}

.carousel-line {
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.carousel-arrows {
  display: flex;
  gap: 8px;
}

.carousel-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid #ddd;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-arrow:hover {
  border-color: var(--primary);
  background: var(--light-gray);
}

.carousel-arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
}

/* ============================================
   Stats Bar
   ============================================ */
.stats-bar {
  background: var(--white);
  padding: 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid #eee;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ============================================
   About Section
   ============================================ */
.about {
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--gradient-hero);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-image-placeholder::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(57, 190, 246, 0.2) 0%, transparent 70%);
  top: 20%;
  right: 10%;
  border-radius: 50%;
}

.about-image-text {
  color: rgba(255, 255, 255, 0.15);
  font-size: 6rem;
  font-weight: 900;
  letter-spacing: -2px;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: var(--primary);
  padding: 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-badge .number {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.about-badge .label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content h2 { margin-bottom: 1.5rem; }

.about-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.02rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 2rem 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.95rem;
}

.about-feature svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ============================================
   Sectors Section
   ============================================ */
.sectors {
  padding: 100px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.sectors::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(92, 6, 150, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.sectors .section-subtitle { color: var(--accent); }
.sectors .section-title { color: var(--white); }
.sectors .section-desc { color: rgba(255, 255, 255, 0.7); }

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.sector-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.sector-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  transform: translateY(-4px);
}

.sector-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--accent);
}

.sector-icon svg {
  width: 100%;
  height: 100%;
}

.sector-card h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
}

/* ============================================
   Global Network Section
   ============================================ */
.network {
  padding: 100px 0;
  background: var(--light-gray);
}

.network-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.network-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 2rem;
}

.network-stat {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.network-stat .number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 4px;
}

.network-stat .label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

.network-map-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--gradient-hero);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.network-map-placeholder::before {
  content: '';
  position: absolute;
  width: 80%;
  height: 80%;
  border: 1px solid rgba(57, 190, 246, 0.2);
  border-radius: 50%;
}

.network-map-placeholder::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 50%;
  border: 1px solid rgba(57, 190, 246, 0.15);
  border-radius: 50%;
}

.globe-text {
  color: rgba(255, 255, 255, 0.1);
  font-size: 4rem;
  font-weight: 900;
  z-index: 1;
}

/* ============================================
   CTA Section
   ============================================ */
.cta {
  padding: 100px 0;
  background: var(--gradient-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(57, 190, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 0;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
}

.btn-primary:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(57, 190, 246, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(92, 6, 150, 0.3);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}

.btn-white:hover {
  background: var(--light-gray);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   Team Section
   ============================================ */
.team {
  padding: 100px 0;
}

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

.team-card {
  text-align: center;
  transition: var(--transition);
}

.team-card:hover { transform: translateY(-4px); }

.team-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-avatar::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(57, 190, 246, 0.3) 0%, transparent 60%);
}

.team-avatar-initials {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 700;
  z-index: 1;
}

.team-card h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.team-card .role {
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.team-card .bio {
  color: var(--text-light);
  font-size: 0.9rem;
  max-width: 300px;
  margin: 0 auto;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 { margin-bottom: 1rem; }

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(57, 190, 246, 0.1), rgba(92, 6, 150, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.contact-item h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-item p { margin-bottom: 0; font-weight: 500; }

.contact-item a { color: var(--secondary); font-weight: 500; }
.contact-item a:hover { color: var(--accent); }

.contact-form {
  background: var(--light-gray);
  padding: 40px;
  border-radius: var(--radius-lg);
}

.contact-form h3 { margin-bottom: 24px; }

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--dark-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(57, 190, 246, 0.15);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-text .brand { font-size: 1.3rem; }

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a { color: var(--accent); }
.footer-bottom a:hover { color: var(--white); }

.moore-global-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 20px;
}

/* ============================================
   Page Header (Inner pages)
   ============================================ */
.page-header {
  padding: 160px 0 80px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(57, 190, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.page-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { color: var(--white); }

/* ============================================
   Services Detail Page
   ============================================ */
.services-detail {
  padding: 100px 0;
}

.services-detail .services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.service-detail-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  transition: var(--transition);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-detail-card .service-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(57, 190, 246, 0.1), rgba(92, 6, 150, 0.1));
}

.service-detail-card .service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.service-detail-card h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.service-detail-card p {
  color: var(--text-light);
  line-height: 1.7;
}

.service-detail-card ul { margin-top: 16px; }

.service-detail-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

.service-detail-card li svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ============================================
   About Detail Page
   ============================================ */
.about-detail { padding: 100px 0; }

.about-values {
  padding: 100px 0;
  background: var(--light-gray);
}

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

.value-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(57, 190, 246, 0.1), rgba(92, 6, 150, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

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

.value-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Languages */
.languages-section { padding: 60px 0; }

.languages-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 2rem;
}

.language-tag {
  background: var(--white);
  border: 2px solid #eee;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.language-tag:hover {
  border-color: var(--accent);
  background: rgba(57, 190, 246, 0.05);
}

/* Map */
.map-section {
  height: 400px;
  background: var(--primary);
  position: relative;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%);
}

/* ============================================
   Industries Tabs Section
   ============================================ */
.industries-section {
  position: relative;
}

.industries-tabs {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.industries-tabs-track {
  display: flex;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
}

.industries-tabs-track::-webkit-scrollbar { display: none; }

.industry-tab {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 32px;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.industry-tab:hover { color: var(--white); }

.industry-tab.active {
  color: var(--white);
  font-weight: 800;
}

.industries-tabs-arrows {
  display: flex;
  flex-shrink: 0;
}

.tab-arrow {
  width: 48px;
  height: 54px;
  border: none;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.tab-arrow:hover { background: rgba(255,255,255,0.2); }

.tab-arrow svg {
  width: 16px;
  height: 16px;
  stroke: var(--white);
}

/* Industry panels */
.industry-panel {
  display: none;
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  max-height: 750px;
  overflow: hidden;
}

.industry-panel.active { display: block; }

.industry-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(2, 33, 46, 0.6) 0%, rgba(2, 33, 46, 0.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 80px 60px;
}

.industry-overlay-content h2 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 32px;
}

.industry-overlay-content .hero-btn-outline {
  font-size: 0.85rem;
  padding: 12px 28px;
}

/* ============================================
   About Page - Moore TT Style
   ============================================ */
.about-hero {
  background: var(--white);
  padding-top: 60px;
}

.about-hero-split {
  display: grid;
  grid-template-columns: 5fr 5fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 60px;
}

.about-hero-left h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.15;
}

.about-hero-right p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
}

.about-hero-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* White square overlay at top-left of hero image */
.about-hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 100px;
  background: var(--white);
  z-index: 1;
}

/* Cyan accent bar under hero */
.about-hero-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--accent);
}

/* About TT Sections */
.about-tt-section {
  padding: 80px 0;
  position: relative;
}

.about-tt-bg {
  background: var(--light-gray);
}

/* Vertical side line + label */
.about-tt-section::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #d8dde2;
}

.about-tt-line {
  width: 100%;
  height: 1px;
  background: #d8dde2;
  margin-bottom: 20px;
}

.about-tt-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 48px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  position: absolute;
  left: 24px;
  top: 80px;
}

.about-tt-section > .container {
  padding-left: 80px;
}

.about-tt-grid {
  display: grid;
  grid-template-columns: 5fr 5fr;
  gap: 80px;
  align-items: start;
}

.about-tt-grid--image {
  align-items: center;
}

.about-tt-grid--reverse {
  direction: rtl;
}

.about-tt-grid--reverse > * {
  direction: ltr;
}

.about-tt-col-left .about-tt-lead {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.7;
  color: var(--primary);
}

.about-tt-col-right p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 20px;
}

.about-tt-col-right p:last-child,
.about-tt-col-left p:last-child {
  margin-bottom: 0;
}

.about-tt-col-left h3,
.about-tt-col-right h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}

.about-tt-col-left p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 20px;
}

.about-tt-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Numbered list */
.about-tt-numbered-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-tt-numbered-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.about-tt-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.about-tt-numbered-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.about-tt-numbered-item p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-light);
}

/* ============================================
   About Home Section - Moore TT Style (Homepage)
   ============================================ */
.about-home {
  padding: 100px 0;
  background: var(--white);
}

.about-home-wrapper {
  display: flex;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px 0 48px;
}

.about-home-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 0;
  padding: 0 12px;
}

.about-home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  width: 100%;
}

.about-home-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-home-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 32px;
}

.about-home-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 40px;
}

.about-home-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  margin-top: 28px;
}

.about-home-content h4:first-of-type {
  margin-top: 0;
}

.about-home-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-light);
}

/* Moore Help CTA Bar */
.moore-help-bar {
  background: var(--accent);
  padding: 36px 0;
}

.moore-help-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.moore-help-bar h3 {
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
}

.btn-help-cta {
  color: var(--white);
  border: 2px solid var(--white);
  padding: 12px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-help-cta:hover {
  background: var(--white);
  color: var(--accent);
}

/* ============================================
   Contact Home Section - Moore TT Style
   ============================================ */
.contact-home {
  background: var(--white);
}

.contact-home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-home-info {
  padding: 80px 60px;
}

.contact-home-info h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}

.contact-home-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}

.contact-home-info .office-name {
  margin-bottom: 8px;
}

.contact-home-info p {
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 8px;
  line-height: 1.6;
}

.contact-home-info a {
  color: var(--text);
}

.contact-home-info a:hover {
  color: var(--accent);
}

.contact-home-socials {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white) !important;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.social-pill:hover {
  background: var(--accent) !important;
  color: var(--primary) !important;
  transform: translateY(-2px);
}

.social-pill svg {
  width: 16px;
  height: 16px;
}

.contact-home-image {
  overflow: hidden;
}

.contact-home-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

/* ============================================
   Footer - Moore TT Style
   ============================================ */
.site-footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-moore-logo {
  height: 50px;
  width: auto;
}

.footer-brand .logo-text .brand { font-size: 1.3rem; }

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0,0,0,0.15);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer-bottom a:hover { color: var(--white); }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .services-detail .services-grid { grid-template-columns: repeat(2, 1fr); }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .service-slide { min-width: 260px; }
}

@media (max-width: 768px) {
  .industries-tabs { position: relative; }
  .industry-tab { padding: 14px 20px; font-size: 0.7rem; }
  .industry-panel { height: 60vh; min-height: 400px; }
  .industry-overlay { padding: 40px 24px; }
  .industry-overlay-content h2 { font-size: 2rem; }
  .about-hero-split { grid-template-columns: 1fr; gap: 24px; }
  .about-hero-image { height: 350px; }
  .about-tt-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-tt-grid--reverse { direction: ltr; }
  .about-tt-section { padding: 48px 0; }
  .about-tt-section::before { display: none; }
  .about-tt-section-label { position: static; writing-mode: horizontal-tb; transform: none; margin-bottom: 32px; }
  .about-tt-section > .container { padding-left: 24px; }
  .about-home-wrapper { padding: 0 24px 0 24px; }
  .about-home-label { display: none; }
  .about-home-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-home { padding: 60px 0; }
  .contact-home-grid { grid-template-columns: 1fr; }
  .contact-home-info { padding: 48px 24px; }
  .contact-home-image img { min-height: 300px; }
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background: var(--primary);
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 24px;
    gap: 0;
    transform: translateX(100%);
    transition: var(--transition);
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu a {
    display: block;
    padding: 16px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    height: auto;
  }

  .nav-cta {
    margin-top: 16px;
    text-align: center;
    display: block !important;
    width: 100%;
    height: auto !important;
    padding: 14px 24px !important;
  }

  .nav-search { display: none; }

  .hero { height: 70vh; min-height: 500px; }
  .hero-overlay-inner { flex-direction: column; gap: 24px; padding: 0 24px; }
  .hero-text h2 { font-size: 1.2rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; }
  .stat-item:nth-child(odd) { border-right: 1px solid #eee; }
  .stat-item:nth-child(-n+2) { border-bottom: 1px solid #eee; }

  .services-label { display: none; }
  .service-slide { min-width: 280px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .network-content { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .services-detail .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .about-features { grid-template-columns: 1fr; }
  .carousel-nav { padding: 24px 24px 0; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; border-bottom: 1px solid #eee; }
  .stat-item:last-child { border-bottom: none; }
  .sectors-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .hero { height: 60vh; }
  .industry-panel { height: 50vh; min-height: 350px; }
  .contact-home-info { padding: 36px 20px; }
}
