/* Global Styles */
/* Scroll Animations */
.scroll-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.scroll-section.animate-in {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  width: 100%;
  background: linear-gradient(135deg, #495464 0%, #bbbfca 100%);
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  font-display: swap;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Typography - Professional, refined - Color Hunt Palette */
h1 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: #495464;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 2.5rem;
  color: #495464;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: #495464;
}

p {
  font-size: 1rem;
  line-height: 1.75;
  color: #bbbfca;
  margin-bottom: 1rem;
}

strong {
  font-weight: 600;
  color: #495464;
}

/* Layout */
.homepage {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Header - Two-tier structure */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  box-sizing: border-box;
  background-color: #ffffff;
}

/* Top Bar - Dark background */
.header-top-bar {
  background-color: #495464;
  padding: 0.5rem 0;
}

.header-top-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header-region-selector {
  display: flex;
  align-items: center;
  position: relative;
}

.header-region-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1rem;
  background-color: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
  position: relative;
  z-index: 10;
}

.header-region-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.header-region-globe {
  width: 18px;
  height: 18px;
  color: #ffffff;
  flex-shrink: 0;
}

.header-region-text {
  font-size: 0.9375rem;
  color: #ffffff;
  font-weight: 500;
  flex: 1;
  text-align: left;
  white-space: nowrap;
}

.header-region-chevron {
  width: 16px;
  height: 16px;
  color: #ffffff;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.header-region-chevron.chevron-open {
  transform: rotate(180deg);
}

.header-region-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background-color: #ffffff;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(73, 84, 100, 0.15);
  border-radius: 0;
  border: 1px solid #e8e8e8;
  z-index: 1000;
  overflow: hidden;
}

.header-region-option {
  display: block;
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: #ffffff;
  border: none;
  border-bottom: 1px solid #e8e8e8;
  text-align: left;
  font-size: 0.9375rem;
  color: #495464;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  font-family: inherit;
}

.header-region-option:last-child {
  border-bottom: none;
}

.header-region-option:hover {
  background-color: #f4f4f2;
  color: #495464;
}

.header-region-option.region-selected {
  background-color: #495464;
  color: #ffffff;
  font-weight: 600;
}

.header-region-option.region-selected:hover {
  background-color: #5a6675;
  color: #ffffff;
}

/* Main Navigation Bar - White background */
.header-main-nav {
  background-color: #ffffff;
  padding: 0;
  box-shadow: 0 2px 8px rgba(73, 84, 100, 0.08);
}

.header-main-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
}

.mobile-menu-toggle {
  display: none;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-logo-icon {
  width: 40px;
  height: 40px;
  color: #495464;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo-icon svg {
  width: 100%;
  height: 100%;
}

.header-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.01em;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.logo-part1 {
  color: #495464;
}

.logo-part2 {
  color: #bbbfca;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #495464;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link:hover {
  color: #bbbfca;
}

.nav-link-active {
  color: #bbbfca;
}

/* Navigation Dropdown */
.nav-link-dropdown {
  position: relative;
}

.nav-link-with-dropdown {
  cursor: pointer;
}

.nav-link-chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
  margin-left: 0.25rem;
}

.nav-link-dropdown:hover .nav-link-chevron,
.nav-link-dropdown.dropdown-active .nav-link-chevron,
.nav-link-dropdown.dropdown-active-page .nav-link-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  background-color: #ffffff;
  min-width: 280px;
  box-shadow: 0 4px 12px rgba(73, 84, 100, 0.15);
  border-radius: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1000;
  padding: 0.5rem 0;
  border: 1px solid #e8e8e8;
}

.nav-dropdown-menu.dropdown-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #495464;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
  transition: background-color 0.2s ease, color 0.2s ease;
  border-radius: 0;
}

.nav-dropdown-item:hover {
  background-color: #f4f4f2;
  color: #bbbfca;
}

.nav-dropdown-item-active {
  background-color: #f4f4f2;
  color: #bbbfca;
  font-weight: 600;
}

.header-utils {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #f4f4f2;
  padding: 0.5rem;
  border-radius: 0;
}

.header-util-btn {
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #495464;
  transition: color 0.2s ease;
  padding: 0;
}

.header-util-btn:hover {
  color: #bbbfca;
}

.header-util-btn svg {
  width: 20px;
  height: 20px;
}

/* Responsive Header */
@media (max-width: 1024px) {
  .header-top-container {
    padding: 0 1.5rem;
  }

  .header-main-container {
    padding: 1rem 1.5rem;
  }

  .header-nav {
    gap: 1.5rem;
  }

  .nav-link {
    font-size: 0.8125rem;
  }

  .header-region-dropdown {
    min-width: 180px;
  }

  .header-region-option {
    padding: 0.75rem 0.875rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) {
  .header-top-bar {
    display: none;
  }

  .header-main-container {
    padding: 1rem;
    flex-wrap: wrap;
  }

  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    height: 100dvh;
    background-color: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 5.5rem 1.5rem 2rem 1.5rem;
    gap: 0.5rem;
    box-shadow: 2px 0 12px rgba(73, 84, 100, 0.15);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }

  .header-nav.nav-open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1rem;
    width: 100%;
    padding: 0.875rem 0;
    text-transform: none;
    display: block;
    white-space: nowrap;
    overflow: visible;
  }

  .nav-link-active::after {
    display: none;
  }

  .nav-link-dropdown {
    width: 100%;
    margin: 0;
    overflow: visible;
    position: relative;
  }

  .nav-link-with-dropdown {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static !important;
    margin-top: 0;
    margin-left: 0;
    margin-bottom: 0;
    box-shadow: none;
    border: none;
    border-left: 2px solid #e8e8e8;
    padding-left: 1rem;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    transform: none;
    min-width: auto;
    width: 100%;
    overflow: hidden;
    display: block;
    transition: opacity 0.3s ease, visibility 0.3s ease, max-height 0.4s ease, padding 0.4s ease, margin 0.4s ease;
  }

  .nav-dropdown-menu.dropdown-open {
    opacity: 1 !important;
    visibility: visible !important;
    max-height: 800px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    overflow: visible;
  }

  .nav-dropdown-item {
    padding: 0.875rem 0;
    font-size: 0.9375rem;
    display: block;
    width: 100%;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: visible;
    opacity: 1;
    visibility: visible;
  }

  .header-utils {
    margin-left: auto;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #495464;
    transition: color 0.2s ease;
    z-index: 1001;
    margin-left: auto;
    position: relative;
  }

  .mobile-menu-toggle:hover {
    color: #bbbfca;
  }

  .mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
  }
}

@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* Hero Section - Two-column layout with Color Hunt palette gradient */
.hero {
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: stretch;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 70vh;
}

.hero-left {
  padding: 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #ffffff;
}

.hero-header {
  margin-bottom: 2rem;
}

.hero-welcome {
  font-size: 0.875rem;
  color: #bbbfca;
  margin-bottom: 0.5rem;
}

.hero-subheader {
  font-size: 0.875rem;
  color: #bbbfca;
  margin: 0;
}

.hero-headline {
  font-size: 3.5rem;
  font-weight: 700;
  color: #495464;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.hero-highlight {
  position: relative;
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, rgba(73, 84, 100, 0.15) 0%, rgba(187, 191, 202, 0.15) 100%);
  border-radius: 0;
}

.hero-bottom-content {
  display: none;
}

.hero-body-desktop {
  display: block;
}

.hero-body-mobile {
  display: none;
}

.hero-apply-button-desktop {
  display: inline-block;
}

.hero-apply-button-mobile {
  display: none;
}

.hero-body {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #495464;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-emphasis {
  color: #495464;
  font-weight: 600;
}

.hero-apply-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #495464;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0;
  transition: background-color 0.2s ease;
  align-self: flex-start;
  margin-top: auto;
}

.hero-apply-button:hover {
  background-color: #bbbfca;
}

