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

:root {
  /* Brand Color Tokens - Logo Matched */
  --color-navy-dark: #0f172a;      /* Deep Navy (from 'COASTAL' text) */
  --color-navy-medium: #1e293b;    /* Lighter Navy */
  --color-navy-light: #f8f9fa;     
  --color-navy-accent: #e2e8f0;    
  --color-orange-brand: #db3f4c;   /* Red (from new logo) */
  --color-orange-light: #daa12e;   /* Mustard (from new logo) */
  --color-orange-glow: rgba(219, 63, 76, 0.15);
  --color-white: #ffffff;
  
  /* Background variations */
  --color-bg-base: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-bg-panel: #0f172a;       /* Deep Navy background */
  
  /* Text colors */
  --color-text-dark: #1e293b;      /* Slate headings */
  --color-text-gray: #475569;      /* Muted slate text */
  --color-text-light: #f8fafc;     /* White text on dark slate backgrounds */
  --color-text-muted: #94a3b8;     /* Muted subtext on dark backgrounds */
  
  /* Font Family Stack */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Layout Spaces */
  --header-height: 100px;           /* Large standard navbar height */
  --section-padding: 90px 0;
  --section-padding-mobile: 60px 0;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.03);
  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(0, 0, 0, 0.06);
  --glass-blur: saturate(180%) blur(15px);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease-in-out;
  --transition-slow: 0.4s ease-in-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-alt);
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-navy-medium);
  letter-spacing: -0.015em;
}

p {
  color: var(--color-text-gray);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

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

ul {
  list-style: none;
}

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

/* Typography Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-orange { color: var(--color-orange-brand); }
.text-navy { color: var(--color-navy-medium); }
.text-white { color: var(--color-white); }
.text-muted { color: var(--color-text-muted); }

/* Layout Grid / Containers */
.container {
  width: 100%;
  max-width: 1200px; /* Wider mockup container */
  margin: 0 auto;
  padding: 0 30px;
}

.section {
  padding: var(--section-padding);
  background-color: var(--color-bg-base);
}

.section-dark {
  background-color: var(--color-bg-panel);
  color: var(--color-text-light);
}

.section-gray {
  background-color: var(--color-bg-alt);
}

/* Buttons with Rectangular Shape and Chevron */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-fast);
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--color-navy-medium);
  color: var(--color-navy-medium);
}

.btn-secondary:hover {
  background-color: var(--color-navy-medium);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline-navy {
  background-color: transparent;
  border-color: var(--color-navy-medium);
  color: var(--color-navy-medium);
}

.btn-outline-navy:hover {
  background-color: var(--color-navy-medium);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Link Style with arrow */
.link-arrow {
  color: var(--color-orange-brand);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.link-arrow:hover {
  color: var(--color-navy-medium);
}

.link-arrow i {
  font-size: 0.9rem;
  transition: transform var(--transition-fast);
}

.link-arrow:hover i {
  transform: translateX(4px);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height); /* 80px */
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: all var(--transition-normal);
  background: var(--color-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header.scrolled {
  top: 0;
  height: 70px;
  background: var(--color-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 88px; /* Larger logo to show text */
  width: auto;
  transition: opacity var(--transition-fast);
}

.logo-img:hover {
  opacity: 0.9;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-navy-dark);
  padding: 8px 0;
  opacity: 0.8;
  position: relative;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-orange-brand);
  opacity: 1;
}

.nav-link.active {
  color: var(--color-orange-brand);
  opacity: 1;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-orange-brand);
  border-radius: var(--radius-sm);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-normal);
}

.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  margin-left: 15px;
}

.nav-cta .btn {
  padding: 10px 20px;
  font-size: 0.85rem;
  background-color: var(--color-orange-brand);
  color: var(--color-white);
  border-radius: var(--radius-md);
  text-transform: uppercase;
  font-weight: 700;
}

.nav-cta .btn:hover {
  background-color: #0284c7;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1010;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-navy-medium);
  transition: var(--transition-normal);
}

/* Hero Geometric Section */
.hero-geometric {
  position: relative;
  height: 800px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: var(--color-bg-base);
  margin-top: var(--header-height);
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.5s ease;
}

