/* Pike & Vine Custom Styles */
/* Based on official brand guidelines */

/* Google Fonts Import - Include lighter weights */
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600&family=Roboto:wght@300;400;500&display=swap');

/* Brand Colors */
:root {
  /* Primary Brand Colors */
  --brand-primary: #256D85;      /* Astral - main brand color */
  --brand-light: #47B5FF;        /* Picton Blue - light accent */
  --brand-dark: #06283D;         /* San Juan - dark accent */
  --brand-bg-light: #DFF6FF;     /* Polar - light backgrounds */
  --brand-bg-dark: #244364;      /* Cello - dark backgrounds */
  
  /* Typography Colors */
  --text-primary: #3c4858;
  --text-secondary: #4f5a68;
  --text-tertiary: #5f6b78;
  --text-quaternary: #6c7785;
  --text-body: #333d4b;
  --text-light: #DFF6FF;
  
  /* Functional Colors */
  --success-color: #39c66c;
  --warning-color: #c08c2e;
  --danger-color: #f44336;
  
  /* Legacy Bootstrap compatibility */
  --primary-color: var(--brand-primary);
  --secondary-color: var(--brand-light);
  --text-muted: var(--text-secondary);
  --light-bg: var(--brand-bg-light);
}

/* Typography - Roboto for body text per corrected brand guidelines */
body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 18px;
  font-weight: 400; /* Back to 400 weight */
  line-height: 1.5;
  color: #333d4b;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.25rem; /* 52px - match current site */
  line-height: 1.15;
  font-weight: 600;
  color: #2d2d2d;
}

h2 {
  font-size: 2.25rem; /* 36px - match current site */
  line-height: 1.15;
  font-weight: 600;
  color: #2d2d2d;
}

h3 {
  font-size: 1.75rem; /* 28px - match current site */
  line-height: 1.2;
  font-weight: 600;
  color: #2d2d2d;
}

h4 {
  font-size: 1.375rem; /* 22px */
  line-height: 1.3;
  font-weight: 600;
  color: #2d2d2d;
}

.display-4, .display-5 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
}

/* Mobile Typography */
@media (max-width: 768px) {
  h1 { font-size: 2.375rem; } /* 38px */
  h2 { font-size: 1.875rem; } /* 30px */
  h3 { font-size: 1.5rem; }   /* 24px */
  h4 { font-size: 1.25rem; }  /* 20px */
  
  body {
    font-size: 16px;
  }
  
  .display-4 { font-size: 2.5rem; }
  .display-5 { font-size: 2rem; }
}

/* Header/Navigation - Match current site */
.site-header {
  background-color: #ffffff;
  padding: 25px 0; /* Increased overall header padding */
}

/* Consistent container width across entire site */
.container {
  max-width: 1140px !important;
}

/* Brand standard: Better content breathing with column spacing */
.row-breathing .col-lg-6:first-child,
.row-breathing .col-md-6:first-child {
  padding-right: 2rem; /* Standard spacing for left column */
}

.row-breathing .col-lg-6:last-child,
.row-breathing .col-md-6:last-child {
  padding-left: 2rem; /* Standard spacing for right column */
}

/* Responsive adjustments for breathing space */
@media (max-width: 768px) {
  .row-breathing .col-lg-6:first-child,
  .row-breathing .col-md-6:first-child,
  .row-breathing .col-lg-6:last-child,
  .row-breathing .col-md-6:last-child {
    padding-left: 1rem;
    padding-right: 1rem; /* Reduced spacing on mobile */
  }
}

.navbar {
  padding: 0;
}

.navbar-brand {
  padding: 0;
  margin-right: 0;
}

.logo-img {
  max-width: 302px;
  height: 38px;
  width: auto;
}

.navbar-nav {
  gap: 0; /* Remove gap, use padding instead */
}

.nav-link {
  font-family: 'Work Sans', sans-serif;
  font-size: 18px; /* Increased from 16px */
  font-weight: 600; /* Semi-bold to match production site */
  color: #3c4858 !important; /* Exact color from production site */
  padding: 0.5rem 1.5rem !important; /* Added horizontal padding for more space between links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #47b5ff !important; /* Brand blue for hover */
  text-decoration: none;
}