.hero-right {
  position: relative;
  background-image: linear-gradient(135deg, rgba(73, 84, 100, 0.3) 0%, rgba(187, 191, 202, 0.3) 100%), url('/herosection.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.hero-image-background {
  width: 100%;
  height: 100%;
}

/* Sectors Navigation Section */
.sectors-nav {
  padding: 4rem 4rem;
  background-color: #ffffff;
  width: 100%;
}

.sectors-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  align-items: center;
}

.sectors-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.sectors-nav-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #495464;
  transition: transform 0.2s ease, color 0.2s ease;
}

.sectors-nav-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.sectors-nav-item:hover .sectors-nav-icon {
  transform: scale(1.1);
  color: #bbbfca;
}

.sectors-nav-label {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #495464;
  font-weight: 500;
  margin: 0;
}

/* ============================================
   MOBILE RESPONSIVE STYLES - HOMEPAGE SECTIONS
   ============================================ */

/* Tablet and below (768px) */
@media (max-width: 768px) {
  /* Hero Section */
  .hero-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 2.5rem 2rem;
    min-height: auto;
  }

  .hero-container {
    display: flex;
    flex-direction: column;
  }

  .hero-left {
    order: 1;
    display: flex;
    flex-direction: column;
  }

  .hero-body-desktop {
    display: none;
  }

  .hero-apply-button-desktop {
    display: none;
  }

  .hero-right {
    min-height: 35vh;
    order: 2;
  }

  .hero-bottom-content {
    order: 3;
    display: flex;
    flex-direction: column;
    padding: 2rem 2rem;
    background-color: #ffffff;
  }

  .hero-body-mobile {
    display: block;
    font-size: 1rem;
    line-height: 1.7;
    color: #495464;
    margin-bottom: 2rem;
    max-width: 100%;
  }

  .hero-apply-button-mobile {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .hero-headline {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .hero-body {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 100%;
  }

  .hero-apply-button {
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
  }

  .hero-welcome {
    font-size: 0.8125rem;
  }

  .hero-subheader {
    font-size: 0.8125rem;
  }

  /* Sectors Navigation */
  .sectors-nav {
    padding: 3rem 2rem;
  }

  .sectors-nav-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .sectors-nav-icon {
    width: 56px;
    height: 56px;
  }

  .sectors-nav-label {
    font-size: 0.8125rem;
  }

  /* About/Intro Section */
  .intro {
    padding: 4rem 2rem;
  }

  .intro-title {
    font-size: 2.25rem;
    margin-bottom: 2rem;
  }

  .intro-text-blocks {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .intro-text-left p,
  .intro-text-right p {
    font-size: 1rem;
    line-height: 1.7;
  }

  /* Services Overview */
  .services-overview {
    padding: 4rem 2rem;
  }

  .services-header h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .services-header {
    padding: 0 1rem;
  }

  .services-label {
    font-size: 2.5rem;
  }

  .services-header p {
    font-size: 1rem !important;
    max-width: 100% !important;
  }

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

  .services-view-all {
    margin-top: 2rem;
    padding: 0 1rem;
  }

  .services-view-all-link {
    font-size: 0.9375rem;
  }

  .service-card-content {
    padding: 1.5rem;
  }

  .service-card-label {
    font-size: 1.125rem;
  }

  .service-card-description {
    font-size: 0.875rem;
  }

  /* Why BidwellGrant */
  .why-bidwellgrant {
    padding: 4rem 2rem;
  }

  .why-main-title {
    font-size: 2.5rem;
  }

  .why-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-card {
    padding: 2rem 1.5rem;
  }

  .why-card h3 {
    font-size: 1.5rem;
  }

  .why-card p {
    font-size: 0.9375rem;
  }

  /* Sectors Section */
  .sectors {
    padding: 4rem 2rem;
  }

  .sectors-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sectors-left {
    padding-right: 0;
  }

  .sectors-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .sectors-description {
    font-size: 1rem;
  }

  .sectors-row-first {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .sectors-row-second {
    padding: 0 2rem !important;
    margin-top: 2rem;
  }

  .sectors-row-second-container {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    max-width: 100%;
  }

  .sector-card {
    height: auto;
    min-height: 280px;
    padding: 2rem 1.5rem;
  }

  .sector-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 1.5rem;
  }

  .sector-card-title {
    font-size: 1.25rem;
  }

  .sector-card-description {
    font-size: 0.9375rem;
  }

  /* Final CTA */
  .final-cta {
    padding: 4rem 2rem;
  }

  .final-cta-box {
    padding: 2rem 1.5rem;
  }

  .final-cta-title {
    font-size: 2rem;
  }

  .final-cta-description {
    font-size: 1rem;
  }

  .final-cta-button {
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
  }

  /* Floating Button */
  .floating-urgent {
    bottom: 1rem;
    right: 1rem;
    padding: 0.875rem 1.25rem;
    font-size: 0.875rem;
  }

  .floating-urgent svg {
    width: 16px;
    height: 16px;
  }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  /* Hero Section */
  .hero-left {
    padding: 2rem 1.5rem;
  }

  .hero-bottom-content {
    padding: 2rem 1.5rem;
  }

  .hero-body-mobile {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }

  .hero-apply-button-mobile {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }

  .hero-headline {
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
  }

  .hero-body {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }

  .hero-apply-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    width: 100%;
    text-align: center;
  }

  .hero-welcome {
    font-size: 0.75rem;
  }

  .hero-subheader {
    font-size: 0.75rem;
  }

  /* Sectors Navigation */
  .sectors-nav {
    padding: 2.5rem 1.5rem;
  }

  .sectors-nav-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .sectors-nav-icon {
    width: 48px;
    height: 48px;
  }

  .sectors-nav-label {
    font-size: 0.75rem;
    line-height: 1.3;
  }

  /* About/Intro Section */
  .intro {
    padding: 3rem 1.5rem;
  }

  .intro-title {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
  }

  .intro-text-left p,
  .intro-text-right p {
    font-size: 0.9375rem;
  }

  /* Services Overview */
  .services-overview {
    padding: 3rem 1.5rem;
  }

  .services-header h2 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }

  .services-header {
    padding: 0 0.5rem;
  }

  .services-label {
    font-size: 2rem;
  }

  .services-header p {
    font-size: 0.9375rem !important;
    margin-top: 1rem !important;
  }

  .services-grid {
    gap: 1.25rem;
  }

  .services-view-all {
    margin-top: 1.5rem;
    padding: 0 0.5rem;
  }

  .services-view-all-link {
    font-size: 0.875rem;
  }

  .service-card-content {
    padding: 1.25rem;
  }

  .service-card-label {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .service-card-description {
    font-size: 0.8125rem;
  }

  /* Why BidwellGrant */
  .why-bidwellgrant {
    padding: 3rem 1.5rem;
  }

  .why-main-title {
    font-size: 2rem;
  }

  .why-title-line1,
  .why-title-line2 {
    display: block;
  }

  .why-cards {
    gap: 1.25rem;
  }

  .why-card {
    padding: 1.75rem 1.25rem;
  }

  .why-card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
  }

  .why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .why-card p {
    font-size: 0.875rem;
  }

  .why-card-footer {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
  }

  .why-card-number {
    width: 36px;
    height: 36px;
    font-size: 0.875rem;
  }

  .why-card-label {
    font-size: 0.6875rem;
  }

  /* Sectors Section */
  .sectors {
    padding: 3rem 1.5rem;
  }

  .sectors-title {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    line-height: 1.2;
  }

  .sectors-description {
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  .sectors-row-first {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .sectors-row-second {
    padding: 0 1.5rem !important;
    margin-top: 1.5rem;
  }

  .sectors-row-second-container {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
    max-width: 100%;
  }

  .sector-card {
    padding: 1.5rem;
    height: auto;
    min-height: 260px;
  }

  .sector-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1.25rem;
  }

  .sector-card-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }

  .sector-card-description {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .sector-card-link {
    font-size: 0.875rem;
  }

  /* Final CTA */
  .final-cta {
    padding: 3rem 1.5rem;
  }

  .final-cta-box {
    padding: 1.75rem 1.25rem;
  }

  .final-cta-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .final-cta-description {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }

  .final-cta-button {
    padding: 0.75rem 1.75rem;
    font-size: 0.875rem;
    width: 100%;
    text-align: center;
  }

  /* Floating Button */
  .floating-urgent {
    bottom: 0.75rem;
    right: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.8125rem;
  }

  .floating-urgent span {
    display: none;
  }

  .floating-urgent svg {
    width: 18px;
    height: 18px;
  }
}

.cta-green {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #e8e8e8;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.cta-green:hover {
  background-color: #bbbfca;
  transform: translateY(-1px);
}

.cta-outline {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background-color: transparent;
  border: 2px solid #ffffff;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.cta-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

/* Floating Urgent Deadline Button */
.floating-urgent,
a.floating-urgent {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background-color: #e8e8e8;
  color: #495464;
  border-radius: 0;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.2s ease;
  text-decoration: none;
}

.floating-urgent:hover {
  background-color: #bbbfca;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.floating-urgent svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  flex-shrink: 0;
}

.floating-urgent svg:last-child {
  width: 16px;
  height: 16px;
}

/* Buttons - Color Hunt palette */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  color: #495464;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  font-family: inherit;
  margin-right: 1rem;
}

.cta-primary:hover {
  background-color: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
}

.cta-primary:active {
  transform: translateY(0);
}

.cta-primary svg {
  width: 16px;
  height: 16px;
  stroke: #495464;
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  font-family: inherit;
}

.cta-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-secondary svg {
  width: 16px;
  height: 16px;
  stroke: #ffffff;
}

/* Light section buttons */
.light-section .cta-primary {
  color: #ffffff;
  background-color: #495464;
  border-color: #495464;
}

.light-section .cta-primary:hover {
  background-color: #bbbfca;
  border-color: #bbbfca;
}

.light-section .cta-primary svg {
  stroke: #ffffff;
}

/* Introductory Section - Refined styling */
.intro {
  padding: 6rem 4rem;
  width: 100%;
  background-color: #bbbfca;
}

.intro-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3rem;
  text-align: left;
  letter-spacing: -0.02em;
}


.placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: #ffffff;
  opacity: 0.7;
}

.placeholder-content svg {
  width: 64px;
  height: 64px;
  stroke: #ffffff;
}

.placeholder-content span {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
}

.intro-text-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.intro-text-left p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #ffffff;
  font-weight: 500;
  margin: 0;
}

.intro-text-right p {
  font-size: 1rem;
  line-height: 1.8;
  color: #e8e8e8;
  font-weight: 400;
  margin: 0;
}

/* Services Overview - Three-column block layout */
.services-overview {
  padding: 6rem 4rem;
  width: 100%;
  margin: 0 auto;
  background-color: #f4f4f2;
  box-sizing: border-box;
}

.services-header {
  max-width: 1400px;
  margin: 0 auto 4rem auto;
  padding: 0 2rem;
  text-align: left;
}

.services-label {
  display: block;
  font-size: 3.5rem;
  font-weight: 700;
  color: #495464;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  text-align: left;
}

.services-overview h2 {
  margin-bottom: 0;
  color: #495464;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
}

.services-list {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}

.services-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.services-view-all {
  max-width: 1400px;
  margin: 3rem auto 0;
  text-align: center;
}

.services-view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #495464;
  text-decoration: none;
  transition: all 0.2s ease;
}

.services-view-all-link:hover {
  color: #bbbfca;
  gap: 0.75rem;
}

.services-view-all-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.services-view-all-link:hover svg {
  transform: translateX(4px);
}

.service-card {
  display: flex;
  flex-direction: column;
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card-image {
  width: 100%;
  aspect-ratio: 3 / 1;
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 0;
  position: relative;
}

.service-card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(73, 84, 100, 0.3) 0%, rgba(187, 191, 202, 0.3) 100%);
  pointer-events: none;
  z-index: 1;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  content-visibility: auto;
}

.service-card-content {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 0;
  border: none;
  border-top: 1px solid #e8e8e8;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-label {
  font-size: 1.25rem;
  font-weight: 700;
  color: #495464;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-card-description {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #bbbfca;
  margin: 0;
  flex-grow: 1;
}


.service-item {
  border-bottom: 1px solid #e8e8e8;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.service-item:last-child {
  border-bottom: none;
}

.service-item-header {
  display: flex;
  align-items: center;
  padding: 2rem 0;
  gap: 2rem;
}

.service-number {
  font-size: 1.5rem;
  font-weight: 600;
  color: #495464;
  min-width: 3rem;
}

.service-item h3 {
  flex: 1;
  font-size: 1.5rem;
  font-weight: 600;
  color: #495464;
  margin: 0;
  line-height: 1.3;
}

.service-arrow {
  width: 24px;
  height: 24px;
  color: #bbbfca;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.service-item.expanded .service-arrow {
  transform: rotate(180deg);
}

.service-item-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 5rem;
}

.service-item.expanded .service-item-content {
  max-height: 1000px;
  padding: 0 5rem 2.5rem 5rem;
}

.service-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #bbbfca;
  margin-bottom: 1.5rem;
}

.service-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: left;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #bbbfca;
}

.service-includes li {
  padding: 0.375rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #495464;
  font-weight: 600;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #495464;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  align-self: flex-start;
}

.service-link:hover {
  color: #bbbfca;
  gap: 0.75rem;
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.service-link:hover svg {
  transform: translateX(4px);
}


.services-link:hover {
  color: #bbbfca;
}

.services-link::after {
  content: '→';
  font-size: 1.125rem;
  transition: transform 0.2s ease;
}

.services-link:hover::after {
  transform: translateX(4px);
}

/* Why BidwellGrant - Card-based design */
.why-bidwellgrant {
  padding: 6rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
  background-color: #ffffff;
}

.why-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: start;
}

.why-subtitle {
  font-size: 1rem;
  color: #bbbfca;
  line-height: 1.6;
  margin: 0;
  padding-top: 0.5rem;
}

.why-main-title {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
}

.why-title-line1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #495464;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.why-title-line2 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #bbbfca;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  background-color: #f4f4f2;
  padding: 2.5rem 2rem;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  min-height: 400px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(73, 84, 100, 0.1);
}

.why-card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 2rem;
  color: #495464;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card-icon svg {
  width: 100%;
  height: 100%;
  stroke: #495464;
}

.why-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #495464;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.why-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #bbbfca;
  margin-bottom: auto;
  flex-grow: 1;
}

.why-card-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e8e8e8;
}

.why-card-number {
  width: 40px;
  height: 40px;
  background-color: #495464;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 0;
  flex-shrink: 0;
}

.why-card-label {
  font-size: 0.75rem;
  color: #bbbfca;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* Sectors Snapshot - Two-column layout with grid */
.sectors {
  padding: 6rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
  background-color: #ffffff;
  overflow: visible;
}

.sectors-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
  width: 100%;
  overflow: visible;
}

.sectors-left {
  padding-right: 2rem;
}

.sectors-title {
  margin-bottom: 1.5rem;
  font-size: 3rem;
  color: #495464;
  text-align: left;
  font-weight: 700;
  line-height: 1.2;
}

.sectors-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #bbbfca;
  margin: 0;
}

.sectors-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  min-width: 0;
}

.sectors-row {
  display: grid;
  gap: 1.5rem;
  width: 100%;
  align-items: stretch;
}

.sectors-row-first {
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}