.hero-bg-image img.hero-img-fading {
  opacity: 0;
}

.hero-content.hero-content-fading {
  opacity: 0;
}

.hero-content {
  transition: opacity 0.4s ease;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 5;
  transition: var(--transition-fast);
}

.hero-arrow:hover {
  background: var(--color-orange-brand);
  border-color: var(--color-orange-brand);
}

.hero-arrow-prev {
  left: 24px;
}

.hero-arrow-next {
  right: 24px;
}

.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition-fast);
}

.hero-dot.active {
  background: var(--color-orange-brand);
  width: 28px;
  border-radius: var(--radius-full);
}

@media (max-width: 768px) {
  .hero-arrow {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }
  .hero-arrow-prev {
    left: 10px;
  }
  .hero-arrow-next {
    right: 10px;
  }
}

.hero-geometric-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.65) 45%, rgba(15, 23, 42, 0.25) 100%);
  z-index: 3;
  display: flex;
  align-items: center;
  padding-left: 8%;
  padding-right: 8%;
}

.hero-content {
  color: var(--color-white);
  text-align: left;
  max-width: 650px;
}

.hero-content .text-navy {
  color: var(--color-white);
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

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

.text-navy {
  color: var(--color-navy-dark);
}

.title-accent-line {
  width: 50px;
  height: 3px;
  background-color: var(--color-orange-brand);
  margin-top: 20px;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--color-white);
  margin-bottom: 30px;
  font-weight: 500;
  line-height: 1.5;
}

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

.btn-navy:hover {
  background: var(--color-orange-brand);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

/* Feature Bar Light */
.feature-bar-light {
  background-color: var(--color-white);
  padding: 40px 0;
  border-bottom: 1px solid var(--color-navy-accent);
}

.features-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.feature-item-light {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid var(--color-navy-accent);
}

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

.feature-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-orange-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.feature-icon-circle img {
  width: 32px;
  height: 32px;
}

.feature-icon-circle i {
  font-size: 1.8rem;
  color: var(--color-orange-brand);
}

.feature-item-light h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-navy-dark);
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.feature-accent {
  width: 20px;
  height: 2px;
  background-color: var(--color-orange-brand);
}

/* Page Banner */
.page-banner {
  position: relative;
  padding: 160px 0 80px;
  background: radial-gradient(circle at 50% 0%, rgba(251, 191, 36, 0.15), transparent 70%),
              linear-gradient(135deg, var(--color-navy-dark), var(--color-navy-medium));
  color: var(--color-white);
  overflow: hidden;
  text-align: center;
}

.page-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-banner-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.8) 0%, var(--color-navy-dark) 100%);
  z-index: 2;
}

.page-banner .container {
  position: relative;
  z-index: 3;
}

.page-banner-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.page-banner-subtitle {
  max-width: 620px;
  margin: 0 auto 16px;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.5;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.breadcrumbs a {
  color: var(--color-text-muted);
}

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

.breadcrumbs span.current {
  color: var(--color-white);
}

/* Section Header */
.section-header {
  max-width: 650px;
  margin: 0 auto 50px;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--color-orange-brand);
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.story-block-label {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  text-transform: uppercase;
  color: var(--color-navy-medium);
  letter-spacing: 0.08em;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--color-orange-brand);
}

.story-block-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.story-block-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.story-block-img-wrapper:hover img {
  transform: scale(1.05);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--color-navy-medium);
  letter-spacing: -0.02em;
}

.section-title span {
  color: var(--color-orange-brand);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--color-text-gray);
}

/* Hero Feature Overlay Bar */
.hero-features-bar {
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  border: 1px solid var(--color-navy-accent);
  border-radius: var(--radius-lg);
  padding: 25px 30px;
  margin-top: 30px; /* Pushed down relative to hero content */
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  box-shadow: var(--shadow-lg);
  transition: box-shadow var(--transition-normal);
}

.hero-features-bar:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.hero-feature-item {
  display: flex;
  gap: 16px;
  color: var(--color-navy-medium);
  transition: transform var(--transition-normal), background-color var(--transition-normal), box-shadow var(--transition-normal);
  padding: 15px;
  border-radius: var(--radius-md);
}