.navbar-toggler {
  padding: 4px 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Mobile navigation */
@media (max-width: 991px) {
  .navbar-collapse {
    margin-top: 1rem;
  }
  
  .navbar-nav {
    gap: 15px;
  }
  
  .nav-link {
    padding: 0.75rem 0 !important;
  }
}

/* Content Styling */
.content h2 {
  font-family: 'Work Sans', sans-serif;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.content h3 {
  font-family: 'Work Sans', sans-serif;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-tertiary);
}

.content img {
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content blockquote {
  border-left: 4px solid var(--brand-light);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-secondary);
  background-color: rgba(71, 181, 255, 0.05);
  padding: 1rem 1.5rem;
  border-radius: 0.25rem;
}

/* Buttons - Work Sans per brand guidelines */
.btn {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  border-radius: 5px; 
  padding: 12px 20px;
}

.btn-primary {
  background-color: #0073e6; /* Match current site */
  border-color: #0073e6;
  color: white;
}

.btn-primary:hover, .btn-primary:focus {
  background-color: #005bb5; /* Match current site hover */
  border-color: #005bb5;
  color: white;
}

.btn-outline-primary {
  color: var(--brand-light);
  border-color: var(--brand-light);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
  background-color: var(--brand-light);
  border-color: var(--brand-light);
  color: white;
}

.btn-outline-secondary {
  color: var(--text-secondary);
  border-color: var(--text-secondary);
}

.btn-outline-secondary:hover {
  background-color: var(--text-secondary);
  border-color: var(--text-secondary);
  color: white;
}

/* Cards - Match current site */
.card {
  border: none;
  border-radius: 27px; /* Match current site */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.card-title {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
}

.card-title a {
  color: var(--text-primary);
  text-decoration: none;
}

.card-title a:hover {
  color: var(--brand-light);
  text-decoration: none;
}

/* Forms */
.form-label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-control {
  font-family: 'Work Sans', sans-serif;
  border-color: #dee2e6;
}

.form-control:focus {
  border-color: var(--brand-light);
  box-shadow: 0 0 0 0.2rem rgba(71, 181, 255, 0.25);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .content img {
    margin: 1rem 0;
  }
  
  .card-title {
    font-size: 1.25rem;
  }
  
  .lead {
    font-size: 1.125rem;
  }
}

/* Hero Section - Full width dark background */
.hero-section {
  background-color: #244364; /* Dark blue background */
  padding: 80px 0; /* Full section padding, no container padding */
  color: #ffffff; /* White text on dark background */
  width: 100vw;
  margin-left: calc(-50vw + 50%); /* Full width breakout */
}

/* Hero column spacing */
.hero-section .col-lg-6:first-child {
  padding-right: 4rem; /* Add more padding to right of text column */
}

.hero-section .col-lg-6:last-child {
  padding-left: 4rem; /* Add more padding to left of image column */
}

.hero-section h1 {
  color: #ffffff !important;
  font-family: 'Work Sans', sans-serif !important;
}

.hero-section p {
  color: #ffffff !important;
  font-family: 'Roboto', sans-serif !important; /* Body text should be Roboto per corrected brand guide */
  font-weight: 400 !important; /* Back to 400 weight */
}

/* Hero section button - match screenshot styling */
.hero-section .btn-primary {
  background-color: #256D85 !important; /* Astral - your "teal" brand color */
  border-color: #256D85 !important;
  color: #ffffff !important;
  font-weight: 600;
  padding: 10px 30px !important; /* Reduced vertical padding - less tall */
  border-radius: 50px !important; /* More aggressive pill shape to match brand */
  font-size: 16px;
  text-decoration: none;
}

.hero-section .btn-primary:hover {
  background-color: #06283D !important; /* San Juan - darker brand color on hover */
  border-color: #06283D !important;
}

/* Background color overrides */
.bg-light {
  background-color: var(--brand-bg-light) !important;
}

.bg-dark {
  background-color: var(--brand-bg-dark) !important;
}

.text-light {
  color: var(--text-light) !important;
}

/* Link styling */
a {
  color: var(--brand-primary); /* Brand teal #256D85 */
  text-decoration: none;
}

a:hover {
  color: var(--brand-light); /* Picton Blue #47B5FF on hover */
  text-decoration: underline;
}

/* Content styling improvements */
.content img {
  border-radius: 27px; /* Match brand standard border radius */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Hero section images */
.hero-section img {
  border-radius: 27px !important; /* Override Bootstrap's default rounded class */
}

/* Footer styling - removed conflicting styles, handled by .footer-section */

footer .nav-link {
  color: var(--text-secondary) !important;
  font-size: 0.875rem;
}

footer .nav-link:hover {
  color: var(--brand-light) !important;
}

/* Professional content focus */
.lead {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.125rem; /* 18px */
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-body);
}

/* Blog post styling */
article {
  font-size: 1.125rem; /* 18px */
  line-height: 1.5;
}

article .content p {
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

/* Badge styling */
.badge {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
}

.badge.bg-secondary {
  background-color: var(--brand-primary) !important;
}

.badge.bg-light {
  background-color: var(--brand-bg-light) !important;
  color: var(--text-primary) !important;
}

/* Small text - Roboto per corrected brand guidelines */
.small, small {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #4f5a68;
}

/* Problem section styling - match production layout */
.problem-section .col-lg-6:first-child {
  padding-right: 2rem; /* Add space to right of text column */
}

.problem-section .col-lg-6:last-child {
  padding-left: 2rem; /* Add space to left of bullets column */
}

.problem-section .bullets-column {
  background-color: #DFF6FF; /* Light blue background like production */
  padding: 2rem;
  border-radius: 27px; /* Match brand standard border radius */
}

/* Problem section title color - from brand guidelines */
.problem-section h1 {
  color: #4f5a68 !important; /* Lighter color from brand guidelines */
}

/* Problem section icon colors - use brand primary */
.problem-section .bi {
  color: #256D85 !important; /* Brand primary - Astral */
}

/* Methodology Section - Dark Blue Background */
.methodology-section {
  background-color: #244364; /* Dark blue background like hero */
  color: #ffffff;
  width: 100vw;
  margin-left: calc(-50vw + 50%); /* Full width breakout */
}

.methodology-section h1,
.methodology-section h2,
.methodology-section h3 {
  color: #ffffff !important;
  font-family: 'Work Sans', sans-serif !important;
}

.methodology-section p,
.methodology-section li {
  color: #ffffff !important;
  font-family: 'Roboto', sans-serif !important;
}

.methodology-section .bi {
  color: #47B5FF !important; /* Picton Blue for icons on dark background */
}

/* Service Cards - Teal Background */
.service-card {
  background-color: #256D85; /* Brand primary - Astral teal */
  color: #ffffff;
  border-radius: 27px; /* Match brand standard border radius */
  border: none;
  box-shadow: 0 4px 15px rgba(37, 109, 133, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 109, 133, 0.3);
}

.service-card-body {
  padding: 2rem; /* Increase padding for more breathing room */
}

.service-card-title {
  color: #ffffff !important;
  font-family: 'Work Sans', sans-serif !important;
  font-weight: 600;
  font-size: 1.5rem;
}

.service-card-subtitle {
  color: #ffffff !important;
  font-family: 'Roboto', sans-serif !important;
  opacity: 0.9;
}

.service-card-list li {
  color: #ffffff !important;
  font-family: 'Roboto', sans-serif !important;
}

.service-card-footer {
  color: #ffffff !important;
  font-family: 'Roboto', sans-serif !important;
  opacity: 0.9;
  font-size: 0.95rem;
}

/* Blog Section - Dark Blue Background */
.blog-section {
  background-color: #244364; /* Dark blue background like hero */
  color: #ffffff;
  width: 100vw;
  margin-left: calc(-50vw + 50%); /* Full width breakout */
}

.blog-section h1 {
  color: #ffffff !important;
  font-family: 'Work Sans', sans-serif !important;
}

.blog-card {
  height: 225px !important; /* Increased height by 50% (150px + 75px) */
  min-height: 225px !important;
  border-radius: 27px !important; /* Match brand standard border radius */
  border: 2px solid #256D85 !important; /* Debug border to see if cards exist */
  background-color: #256D85 !important; /* Fallback teal background */
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative !important;
  overflow: hidden !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
  display: block !important;
}

.blog-card:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
}

.blog-card-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important; /* Changed to center for vertical centering */
  align-items: flex-start !important;
  border-radius: 27px !important;
}

.blog-card-content {
  position: relative !important;
  z-index: 2 !important;
}

.blog-card-title a {
  color: #ffffff !important;
  font-family: 'Work Sans', sans-serif !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  font-size: 1.1rem !important;
  line-height: 1.3 !important;
}

.blog-card-title a:hover {
  color: #DFF6FF !important;
}

.blog-card-meta {
  color: #ffffff !important;
  font-family: 'Roboto', sans-serif !important;
  opacity: 0.9 !important;
  font-size: 0.875rem !important;
}

/* Services section supporting copy font fix */
#services .lead {
  font-family: 'Roboto', sans-serif !important;
  font-weight: 400 !important;
  font-size: 18px !important;
  line-height: 1.5 !important;
}

