.elementor-738 .elementor-element.elementor-element-b2657da{--display:flex;}/* Start custom CSS for container, class: .elementor-element-b2657da *//* ===========================
   BRISTOL PHARMACY STYLES
   Modern, Bold, Distinctive
   =========================== */

/* --- CSS Variables --- */
:root {
  /* Brand Colors - Red & Gold */
  --bristol-red: #e63329;
  --bristol-red-dark: #c4271e;
  --bristol-red-light: #ff4d42;
  --bristol-gold: #c9a962;
  --bristol-gold-dark: #a88d4a;
  --bristol-gold-light: #dfc98a;
  
  /* Neutrals */
  --white: #ffffff;
  --off-white: #faf9f7;
  --cream: #f5f3ef;
  --light-gray: #e8e6e2;
  --gray: #9a9590;
  --dark-gray: #4a4744;
  --charcoal: #2d2a27;
  --black: #1a1817;
  
  /* Semantic */
  --text-primary: var(--charcoal);
  --text-secondary: var(--dark-gray);
  --text-muted: var(--gray);
  --bg-primary: var(--off-white);
  --bg-secondary: var(--cream);
  
  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.15);
  
  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --duration-slow: 400ms;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bristol-red);
  color: var(--white);
  padding: var(--space-sm) var(--space-lg);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-weight: 600;
  z-index: 10000;
  transition: top var(--duration-normal) var(--ease-out);
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--bristol-gold);
  outline-offset: 2px;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* --- Page Animation --- */
.bristol-homepage {
  animation: fadeIn 0.6s var(--ease-out) forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  background: 
    url('https://rxbristolokc.com/wp-content/uploads/2025/12/preston_gray_Minimalist_vector-style_illustrated_hero_landsca_712b7211-eecf-4dc5-ad50-353c4f21e83a_0.png') center bottom/cover no-repeat;
  color: var(--charcoal);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    105deg,
    rgba(250, 248, 245, 0.97) 0%,
    rgba(250, 248, 245, 0.92) 30%,
    rgba(250, 248, 245, 0.6) 50%,
    rgba(250, 248, 245, 0) 65%
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* --- Header --- */
.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 100;
}

.logo {
  display: block;
  transition: transform var(--duration-normal) var(--ease-out);
}

.logo:hover {
  transform: scale(1.02);
}

.logo:focus {
  outline: 3px solid var(--bristol-gold);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

.logo img {
  height: 80px;
  width: auto;
}

/* --- Navigation --- */
.nav {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.nav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: flex-end;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0.65rem 1.25rem;
  height: 42px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(139, 90, 60, 0.2);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  box-shadow: 0 2px 8px rgba(139, 90, 60, 0.08);
  white-space: nowrap;
}

.nav-btn:hover {
  background: var(--bristol-red);
  border-color: var(--bristol-red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 51, 41, 0.25);
}

.nav-btn:focus {
  outline: 2px solid var(--bristol-red);
  outline-offset: 2px;
}

.arrow {
  font-size: 0.75rem;
  transition: transform var(--duration-fast);
}

/* --- Dropdown --- */
.nav-dropdown {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: -15px;
}

.dropdown-toggle {
  display: none;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 200px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: var(--space-sm) 0;
  margin-top: var(--space-sm);
  z-index: 1000;
  animation: dropdownSlide 0.2s var(--ease-out);
  border: 1px solid rgba(139, 90, 60, 0.15);
}

@keyframes dropdownSlide {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 15px;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-toggle:checked ~ .dropdown-menu {
  display: block;
}

.dropdown-toggle:checked ~ .dropdown-trigger .arrow {
  transform: rotate(180deg);
}

.dropdown-menu a {
  display: block;
  padding: var(--space-sm) var(--space-lg);
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all var(--duration-fast);
}

.dropdown-menu a:hover {
  background: var(--cream);
  color: var(--bristol-red);
  padding-left: calc(var(--space-lg) + 4px);
}

/* --- Mobile Nav Toggle --- */
.nav-toggle {
  display: none;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(139, 90, 60, 0.2);
  border-radius: var(--radius-md);
  cursor: pointer;
  z-index: 1001;
  box-shadow: 0 2px 8px rgba(139, 90, 60, 0.08);
}

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--duration-normal) var(--ease-out);
}