.hero-feature-item:hover {
  transform: translateY(-5px);
  background-color: #f8fafc;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.hero-feature-icon {
  font-size: 1.8rem;
  color: var(--color-orange-brand);
  flex-shrink: 0;
  margin-top: 4px;
  transition: transform var(--transition-normal), color var(--transition-normal);
}

.hero-feature-item:hover .hero-feature-icon {
  color: var(--color-orange-light);
  transform: scale(1.15);
}

.hero-feature-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-navy-medium);
  margin-bottom: 6px;
  transition: color var(--transition-normal);
}

.hero-feature-item:hover .hero-feature-text h4 {
  color: var(--color-orange-light);
}

.hero-feature-text p {
  font-size: 0.85rem;
  color: var(--color-text-gray);
  line-height: 1.4;
  margin-bottom: 0;
  transition: color var(--transition-normal);
}

.hero-feature-item:hover .hero-feature-text p {
  color: var(--color-navy-medium);
}

/* Service Grid Cards - Mockup Style */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 24px;
}

.service-card {
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  border: 1px solid var(--color-navy-accent);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.card-num {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--color-orange-brand);
  line-height: 1;
}

.card-title {
  font-size: 1.35rem;
  margin-bottom: 24px;
  font-weight: 700;
  color: var(--color-navy-medium);
  letter-spacing: -0.01em;
  margin-top: 15px;
}

.card-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: all var(--transition-normal);
}

.card-icon-circle i {
  font-size: 1.8rem;
  color: var(--color-navy-medium);
}

.service-card:hover .card-icon-circle {
  background-color: var(--color-orange-brand);
}

.service-card:hover .card-icon-circle i {
  color: var(--color-white);
}

.card-chevron-arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  color: var(--color-orange-brand);
  font-size: 1.1rem;
  transition: transform var(--transition-fast);
}

.service-card:hover .card-chevron-arrow {
  transform: translateX(4px);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-orange-brand);
  transition: var(--transition-fast);
}

.link-arrow i {
  font-size: 0.75rem;
  transition: transform var(--transition-fast);
}

.link-arrow:hover {
  color: var(--color-navy-medium);
}

.link-arrow:hover i {
  transform: translateX(4px);
}

/* Stats Counter Bar */
.stats-bar {
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  padding: 50px 0;
  position: relative;
  border-top: 1px solid var(--color-navy-accent);
  border-bottom: 1px solid var(--color-navy-accent);
}

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

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--color-navy-medium);
}

.stat-icon {
  font-size: 2.2rem;
  color: var(--color-orange-brand);
  flex-shrink: 0;
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-orange-brand);
  line-height: 1.1;
  margin-bottom: 2px;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-gray);
}

/* Dark panel text contrast helpers */
.bg-panel, [style*="var(--color-bg-panel)"] {
  color: var(--color-text-light) !important;
}
.bg-panel p, [style*="var(--color-bg-panel)"] p,
.bg-panel span, [style*="var(--color-bg-panel)"] span {
  color: var(--color-text-muted) !important;
}
.bg-panel h1, .bg-panel h2, .bg-panel h3, .bg-panel h4, 
[style*="var(--color-bg-panel)"] h1, [style*="var(--color-bg-panel)"] h2, [style*="var(--color-bg-panel)"] h3, [style*="var(--color-bg-panel)"] h4 {
  color: var(--color-white) !important;
}
[style*="var(--color-bg-panel)"] .text-orange {
  color: var(--color-orange-brand) !important;
}

/* MD Section / Profile */
.md-profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.md-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.md-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  background-color: var(--color-bg-alt);
}

.md-content {
  display: flex;
  flex-direction: column;
}

.md-quote {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-navy-medium);
  margin-bottom: 24px;
  line-height: 1.4;
  letter-spacing: -0.015em;
}

.md-details {
  margin-top: 10px;
}

.md-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--color-navy-medium);
}

.md-title {
  font-size: 0.85rem;
  color: var(--color-text-gray);
}

/* Accordion or Tabbed Layout for Services Page */
.services-tabs-container {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 40px;
  margin-top: 40px;
}