/* Brand Pill Button - Reusable Class */
.btn-pill {
  background-color: #256D85 !important; /* Brand primary - Astral */
  border-color: #256D85 !important;
  color: #ffffff !important;
  border-radius: 50px !important; /* More aggressive pill shape */
  padding: 12px 30px !important;
  font-family: 'Work Sans', sans-serif !important;
  font-weight: 600 !important;
  border-width: 2px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.btn-pill:hover, .btn-pill:focus {
  background-color: #06283D !important; /* San Juan - darker brand color on hover */
  border-color: #06283D !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 8px rgba(37, 109, 133, 0.3) !important;
}

/* Services section - apply pill button class */
#services .btn-outline-primary {
  background-color: #256D85 !important; /* Brand primary - Astral */
  border-color: #256D85 !important;
  color: #ffffff !important;
  border-radius: 50px !important; /* More aggressive pill shape */
  padding: 12px 30px !important;
  font-family: 'Work Sans', sans-serif !important;
  font-weight: 600 !important;
  border-width: 2px !important;
}

#services .btn-outline-primary:hover {
  background-color: #06283D !important; /* San Juan - darker brand color on hover */
  border-color: #06283D !important;
  color: #ffffff !important;
}

/* About Card - Dark Background on White Section */
.about-card {
  background-color: #06283D; /* Dark navy background - corrected color */
  color: #ffffff;
  padding: 3rem;
  border-radius: 27px; /* Match brand standard border radius */
  box-shadow: 0 4px 15px rgba(6, 40, 61, 0.2);
}