@media (max-width: 768px) {
  .sectors-row-first {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .sectors-row-first {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }
}

.sectors-row-second {
  width: 100%;
  padding: 0 4rem;
  box-sizing: border-box;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .sectors-row-second {
    padding: 0 2rem !important;
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .sectors-row-second {
    padding: 0 1.5rem !important;
    margin-top: 1.5rem;
  }
}

.sectors-row-second-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
  box-sizing: border-box;
  align-items: stretch;
}

@media (max-width: 768px) {
  .sectors-row-second-container {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .sectors-row-second-container {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }
}

.sectors-row-second .sector-card {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .sectors-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .sectors-left {
    padding-right: 0;
  }

  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sectors-row-first {
    grid-template-columns: repeat(2, 1fr);
  }

  .sectors-row-second {
    padding: 0 2rem;
  }

  .sectors-row-second-container {
    grid-template-columns: repeat(3, 1fr);
  }

  @media (max-width: 768px) {
    .sectors-row-second-container {
      grid-template-columns: 1fr !important;
    }
  }

  @media (max-width: 480px) {
    .sectors-row-second-container {
      grid-template-columns: 1fr !important;
    }
  }

  .sectors-grid .sector-card:nth-child(4),
  .sectors-grid .sector-card:nth-child(5) {
    grid-column: auto;
  }
}

.sector-card {
  padding: 2.5rem;
  height: 320px;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
  position: relative;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.sector-card:hover {
  box-shadow: 0 4px 12px rgba(73, 84, 100, 0.1);
  border-color: #bbbfca;
}

.sector-card-highlighted {
  background-color: #495464;
  border-color: #495464;
}

.sector-card-highlighted:hover {
  background-color: #495464;
  border-color: #495464;
  box-shadow: 0 4px 12px rgba(73, 84, 100, 0.2);
}

.sector-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: #495464;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sector-card-highlighted .sector-icon {
  color: #ffffff;
}

.sector-icon svg {
  width: 100%;
  height: 100%;
}

.sector-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #495464;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.sector-card-highlighted .sector-card-title {
  color: #ffffff;
}

.sector-card-description {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #bbbfca;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.sector-card-highlighted .sector-card-description {
  color: rgba(255, 255, 255, 0.9);
}

.sector-card-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #495464;
  text-decoration: none;
  align-self: flex-start;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.sector-card-highlighted .sector-card-link {
  color: #ffffff;
}

.sector-card-link:hover {
  color: #bbbfca;
  transform: translateX(4px);
}

.sector-card-highlighted .sector-card-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.sector-visual {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  gap: -0.5rem;
  align-items: center;
}

.sector-visual-circle {
  width: 48px;
  height: 48px;
  border-radius: 0;
  background-color: #e8e8e8;
  border: 3px solid #ffffff;
  margin-left: -12px;
  position: relative;
}

.sector-visual-circle:first-child {
  margin-left: 0;
  background-color: #bbbfca;
}

.sector-visual-circle:nth-child(2) {
  background-color: #e8e8e8;
}

.sector-visual-circle:nth-child(3) {
  background-color: #f4f4f2;
}

.sector-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 40%;
  background: linear-gradient(to top, rgba(244, 244, 242, 0.3), transparent);
  backdrop-filter: blur(4px);
  border-radius: 0;
}

.sector-watermark {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.08);
  letter-spacing: 0.05em;
  transform: rotate(-5deg);
  z-index: 1;
}

.sector-learn-more {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #495464;
  color: #ffffff;
  border-radius: 0;
  text-decoration: none;
  transition: all 0.2s ease;
  z-index: 2;
}

.sector-learn-more:hover {
  background-color: #bbbfca;
  transform: translateX(4px);
}

.sector-learn-more svg {
  width: 20px;
  height: 20px;
}

.sectors-list {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.sector-item {
  font-size: 1.0625rem;
  color: #495464;
  font-weight: 500;
  padding: 1rem 0;
  border-bottom: 1px solid #e8e8e8;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.sector-item:hover {
  color: #bbbfca;
  padding-left: 0.75rem;
}

/* Closing CTA - Professional finish */
.closing-cta {
  padding: 6rem 2rem 7rem;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #f4f4f2;
  text-align: center;
}

.closing-cta .cta-primary {
  margin-bottom: 1.5rem;
  padding: 1.125rem 2.5rem;
  font-size: 1.0625rem;
}

.cta-note {
  font-size: 0.9375rem;
  color: #bbbfca;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Final CTA Section */
.final-cta {
  padding: 4rem 4rem;
  background-color: #e8e8e8;
  width: 100%;
  margin: 0;
}

.final-cta-content {
  max-width: 1400px;
  margin: 0 auto;
}

.final-cta-box {
  background-color: #ffffff;
  padding: 2.5rem 4rem;
  border-radius: 0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #495464;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  white-space: nowrap;
}

.final-cta-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #495464;
  margin-bottom: 2.5rem;
  white-space: nowrap;
}

.final-cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #495464;
  border: none;
  border-radius: 0;
  text-decoration: none;
  transition: background-color 0.2s ease;
  font-family: inherit;
  cursor: pointer;
}

.final-cta-button:hover {
  background-color: #bbbfca;
}

/* Footer */
.footer {
  background-color: #495464;
  padding: 4rem 4rem 2rem;
  width: 100%;
}

.footer-top-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 3rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.footer-nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.footer-nav-link:hover {
  color: #bbbfca;
}