.services-tab-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.services-tab-btn {
  background: transparent;
  border: none;
  border-left: 3px solid transparent;
  padding: 12px 16px;
  text-align: left;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text-gray);
  transition: all var(--transition-fast);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.services-tab-btn:hover {
  background: var(--color-orange-glow);
  color: var(--color-orange-brand);
  border-left-color: var(--color-orange-light);
  padding-left: 20px;
}

.services-tab-btn.active {
  background: var(--color-navy-medium);
  color: var(--color-white);
  font-weight: 600;
  border-left-color: var(--color-orange-brand);
  box-shadow: var(--shadow-sm);
}

.services-tab-btn i {
  color: var(--color-text-muted);
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.services-tab-btn:hover i {
  color: var(--color-orange-brand);
  transform: translateX(3px);
}

.services-tab-btn.active i {
  color: var(--color-orange-brand);
  transform: translateX(3px);
}

.services-tab-content-wrapper {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  border: none;
  padding: 0; /* Pure layouts - no padding wrapper needed */
  box-shadow: none;
}

.services-tab-pane {
  display: none;
  animation: fadeIn 0.4s forwards ease-in-out;
}

.services-tab-pane.active {
  display: block;
}

.svc-spec-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-navy-accent);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

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

.svc-spec-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.svc-spec-img-tall {
  height: 150px;
}

.svc-spec-card:hover .svc-spec-img {
  transform: scale(1.08);
}

.service-pane-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--color-navy-accent);
  padding-bottom: 16px;
  flex-wrap: wrap;
  gap: 20px;
}

.service-pane-title {
  font-size: 2.25rem;
  color: var(--color-text-dark);
  letter-spacing: -0.015em;
}

.service-pane-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
  color: var(--color-text-muted);
}

.service-pane-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  border: none;
  background-color: var(--color-bg-panel);
}

.service-pane-list-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--color-text-dark);
}

.service-pane-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 16px;
  margin-top: 16px;
}

.service-pane-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
  color: var(--color-text-gray);
}

.service-pane-list li::before {
  content: '\f105'; /* Simple arrow chevron instead of heavy check icon */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--color-orange-brand);
  font-size: 0.85rem;
}

/* Industries We Serve Grid */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(290px, 100%), 1fr));
  gap: 20px;
}

.industry-card {
  background: var(--color-white);
  border: 1px solid var(--color-navy-accent);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.industry-card-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.industry-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.industry-card:hover .industry-card-img-wrapper img {
  transform: scale(1.08);
}

.industry-card-icon-overlay {
  display: none; /* Clean typography - remove overlay icons */
}

.industry-card-num {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-white);
  line-height: 1;
  padding: 6px 12px;
  background: rgba(15, 23, 42, 0.55);
  border-radius: var(--radius-full);
  z-index: 2;
  transition: var(--transition-normal);
}

.industry-card:hover .industry-card-num {
  background: var(--color-orange-brand);
}

.industry-card-content {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.industry-card-title {
  font-size: 1.25rem;
  color: var(--color-navy-medium);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 0;
}

.industry-card-title i {
  display: none; /* No icons on card titles */
}

.industry-card-desc {
  font-size: 0.9rem;
  color: var(--color-text-gray);
  line-height: 1.55;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.industry-card-link {
  margin-top: auto;
  padding-top: 18px;
}

/* Why Choose Us Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
  gap: 20px;
}

.why-card {
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  border: 1px solid var(--color-navy-accent);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: none;
  transition: var(--transition-normal);
  position: relative;
}

.why-card:hover {
  background: linear-gradient(145deg, #f8fafc, #ffffff);
  transform: translateY(-5px) scale(1.01);
  box-shadow: var(--shadow-md);
  border-color: var(--color-orange-brand);
}

.why-header {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 14px;
}

.why-icon {
  display: none; /* Pure typographical focus, remove decorative icons */
}

.why-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--color-orange-brand);
  line-height: 1;
  margin-bottom: 14px;
  display: block;
  opacity: 0.85;
  transition: var(--transition-normal);
}

.why-card:hover .why-num {
  opacity: 1;
  transform: translateX(4px);
}