.nav-hamburger span:nth-child(1) { margin-bottom: 5px; }
.nav-hamburger span:nth-child(2) { margin-bottom: 5px; }

/* --- Hero Content --- */
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 700px;
  padding: var(--space-4xl) 0;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  color: var(--charcoal);
  animation: slideUp 0.8s var(--ease-out) 0.2s both;
}

.hero-tagline span {
  color: var(--bristol-red);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--dark-gray);
  max-width: 540px;
  margin-bottom: var(--space-xl);
  animation: slideUp 0.8s var(--ease-out) 0.4s both;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  animation: slideUp 0.8s var(--ease-out) 0.6s both;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--duration-normal) var(--ease-out);
  cursor: pointer;
}

.btn-primary {
  background: var(--bristol-red);
  color: var(--white);
  border: 2px solid var(--bristol-red);
  box-shadow: 0 4px 14px rgba(230, 51, 41, 0.3);
}

.btn-primary:hover {
  background: var(--bristol-red-dark);
  border-color: var(--bristol-red-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(230, 51, 41, 0.35);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.9);
  color: var(--charcoal);
  border: 2px solid rgba(139, 90, 60, 0.25);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: var(--white);
  border-color: var(--bristol-red);
  color: var(--bristol-red);
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.btn-large {
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1rem;
}

.btn:focus {
  outline: 3px solid var(--bristol-gold);
  outline-offset: 2px;
}

/* --- Scroll Indicator --- */
.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  animation: fadeIn 1s var(--ease-out) 1s both;
}

.hero-scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid var(--charcoal);
  border-radius: 12px;
  position: relative;
  opacity: 0.5;
}

.hero-scroll-indicator span::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--bristol-red);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

/* ===========================
   SECTIONS
   =========================== */
.section {
  padding: var(--space-4xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header-left {
  text-align: left;
}

.section-header-light {
  color: var(--white);
}

.section-header-light .section-label {
  color: var(--bristol-gold-light);
}

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--bristol-red);
  margin-bottom: var(--space-sm);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.section-header-light h2 {
  color: var(--white);
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header-left .section-desc {
  margin: 0;
}

/* ===========================
   PROCESS SECTION
   =========================== */
.section-process {
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 16.67%;
  right: 16.67%;
  height: 2px;
  background: linear-gradient(90deg, var(--bristol-gold), var(--bristol-red), var(--bristol-gold));
  opacity: 0.3;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--bristol-gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, var(--bristol-red), var(--bristol-red-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(230, 51, 41, 0.25);
  position: relative;
  z-index: 1;
}

.step-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--white);
}

.process-step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.process-step p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* ===========================
   SERVICES SECTION
   =========================== */
.section-services {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.service-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  border: 2px solid transparent;
  transition: all var(--duration-normal) var(--ease-out);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--bristol-red);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card:focus {
  outline: 3px solid var(--bristol-gold);
  outline-offset: 2px;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--cream), var(--light-gray));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  transition: all var(--duration-normal);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--bristol-red), var(--bristol-red-dark));
}

.service-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--charcoal);
  transition: all var(--duration-normal);
}

.service-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  transition: all var(--duration-normal);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--bristol-red), var(--bristol-red-dark));
}

.service-card:hover .service-icon svg {
  stroke: var(--white);
}

.service-card:hover .service-icon img {
  filter: brightness(0) invert(1);
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--space-md);
}

.service-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--bristol-red);
  transition: all var(--duration-fast);
}

.service-card:hover .service-link {
  transform: translateX(4px);
}

/* ===========================
   BENEFITS SECTION
   =========================== */
.section-benefits {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);
  color: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all var(--duration-normal) var(--ease-out);
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--bristol-gold);
  transform: translateY(-4px);
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.benefit-card h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--white);
}