.footer-nav-divider {
  color: #bbbfca;
  font-size: 0.875rem;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.footer-column-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.footer-contact-item {
  font-size: 0.9375rem;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.footer-contact-item strong {
  color: #ffffff;
  font-weight: 600;
}

.footer-note {
  font-size: 0.875rem;
  color: #bbbfca;
  font-style: italic;
  margin-bottom: 1rem;
}

.footer-hours {
  font-size: 0.9375rem;
  color: #ffffff;
  line-height: 1.8;
}

.footer-hours p {
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.footer-closed {
  font-weight: 600;
  color: #ffffff;
  margin-top: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.9375rem;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #bbbfca;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-connect {
  font-size: 1.125rem;
  font-style: italic;
  color: #ffffff;
  font-family: inherit;
}

.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-social-icon {
  width: 32px;
  height: 32px;
  color: #495464;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.footer-social-icon:hover {
  color: #bbbfca;
}

.footer-social-icon svg {
  width: 20px;
  height: 20px;
}

.footer-bottom-right {
  flex: 1;
  max-width: 500px;
  margin-left: auto;
}

.footer-newsletter-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #495464;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-newsletter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-email-input {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  color: #495464;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
}

.footer-email-input:focus {
  border-color: #bbbfca;
}

.footer-email-input::placeholder {
  color: #bbbfca;
}

.footer-newsletter-btn {
  width: 44px;
  height: 44px;
  background-color: #495464;
  color: #ffffff;
  border: none;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}

.footer-newsletter-btn:hover {
  background-color: #bbbfca;
}

.footer-newsletter-btn svg {
  width: 20px;
  height: 20px;
}

/* New Footer Styles */
.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Brand & Identity */
.footer-brand {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-logo .logo-part1 {
  color: #ffffff;
}

.footer-logo .logo-part2 {
  color: #bbbfca;
}

.footer-descriptor {
  font-size: 0.9375rem;
  color: #bbbfca;
  line-height: 1.6;
  margin: 0;
}

/* Core Navigation */
.footer-navigation {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-nav-group {
  display: flex;
  flex-direction: column;
}

.footer-nav-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li {
  margin-bottom: 0.75rem;
}

.footer-nav-list a {
  font-size: 0.9375rem;
  color: #bbbfca;
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.6;
}

.footer-nav-list a:hover {
  color: #ffffff;
}

/* Contact Group within Navigation */
.footer-contact-group {
  display: flex;
  flex-direction: column;
}

.footer-contact-group .footer-contact-email {
  font-size: 0.9375rem;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.footer-contact-group .footer-contact-email a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-group .footer-contact-email a:hover {
  color: #bbbfca;
}

.footer-contact-group .footer-region-selector {
  margin-bottom: 1rem;
}

.footer-contact-group .footer-contact-note {
  font-size: 0.875rem;
  color: #bbbfca;
  font-style: italic;
  margin: 0;
  line-height: 1.8;
}

/* Contact Block (old - kept for backwards compatibility if needed) */
.footer-contact {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-contact-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.footer-contact-email {
  font-size: 0.9375rem;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.footer-contact-email a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-email a:hover {
  color: #bbbfca;
}

.footer-region-selector {
  margin-bottom: 1rem;
  position: relative;
}

.footer-region-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1rem;
  background-color: transparent;
  border: none;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
  width: 100%;
  max-width: 250px;
  position: relative;
  z-index: 10;
}

.footer-region-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.footer-region-globe {
  width: 18px;
  height: 18px;
  color: #ffffff;
  flex-shrink: 0;
}

.footer-region-text {
  font-size: 0.9375rem;
  color: #ffffff;
  font-weight: 500;
  flex: 1;
  text-align: left;
  white-space: nowrap;
}

.footer-region-chevron {
  width: 16px;
  height: 16px;
  color: #ffffff;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.footer-region-chevron.chevron-open {
  transform: rotate(180deg);
}

.footer-region-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 0.5rem;
  background-color: #ffffff;
  min-width: 100%;
  max-width: 250px;
  box-shadow: 0 4px 12px rgba(73, 84, 100, 0.15);
  border-radius: 0;
  border: 1px solid #e8e8e8;
  z-index: 1000;
  overflow: hidden;
}

.footer-region-option {
  display: block;
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: #ffffff;
  border: none;
  border-bottom: 1px solid #e8e8e8;
  text-align: left;
  font-size: 0.9375rem;
  color: #495464;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  font-family: inherit;
}

.footer-region-option:last-child {
  border-bottom: none;
}

.footer-region-option:hover {
  background-color: #f4f4f2;
  color: #495464;
}

.footer-region-option.region-selected {
  background-color: #495464;
  color: #ffffff;
  font-weight: 600;
}

.footer-region-option.region-selected:hover {
  background-color: #5a6675;
  color: #ffffff;
}

.footer-contact-note {
  font-size: 0.875rem;
  color: #bbbfca;
  font-style: italic;
  margin: 0;
  line-height: 1.8;
}

/* Legal / Compliance */
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0;
  padding-bottom: 0;
}

.footer-legal a {
  font-size: 0.875rem;
  color: #bbbfca;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #ffffff;
}

.footer-legal-divider {
  color: #bbbfca;
  font-size: 0.875rem;
}

/* Copyright */
.footer-copyright-text {
  font-size: 0.875rem;
  color: #bbbfca;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    padding: 3rem 1.5rem 4rem;
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero h1 {
    font-size: 2.25rem;
    grid-column: 1;
  }

  .hero-body {
    font-size: 1rem;
    grid-column: 1;
  }

  .hero-cta-box {
    grid-column: 1;
    padding: 1.25rem 1.5rem;
    font-size: 0.9375rem;
  }

  .hero-phone {
    grid-column: 1;
    font-size: 1rem;
  }

  .hero-buttons {
    grid-column: 1;
    flex-direction: column;
  }

  .cta-green,
  .cta-outline {
    width: 100%;
    justify-content: center;
  }

  .services-list {
    padding: 0 1rem;
  }

  .services-overview h2 {
    font-size: 1.75rem;
    margin-bottom: 3rem;
  }

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

  .service-box {
    padding: 2rem;
  }

  .service-box-number {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .service-box-title {
    font-size: 1.25rem;
  }

  .service-box-description {
    font-size: 0.875rem;
  }

  .floating-urgent {
    bottom: 1rem;
    right: 1rem;
    padding: 0.875rem 1.25rem;
    font-size: 0.875rem;
  }

  .intro,
  .services-overview,
  .why-bidwellgrant,
  .sectors,
  .closing-cta {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .intro,
  .services-overview,
  .why-bidwellgrant,
  .sectors,
  .final-cta {
    padding: 5rem 2rem;
  }

  .final-cta-box {
    padding: 2.5rem 2rem;
  }

  .final-cta-title {
    font-size: 2rem;
    white-space: normal;
  }

  .final-cta-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    white-space: normal;
  }

  .why-header {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .why-title-line1,
  .why-title-line2 {
    font-size: 2.5rem;
  }

  .why-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-card {
    min-height: auto;
  }

  .intro {
    padding: 3rem 1.5rem;
  }

  .intro-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .intro-text-blocks {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .intro-text-left p,
  .intro-text-right p {
    font-size: 1rem;
  }

  .sectors-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-navigation {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .sectors-left {
    padding-right: 0;
  }

  .sectors-title {
    font-size: 2rem;
  }

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

  .closing-cta {
    padding-top: 3rem;
    padding-bottom: 4rem;
  }

  .footer {
    padding: 3rem 1.5rem 2rem;
  }

  .footer-top-nav {
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .footer-bottom-right {
    max-width: 100%;
    margin-left: 0;
    width: 100%;
  }

  .footer-newsletter {
    width: 100%;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    justify-content: center;
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2.5rem 1rem 3rem;
  }

  .hero h1 {
    font-size: 1.875rem;
  }

  .hero-banner {
    font-size: 0.8125rem;
  }

  .hero-body {
    font-size: 0.9375rem;
  }

  .hero-cta-box {
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
  }

  .hero-phone {
    font-size: 0.9375rem;
  }

  .cta-green,
  .cta-outline {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }

  .floating-urgent {
    bottom: 0.75rem;
    right: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.8125rem;
  }

  .floating-urgent svg {
    width: 16px;
    height: 16px;
  }

  .intro,
  .services-overview,
  .why-bidwellgrant,
  .sectors,
  .closing-cta {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Service Pages Styles */
.service-page {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Service Hero Section */
.service-hero {
  padding: 4rem 4rem;
  background-color: #f4f4f2;
  width: 100%;
}

.service-hero-navy {
  background-color: #495464;
}

.service-hero-navy .service-hero-label {
  color: #ffffff;
}

.service-hero-navy .service-hero-title {
  color: #ffffff;
}

.service-hero-navy .service-hero-description {
  color: #e8e8e8;
}

.service-hero-navy .service-hero-button {
  background-color: #ffffff;
  color: #495464;
}

.service-hero-navy .service-hero-button:hover {
  background-color: #bbbfca;
  color: #ffffff;
}

.service-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-hero-container-centered {
  grid-template-columns: 1fr;
  text-align: center;
}

.service-hero-left-centered {
  max-width: 800px;
  margin: 0 auto;
  align-items: center;
  text-align: center;
}

.service-hero-left-centered .service-hero-button {
  align-self: center;
  margin-top: 1rem;
}

.service-hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-hero-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #495464;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.service-hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  color: #495464;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  text-transform: uppercase;
}

.service-hero-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #495464;
  margin: 0;
  max-width: 600px;
}

.service-hero-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #495464;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0;
  transition: background-color 0.2s ease;
  align-self: flex-start;
  margin-top: 1rem;
}

.service-hero-button:hover {
  background-color: #bbbfca;
}

.service-hero-right {
  position: relative;
}

.service-hero-image-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.service-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  content-visibility: auto;
}

.service-hero-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(73, 84, 100, 0.5), rgba(73, 84, 100, 0.2));
  pointer-events: none;
  z-index: 1;
}

.service-hero-placeholder {
  width: 100%;
  height: 100%;
  background-color: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbbfca;
}

.service-hero-placeholder svg {
  width: 120px;
  height: 120px;
}

/* Problem & Solution Section */
.problem-solution {
  padding: 6rem 4rem;
  width: 100%;
  background-color: #f5f5f5;
}

.problem-solution-container {
  max-width: 1400px;
  margin: 0 auto;
}

.problem-solution-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: center;
}

.problem-solution-card {
  background-color: #ffffff;
  padding: 3rem;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.problem-solution-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  width: fit-content;
}

.problem-solution-badge svg {
  width: 16px;
  height: 16px;
}

.problem-badge {
  background-color: #878a8c;
  color: #2d3436;
}

.solution-badge {
  background-color: #bfd8f1;
  color: #2d3436;
}

.problem-solution-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3436;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.problem-solution-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3436;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.problem-solution-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #2d3436;
  margin: 0;
}

.problem-solution-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbbfca;
  flex-shrink: 0;
}

.problem-solution-arrow svg {
  width: 32px;
  height: 32px;
}

.solution-card {
  text-align: left;
}

.solution-card .problem-solution-badge {
  margin-top: auto;
}

/* Responsive styles for Problem & Solution */
@media (max-width: 968px) {
  .problem-solution-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .problem-solution-arrow {
    transform: rotate(90deg);
  }

  .problem-solution {
    padding: 4rem 2rem;
  }

  .problem-solution-card {
    padding: 2rem;
  }
}

@media (max-width: 640px) {
  .problem-solution {
    padding: 3rem 1.5rem;
  }

  .problem-solution-card {
    padding: 1.5rem;
  }

  .problem-solution-subtitle,
  .problem-solution-title {
    font-size: 1.25rem;
  }

  .problem-solution-text {
    font-size: 0.9375rem;
  }
}

/* Service Overview Section */
.service-overview {
  padding: 6rem 4rem;
  width: 100%;
  background-color: #bbbfca;
}

.service-overview-container {
  max-width: 1400px;
  margin: 0 auto;
}

.service-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #495464;
  margin-bottom: 2rem;
  text-align: left;
  letter-spacing: -0.02em;
}

.service-overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.service-overview-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #495464;
  font-weight: 400;
  margin: 0;
}

.service-overview-left .service-overview-text {
  font-weight: 500;
}

.service-overview-right .service-overview-text {
  color: #495464;
}

.internal-link {
  color: #495464;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.internal-link:hover {
  color: #bbbfca;
}

/* Service Features Section */
.service-features {
  padding: 1rem 4rem 6rem 4rem;
  width: 100%;
  background-color: #ffffff;
}

/* Service Includes List */
.service-includes-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1400px;
}