.why-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--color-navy-medium);
}

.why-desc {
  font-size: 0.95rem;
  color: var(--color-text-gray);
  margin-bottom: 0;
  line-height: 1.5;
}

/* Why Choose Us: Visual (image) cards */
.why-visual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 20px;
}

.why-visual-card {
  background: var(--color-white);
  border: 1px solid var(--color-navy-accent);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.why-visual-img-wrapper {
  position: relative;
  height: 150px;
  overflow: hidden;
}

.why-visual-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.why-visual-card:hover .why-visual-img-wrapper img {
  transform: scale(1.08);
}

.why-visual-num {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.6);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 4px 11px;
  border-radius: var(--radius-full);
  z-index: 2;
  transition: var(--transition-normal);
}

.why-visual-card:hover .why-visual-num {
  background: var(--color-orange-brand);
}

.why-visual-content {
  padding: 18px 20px;
}

.why-visual-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy-medium);
  margin-bottom: 6px;
  line-height: 1.3;
}

.why-visual-desc {
  font-size: 0.85rem;
  color: var(--color-text-gray);
  margin-bottom: 0;
}

/* Projects & Capabilities Page */
.project-filter-container {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn, .vfilter-btn {
  background: var(--color-white);
  border: 1px solid var(--color-navy-accent);
  color: var(--color-text-gray);
  padding: 8px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover, .vfilter-btn:hover {
  background: var(--color-bg-alt);
  color: var(--color-navy-medium);
  border-color: var(--color-orange-brand);
}

.filter-btn.active, .vfilter-btn.active {
  background: var(--color-navy-medium);
  color: var(--color-white);
  border-color: var(--color-navy-medium);
  box-shadow: none;
}

/* Projects Page: Split Hero */
.projects-hero {
  position: relative;
  overflow: hidden;
  padding: 170px 0 110px;
  margin-top: var(--header-height);
  color: var(--color-white);
}

.projects-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.projects-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.projects-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(100deg, rgba(15,23,42,0.96) 0%, rgba(15,23,42,0.88) 38%, rgba(15,23,42,0.55) 65%, rgba(15,23,42,0.2) 100%);
}

.projects-hero-row {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.projects-hero-main {
  max-width: 620px;
}

.projects-hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--color-white);
  margin: 14px 0 16px;
  letter-spacing: -0.02em;
}

.projects-hero-desc {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.projects-hero-tagline {
  border-left: 2px solid var(--color-orange-brand);
  padding-left: 24px;
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.4;
  flex-shrink: 0;
}

.projects-stats-float {
  position: relative;
  z-index: 5;
  margin-top: -70px;
  margin-bottom: 40px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px 36px;
}

@media (max-width: 900px) {
  .projects-hero-tagline {
    display: none;
  }
}

@media (max-width: 640px) {
  .projects-stats-float {
    padding: 24px;
  }
}

/* Video Filter + Search Row */
.video-filter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.video-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.video-search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-white);
  border: 1px solid var(--color-navy-accent);
  border-radius: var(--radius-full);
  padding: 9px 18px;
  color: var(--color-text-gray);
  min-width: 220px;
}

.video-search-box i {
  font-size: 0.8rem;
}

.video-search-box input {
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  width: 100%;
  color: var(--color-text-dark);
  background: transparent;
}

/* Video Project Cards (light card style) */
.video-project-card {
  background: var(--color-white);
  border: 1px solid var(--color-navy-accent);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

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

.video-project-card.hidden {
  display: none;
}

.video-project-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--color-navy-dark);
}

.video-project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-normal);
}

.video-project-card:hover .video-project-thumb img {
  transform: scale(1.06);
}

.video-project-duration {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(15, 23, 42, 0.75);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.video-project-info {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.video-project-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy-medium);
  margin-bottom: 4px;
}

.video-project-meta {
  font-size: 0.8rem;
  color: var(--color-text-gray);
}

.video-project-arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-navy-accent);
  background: none;
  color: var(--color-navy-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.video-project-card:hover .video-project-arrow {
  background: var(--color-orange-brand);
  border-color: var(--color-orange-brand);
  color: var(--color-white);
}

/* Trust bar (icon row) */
.trust-bar {
  background: var(--color-white);
  border-top: 1px solid var(--color-navy-accent);
  padding: 30px 0;
}

.trust-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-navy-medium);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
}

