/* Simplified Treasure Coast Data CSS */

/* ---- Base Styles ---- */
:root {
    /* Colors */
    --primary: #0a4a8f;
    --primary-dark: #063366;
    --primary-light: #1a73e8;
    --secondary: #00bfa5;
    --dark: #222832;
    --gray-dark: #4a5568;
    --gray-medium: #718096;
    --gray-light: #e2e8f0;
    --gray-lightest: #f8fafc;
    --white: #ffffff;
    --success: #38a169;
    --danger: #e53e3e;
    
    /* Typography */
    --heading-font: 'Playfair Display', 'Lora', serif;
    --body-font: 'Inter', sans-serif;
    --serif-font: 'Lora', serif;
    
    /* Spacing */
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;
    
    /* Other */
    --border-radius: 8px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  /* Reset */
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
  }
  
  body {
    font-family: var(--body-font);
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--gray-lightest);
    overflow-x: hidden;
    width: 100%;
    position: relative;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  * {
    max-width: 100%;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  ul {
    list-style: none;
  }
  
  a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
  }
  
  a:hover {
    color: var(--primary-light);
  }
  
  /* Typography */
  h1, h2, h3, h4 {
    font-family: var(--heading-font);
    margin-bottom: var(--space-md);
    line-height: 1.3;
    font-weight: 600;
  }
  
  .hero-title, .section-title {
    font-family: var(--heading-font);
  }
  
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
  h4 { font-size: 1.2rem; }
  
  p {
    margin-bottom: var(--space-md);
  }
  
  /* Layout */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    width: 100%;
    box-sizing: border-box;
  }
  
  section {
    padding: var(--space-xl) 0;
    width: 100%;
    box-sizing: border-box;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
  }
  
  .section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
  }
  
  .section-header.light h2,
  .section-header.light p,
  .section-header.light .section-tag {
    color: var(--white);
  }
  
  /* Capability Statement Section - ensure light text on dark background */
  .capability-statement-section .section-header .section-tag,
  .capability-statement-section .section-header h2,
  .capability-statement-section .section-header p {
    color: var(--white);
  }
  
  .capability-statement-section .section-tag {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 20px;
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
  }
  
  .btn-primary {
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
  }
  
  .btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    color: var(--white);
  }
  
  /* Ensure header Contact button has good contrast */
  .site-header .btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
  }
  
  .site-header .btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
  }
  
  .btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    font-weight: 600;
  }
  
  .btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
  }
  
  /* Ensure header outline button has good contrast */
  .site-header .btn-outline {
    color: var(--primary);
    border: 2px solid var(--primary);
    background-color: rgba(255, 255, 255, 0.95);
  }
  
  .site-header .btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
  }
  
  .btn-text {
    background: none;
    color: var(--primary);
    padding: 0;
    display: inline-flex;
    align-items: center;
  }
  
  .btn-text svg {
    margin-left: 0.5rem;
    transition: transform 0.3s;
  }
  
  .btn-text:hover svg {
    transform: translateX(4px);
  }
  
  .btn-rounded {
    border-radius: 50px;
  }
  
  .btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
  
  /* Header & Navigation */
  .site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 100;
  }
  
  @media (max-width: 992px) {
    .site-header {
      padding: 0.75rem 0;
    }
  }
  
  @media (max-width: 768px) {
    .site-header {
      padding: 0.5rem 0;
    }
  }
  
  .main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
  }
  
  .logo img {
    height: 40px;
    width: auto;
  }
  
  @media (max-width: 768px) {
    .logo img {
      height: 32px;
    }
  }
  
  .nav-links {
    display: flex;
    gap: 2rem;
  }
  
  .nav-link {
    color: var(--dark);
    font-weight: 500;
    position: relative;
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s;
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
  
  .dropdown-menu {
    position: absolute;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 1rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
  }
  
  .dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .dropdown-item {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--gray-dark);
    border-radius: 4px;
  }
  
  .dropdown-item:hover {
    background-color: var(--gray-lightest);
  }
  
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
  }
  
  .nav-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--dark);
    transition: all 0.3s;
  }
  
  /* Hero Section */
  .hero-section {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 160px 0 80px;
    position: relative;
  }
  
  .hero-section .container {
    display: flex;
    align-items: center;
    gap: 4rem;
  }
  
  .hero-content {
    flex: 1;
  }
  
  .hero-title {
    color: var(--white);
    margin-bottom: var(--space-md);
  }
  
  .gradient-text {
    background: linear-gradient(90deg, var(--white) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: var(--space-lg);
  }
  
  .hero-cta-group {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
  }
  
  .hero-visual {
    flex: 1;
  }
  
  .floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
  }
  
  .card-1 {
    top: -30px;
    left: -40px;
  }
  
  .card-2 {
    bottom: -20px;
    right: -20px;
  }
  
  /* Cards & Grids */
  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
  }
  
  .card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: var(--space-lg);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .card h3 {
    margin-bottom: var(--space-md);
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(10, 74, 143, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
  }
  
  /* Process Steps */
  .step-card {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
  }
  
  .step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
  }
  
  .step-content h3 {
    color: var(--white);
  }
  
  .step-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .step-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--secondary);
    border-radius: 50%;
  }
  
  /* Contact Form */
  .contact-container {
    display: flex;
    gap: var(--space-xl);
  }
  
  .contact-form {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    box-shadow: var(--shadow);
  }
  
  .form-group {
    margin-bottom: var(--space-md);
  }
  
  .form-group label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 500;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    font-family: inherit;
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.2);
  }
  
  /* Footer */
  .site-footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-xl) 0 var(--space-lg);
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
    margin-bottom: var(--space-lg);
  }
  
  .footer-brand {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-logo-text h3 {
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
  }
  
  .footer-social {
    margin-top: var(--space-md);
  }
  
  .footer-social .social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-social .social-link:hover {
    color: var(--white);
  }
  
  .footer-social .social-link svg {
    width: 20px;
    height: 20px;
  }
  
  .footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
  }
  
  .footer-links-column {
    flex: 1;
    min-width: 160px;
  }
  
  .footer-links-column h4 {
    color: var(--white);
    margin-bottom: var(--space-md);
  }
  
  .footer-links-column li {
    margin-bottom: var(--space-sm);
  }
  
  .footer-links-column a {
    color: rgba(255, 255, 255, 0.7);
  }
  
  .footer-links-column a:hover {
    color: var(--white);
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-lg);
    text-align: center;
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .hero-section .container,
    .contact-container {
      flex-direction: column;
    }
    
    .nav-toggle {
      display: flex;
    }
    
    .nav-links {
      position: fixed;
      top: 60px;
      left: 0;
      width: 100%;
      background: var(--white);
      flex-direction: column;
      padding: var(--space-md);
      transform: translateX(-100%);
      opacity: 0;
      visibility: hidden;
      box-shadow: var(--shadow);
      transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
      max-height: calc(100vh - 60px);
      overflow-y: auto;
    }
    
    .nav-links.active {
      transform: translateX(0);
      opacity: 1;
      visibility: visible;
    }
    
    .nav-links .nav-item {
      width: 100%;
      padding: var(--space-sm) 0;
      border-bottom: 1px solid var(--gray-light);
    }
    
    .nav-links .nav-item:last-child {
      border-bottom: none;
    }
    
    .dropdown-menu {
      position: static;
      box-shadow: none;
      padding: 0 0 0 var(--space-lg);
      margin-top: var(--space-sm);
    }
    
    .step-card {
      flex-direction: column;
    }
    
    section {
      padding: var(--space-lg) 0;
    }
  }
  
  @media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    
    .hero-cta-group {
      flex-direction: column;
    }
  }
  
  /* Animation Helper Classes */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s, transform 0.8s;
  }
  
  .fade-in.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* AOS Compatibility */
  [data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s, transform 0.8s;
  }
  
  [data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Hero Metrics */
  .hero-metrics {
    display: flex;
    gap: var(--space-lg);
    margin: var(--space-lg) 0;
    flex-wrap: wrap;
  }
  
  .hero-metric {
    display: flex;
    flex-direction: column;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
  }
  
  .hero-metric .metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
  }
  
  .hero-metric .metric-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: var(--space-sm);
  }
  
  /* Proven Scale Section */
  .proven-scale-section {
    background-color: var(--white);
  }
  
  .scale-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
  }
  
  .scale-metric-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .scale-metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }
  
  .scale-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
  }
  
  .scale-title {
    color: var(--primary);
    margin-bottom: var(--space-sm);
  }
  
  .scale-description {
    color: var(--gray-dark);
    font-size: 0.95rem;
  }
  
  /* Selected Projects Section */
  .selected-projects-section {
    background-color: var(--gray-lightest);
  }
  
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
  }
  
  .project-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }
  
  .project-header {
    margin-bottom: var(--space-md);
  }
  
  .project-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
  }
  
  .project-title {
    color: var(--primary);
    margin-bottom: var(--space-md);
  }
  
  .project-description {
    color: var(--gray-dark);
    margin-bottom: var(--space-md);
  }
  
  .project-highlights {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .highlight-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--gray-dark);
  }
  
  .highlight-item svg {
    color: var(--primary);
    flex-shrink: 0;
  }
  
  /* Core Capabilities Section */
  .core-capabilities-section {
    background-color: var(--white);
  }
  
  .capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
  }
  
  .capability-card {
    background-color: var(--gray-lightest);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    border: 2px solid transparent;
    transition: all 0.3s;
  }
  
  .capability-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
  }
  
  .capability-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: var(--space-md);
  }
  
  .capability-title {
    color: var(--primary);
    margin-bottom: var(--space-sm);
  }
  
  .capability-description {
    color: var(--gray-dark);
    margin-bottom: var(--space-md);
  }
  
  .capability-features {
    list-style: none;
  }
  
  .capability-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-dark);
  }
  
  .capability-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
  }
  
  /* Technical Capabilities Section */
  .technical-capabilities-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
  }
  
  .tech-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
  }
  
  .tech-category {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    backdrop-filter: blur(10px);
  }
  
  .category-title {
    color: var(--white);
    margin-bottom: var(--space-md);
    font-family: var(--heading-font);
  }
  
  .tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
  }
  
  .tech-tag {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  
  /* How We Work Section */
  .how-we-work-section {
    background-color: var(--white);
  }
  
  .work-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
  }
  
  .work-step {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
  }
  
  .work-step .step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    flex-shrink: 0;
  }
  
  .work-step .step-content {
    flex: 1;
  }
  
  .work-step .step-title {
    color: var(--primary);
    margin-bottom: var(--space-sm);
  }
  
  .work-step .step-description {
    color: var(--gray-dark);
  }
  
  .work-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    padding: var(--space-lg);
    background-color: var(--gray-lightest);
    border-radius: var(--border-radius);
  }
  
  .principle-item h4 {
    color: var(--primary);
    margin-bottom: var(--space-sm);
  }
  
  .principle-item p {
    color: var(--gray-dark);
    font-size: 0.9rem;
  }
  
  /* Good Fit Section */
  .good-fit-section {
    background-color: var(--gray-lightest);
  }
  
  .fit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
  }
  
  .fit-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    box-shadow: var(--shadow);
    text-align: center;
  }
  
  .fit-title {
    color: var(--primary);
    margin-bottom: var(--space-md);
  }
  
  .fit-description {
    color: var(--gray-dark);
  }
  
  /* Capability Statement Section */
  .capability-statement-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
  }
  
  .capability-statement-content {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .capability-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
  }
  
  .highlight-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .highlight-box h3 {
    color: var(--white);
    margin-bottom: var(--space-sm);
    font-family: var(--heading-font);
  }
  
  .highlight-box p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
  }
  
  .capability-cta {
    text-align: center;
  }
  
  /* About Section */
  .about-section {
    background-color: var(--white);
  }
  
  .about-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .about-description {
    color: var(--gray-dark);
    margin-bottom: var(--space-md);
    font-size: 1.05rem;
    line-height: 1.7;
  }
  
  .company-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding: var(--space-lg);
    background-color: var(--gray-lightest);
    border-radius: var(--border-radius);
  }
  
  .info-item {
    color: var(--gray-dark);
  }
  
  .info-item strong {
    color: var(--primary);
    display: block;
    margin-bottom: 0.25rem;
  }
  
  /* Contact Section Updates */
  .contact-details {
    margin-top: var(--space-lg);
  }
  
  .contact-item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    align-items: flex-start;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
  }
  
  .contact-text h4 {
    color: var(--primary);
    margin-bottom: 0.25rem;
  }
  
  .contact-text a {
    color: var(--gray-dark);
  }
  
  .contact-text a:hover {
    color: var(--primary);
  }
  
  /* Logo Styling */
  .logo img {
    height: 50px;
    width: auto;
  }
  
  /* Badge Styling */
  .badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-md);
  }
  
  /* Nav CTA Updates */
  .nav-cta {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
  }
  
  .nav-cta-mobile {
    display: none;
  }
  
  @media (max-width: 992px) {
    .nav-cta {
      display: none;
    }
    
    .nav-cta-mobile {
      display: block;
      margin-top: var(--space-md);
    }
    
    .nav-cta-mobile .btn {
      width: 100%;
      text-align: center;
      margin-bottom: var(--space-sm);
    }
  }
  
  @media (max-width: 768px) {
    .nav-cta {
      display: none;
    }
    
    .nav-cta-mobile {
      display: block;
      margin-top: var(--space-md);
    }
    
    .nav-cta-mobile .btn {
      width: 100%;
      text-align: center;
      margin-bottom: var(--space-sm);
    }
    
    .hero-metrics {
      flex-direction: column;
    }
    
    .work-process {
      grid-template-columns: 1fr;
    }
  }