.service-include-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background-color: #495464;
  border-radius: 0;
  min-height: 100px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.service-include-item:hover {
  background-color: #5a6675;
}

.service-include-icon {
  width: 28px;
  height: 28px;
  color: #ffffff;
  flex-shrink: 0;
}

.service-include-item span {
  font-size: 1.125rem;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.6;
}

.service-features-container {
  max-width: 1400px;
  margin: 0 auto;
}

.service-features-label {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #495464;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.service-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-feature-card {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-feature-icon {
  width: 56px;
  height: 56px;
  color: #495464;
  flex-shrink: 0;
}

.service-feature-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.service-feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #495464;
  margin: 0;
}

.service-feature-card p {
  font-size: 1rem;
  line-height: 1.75;
  color: #495464;
  margin: 0;
}

/* Service Process Section */
.service-process {
  padding: 4rem 4rem 1rem 4rem;
  width: 100%;
  background-color: #f4f4f2;
}

.service-process-container {
  max-width: 1400px;
  margin: 0 auto;
}

.service-process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.service-process-step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-process-number {
  font-size: 4rem;
  font-weight: 700;
  color: #bbbfca;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.service-process-step h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #495464;
  margin: 0;
}

.service-process-step p {
  font-size: 1rem;
  line-height: 1.75;
  color: #495464;
  margin: 0;
}

/* Service CTA Section */
.service-cta {
  padding: 6rem 4rem;
  width: 100%;
  background-color: #e8e8e8;
}

.service-cta-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.service-cta-box {
  background-color: #ffffff;
  padding: 4rem;
  border-radius: 0;
  text-align: center;
  max-width: 800px;
  width: 100%;
}

.service-cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #495464;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-cta-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #495464;
  margin-bottom: 2rem;
}

.service-cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #495464;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0;
  transition: background-color 0.2s ease;
}

.service-cta-button:hover {
  background-color: #bbbfca;
}

/* ============================================
   RESPONSIVE SERVICE PAGES - MOBILE STYLES
   ============================================ */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
  .service-hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .service-hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .service-hero-description {
    font-size: 1rem;
    max-width: 100%;
  }

  .service-section-title {
    font-size: 2rem;
    margin-bottom: 1.75rem;
  }

  .service-overview-content {
    gap: 2.5rem;
  }

  .service-overview-text {
    font-size: 1.0625rem;
  }

  .service-features-grid {
    grid-template-columns: 1fr;
  }

  .service-includes-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .service-include-item {
    padding: 1.75rem;
  }

  .service-process-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .service-process-number {
    font-size: 3.5rem;
  }

  .service-cta-box {
    padding: 3.5rem 2.5rem;
  }
}

/* Tablet and Mobile (768px and below) */
@media (max-width: 768px) {
  /* Section Padding */
  .service-hero,
  .service-overview,
  .service-features,
  .service-process,
  .service-cta {
    padding: 4rem 2rem;
  }

  /* Container Widths */
  .service-hero-container,
  .service-overview-container,
  .service-features-container,
  .service-process-container {
    width: 100%;
    box-sizing: border-box;
  }

  /* Hero Section */
  .service-hero-container {
    gap: 2rem;
  }

  .service-hero-left {
    gap: 1.25rem;
  }

  .service-hero-label {
    font-size: 0.8125rem;
  }

  .service-hero-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .service-hero-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .service-hero-button {
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    align-self: flex-start;
  }

  .service-hero-right {
    width: 100%;
    order: -1;
  }

  .service-hero-image-wrapper {
    aspect-ratio: 16 / 9;
    width: 100%;
  }

  .service-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Service Overview */
  .service-section-title {
    font-size: 1.875rem;
    margin-bottom: 2rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .service-overview-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-overview-text {
    font-size: 1rem;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .internal-link {
    word-break: break-word;
  }

  /* Service Features/Includes */
  .service-features-label {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
  }

  .service-includes-list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    width: 100%;
  }

  .service-include-item {
    padding: 1.5rem;
    min-height: auto;
    gap: 1.25rem;
    width: 100%;
    box-sizing: border-box;
  }

  .service-include-item span {
    font-size: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    flex: 1;
  }

  .service-include-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  /* Service Process */
  .service-process-steps {
    gap: 2rem;
    width: 100%;
  }

  .service-process-step {
    gap: 0.75rem;
    width: 100%;
  }

  .service-process-number {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    line-height: 1;
  }

  .service-process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .service-process-step p {
    font-size: 0.9375rem;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Service CTA */
  .service-cta-content {
    width: 100%;
  }

  .service-cta-box {
    padding: 3rem 2rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .service-cta-title {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .service-cta-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .service-cta-button {
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  /* Section Padding */
  .service-hero,
  .service-overview,
  .service-features,
  .service-process,
  .service-cta {
    padding: 3rem 1.5rem;
  }

  /* Container Widths */
  .service-hero-container,
  .service-overview-container,
  .service-features-container,
  .service-process-container {
    width: 100%;
    box-sizing: border-box;
  }

  /* Hero Section */
  .service-hero-container {
    gap: 1.5rem;
  }

  .service-hero-left {
    gap: 1rem;
  }

  .service-hero-label {
    font-size: 0.75rem;
  }

  .service-hero-title {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .service-hero-description {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }

  .service-hero-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    width: 100%;
    text-align: center;
  }

  .service-hero-right {
    width: 100%;
    order: -1;
  }

  .service-hero-image-wrapper {
    aspect-ratio: 16 / 10;
    width: 100%;
  }

  .service-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Service Overview */
  .service-section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .service-overview-content {
    gap: 1.5rem;
    width: 100%;
  }

  .service-overview-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .internal-link {
    word-break: break-word;
  }

  /* Service Features/Includes */
  .service-features-label {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
  }

  .service-includes-list {
    gap: 1rem;
  }

  .service-include-item {
    padding: 1.25rem;
    gap: 1rem;
    min-height: auto;
  }

  .service-include-item span {
    font-size: 0.9375rem;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .service-include-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  /* Service Process */
  .service-process-steps {
    gap: 1.75rem;
    width: 100%;
  }

  .service-process-step {
    gap: 0.5rem;
    width: 100%;
  }

  .service-process-number {
    font-size: 2.5rem;
    margin-bottom: 0.25rem;
    line-height: 1;
  }

  .service-process-step h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .service-process-step p {
    font-size: 0.875rem;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Service CTA */
  .service-cta-content {
    width: 100%;
  }

  .service-cta-box {
    padding: 2rem 1.5rem;
    width: 100%;
    box-sizing: border-box;
  }

  .service-cta-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .service-cta-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .service-cta-button {
    padding: 0.75rem 1.75rem;
    font-size: 0.875rem;
    width: 100%;
    box-sizing: border-box;
  }

  /* Centered Hero Layout (Contact, How It Works) */
  .service-hero-centered {
    padding: 3rem 1.5rem;
  }

  .service-hero-container-centered {
    gap: 1.5rem;
  }

  .service-hero-left-centered {
    max-width: 100%;
  }

  .service-hero-left-centered .service-hero-title {
    font-size: 2rem;
  }

  .service-hero-left-centered .service-hero-description {
    font-size: 0.9375rem;
  }

  /* About Page (if needed) */
  .about-hero {
    padding: 4rem 1.5rem 0 1.5rem;
  }

  .about-intro,
  .about-content {
    padding: 3rem 1.5rem;
  }
}

/* Additional Mobile Enhancements for Service Pages */
@media (max-width: 768px) {
  /* Centered Hero Layout */
  .service-hero-centered {
    padding: 4rem 2rem;
  }

  .service-hero-container-centered {
    gap: 2rem;
  }

  .service-hero-left-centered .service-hero-title {
    font-size: 2.5rem;
  }

  .service-hero-left-centered .service-hero-description {
    font-size: 1rem;
  }
}

/* About Page Styles */
.about-hero {
  padding: 6rem 4rem 3rem 4rem;
  width: 100%;
  max-width: 100%;
  background-color: #495464;
  box-sizing: border-box;
  overflow-x: hidden;
}

.about-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.about-hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.about-hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 1;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background-color: #e8e8e8;
  margin-bottom: 3rem;
  box-sizing: border-box;
  display: block;
}

.about-hero-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(73, 84, 100, 0.6), rgba(73, 84, 100, 0.3));
  pointer-events: none;
  z-index: 1;
}

.about-hero-image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  display: block;
}

.about-hero-placeholder {
  width: 100%;
  height: 100%;
  background-color: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbbfca;
}

.about-hero-placeholder svg {
  width: 120px;
  height: 120px;
}

.about-intro {
  padding: 4rem 4rem;
  width: 100%;
  background-color: #ffffff;
}

.about-intro-container {
  max-width: 1400px;
  margin: 0 auto;
}

.about-intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-intro-text-large {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #495464;
  margin: 0;
  font-weight: 400;
}

.about-intro-text {
  font-size: 1rem;
  line-height: 1.75;
  color: #495464;
  margin: 0;
}

.about-content {
  padding: 4rem 4rem 6rem 4rem;
  width: 100%;
  background-color: #f4f4f2;
}

.about-content-container {
  max-width: 1400px;
  margin: 0 auto;
}

.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  align-content: start;
}

.about-content-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
  text-align: left;
}

.about-content-section:last-child {
  margin-bottom: 0;
}

.about-content-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #495464;
  margin: 0;
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}