.trust-item i {
  color: var(--color-orange-brand);
  font-size: 1.2rem;
}

/* CTA bar (slim horizontal) */
.cta-bar {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-navy-accent);
  border-bottom: 1px solid var(--color-navy-accent);
  padding: 28px 0;
}

.cta-bar-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-bar-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cta-bar-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-orange-brand);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.cta-bar-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy-medium);
  margin-bottom: 2px;
}

.cta-bar-desc {
  font-size: 0.9rem;
  color: var(--color-text-gray);
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr));
  gap: 20px;
}

.project-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: none;
  aspect-ratio: 4/3;
  transition: opacity 0.3s ease, transform 0.3s ease;
  border: none;
}

.project-item:hover {
  transform: scale(1.015);
}

.project-item.hidden {
  display: none;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 20%, rgba(0,0,0,0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: 2;
}

.project-item:hover .project-overlay {
  opacity: 1;
}

.project-item:hover .project-img {
  transform: scale(1.04);
}

.project-category {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--color-orange-brand);
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 4px;
}

.project-name {
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 8px;
}

.project-detail-btn {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-gray);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.project-detail-btn i {
  display: none; /* No icons */
}

/* Video Gallery Section */
.video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr));
  gap: 24px;
}

.video-thumb-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
  background: var(--color-navy-dark);
  border: 1px solid var(--color-navy-accent);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.video-thumb-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-orange-brand);
}

.video-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-normal);
}

.video-thumb-item:hover .video-thumb-img {
  transform: scale(1.05);
}

.video-thumb-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: 1;
}

.video-thumb-item:hover::after {
  opacity: 1;
}

.video-thumb-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(245, 146, 30, 0.85);
  border: 2px solid var(--color-white);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0.9;
  transition: opacity var(--transition-fast), transform var(--transition-fast), background var(--transition-fast);
  z-index: 2;
}

.video-thumb-play i {
  margin-left: 3px;
}

.video-thumb-item:hover .video-thumb-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--color-orange-brand);
}

.video-thumb-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 14px 16px;
  background: rgba(15, 23, 42, 0.92);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 2;
  line-height: 1.3;
}

/* Site Photo Gallery Section */
.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 20px;
}

.photo-thumb-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 1px solid var(--color-navy-accent);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.photo-thumb-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-orange-brand);
}

.photo-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-normal);
}

.photo-thumb-item:hover .photo-thumb-img {
  transform: scale(1.08);
}

.photo-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.35);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.photo-thumb-item:hover .photo-thumb-overlay {
  opacity: 1;
}

.photo-thumb-caption-bar {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 28px 16px 12px;
  background: linear-gradient(to top, rgba(15,23,42,0.88), rgba(15,23,42,0));
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 1;
  pointer-events: none;
}

/* Lightbox (shared: video + photo) */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.94);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 960px;
  width: 100%;
  text-align: center;
}

.lightbox-content video,
.lightbox-content img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  background: #000;
}

.lightbox-caption {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-top: 16px;
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10000;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--color-orange-brand);
}

/* Contact Page Styles */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
}

