/* =========================
   Base / Reset
========================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
      Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #0F172A;
    scroll-padding-top: 130px;
  }
  
  body {
    background-color: #F8FAFC;
  }
  
  /* =========================
     Layout Utilities
  ========================= */
  
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
  }
  
  section {
    padding: 4rem 0;
  }
  
  h1, h2, h3, h4 {
    line-height: 1.25;
    color: #0F172A;
  }
  
  h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }
  
  h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
  }
  
  h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  p {
    color: #334155;
  }
  
  /* =========================
     Top Bar
  ========================= */
  
  .top-bar {
    background-color: #0B1220;
    color: #FFFFFF;
    font-size: 0.9rem;
  }
  
  .top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
  }
  
  .top-bar a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
  }
  
  .top-bar a:hover {
    color: #F97316;
  }
  
  /* =========================
     Header / Navigation
  ========================= */

  .logo img {
    height: 95px;
    width: auto;
    display: block;
  }
  
  .site-header {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #E5E7EB;
    z-index: 1000;
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 2rem;
  }
  
  .logo {
    flex-shrink: 0;
  }
  
  .logo a {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0F172A;
    text-decoration: none;
  }
  
  .main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 0.4rem;
  }

  .mobile-menu-toggle {
    display: none; /* Hidden on desktop */
  }
  
  .main-nav a {
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    color: #334155;
    white-space: nowrap;
  }
  
  .main-nav a:hover {
    color: #F97316;
  }
  
  .nav-link-disabled {
    cursor: default;
    opacity: 0.7;
  }
  
  .nav-link-disabled:hover {
    color: #334155;
  }

  .header-phone-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
  }
  
  .nav-cta {
    padding: 0.5rem 0.9rem;
    border-radius: 4px;
    background-color: #F97316;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
  }
  
  .nav-cta:hover {
    background-color: #EA580C;
    color: #ffffff !important;
  }
  
  
  .emergency-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .nav-phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    color: #F97316;
    transition: color 0.2s;
    white-space: nowrap;
  }
  
  .nav-phone-cta:hover {
    color: #EA580C;
  }
  
  .phone-label {
    font-weight: 600;
    color: #F97316;
  }
  
  .phone-number {
    font-weight: 700;
    font-size: 1.55rem;
    color: #F97316;
  }
  
  /* =========================
     Hero
  ========================= */
  
  .hero {
    background-color: #F8FAFC;
    background-image: linear-gradient(rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.5)), url('../assets/images/hero/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    color: #ffffff;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding-top: 0;
  }
  
  .hero-content {
    max-width: 700px;
    position: relative;
    z-index: 1;
    transform: translateY(-3rem);
  }
  
  .hero-content {
    max-width: 700px;
    position: relative;
    z-index: 1;
  }
  
  .hero h1 {
    color: #ffffff;
  }
  
  .hero p {
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
    color: #F8FAFC;
  }
  
  .hero-actions {
    display: flex;
    gap: 1rem;
  }
  
  /* =========================
     Buttons
  ========================= */
  
  .btn-primary,
  .btn-secondary {
    display: inline-block;
    padding: 0.7rem 1.25rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
  }
  
  .btn-primary {
    background-color: #F97316;
    color: #ffffff;
    border: none;
  }
  
  .btn-primary:hover {
    background-color: #EA580C;
  }
  
  .btn-secondary {
    border: 2px solid #F97316;
    color: #F97316;
    background-color: transparent;
  }
  
  .btn-secondary:hover {
    background-color: #FFF7ED;
    border-color: #EA580C;
    color: #EA580C;
  }
  
  /* =========================
     Value Props
  ========================= */
  
  .value-props {
    background-color: #ffffff;
  }
  
  .value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
  }
  
  .value-item {
    text-align: center;
  }
  
  .value-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* =========================
     Services Preview
  ========================= */
  
  .services-preview {
    background-color: #F8FAFC;
  }
  
  .services-preview h2 {
    margin-bottom: 0.75rem;
  }
  
  .services-intro {
    color: #334155;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
  
  .service-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
  }
  
  .text-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: #2563EB;
    text-decoration: none;
    font-weight: 600;
  }
  
  .text-link:hover {
    color: #1D4ED8;
  }
  
  /* =========================
     About Section
  ========================= */
  
  .about-section {
    background-color: #ffffff;
    padding: 3rem 0;
  }
  
  .about-section h2 {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .about-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .about-text p {
    margin-bottom: 1.25rem;
    color: #334155;
    line-height: 1.7;
  }
  
  .about-text p:last-of-type {
    margin-bottom: 1.5rem;
  }
  
  .about-text strong {
    color: #0F172A;
    font-weight: 600;
  }
  
  .about-image {
    width: 100%;
    height: 350px;
    background-color: #F1F5F9;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  @media (max-width: 768px) {
    .about-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .about-image {
      height: 300px;
    }
  }
  
  /* =========================
     Page Title Section
  ========================= */
  
  .page-title-section {
    background-color: #ffffff;
    padding: 2rem 0 3rem;
    border-bottom: 2px solid #E5E7EB;
  }
  
  .page-title-section h1 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0F172A;
    letter-spacing: -0.02em;
  }
  
  .services-tagline {
    text-align: center;
    color: #64748B;
    font-size: 1.2rem;
    margin: 0 auto;
    max-width: 700px;
    font-weight: 400;
    line-height: 1.7;
  }
  
  /* =========================
     Service Categories
  ========================= */
  
  .service-categories {
    background-color: #ffffff;
    padding-top: 3rem;
  }
  
  .category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 2rem;
  }
  
  .category-card {
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  
  .category-image {
    width: 100%;
    height: 363px;
    background-color: #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .category-content {
    padding: 2rem;
  }
  
  .category-content h2 {
    margin-bottom: 1rem;
    color: #0F172A;
  }
  
  .category-content > p {
    margin-bottom: 1.5rem;
    color: #334155;
    line-height: 1.7;
  }
  
  .service-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .service-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #334155;
  }
  
  .service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #F97316;
    font-weight: bold;
    font-size: 1.2rem;
  }
  
  /* =========================
     Service Area
  ========================= */
  
  .service-area-section {
    background-color: #F8FAFC;
  }
  
  .service-area-section h2 {
    margin-bottom: 0.75rem;
  }
  
  .service-area-section > .container > p {
    margin-bottom: 2rem;
    color: #334155;
  }
  
  .service-area-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    align-items: start;
  }
  
  .service-area-list-bulleted {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .service-area-list-bulleted li {
    padding: 0.75rem 0;
    color: #334155;
    font-size: 1.1rem;
    border-bottom: 1px solid #E5E7EB;
    position: relative;
    padding-left: 1.5rem;
  }
  
  .service-area-list-bulleted li:last-child {
    border-bottom: none;
  }
  
  .service-area-list-bulleted li::before {
    content: "•";
    color: #F97316;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
  }
  
  .service-area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .service-area-item {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    color: #334155;
    font-weight: 500;
  }
  
  .service-area-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #E5E7EB;
  }
  
  .service-area-map iframe {
    display: block;
    width: 100%;
    border: none;
  }
  
  @media (max-width: 768px) {
    .service-area-content {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .service-area-map iframe {
      height: 350px;
    }
  }
  
  /* =========================
     Careers Page
  ========================= */
  
  /* Careers Hero Section */
  .careers-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    background-color: #1E293B;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-image: url("assets/images/careers/careers_hero.jpg"); */
  }
  
  .careers-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.75) 100%);
    z-index: 1;
  }
  
  .careers-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 4rem 1.25rem;
  }
  
  .careers-hero-content h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #ffffff;
    letter-spacing: -0.5px;
  }
  
  .careers-hero-subhead {
    font-size: 1.25rem;
    font-weight: 400;
    color: #E2E8F0;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
  }
  
  .careers-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .careers-hero .btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
  }
  
  .careers-hero .btn-secondary:hover {
    background-color: #ffffff;
    color: #1E293B;
  }
  
  @media (max-width: 768px) {
    .careers-hero {
      min-height: 350px;
    }
    
    .careers-hero-content h1 {
      font-size: 2rem;
    }
    
    .careers-hero-subhead {
      font-size: 1.1rem;
    }
    
    .careers-hero-actions {
      flex-direction: column;
      align-items: stretch;
    }
    
    .btn-secondary {
      text-align: center;
    }
  }
  
  .careers-roles {
    background-color: #ffffff;
    padding: 5rem 0;
  }
  
  .careers-roles h2 {
    margin-bottom: 3rem;
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    text-align: center;
    color: #0F172A;
  }
  
  .roles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .role-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  
  .role-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }
  
  .role-icon {
    width: 64px;
    height: 64px;
    background-color: #F1F5F9;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
    /* Placeholder for icon/image */
  }
  
  .role-image {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
  }
  
  .role-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .role-card h3 {
    margin-bottom: 0.5rem;
    color: #0F172A;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.2px;
  }
  
  .role-pay {
    color: #0F172A;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    margin-top: 0;
  }
  
  .role-card p {
    color: #334155;
    line-height: 1.7;
    margin: 0;
  }
  
  @media (max-width: 768px) {
    .roles-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .role-card {
      padding: 2rem;
    }
  }
  
  /* Culture Strip */
  .careers-culture {
    background-color: #F8FAFC;
    padding: 3rem 0;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
  }
  
  .culture-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .culture-item {
    text-align: center;
    padding: 1.5rem;
  }
  
  .culture-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 0.5rem;
    letter-spacing: -0.2px;
  }
  
  .culture-item p {
    color: #64748B;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
  }
  
  @media (max-width: 768px) {
    .culture-strip {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }
  
  .apprentice-development {
    background-color: #ffffff;
    padding: 5rem 0;
  }
  
  .apprentice-development h2 {
    margin-bottom: 1rem;
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    text-align: center;
    color: #0F172A;
  }
  
  .development-intro {
    margin-bottom: 3rem;
    color: #334155;
    font-size: 1.1rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .development-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3.5rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .development-left-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .development-media {
    width: 100%;
    height: 450px;
    background-color: #F1F5F9;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
  }
  
  .development-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .development-description {
    max-width: 100%;
  }
  
  .development-description p {
    color: #334155;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
  }
  
  .development-description p:last-child {
    margin-bottom: 0;
  }
  
  .development-path {
    background-color: #F8FAFC;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    align-self: start;
  }
  
  .development-path h3 {
    margin-bottom: 1.5rem;
    color: #0F172A;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.2px;
  }
  
  .development-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .development-list li {
    padding: 1.25rem 0;
    padding-left: 2rem;
    position: relative;
    color: #334155;
    line-height: 1.7;
    border-bottom: 1px solid #E5E7EB;
  }
  
  .development-list li:last-child {
    border-bottom: none;
  }
  
  .development-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #F97316;
    font-weight: bold;
    font-size: 1.2rem;
  }
  
  .development-list li strong {
    color: #0F172A;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }
  
  @media (max-width: 968px) {
    .development-content {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }
    
    .development-left-column {
      order: 1;
    }
    
    .development-path {
      order: 2;
    }
    
    .development-media {
      height: 350px;
    }
  }
  
  .careers-why {
    background-color: #F8FAFC;
    padding: 5rem 0;
  }
  
  .careers-why h2 {
    margin-bottom: 1rem;
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    text-align: center;
    color: #0F172A;
  }
  
  .careers-intro {
    margin-bottom: 3rem;
    color: #334155;
    font-size: 1.1rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .why-item {
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  
  .why-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }
  
  .why-icon {
    width: 56px;
    height: 56px;
    background-color: #F1F5F9;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
    /* Placeholder for icon/image */
  }
  
  .why-item h4 {
    margin-bottom: 0.75rem;
    color: #0F172A;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.2px;
  }
  
  .why-item p {
    color: #334155;
    line-height: 1.7;
    margin: 0;
  }
  
  @media (max-width: 768px) {
    .why-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .why-item {
      padding: 2rem;
    }
  }
  
  .career-application {
    background-color: #ffffff;
    padding: 5rem 0;
  }
  
  .career-application h2 {
    margin-bottom: 1rem;
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    text-align: center;
    color: #0F172A;
  }
  
  .career-application > .container > p {
    margin-bottom: 3rem;
    color: #334155;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
  }
  
  .career-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  }
  
  .career-form {
    width: 100%;
  }
  
  .career-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .career-form label {
    display: block;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: #0F172A;
  }
  
  .career-form .form-row label {
    margin-bottom: 0;
  }
  
  .career-form label > * {
    display: block;
    width: 100%;
    margin-top: 0.5rem;
  }
  
  .career-form input,
  .career-form select,
  .career-form textarea {
    padding: 1rem;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background-color: #ffffff;
  }
  
  .career-form input:focus,
  .career-form select:focus,
  .career-form textarea:focus {
    outline: none;
    border-color: #F97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
  }
  
  .career-form textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  .btn-full-width {
    width: 100%;
    margin-top: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
  }
  
  @media (max-width: 768px) {
    .career-form-wrapper {
      padding: 2rem 1.5rem;
    }
    
    .career-form .form-row {
      grid-template-columns: 1fr;
      gap: 0;
    }
  }
  
  /* =========================
     About Page
  ========================= */
  
  .about-intro {
    background-color: #ffffff;
  }
  
  .about-intro h2 {
    margin-bottom: 1.5rem;
  }
  
  .about-intro p {
    color: #334155;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 800px;
  }
  
  .about-intro p:not(.credibility-line):last-child {
    margin-bottom: 1.5rem;
  }
  
  .credibility-line {
    font-weight: 600;
    color: #0F172A;
    font-size: 1.1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #E5E7EB;
    max-width: 800px;
  }
  
  .about-story {
    background-color: #F8FAFC;
  }
  
  .about-story h2 {
    margin-bottom: 1.5rem;
  }
  
  .about-story p {
    color: #334155;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 800px;
  }
  
  .about-story p:last-child {
    margin-bottom: 0;
  }
  
  .about-how {
    background-color: #ffffff;
  }
  
  .about-how h2 {
    margin-bottom: 1rem;
  }
  
  .about-subhead {
    margin-bottom: 2rem;
    color: #334155;
    font-size: 1.05rem;
  }
  
  .expectations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .expectation-item {
    background-color: #F8FAFC;
    padding: 1.5rem;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
  }
  
  .expectation-item h4 {
    margin-bottom: 0.75rem;
    color: #0F172A;
  }
  
  .expectation-item p {
    color: #334155;
    line-height: 1.7;
    margin: 0;
  }
  
  .about-team {
    background-color: #F8FAFC;
  }
  
  .about-team h2 {
    margin-bottom: 1rem;
  }
  
  .team-info {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  
  .team-member-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
  }
  
  .team-member-text {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
  }
  
  .team-member-text h3 {
    margin-bottom: 0.5rem;
    color: #0F172A;
  }
  
  .team-role {
    color: #F97316;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  
  .team-member-text p:not(.team-role) {
    color: #334155;
    line-height: 1.8;
    margin: 0;
  }
  
  .team-member-image {
    width: 100%;
    height: 350px;
    background-color: #F1F5F9;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  @media (max-width: 768px) {
    .team-member-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .team-member-image {
      height: 300px;
    }
  }
  
  .team-note {
    color: #334155;
    line-height: 1.8;
    max-width: 800px;
    margin-top: 2rem;
    font-style: italic;
  }
  
  /* =========================
     Contact Page
  ========================= */
  
  .contact-info-section {
    background-color: #ffffff;
  }
  
  .contact-info-simple {
    background-color: #F8FAFC;
    padding: 3rem 0;
  }
  
  .contact-info-simple-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  
  .contact-info-simple-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .contact-item-title {
    margin: 0;
    color: #0F172A;
    font-size: 1rem;
    font-weight: 600;
  }
  
  .contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F97316;
  }
  
  .contact-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .contact-info-simple-item p {
    margin: 0;
    color: #334155;
    font-size: 1rem;
  }
  
  .contact-hours-simple {
    line-height: 1.6;
  }
  
  .contact-hours-emergency {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.25rem 0.6rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0f766e;
    background-color: #ccfbf1;
    border-radius: 4px;
  }
  
  @media (max-width: 768px) {
    .contact-info-simple-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
    
    .contact-hours-item {
      grid-column: auto;
      margin: 0;
      max-width: none;
    }
  }
  
  .contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .contact-info-card {
    background-color: #F8FAFC;
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
    text-align: center;
  }
  
  .contact-info-card h3 {
    margin-bottom: 1rem;
    color: #0F172A;
  }
  
  .contact-link {
    color: #2563EB;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
  }
  
  .contact-link:hover {
    color: #1D4ED8;
    text-decoration: underline;
  }
  
  .contact-address {
    color: #334155;
    line-height: 1.6;
    margin: 0.5rem 0;
  }
  
  .contact-note {
    color: #334155;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
  }
  
  .business-hours-section {
    background-color: #F8FAFC;
  }
  
  .business-hours-section h2 {
    margin-bottom: 1.5rem;
  }
  
  .hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hours-item {
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid #E5E7EB;
  }
  
  .hours-item strong {
    color: #0F172A;
    display: block;
    margin-bottom: 0.25rem;
  }
  
  .hours-item span {
    color: #334155;
  }
  
  .hours-note {
    color: #334155;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1rem;
  }
  
  .contact-form-section {
    background-color: #ffffff;
  }
  
  .contact-form-section h2 {
    margin-bottom: 0.75rem;
  }
  
  .contact-form-section > .container > p {
    margin-bottom: 2rem;
    color: #334155;
  }
  
  .contact-form {
    max-width: 700px;
    margin-top: 2rem;
  }
  
  .contact-form label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 500;
  }
  
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    width: 100%;
    margin-top: 0.25rem;
    padding: 0.55rem;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    font-family: inherit;
  }
  
  .contact-form input:focus,
  .contact-form select:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: #F97316;
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.1);
  }
  
  /* =========================
     Service Request Form
  ========================= */
  
  .service-request {
    background-color: #ffffff;
  }
  
  .request-form {
    max-width: 700px;
    margin-top: 2rem;
  }
  
  .request-form label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 500;
  }
  
  .request-form input,
  .request-form select,
  .request-form textarea {
    width: 100%;
    margin-top: 0.25rem;
    padding: 0.55rem;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    font-family: inherit;
  }
  
  .request-form input:focus,
  .request-form select:focus,
  .request-form textarea:focus {
    outline: none;
    border-color: #F97316;
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.1);
  }
  
  .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
  }
  
  .form-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #334155;
  }
  
  /* =========================
     Gallery
  ========================= */
  
  .gallery-section {
    background-color: #51535b;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    border-left: none;
    border-right: none;
    border-radius: 0;
    margin: 0;
    max-width: 100%;
    padding: 4rem 0 6rem 0;
  }
  
  .gallery-section .container {
    padding: 0 1.25rem;
  }
  
  .gallery-section .container {
    padding: 0 1.25rem;
  }
  
  .gallery-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .gallery-title {
    color: #bba008 !important;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 0.75rem 0;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid currentColor;
    display: inline-block;
  }
  
  .gallery-section h2.gallery-title {
    color: #e5711e;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 0.75rem 0;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid currentColor;
    display: inline-block;
  }
  
  .gallery-tagline {
    color: #e7c507;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.9;
    margin: 0;
  }
  
  .gallery-slideshow {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: transparent;
    border-radius: 0;
    padding: 0;
  }
  
  .gallery-viewport {
    flex: 1;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.1);
    aspect-ratio: 4 / 3.63;
    background-color: #51535b;
  }
  
  .gallery-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }
  
  .gallery-image {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
  }
  
  .gallery-arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background-color: #ffffff;
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  }
  
  .gallery-arrow:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.2);
  }
  
  .gallery-arrow:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  }
  
  .gallery-arrow svg {
    width: 24px;
    height: 24px;
  }
  
  .gallery-arrow svg path {
    stroke: #2c3e50;
    transition: stroke 0.3s ease;
  }
  
  .gallery-arrow:hover svg path {
    stroke: #F97316;
  }
  
  /* =========================
     Footer
  ========================= */
  
  /* =========================
     Footer
  ========================= */
  
  .site-footer {
    background-color: #1E293B;
    color: #E2E8F0;
    padding: 2rem 0 0;
  }
  
  .footer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    padding-bottom: 1.5rem;
  }
  
  .footer-main .footer-column:nth-child(3) {
    padding-right: 0.5rem;
  }
  
  .footer-main .footer-column:nth-child(4) {
    padding-left: 0.5rem;
  }
  
  .footer-column {
    display: flex;
    flex-direction: column;
  }
  
  .footer-column-logo {
    align-items: center;
    text-align: center;
  }
  
  .footer-logo {
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  .footer-logo img {
    height: 80.5px;
    width: auto;
  }
  
  .footer-tagline {
    color: #94A3B8;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
  }
  
  .footer-heading {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    margin-top: 0;
  }
  
  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-nav a {
    color: #CBD5E1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
  }
  
  .footer-nav a:hover {
    color: #F97316;
  }
  
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .footer-contact-item {
    color: #CBD5E1;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
  }
  
  .footer-contact-item strong {
    color: #FFFFFF;
    font-weight: 600;
  }
  
  .footer-contact-item .contact-address {
    color: #CBD5E1;
  }
  
  .footer-link {
    color: #CBD5E1;
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .footer-link:hover {
    color: #F97316;
  }
  
  .footer-service-areas {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  
  .footer-service-areas li {
    color: #CBD5E1;
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0.25rem 0;
    padding-left: 1.25rem;
    position: relative;
  }
  
  .footer-service-areas li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #F97316;
    font-weight: bold;
  }
  
  .footer-service-areas .service-area-item {
    display: list-item;
    background: none;
    border: none;
    color: #CBD5E1;
    padding: 0;
    margin: 0;
    border-radius: 0;
    width: auto;
  }
  
  .footer-call-cta {
    margin-bottom: 1rem;
    width: 100%;
  }
  
  .btn-footer-cta {
    display: block;
    padding: 0.75rem 1.5rem;
    background-color: #F97316;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: background-color 0.2s;
    text-align: center;
    width: 100%;
  }
  
  .btn-footer-cta:hover {
    background-color: #EA580C;
    color: #FFFFFF;
  }
  
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #CBD5E1;
    text-decoration: none;
    transition: all 0.2s;
  }
  
  .social-icon:hover {
    background-color: #F97316;
    color: #FFFFFF;
    transform: translateY(-2px);
  }
  
  .footer-trust {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  
  .footer-trust-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.5rem;
  }
  
  .trust-item {
    color: #94A3B8;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
  }
  
  .footer-trust-row .trust-item {
    flex: 1;
    text-align: center;
  }
  
  .footer-bottom {
    background-color: #0F172A;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .footer-bottom-content p {
    color: #94A3B8;
    font-size: 0.85rem;
    margin: 0;
  }
  
  .footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .footer-bottom-links a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
  }
  
  .footer-bottom-links a:hover {
    color: #F97316;
  }
  
  .footer-separator {
    color: #475569;
  }
  
  @media (max-width: 768px) {
    .footer-main {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .footer-trust-row {
      flex-direction: column;
      gap: 0.75rem;
    }
    
    .footer-bottom-content {
      flex-direction: column;
      text-align: center;
    }
    
    .btn-footer-cta {
      width: auto;
      min-width: 150px;
    }
  }
  
  @media (min-width: 768px) {
    .category-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
    
    .category-image {
      height: 303px;
    }
    
    .roles-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .development-content {
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: start;
    }
    
    .development-path {
      align-self: start;
    }
  }
  
  @media (max-width: 767px) {
    .logo img {
      height: 90px;
    }
    
    .category-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .category-image {
      height: 303px;
    }
    
    .category-content {
      padding: 1.5rem;
    }
    
    .service-area-list {
      flex-direction: column;
    }
    
    .service-area-item {
      width: 100%;
      text-align: center;
    }
    
    .why-grid {
      grid-template-columns: 1fr;
    }
    
    .expectations-grid {
      grid-template-columns: 1fr;
    }
    
    .team-member {
      padding: 1.5rem;
    }
    
    .contact-info-grid {
      grid-template-columns: 1fr;
    }
    
    .hours-grid {
      grid-template-columns: 1fr;
    }
  }

/* =========================
   MOBILE OVERRIDES (max-width: 900px)
   ========================= */

@media (max-width: 900px) {
  /* A) Eliminate horizontal scrolling */
  html, body {
    overflow-x: hidden;
    width: 100%;
  }

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

  /* Ensure no 100vw causes overflow */
  * {
    max-width: 100%;
  }

  /* B) Header/Nav Mobile - Hamburger Menu */
  .header-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
  }

  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    margin: 0;
    text-align: center;
  }

  .logo img {
    height: 60px;
    margin: 0 auto;
  }

  .header-phone-section {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
  }

  .emergency-text {
    display: block !important;
    font-size: 0.52rem;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
  }

  .nav-phone-cta {
    font-size: 0.95rem !important;
  }

  .phone-number {
    font-size: 0.95rem !important;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  /* Hide hamburger on desktop */
  @media (min-width: 901px) {
    .mobile-menu-toggle {
      display: none;
    }
  }

  .mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #334155;
    margin: 5px 0;
    transition: 0.3s;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-top: 1px solid #E5E7EB;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    gap: 0.5rem;
    width: 100%;
    grid-column: 1 / -1;
  }

  .main-nav .header-phone-section {
    display: none;
  }

  .site-header.nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 0.75rem 1rem;
    text-align: center;
    border-radius: 4px;
    white-space: normal;
  }

  .main-nav a:hover {
    background-color: #F8FAFC;
  }

  .header-phone-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-self: end;
    gap: 0.25rem;
    width: auto;
    padding: 0;
    border: none;
    margin: 0;
  }

  .emergency-text {
    display: none;
  }

  .nav-phone-cta {
    font-size: 1.1rem;
    white-space: nowrap;
  }

  .phone-number {
    font-size: 1.1rem;
  }

  /* C) Hero overflow fixes */
  .hero {
    width: 100%;
    max-width: 100%;
    min-height: 50vh;
    background-attachment: scroll; /* Better performance on mobile */
    padding: 2rem 0;
  }

  .hero-content {
    max-width: 100%;
    width: 100%;
    padding: 0 1.25rem;
    transform: translateY(-2rem);
  }

  .hero h1 {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }

  .hero p {
    font-size: 1rem;
  }

  /* D) Gallery title sizing */
  .gallery-title,
  .gallery-section h2.gallery-title {
    font-size: clamp(22px, 6vw, 34px);
    letter-spacing: 1px;
    padding-bottom: 0.25rem;
  }

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

  .gallery-section .container {
    padding: 0 0.5rem;
  }

  .gallery-slideshow {
    padding: 0;
    gap: 0.5rem;
  }

  .gallery-viewport {
    aspect-ratio: 4 / 3.63;
    min-height: 320px;
    width: 100%;
    position: relative;
    height: 0;
    padding-bottom: 90.75%; /* 4:3.63 aspect ratio fallback (3.63/4 = 0.9075) */
    background-color: #51535b;
  }

  @supports (aspect-ratio: 4 / 3) {
    .gallery-viewport {
      height: auto;
      padding-bottom: 0;
    }
  }

  .gallery-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
  }

  .gallery-image {
    flex: 0 0 100%;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 12px;
  }

  .gallery-arrow {
    width: 36px;
    height: 36px;
  }

  .gallery-arrow svg {
    width: 20px;
    height: 20px;
  }

  /* E) Footer layout */
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding-bottom: 1rem;
  }

  .footer-column {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .footer-heading {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .footer-nav a {
    font-size: 0.85rem;
    padding: 0.25rem 0;
  }

  .footer-contact-item {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }

  .footer-service-areas {
    font-size: 0.85rem;
  }

  .footer-tagline {
    font-size: 0.8rem;
  }

  .btn-footer-cta {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
  }

  .footer-trust-row {
    font-size: 0.85rem;
    padding-top: 1rem;
  }

  .footer-bottom {
    font-size: 0.8rem;
    padding: 1rem 0;
  }

  /* Additional mobile fixes */
  .container {
    padding: 0 1rem;
  }

  section {
    padding: 2.5rem 0;
  }

  h1 {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }

  h2 {
    font-size: clamp(1.5rem, 4vw, 1.75rem);
  }
}