.about-content-text-large {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #495464;
  margin: 0;
  font-weight: 400;
}

.about-content-text {
  font-size: 1rem;
  line-height: 1.75;
  color: #495464;
  margin: 0;
}

.about-content-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background-color: #e8e8e8;
  margin-top: 1rem;
}

.about-content-image-placeholder {
  width: 100%;
  height: 100%;
  background-color: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbbfca;
}

.about-content-image-placeholder svg {
  width: 80px;
  height: 80px;
}

/* Responsive styles for About Page */
@media (max-width: 968px) {
  .about-hero-container {
    width: 100%;
    box-sizing: border-box;
  }

  .about-hero-image-wrapper {
    aspect-ratio: 3.5 / 1;
    width: 100%;
    max-width: 100%;
    margin-bottom: 2.5rem;
  }

  .about-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .about-hero-title {
    font-size: 3rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .about-intro-content,
  .about-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-intro-text-large {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 4rem 2rem 2rem 2rem;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }

  .about-hero-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0;
    overflow-x: hidden;
  }

  .about-hero-image-wrapper {
    aspect-ratio: 2.5 / 1;
    width: 100%;
    max-width: 100%;
    margin-bottom: 2rem;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
    overflow: hidden;
  }

  .about-hero-image {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: cover;
    object-position: center;
    display: block;
    position: relative;
  }

  .about-intro,
  .about-content {
    padding: 4rem 2rem;
  }

  .about-hero-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .about-content-section {
    margin-bottom: 3rem;
  }
}

@media (max-width: 640px) {
  .about-hero {
    padding: 3rem 1.5rem 2rem 1.5rem;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }

  .about-hero-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0;
    overflow-x: hidden;
  }

  .about-hero-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .about-hero-image-wrapper {
    aspect-ratio: 2 / 1;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 2rem;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
  }

  .about-hero-image {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: cover;
    object-position: center;
    display: block;
    position: relative;
  }

  .about-intro,
  .about-content {
    padding: 3rem 1.5rem;
  }

  .about-hero-title {
    font-size: 2rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .about-intro-text-large {
    font-size: 1.125rem;
  }

  .about-content-text-large {
    font-size: 1.125rem;
  }
}

/* Legal Pages Styles */
.legal-page {
  width: 100%;
  margin: 0;
  padding: 0;
}

.legal-hero {
  padding: 6rem 4rem 4rem 4rem;
  width: 100%;
  background-color: #495464;
}