.contact-info-panel {
  background: var(--color-bg-alt);
  color: var(--color-text-dark);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: none;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-panel h3 {
  color: var(--color-text-dark);
  font-size: 1.8rem;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 0;
}

.contact-info-panel h3::after {
  display: none;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
}

.contact-info-icon {
  display: none; /* Typography focus - remove decorative icons */
}

.contact-info-text h4 {
  font-size: 0.85rem;
  color: var(--color-text-gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.contact-info-text p, .contact-info-text a {
  color: var(--color-text-dark);
  font-size: 1.05rem;
  margin-bottom: 0;
}

.contact-info-text a:hover {
  color: var(--color-orange-brand);
}

.contact-social-links {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.social-btn {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--color-orange-brand);
  display: inline-flex;
  border: none;
  font-size: 0.95rem;
  font-family: var(--font-heading);
  font-weight: 500;
  gap: 6px;
  padding: 0;
}

.social-btn i {
  /* display: none; */ /* removed to show icons */
}

.social-btn::after {
  /* content: '>'; */ /* removed */
}

.social-btn:hover {
  text-decoration: underline;
  background: transparent;
  box-shadow: none;
}

.contact-form-panel {
  background: var(--color-bg-alt);
  border: none;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: none;
}

.contact-form-panel h3 {
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr; /* Stack fields clean */
  gap: 20px;
  margin-bottom: 24px;
}

.form-group-full {
  grid-column: span 1;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--color-text-gray);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-navy-accent);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  color: var(--color-text-dark);
  background: var(--color-white);
}

.form-control::placeholder {
  color: var(--color-text-muted);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2386868b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
  padding-right: 40px;
}

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

.map-section {
  padding-top: 0;
}

.map-container {
  height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: none;
  border: 1px solid var(--color-navy-accent);
}

/* Elegant Mock Google Map Styling */
.mock-map {
  width: 100%;
  height: 100%;
  background-color: #0c0c0d;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mock-map-bg {
  position: absolute;
  width: 150%;
  height: 150%;
  opacity: 0.12;
  background-image: 
    radial-gradient(circle at 30% 20%, transparent 120px, #424245 120px, #424245 122px, transparent 122px),
    radial-gradient(circle at 75% 65%, transparent 220px, #424245 220px, #424245 222px, transparent 222px),
    linear-gradient(45deg, transparent 49%, #424245 49%, #424245 51%, transparent 51%),
    linear-gradient(-45deg, transparent 49%, #424245 49%, #424245 51%, transparent 51%);
  background-size: 80px 80px, 120px 120px, 200px 200px, 200px 200px;
}

.mock-map-pin {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mock-map-pin-icon {
  width: 44px;
  height: 44px;
  background-color: var(--color-white);
  color: var(--color-navy-dark);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  border: 2px solid var(--color-navy-accent);
}

.mock-map-pin-shadow {
  display: none;
}

.mock-map-card {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 10;
  background: var(--color-bg-panel);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  max-width: 320px;
  border: 1px solid var(--color-navy-accent);
}

.mock-map-card h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--color-white);
}

.mock-map-card p {
  font-size: 0.85rem;
  color: var(--color-text-gray);
  margin-bottom: 12px;
}

.mock-map-card a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--color-orange-light);
}

/* Call to Action Banner */
.cta-banner {
  background-color: var(--color-bg-base);
  color: var(--color-white);
  position: relative;
  border-top: 1px solid var(--color-navy-accent);
  border-bottom: 1px solid var(--color-navy-accent);
}

.cta-banner::before {
  display: none;
}

.cta-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.cta-text {
  max-width: 650px;
}

.cta-title {
  font-size: 2.5rem;
  color: var(--color-white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.cta-desc {
  font-size: 1.2rem;
  color: var(--color-text-gray);
  margin-bottom: 0;
}

/* Footer Section */
.footer {
  background-color: var(--color-bg-base);
  color: var(--color-text-gray);
  padding: 60px 0 30px;
  border-top: 1px solid var(--color-navy-accent);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 24px;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  opacity: 1;
  margin-bottom: 20px;
}

.footer-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 0;
}

.footer-title::after {
  display: none; /* Remove redlines */
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  opacity: 1;
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.footer-links a::before {
  display: none; /* Remove chevron prefixes */
}

.footer-links a:hover {
  opacity: 1;
  color: var(--color-white);
  padding-left: 0;
}

.footer-contact-item {
  display: flex;
  gap: 8px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.footer-contact-item i {
  display: none; /* Remove icons */
}

.footer-bottom {
  border-top: 1px solid var(--color-navy-accent);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  opacity: 1;
  color: var(--color-text-gray);
  margin-bottom: 0;
}

.footer-credit {
  display: inline-block;
  margin-left: 6px;
  padding-left: 12px;
  border-left: 1px solid var(--color-navy-accent);
  color: var(--color-navy-medium);
  font-weight: 600;
}

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

.footer-bottom-links {
  display: flex;
  gap: 20px;
  font-size: 0.8rem;
}

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

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Intersection Observer Reveal on Scroll classes - Disabled per user request */
.reveal, .reveal-left, .reveal-right {
  opacity: 1;
  transform: none;
}

/* Mobile Responsiveness Breakpoints */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .md-profile-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .md-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }
  .hero-features-bar {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
    padding: 20px;
    gap: 15px;
  }
  .services-tabs-container {
    grid-template-columns: 1fr;
  }
  .services-tab-list {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 8px;
    white-space: nowrap;
  }
  .services-tab-btn {
    flex: 0 0 auto;
    padding: 10px 16px;
  }
  .services-tab-content-wrapper {
    padding: 0;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }
  .section {
    padding: var(--section-padding-mobile);
  }
  .logo-img {
    height: 56px;
  }
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  .hero-desc {
    font-size: 1.1rem;
    color: var(--color-navy-dark);
    opacity: 0.9;
    margin-bottom: 24px;
  }
  .hero-geometric {
    height: auto;
    flex-direction: column;
    padding-top: 0;
  }
  .hero-bg-image {
    position: relative;
    width: 100%;
    height: 350px;
  }
  .hero-geometric-overlay {
    position: relative;
    width: 100%;
    background: var(--color-white);
    padding: 60px 5%;
    text-align: center;
    justify-content: center;
  }
  .hero-content {
    text-align: center;
    color: var(--color-navy-dark);
  }
  .hero-content .text-navy {
    color: var(--color-navy-dark);
  }
  .title-accent-line {
    margin: 20px auto;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-arrow {
    top: 175px;
  }
  .hero-dots {
    top: 310px;
    bottom: auto;
  }

  .features-grid-5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .feature-item-light {
    border-right: none;
    padding: 0;
  }
  .feature-item-light:last-child {
    grid-column: span 2;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-title {
    font-size: 2.25rem;
  }
  .menu-toggle {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-navy-dark);
    flex-direction: column;
    padding: 90px 22px 40px;
    gap: 20px;
    align-items: stretch;
    text-align: left;
    transform: translateY(-100%); /* Apple menu drop down */
    transition: transform var(--transition-normal);
    z-index: 999;
    border-top: none;
  }
  .nav-menu.open {
    transform: translateY(0);
  }
  .nav-menu .nav-link {
    color: var(--color-white);
    opacity: 0.9;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 0;
    width: 100%;
  }
  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active {
    color: var(--color-orange-light);
    opacity: 1;
  }
  .nav-menu .nav-link::after {
    display: none;
  }
  .nav-cta {
    margin-left: 0;
    margin-top: 10px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group-full {
    grid-column: span 1;
  }
  .map-container {
    height: 350px;
  }
  .mock-map-card {
    top: 20px;
    left: 20px;
    right: 20px;
    max-width: calc(100% - 40px);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  .service-card, .why-card, .panel-3d {
    padding: 32px 24px;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .features-grid-5 {
    grid-template-columns: 1fr;
  }
  .feature-item-light:last-child {
    grid-column: span 1;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* --- 3D Attractive Enhancements --- */

/* 1. 3D Cards & Panels Hover */
.service-card, .why-card, .panel-3d {
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: all 0.3s ease-out;
}
.service-card:hover, .why-card:hover, .panel-3d:hover {
  transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 10px 15px rgba(0, 0, 0, 0.05);
  border-color: var(--color-orange-brand) !important;
}
.service-card .card-icon-circle, .why-card .why-header {
  transform: translateZ(40px);
}
.service-card .card-title, .service-card .card-num, .why-card .why-desc, .panel-3d > * {
  transform: translateZ(25px);
}
.service-card .card-chevron-arrow {
  transform: translateZ(30px);
}

/* 2. Floating Animation for Hero Images */
@keyframes floatAnimation {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}
.hero-image-wrapper img, .md-image-wrapper img {
  animation: floatAnimation 4s ease-in-out infinite;
}

/* 4. 3D Depth Shadows for Features Bar */
.hero-features-bar {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 15px rgba(14, 165, 233, 0.1);
  transform: translateZ(0);
}
.hero-features-bar:hover {
  box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(14, 165, 233, 0.2);
}