.benefit-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ===========================
   PROVIDERS SECTION
   =========================== */
.section-providers {
  background: var(--white);
}

.providers-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.providers-content .section-desc {
  color: var(--text-secondary);
}

.specialty-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: var(--space-sm) var(--space-md);
  background: var(--cream);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: all var(--duration-fast);
}

.tag:hover {
  background: var(--bristol-red);
  border-color: var(--bristol-red);
  color: var(--white);
  transform: translateY(-2px);
}

.providers-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.feature-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--cream);
  border-radius: var(--radius-lg);
  transition: all var(--duration-fast);
}

.feature-item:hover {
  background: var(--light-gray);
}

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-item strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.feature-item p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* ===========================
   VALUES SECTION
   =========================== */
.section-values {
  background: var(--cream);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--duration-normal);
  border: 1px solid rgba(139, 90, 60, 0.1);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.value-header {
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.value-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.value-card-care .value-number {
  background: linear-gradient(135deg, var(--bristol-red), var(--bristol-red-dark));
  color: var(--white);
}

.value-card-service .value-number {
  background: linear-gradient(135deg, var(--bristol-gold), var(--bristol-gold-dark));
  color: var(--white);
}

.value-header-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 var(--space-xs) 0;
  color: var(--charcoal);
}

.value-subtitle {
  font-size: 0.875rem;
  margin: 0;
  color: var(--gray);
}

.value-list {
  padding: var(--space-xl);
  background: var(--white);
}

.value-list li {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--light-gray);
}

.value-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.value-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: var(--radius-md);
}

.value-card-care .value-list strong,
.value-card-service .value-list strong {
  display: block;
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: var(--space-xs);
}

.value-card-care .value-list p,
.value-card-service .value-list p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.values-formula {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  padding: var(--space-xl) var(--space-2xl);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(139, 90, 60, 0.1);
}

.formula-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.formula-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: var(--radius-lg);
}

.formula-text {
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.formula-result .formula-icon {
  background: linear-gradient(135deg, var(--bristol-red), var(--bristol-red-dark));
}

.formula-result .formula-text {
  color: var(--bristol-red);
}

.formula-op {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray);
}

/* ===========================
   CTA SECTION
   =========================== */
.section-cta {
  background: linear-gradient(135deg, var(--bristol-red) 0%, var(--bristol-red-dark) 100%);
  color: var(--white);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.section-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--white);
}

.section-cta p {
  font-size: 1.0625rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: var(--space-xl);
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.section-cta .btn-primary {
  background: var(--white);
  color: var(--bristol-red);
  border-color: var(--white);
}

.section-cta .btn-primary:hover {
  background: var(--bristol-gold);
  border-color: var(--bristol-gold);
  color: var(--charcoal);
}

.section-cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
}

.section-cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: var(--space-lg);
}

.footer-brand p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bristol-gold);
  margin-bottom: var(--space-lg);
}

.footer-links a {
  display: block;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-xs) 0;
  transition: all var(--duration-fast);
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-contact p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-sm);
}

.footer-contact strong {
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer-legal a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--duration-fast);
}

.footer-legal a:hover {
  color: var(--white);
}

