/* ============================================
   BCR ABL Consulting Services Inc.
   Professional Stylesheet
   ============================================ */

/* ----- Google Fonts ----- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ----- CSS Custom Properties ----- */
:root {
  /* Primary Colors */
  --color-primary-dark: #0b1d3a;
  --color-primary: #122b4d;
  --color-primary-mid: #1a3a5f;
  --color-primary-light: #234b72;

  /* Secondary & Accent */
  --color-secondary: #0d7377;
  --color-secondary-light: #0f8a8f;
  --color-accent: #c9a84c;
  --color-accent-light: #dbbd5e;
  --color-accent-dark: #a8882e;

  /* Neutrals */
  --color-white: #ffffff;
  --color-off-white: #f8f9fc;
  --color-light: #f1f3f7;
  --color-light-mid: #e2e6ed;
  --color-mid: #c5ccd8;
  --color-gray: #8f97a8;
  --color-text-light: #64748b;
  --color-text-body: #475569;
  --color-text-dark: #1e293b;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0b1d3a 0%, #122b4d 50%, #1a3a5f 100%);
  --gradient-accent: linear-gradient(135deg, #c9a84c 0%, #dbbd5e 50%, #c9a84c 100%);
  --gradient-hero: linear-gradient(135deg, #0b1d3a 0%, #0d2a4a 40%, #0d7377 100%);
  --gradient-card: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(248,249,252,0.98) 100%);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Monaco, monospace;

  /* Spacing */
  --section-padding: 6rem 0;
  --container-width: 1200px;
  --container-narrow: 900px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(11, 29, 58, 0.06), 0 1px 2px rgba(11, 29, 58, 0.08);
  --shadow-md: 0 4px 16px rgba(11, 29, 58, 0.08), 0 2px 8px rgba(11, 29, 58, 0.06);
  --shadow-lg: 0 10px 40px rgba(11, 29, 58, 0.1), 0 4px 16px rgba(11, 29, 58, 0.06);
  --shadow-xl: 0 20px 60px rgba(11, 29, 58, 0.12), 0 8px 24px rgba(11, 29, 58, 0.08);
  --shadow-card: 0 2px 12px rgba(11, 29, 58, 0.06), 0 1px 4px rgba(11, 29, 58, 0.04);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition: 0.35s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-body);
  background-color: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
  color: var(--color-secondary-light);
}

ul, ol {
  list-style: none;
}

/* ----- Typography ----- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  line-height: 1.25;
  font-weight: 600;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1.25rem;
}

p:last-child {
  margin-bottom: 0;
}

/* ----- Container ----- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: var(--container-narrow);
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.925rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--color-primary-dark);
  border-color: var(--color-accent);
  box-shadow: 0 4px 14px rgba(201, 168, 76, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
  color: var(--color-primary-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
  color: var(--color-white);
  transform: translateY(-2px);
}

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

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

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

/* ----- Section Styling ----- */
.section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(201, 168, 76, 0.08);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ----- Navigation ----- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 29, 58, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(11, 29, 58, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
}

.nav-logo:hover {
  color: var(--color-accent);
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--color-primary-dark);
  font-weight: 800;
  font-family: var(--font-heading);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ----- Hero Section ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 10% 30%, rgba(13, 115, 119, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 500px 500px at 80% 70%, rgba(201, 168, 76, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 300px 300px at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: float-particle 20s infinite;
}

@keyframes float-particle {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) translateX(100px); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-accent-light);
  margin-bottom: 1.75rem;
  letter-spacing: 0.02em;
}

.hero-title {
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.hero-title .highlight {
  color: var(--color-accent);
}

.hero-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.25rem;
}

/* ----- Services Section ----- */
.services {
  background: var(--color-off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-light);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-light-mid);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(201, 168, 76, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gradient-accent);
  color: var(--color-primary-dark);
}