.legal-hero-container {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.legal-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.legal-hero-date {
  font-size: 1rem;
  color: #bbbfca;
  margin: 0;
}

.legal-content {
  padding: 4rem 4rem;
  width: 100%;
  background-color: #ffffff;
}

.legal-content-container {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #495464;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.legal-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #495464;
  margin-bottom: 1.5rem;
}

.legal-text:last-child {
  margin-bottom: 0;
}

.legal-list {
  margin: 1.5rem 0;
  padding-left: 2rem;
  list-style-type: disc;
}

.legal-list li {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #495464;
  margin-bottom: 1rem;
}

.legal-list li:last-child {
  margin-bottom: 0;
}

.legal-link {
  color: #495464;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.legal-link:hover {
  color: #bbbfca;
}

/* Legal Pages Responsive */
@media (max-width: 1024px) {
  .legal-hero {
    padding: 5rem 3rem 3.5rem 3rem;
  }

  .legal-hero-title {
    font-size: 3rem;
  }

  .legal-content {
    padding: 3.5rem 3rem;
  }
}

@media (max-width: 768px) {
  .legal-hero {
    padding: 4rem 2rem 3rem 2rem;
  }

  .legal-hero-container {
    width: 100%;
    box-sizing: border-box;
  }

  .legal-hero-title {
    font-size: 2.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .legal-hero-date {
    font-size: 0.9375rem;
  }

  .legal-content {
    padding: 3rem 2rem;
  }

  .legal-content-container {
    width: 100%;
    box-sizing: border-box;
  }

  .legal-section {
    margin-bottom: 2.5rem;
  }

  .legal-section-title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .legal-text {
    font-size: 1rem;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .legal-list {
    margin: 1.25rem 0;
    padding-left: 1.5rem;
  }

  .legal-list li {
    font-size: 1rem;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .legal-link {
    word-break: break-word;
  }
}

@media (max-width: 480px) {
  .legal-hero {
    padding: 3rem 1.5rem 2rem 1.5rem;
    overflow-x: hidden;
  }

  .legal-hero-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .legal-hero-title {
    font-size: 2rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.2;
  }

  .legal-hero-date {
    font-size: 0.9375rem;
  }

  .legal-content {
    padding: 2.5rem 1.5rem;
    overflow-x: hidden;
  }

  .legal-content-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .legal-section {
    margin-bottom: 2.5rem;
  }

  .legal-section:last-child {
    margin-bottom: 0;
  }

  .legal-section-title {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
  }

  .legal-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .legal-text:last-child {
    margin-bottom: 0;
  }

  .legal-list {
    margin: 1rem 0;
    padding-left: 1.25rem;
  }

  .legal-list li {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 0.875rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .legal-list li:last-child {
    margin-bottom: 0;
  }

  .legal-link {
    word-break: break-word;
  }
}

/* Contact Form Styles */
.contact-form-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* GHL form section background */
section#request.service-features {
  background-color: #f4f4f2;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.contact-form {
  background-color: #ffffff;
  padding: 3rem;
  border-radius: 0;
}

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

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #495464;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-form-input,
.contact-form-textarea {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  color: #495464;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
  border-color: #495464;
}

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

.contact-form-submit {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #495464;
  color: #ffffff;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-top: 1rem;
  width: 100%;
}

.contact-form-submit:hover:not(:disabled) {
  background-color: #bbbfca;
}

.contact-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-form-success {
  padding: 1rem;
  background-color: #e8e8e8;
  color: #495464;
  border-radius: 0;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 500;
}

.contact-form-error {
  padding: 1rem;
  background-color: #ffe8e8;
  color: #d32f2f;
  border-radius: 0;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 500;
}

@media (max-width: 768px) {
  .contact-form {
    padding: 2rem 1.5rem;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }

  .contact-form-group {
    margin-bottom: 2rem;
  }
}
/* All Services Page Styles */
.all-services-grid {
  padding: 6rem 4rem;
  width: 100%;
  background-color: #ffffff;
}

.all-services-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.all-service-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.all-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(73, 84, 100, 0.12);
}

.all-service-card-image {
  width: 100%;
  aspect-ratio: 3 / 1;
  position: relative;
  overflow: hidden;
}

.all-service-card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(73, 84, 100, 0.3) 0%, rgba(187, 191, 202, 0.3) 100%);
  pointer-events: none;
  z-index: 1;
}

.all-service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.all-service-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.all-service-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #495464;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.all-service-card-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #495464;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.all-service-card-includes {
  margin-bottom: 1.5rem;
}

.all-service-includes-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #bbbfca;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.75rem;
}

.all-service-includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.all-service-includes-list li {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #495464;
  margin-bottom: 0.5rem;
  padding-left: 1.25rem;
  position: relative;
}

.all-service-includes-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #495464;
  font-weight: 600;
}

.all-service-includes-list li:last-child {
  margin-bottom: 0;
}

.all-service-card-link-text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #495464;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease, gap 0.2s ease;
  margin-top: auto;
}

.all-service-card:hover .all-service-card-link-text {
  color: #bbbfca;
  gap: 0.75rem;
}

/* All Services Page Responsive */
@media (max-width: 1024px) {
  .all-services-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .all-services-grid {
    padding: 4rem 2rem;
    overflow-x: hidden;
  }

  .all-services-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
    box-sizing: border-box;
  }

  .all-service-card {
    width: 100%;
    box-sizing: border-box;
  }

  .all-service-card-image {
    width: 100%;
    max-width: 100%;
  }

  .all-service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .all-service-card-content {
    padding: 1.5rem;
    width: 100%;
    box-sizing: border-box;
  }

  .all-service-card-title {
    font-size: 1.375rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
  }

  .all-service-card-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .all-service-includes-label {
    font-size: 0.8125rem;
  }

  .all-service-includes-list li {
    font-size: 0.875rem;
    line-height: 1.6;
  }

  .all-service-card-link-text {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .all-services-grid {
    padding: 3rem 1.5rem;
    overflow-x: hidden;
  }

  .all-services-container {
    gap: 1.5rem;
    width: 100%;
    box-sizing: border-box;
  }

  .all-service-card {
    width: 100%;
    box-sizing: border-box;
  }

  .all-service-card-image {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 2.5 / 1;
  }

  .all-service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .all-service-card-content {
    padding: 1.25rem;
    width: 100%;
    box-sizing: border-box;
  }

  .all-service-card-title {
    font-size: 1.25rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
    margin-bottom: 0.875rem;
  }

  .all-service-card-description {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .all-service-card-includes {
    margin-bottom: 1.25rem;
  }

  .all-service-includes-label {
    font-size: 0.75rem;
    margin-bottom: 0.625rem;
  }

  .all-service-includes-list {
    margin: 0.75rem 0;
    padding-left: 1rem;
  }

  .all-service-includes-list li {
    font-size: 0.8125rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
  }

  .all-service-card-link-text {
    font-size: 0.8125rem;
  }
}

/* ========== Insight (blogs) ========== */
.insight-page {
  width: 100%;
  background-color: #ffffff;
}

.insight-hero {
  padding: 4rem 4rem 3rem;
  background-color: #495464;
}

.insight-hero-container {
  max-width: 1400px;
  margin: 0 auto;
}

.insight-hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.insight-hero-description {
  font-size: 1.125rem;
  color: #e8e8e8;
  margin: 0;
}

.insight-list {
  padding: 4rem 4rem;
}

.insight-list-container {
  max-width: 1400px;
  margin: 0 auto;
}

.insight-loading,
.insight-empty {
  font-size: 1.125rem;
  color: #495464;
  text-align: center;
  padding: 3rem;
}

.insight-error {
  padding: 2rem;
  background-color: #f4f4f2;
  color: #495464;
  border: 1px solid #e8e8e8;
  text-align: center;
  margin-bottom: 1rem;
}

.insight-retry {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #495464;
  color: #ffffff;
  border: none;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.insight-retry:hover {
  background-color: #5a6675;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.insight-card {
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.insight-card:hover {
  box-shadow: 0 4px 12px rgba(73, 84, 100, 0.1);
  border-color: #bbbfca;
}

.insight-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.insight-card-image-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #f4f4f2;
}

.insight-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.insight-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8e8e8 0%, #bbbfca 100%);
}

.insight-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.insight-card-date {
  font-size: 0.8125rem;
  color: #bbbfca;
  margin-bottom: 0.5rem;
  display: block;
}

.insight-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #495464;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.insight-card-excerpt {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #495464;
  margin: 0 0 1rem 0;
  flex: 1;
}

.insight-card-more {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #495464;
  display: inline-block;
}

.insight-card-more-btn {
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #495464;
  color: #ffffff;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.insight-card-link:hover .insight-card-more,
.insight-card-link:hover .insight-card-more-btn {
  color: #ffffff;
  background-color: #5a6675;
}

/* Insight detail */
.insight-detail {
  background-color: #ffffff;
  padding-bottom: 4rem;
}

.insight-detail-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.insight-back {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #495464;
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.2s ease;
}

.insight-back:hover {
  color: #bbbfca;
}

.insight-detail-date {
  font-size: 0.9375rem;
  color: #bbbfca;
  display: block;
  margin-bottom: 0.5rem;
}

.insight-detail-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #495464;
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.insight-detail-image-wrap {
  width: 100%;
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: 0;
}

.insight-detail-image {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.insight-detail-body {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #495464;
}

.blog-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #495464;
  margin: 2rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e8e8e8;
}

.blog-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #495464;
  margin: 1.5rem 0 0.75rem 0;
}

.blog-content p {
  margin-bottom: 1.25rem;
}

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

.blog-content li {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .insight-hero {
    padding: 3rem 2rem 2rem;
  }

  .insight-hero-title {
    font-size: 2.25rem;
  }

  .insight-hero-description {
    font-size: 1rem;
  }

  .insight-list {
    padding: 3rem 2rem;
  }

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

  .insight-detail-title {
    font-size: 1.75rem;
  }

  .insight-detail-container {
    padding: 0 1.5rem;
  }
}

/* Force refresh - Mon Feb  2 08:30:12 CET 2026 */