/* ===========================
   RESPONSIVE STYLES
   =========================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .providers-layout {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Mobile Navigation */
  .nav-hamburger {
    display: flex;
  }
  
  .nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: var(--cream);
    z-index: 1000;
    overflow-y: auto;
  }
  
  .nav-toggle:checked ~ .nav {
    display: flex;
    animation: fadeIn 0.3s var(--ease-out);
  }
  
  .nav-toggle:checked ~ .nav-hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .nav-toggle:checked ~ .nav-hamburger span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle:checked ~ .nav-hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .nav-inner {
    width: 100%;
    padding: 100px 24px 40px;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }
  
  .nav-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    background: var(--charcoal);
    color: var(--white);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
  }
  
  .nav-dropdown {
    width: 100%;
    max-width: 300px;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  
  .nav-dropdown:hover .dropdown-menu {
    display: none;
  }
  
  .dropdown-toggle:checked ~ .dropdown-menu {
    display: block;
  }
  
  .dropdown-menu {
    position: static;
    margin-top: var(--space-sm);
    box-shadow: none;
    border: 1px solid var(--light-gray);
  }
  
  /* Hero adjustments */
  .hero::before {
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.9) 50%,
      rgba(255, 255, 255, 0.7) 80%,
      rgba(255, 255, 255, 0.4) 100%
    );
  }
  
  .hero-content {
    padding: var(--space-2xl) 0;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
  
  /* Process Section */
  .process-steps {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .process-steps::before {
    display: none;
  }
  
  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  /* Benefits */
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  /* Values */
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .values-formula {
    flex-wrap: wrap;
    gap: var(--space-md);
  }
  
  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }
  
  .footer-brand {
    max-width: none;
  }
  
  .footer-logo {
    margin: 0 auto var(--space-lg);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 60px;
  }
  
  .section {
    padding: var(--space-3xl) 0;
  }
  
  .container {
    padding: 0 var(--space-md);
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

/* ===========================
   ABOUT PAGE STYLES
   =========================== */

/* About Hero */
.about-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.about-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(45, 42, 39, 0.95) 0%,
    rgba(45, 42, 39, 0.7) 40%,
    rgba(45, 42, 39, 0.3) 70%,
    transparent 100%
  );
}

.about-hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.about-hero-content {
  padding: var(--space-4xl) 0 var(--space-3xl);
  max-width: 700px;
}

.about-hero-content .section-label {
  color: var(--bristol-gold);
}

.about-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.about-hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 600px;
}

/* Mission Section */
.section-mission {
  background: var(--white);
  padding: var(--space-4xl) 0;
}

.mission-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.mission-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--charcoal);
  margin-bottom: var(--space-xl);
}

.mission-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.mission-text p:last-child {
  margin-bottom: 0;
}

.highlight-card {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid rgba(139, 90, 60, 0.1);
}

.highlight-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.highlight-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: var(--space-md);
}

.highlight-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* About Values Section */
.section-values-about {
  background: var(--cream);
  padding: var(--space-4xl) 0;
}

.values-grid-about {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.value-card-about {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(139, 90, 60, 0.1);
  transition: all var(--duration-normal) var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.value-card-about:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.value-number-badge {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--bristol-red), var(--bristol-red-dark));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.value-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
}

.value-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.value-content p:last-child {
  margin-bottom: 0;
}

.value-provider-note {
  font-size: 0.875rem !important;
  color: var(--gray) !important;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--light-gray);
  margin-top: auto;
}

.value-provider-note strong {
  color: var(--bristol-gold-dark);
}

/* About Page Header */
.bristol-about-page .bristol-header {
  background: var(--charcoal);
  border-bottom: 4px solid var(--bristol-red);
}

.bristol-about-page .nav-btn {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.bristol-about-page .nav-btn:hover {
  background: var(--bristol-red);
  border-color: var(--bristol-red);
  color: var(--white);
}

.bristol-about-page .nav-btn.active {
  background: var(--bristol-red);
  border-color: var(--bristol-red);
  color: var(--white);
}

.bristol-about-page .logo img {
  height: 60px;
}

/* About Page Responsive */
@media (max-width: 1024px) {
  .values-grid-about {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 40vh;
  }
  
  .about-hero-content {
    padding: var(--space-3xl) 0 var(--space-2xl);
  }
  
  .mission-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .values-grid-about {
    grid-template-columns: 1fr;
  }
  
  .value-card-about {
    flex-direction: row;
    align-items: flex-start;
  }
  
  .value-number-badge {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-hero-content h1 {
    font-size: 2rem;
  }
  
  .about-hero-subtitle {
    font-size: 1rem;
  }
  
  .value-card-about {
    flex-direction: column;
  }
}

/* --- Accessibility --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .nav-btn,
  .btn-outline {
    border-width: 3px;
  }
  
  .service-card,
  .benefit-card {
    border-width: 2px;
    border-color: var(--text-primary);
  }
}/* End custom CSS */