.service-card-title {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.service-card-text {
  font-size: 0.925rem;
  color: var(--color-text-body);
  line-height: 1.7;
}

/* ----- About Section ----- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

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

.about-image-placeholder {
  text-align: center;
  color: rgba(255, 255, 255, 0.1);
  font-size: 4rem;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1.1;
}

.about-image-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), transparent 50%);
}

.about-experience-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gradient-accent);
  color: var(--color-primary-dark);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-experience-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
}

.about-experience-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.about-content p {
  margin-bottom: 1rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.925rem;
  color: var(--color-text-dark);
}

.about-feature-icon {
  color: var(--color-secondary);
  font-weight: 700;
}

/* ----- Why Us Section ----- */
.why-us {
  background: var(--gradient-primary);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 400px 400px at 20% 80%, rgba(13, 115, 119, 0.1) 0%, transparent 70%),
    radial-gradient(ellipse 300px 300px at 80% 20%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.why-us .section-title,
.why-us .section-subtitle {
  color: var(--color-white);
}

.why-us .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.why-us .section-tag {
  background: rgba(201, 168, 76, 0.15);
  color: var(--color-accent-light);
}

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

.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.why-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.why-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.why-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* ----- CTA Section ----- */
.cta {
  background: var(--color-off-white);
  text-align: center;
}

.cta-box {
  background: var(--gradient-hero);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 500px 300px at 30% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 70% 50%, rgba(13, 115, 119, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
}

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

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

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ----- Footer ----- */
.footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-fast);
}

.footer-link:hover {
  color: var(--color-accent);
  padding-left: 3px;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact-icon {
  color: var(--color-accent);
  flex-shrink: 0;
  font-weight: 700;
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-link {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
  transition: color var(--transition-fast);
}

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

/* ============================================
   INNER PAGE STYLES
   ============================================ */

/* ----- Page Hero / Banner ----- */
.page-hero {
  background: var(--gradient-primary);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 400px 300px at 80% 30%, rgba(13, 115, 119, 0.1) 0%, transparent 70%),
    radial-gradient(ellipse 300px 300px at 20% 70%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.page-hero-title {
  color: var(--color-white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.page-hero-breadcrumb {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.page-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}

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

.page-hero-breadcrumb span {
  color: var(--color-accent);
}

/* ----- About Page ----- */
.mission-vision {
  background: var(--color-off-white);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mission-card {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-light);
}

.mission-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.mission-card h3 {
  margin-bottom: 0.75rem;
}

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

/* ----- Values Section ----- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--color-off-white);
  border: 1px solid var(--color-light);
  transition: all var(--transition);
}

.value-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.value-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.value-card h4 {
  margin-bottom: 0.5rem;
}

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

/* ----- Services Page Extended ----- */
.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2rem 0;
}

.service-detail-card:nth-child(even) {
  direction: rtl;
}

.service-detail-card:nth-child(even) .service-detail-content {
  direction: ltr;
}

.service-detail-card:not(:last-child) {
  border-bottom: 1px solid var(--color-light-mid);
  margin-bottom: 2rem;
}

.service-detail-visual {
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.08);
  font-size: 3.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

.service-detail-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), transparent 50%);
}

.service-detail-icon {
  position: relative;
  z-index: 2;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.service-detail-content h3 {
  margin-bottom: 0.75rem;
}

.service-detail-content p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.service-detail-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.service-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--color-text-body);
}

.service-detail-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  margin-top: 0.6rem;
  flex-shrink: 0;
}

/* ----- Contact Page ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: var(--color-off-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-light);
  transition: all var(--transition);
}

.contact-info-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.contact-info-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--color-primary-dark);
  font-weight: 700;
}

.contact-info h4 {
  font-size: 1rem;
}

.contact-info-detail {
  font-size: 0.925rem;
  color: var(--color-text-body);
  margin-left: calc(44px + 0.75rem);
}

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

.contact-info-detail a:hover {
  color: var(--color-secondary);
}

/* ----- Contact Form ----- */
.contact-form-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-light);
}

.contact-form-wrapper h3 {
  margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
  font-size: 0.925rem;
  color: var(--color-text-light);
  margin-bottom: 1.75rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 0.35rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.925rem;
  color: var(--color-text-dark);
  background: var(--color-off-white);
  border: 1.5px solid var(--color-light-mid);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
  background: var(--color-white);
}

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

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

/* ----- Legal Pages (Privacy & Terms) ----- */
.legal-content {
  padding: 4rem 0;
}

.legal-content h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-light);
}

.legal-content h3 {
  font-size: 1.2rem;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.legal-content ul li,
.legal-content ol li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  list-style: disc;
}

.legal-content ol li {
  list-style: decimal;
}

.legal-content strong {
  color: var(--color-text-dark);
  font-weight: 600;
}

.legal-content em {
  font-style: italic;
}

.legal-content a {
  color: var(--color-secondary);
  text-decoration: underline;
}

.legal-header-section {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--color-light-mid);
}

.legal-header-section p {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.legal-header-section strong {
  color: var(--color-text-dark);
}

/* ----- Page Content Sections ----- */
.page-content-section {
  padding: 4rem 0;
}

.page-content-section.alt {
  background: var(--color-off-white);
}

/* ----- Team Section ----- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-light);
  transition: all var(--transition);
}

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

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--font-heading);
  font-weight: 700;
}

.team-name {
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.team-role {
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 500;
}

.team-bio {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-top: 0.75rem;
  line-height: 1.6;
}

/* ----- Animations ----- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(11, 29, 58, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .hero-stats .hero-stat:last-child {
    grid-column: 1 / -1;
  }

  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .service-detail-card { grid-template-columns: 1fr; gap: 1.5rem; }
  .service-detail-card:nth-child(even) { direction: ltr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cta-box { padding: 3rem 1.5rem; }

  .about-experience-badge {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 1rem;
  }

  .team-grid { grid-template-columns: 1fr; }

  .section { padding: 4rem 0; }
  .page-content-section { padding: 3rem 0; }
  .legal-content { padding: 3rem 0; }
}

@media (max-width: 480px) {
  :root { --section-padding: 3rem 0; }

  .container { padding: 0 1.25rem; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats .hero-stat:last-child { grid-column: 1; }

  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}

/* ----- Print Styles ----- */
@media print {
  .nav, .footer, .cta { display: none; }
  .page-hero { padding: 2rem 0; background: none; }
  .page-hero-title { color: #000; }
  .hero { min-height: auto; padding: 4rem 0; }
}
