/* ============================================
   BridgeGaps Consulting - Global Styles
   Design System: Fylla
   ============================================ */

/* CSS Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-body-01);
  line-height: var(--lh-body-02);
  background-color: var(--color-background);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul {
  margin-left: 50px; 
}
/* CSS Custom Properties (Design Tokens) */
:root {
  /* Brand Colors - BridgePoint Consulting */
  /* Primary Colors */
  --color-deep-navy: #1C2E4A;
  --color-sage-green: #7DAA92;
  
  /* Background & Neutral Colors */
  --color-soft-ivory: #F9F9F7;
  --color-warm-taupe: #C8BBAE;
  
  /* Accent Colors */
  --color-sky-blue: #6BAED6;
  --color-metallic-gold: #C9A45C;
  
  /* Utility Colors */
  --color-white: #FFFFFF;
  --color-black: #0A0A0A;
  
  /* Semantic Aliases for Easy Usage */
  --color-primary: var(--color-deep-navy);
  --color-secondary: var(--color-sage-green);
  --color-background: var(--color-soft-ivory);
  --color-text: var(--color-deep-navy);
  --color-text-muted: var(--color-warm-taupe);
  --color-accent: var(--color-sky-blue);
  --color-premium: var(--color-metallic-gold);
  --color-hover: var(--color-sage-green);
  
  /* Typography Scale */
  --font-display-01: 4.5rem;      /* 72px */
  --font-display-02: 3.5rem;      /* 56px */
  --font-heading-01: 1.125rem;    /* 18px */
  --font-heading-02: 1.5rem;      /* 24px */
  --font-body-01: 1.125rem;       /* 18px */
  --font-body-02: 1rem;           /* 16px */
  --font-caption: 0.875rem;       /* 14px */
  --font-button: 0.875rem;        /* 14px */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  /* Line Heights */
  --lh-display-01: 80px;
  --lh-display-02: 64px;
  --lh-heading-01: 24px;
  --lh-heading-02: 32px;
  --lh-body-01: 28px;
  --lh-body-02: 26px;
  --lh-body-03: 48px;
  --lh-caption: 20px;
  --lh-button: 20px;
  
  /* Font Weights */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  
  /* Spacing Scale (8px base) */
  --space-xs: 0.5rem;    /* 8px */
  --space-sm: 1rem;      /* 16px */
  --space-md: 1.5rem;    /* 24px */
  --space-lg: 2rem;      /* 32px */
  --space-xl: 3rem;      /* 48px */
  --space-2xl: 4rem;     /* 64px */
  --space-3xl: 5rem;     /* 80px */
  --space-4xl: 7.5rem;   /* 120px */
  --space-5xl: 10rem;    /* 160px */
  
  /* Section Spacing */
  --section-vertical: 120px;
  --section-horizontal: 80px;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.08);
  
  /* Transitions */
  --transition-default: 0.2s ease-in-out;
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Layout */
  --container-max: 1440px;
  --container-narrow: 1120px;
  --nav-height: 80px;
}

/* Responsive Typography */
@media (max-width: 1023px) {
  :root {
    --font-display-01: 3.5rem;    /* 56px */
    --font-display-02: 2.25rem;   /* 36px */
    --font-heading-02: 1.25rem;   /* 20px */
    --section-vertical: 80px;
    --section-horizontal: 48px;
  }
}

@media (max-width: 767px) {
  :root {
    --font-display-01: 2.5rem;    /* 40px */
    --font-display-02: 2.25rem;   /* 36px */
    --font-body-01: 1rem;         /* 16px */
    --font-body-02: 0.875rem;     /* 14px */
    --section-vertical: 64px;
    --section-horizontal: 24px;
  }
}

/* Typography Styles */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  margin: 0 0 var(--space-md) 0;
}

h1, .display-01 {
  font-size: var(--font-display-01);
  font-weight: var(--fw-bold);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

@media (max-width: 767px) {
  h1, .display-01 {
    font-size: 2.5rem;
  }
}

.display-02 {
  font-size: var(--font-display-02);
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
}

.heading-01 {
  font-size: var(--font-heading-01);
  line-height: var(--lh-heading-01);
  letter-spacing: 0.1em;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
}

.heading-02 {
  font-size: var(--font-heading-02);
  line-height: var(--lh-heading-02);
  letter-spacing: -0.01em;
  font-weight: var(--fw-semibold);
}

.body-01 {
  font-size: var(--font-body-01);
  line-height: var(--lh-body-01);
  color: var(--color-gray-700);
}

.body-02 {
  font-size: var(--font-body-02);
  line-height: var(--lh-body-02);
  color: var(--color-gray-700);
}

.body-03 {
  font-size: var(--font-body-01);
  line-height: var(--lh-body-01);
  color: var(--color-gray-700);
  max-width: 165ch;
}
.caption {
  font-size: var(--font-caption);
  line-height: var(--lh-caption);
  color: var(--color-gray-400);
  font-weight: var(--fw-medium);
}

p {
  margin-bottom: var(--space-sm);
  max-width: 65ch;
}
.newp {
  
  max-width: 165ch;
}
/* Layout Containers */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-horizontal);
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

/* Section Spacing */
section {
  padding: var(--section-vertical) 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: var(--font-button);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  transition: all var(--transition-default);
  cursor: pointer;
  border: none;
  text-align: center;
  font-family: inherit;
  min-width: 160px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .btn {
    padding: 12px 24px;
    min-width: 140px;
    font-size: 0.8125rem;
  }
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-sage-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-sage-green);
  border: 1px solid var(--color-sage-green);
}

.btn-secondary:hover {
  background-color: var(--color-sage-green);
  color: var(--color-white);
}

.btn-ghost {
  background-color: transparent;
  color: var(--color-sage-green);
  padding: 12px 24px;
  border: none;
}

.btn-ghost:hover {
  text-decoration: underline;
}

/* Card Styles */
.card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-200);
  padding: var(--space-lg);
  transition: all var(--transition-smooth);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

/* Grid Utilities */
.grid {
  display: grid;
  gap: var(--space-md);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1023px) {
  .grid-2, .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Flex Utilities */
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* Image Styles */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.img-rounded {
  border-radius: var(--radius-lg);
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--color-sage-green);
  outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-sm) var(--space-md);
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* Professional Text Utilities */
.text-accent {
  position: relative;
  display: inline-block;
}

.text-accent::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-sage-green);
  opacity: 0.3;
}

.pull-quote {
  font-size: 1.5rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--color-primary);
  padding: var(--space-xl);
  background: var(--color-white);
  border-left: 4px solid var(--color-sage-green);
  margin: var(--space-2xl) 0;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.text-large {
  font-size: 1.25rem;
  line-height: 1.8;
  font-weight: var(--fw-regular);
}

.text-emphasis {
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
}

.decorative-line {
  width: 60px;
  height: 3px;
  background: var(--color-sage-green);
  margin: var(--space-lg) 0;
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--color-text-muted);
}