.about-card h1 {
  color: #ffffff !important;
  font-family: 'Work Sans', sans-serif !important;
}

.about-card p,
.about-card .lead {
  color: #ffffff !important;
  font-family: 'Roboto', sans-serif !important;
}

.about-card a {
  color: #47B5FF !important; /* Picton Blue for links on dark background */
}

.about-card a:hover {
  color: #DFF6FF !important;
}

/* Footer styling - match production */
.footer-section {
  background-color: #244364; /* Dark blue background like production */
  color: #ffffff;
  margin-top: 0;
}

.footer-logo-img {
  max-width: 200px;
  height: auto;
}

.footer-nav {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
}

.footer-link {
  color: #ffffff !important;
  text-decoration: none !important;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
}

.footer-link:hover {
  color: #47B5FF !important;
}

.footer-copyright {
  color: #ffffff !important;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  margin: 0;
}

/* Mobile footer adjustments */
@media (max-width: 768px) {
  .footer-nav {
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  .col-md-6.text-md-end {
    text-align: center !important;
  }
}

/* Blog Post Cards - Three Column Layout */
.blog-post-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 0; /* Remove padding so image can extend to edges */
  overflow: hidden; /* Ensure image corners are clipped */
}

.blog-post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.blog-post-image {
  margin: 0; /* No margin needed */
  width: 100%;
}

.blog-post-image img {
  height: 240px;
  object-fit: cover;
  width: 100%;
  border-radius: 0; /* Sharp corners on all sides */
  box-shadow: none;
  transition: none;
  display: block;
}

.blog-post-image-placeholder {
  margin: 0; /* No margin needed */
  width: 100%;
}

.blog-post-image-placeholder .placeholder-content {
  height: 240px;
  background-color: #f8f9fa;
  border-radius: 0; /* Sharp corners on all sides */
  border: none;
  display: block;
}

.blog-post-content {
  display: block;
  padding: 0.5rem 1.5rem 1.5rem 1.5rem; /* Much tighter top padding, normal on other sides */
}

.blog-post-content h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.25rem; /* Very tight spacing after title */
}

.blog-post-content h2 a {
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.blog-post-content h2 a:hover {
  color: var(--brand-light);
}

.blog-post-meta {
  margin-bottom: 1rem; /* Space after date before summary */
}

.blog-post-meta small {
  font-size: 0.8rem; /* Smaller date text */
  font-family: 'Roboto', sans-serif;
}

.blog-post-content p {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem; /* Space after summary */
}

.blog-post-read-more {
  /* Natural flow, no forced positioning */
}

.blog-post-read-more a {
  color: var(--brand-primary); /* Use brand teal (#256D85) */
  text-decoration: none;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.blog-post-read-more a:hover {
  color: var(--brand-light); /* Lighter blue on hover */
  text-decoration: none;
}

/* Responsive adjustments for blog grid */
@media (max-width: 992px) {
  .blog-post-image img {
    height: 200px;
  }
  
  .blog-post-image-placeholder .placeholder-content {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .blog-post-image img {
    height: 180px;
  }
  
  .blog-post-image-placeholder .placeholder-content {
    height: 180px;
  }
  
  .blog-post-content h2 {
    font-size: 1.25rem;
  }
}

/* Pagination Styling - Brand Colors */
.pagination {
  gap: 0.5rem; /* Space between pagination items */
}

.pagination .page-link {
  color: var(--brand-primary); /* Brand teal */
  background-color: transparent;
  border: none; /* Remove all borders */
  border-radius: 50px; /* Pill shape to match brand */
  padding: 0.5rem 1rem;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.pagination .page-link:hover {
  color: var(--brand-light); /* Just change color, no background */
  transform: none; /* Remove lift effect */
}

/* Only page numbers get background fill */
.pagination .page-item:not(:first-child):not(:last-child) .page-link:hover {
  color: #ffffff;
  background-color: var(--brand-primary);
  transform: translateY(-1px);
}

.pagination .page-item.active .page-link {
  color: #ffffff;
  background-color: var(--brand-primary);
  border-radius: 50px !important; /* Ensure active page is perfectly round */
}

.pagination .page-item.active .page-link:hover {
  color: #ffffff;
  background-color: var(--brand-dark); /* Darker on hover */
}

/* Blog Header Section - Dark navy background */
.blog-header-section {
  background-color: #06283D; /* Dark navy - San Juan color from brand palette */
  color: #ffffff;
  width: 100vw;
  margin-left: calc(-50vw + 50%); /* Full width breakout */
}

.blog-header-section h1 {
  color: #ffffff !important;
  font-family: 'Work Sans', sans-serif !important;
}

.blog-header-section p {
  color: #ffffff !important;
  font-family: 'Roboto', sans-serif !important;
  opacity: 0.9;
}

.blog-header-section img {
  border-radius: 27px !important; /* Match brand standard border radius */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Blog Article Header Section - Slightly smaller than main blog header */
.blog-article-header-section {
  background-color: #06283D; /* Dark navy - San Juan color from brand palette */
  color: #ffffff;
  width: 100vw;
  margin-left: calc(-50vw + 50%); /* Full width breakout */
  padding-top: 4rem !important; /* py-6 equivalent */
  padding-bottom: 4rem !important; /* py-6 equivalent */
}

.blog-article-header-section h1 {
  color: #ffffff !important;
  font-family: 'Work Sans', sans-serif !important;
}

.blog-article-header-section .article-meta,
.blog-article-header-section .article-meta small,
.blog-article-header-section .article-meta i {
  color: #47b5ff !important; /* Picton Blue */
  font-family: 'Roboto', sans-serif !important;
}

.blog-article-header-section .badge.bg-light {
  background-color: rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.blog-article-header-section img {
  border-radius: 27px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Contact Page Styling */
.contact-header-section {
  background-color: #06283D; /* Dark navy - San Juan color from brand palette */
  color: #ffffff;
  width: 100vw;
  margin-left: calc(-50vw + 50%); /* Full width breakout */
}

.contact-header-section h1 {
  color: #ffffff !important;
  font-family: 'Work Sans', sans-serif !important;
}

.contact-header-section p {
  color: #ffffff !important;
  font-family: 'Roboto', sans-serif !important;
  opacity: 0.9;
}

.contact-header-section img {
  border-radius: 27px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-form-section {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.contact-form-section .form-label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.contact-form-section .form-control,
.contact-form-section .form-select {
  font-family: 'Roboto', sans-serif;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-section .form-control:focus,
.contact-form-section .form-select:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 0.2rem rgba(37, 109, 133, 0.25);
}

.contact-form-section .btn-primary {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.contact-form-section .btn-primary:hover {
  background-color: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-1px);
}

.contact-info h3 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-info .btn-outline-primary {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #ffffff;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border-width: 2px;
  transition: all 0.3s ease;
}

.contact-info .btn-outline-primary:hover {
  background-color: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #ffffff;
  transform: translateY(-1px);
}