:root {
    /* Brand Colors */
    --color-sage: #A8B59D;
    --color-sage-dark: #8F9F80;
    --color-sage-light: #C9D4BC;
  
    --color-terra: #3FA987;
    --color-gold: #C2A878;
  
    --color-off-white: #F7F7F5;
    --color-stone: #D1D1CA;
    --color-charcoal: #2E2E2E;
  
    --color-accent: #3FA9F5;
    --color-highlight: #F2E3D5;
  
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Quicksand', sans-serif;
  }
  
  /* Typography Base */
  body {
  font-family: var(--font-body);
  color: var(--color-charcoal);
  background-color: var(--color-off-white);
  margin: 0;
  padding: 0;
  }
  
  h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  }
  
  /* Buttons */
  .button-accent {
    background-color: var(--color-accent);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .button-accent:hover {
    background-color: var(--color-terra);
  }
  
  /* Improved Navbar Centering */
  .navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
  }
  
  .navbar > .container-fluid {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  
  /* Brand styling */
  .navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding-left: 2vw !important;
    position: absolute;
    left: 0;
    z-index: 1;
  }
  
  /* Centered navigation */
  .navbar-collapse {
    position: static;
    flex-basis: auto;
    flex-grow: 0; /* Prevent growing to fill space */
    width: auto;
    margin: 0 auto;
  }
  
  .navbar-nav {
    gap: 2rem;
    position: relative;
  }
  
  /* Nav link styling */
  .nav-link {
    position: relative;
    padding: 0.5rem 0;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  
  .nav-link:hover::after,
  .nav-link.active::after {
    transform: scaleX(1);
  }
  
  
  /* Contact button positioning */
  .navbar .btn {
    position: absolute;
    right: 0;
    z-index: 1;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
  }
  
  /* Restore active underline */
  .nav-link.active {
    position: relative;
    font-weight: bold;
  }
  
  .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent);
    transform: scaleX(1);
    transition: transform 0.3s ease;
  }
  
  /* Fix hamburger toggler positioning */
  .navbar-toggler {
    position: absolute;
    right: 15px;
    z-index: 2;
    border: none;
    background: transparent;
    width: 36px;
    height: 30px;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    box-shadow: none;
  }
  
  /* Adjust container to account for absolute positioning */
  .navbar > .container-fluid {
    padding-right: 50px; /* Make space for toggler */
    padding-left: 20px;
    position: relative;
    min-height: 60px; /* Ensure navbar has consistent height */
  }
  
  /* Mobile menu adjustments */
  @media (max-width: 992px) {
    .navbar-brand {
        position: static;
        padding-left: 0 !important;
    }
    
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-sage-dark);
        z-index: 1000;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.5rem 1rem;
    }
    
    .navbar .btn {
        margin-top: 1rem;
        display: inline-block;
    }
  }
  
  /* Cards */
  .card {
    background-color: var(--color-sage-light);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
  }
  
  /* Swatches (optional utility) */
  .swatch {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .swatch-item {
    flex: 1 1 150px;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: bold;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* Image Guidelines Layout (optional utility) */
  .image-guidelines {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .image-guidelines div {
    background-color: var(--color-highlight);
    padding: 1rem;
    border-radius: 0.5rem;
  }
  
  /* Footer Shit */
  footer {
    background-color: var(--color-charcoal);
    color: white;
    padding: 1.5rem 2rem 2.5rem; /* extra bottom padding for copyright */
    font-family: var(--font-body);
    font-size: 0.9rem;
    position: relative;
  }
  
  /* Container wraps the main content (left + right) */
  .footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  /* Left: Big Company Name */
  .footer-left {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
  }
  
  /* Right: Links */
  .footer-right {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: flex-end;
    font-weight: 400;
    max-width: calc((4 * 100px) + (3 * 1.5rem)); /* 4 items at 100px + 3 gaps */
  }
  
  .footer-link {
    flex: 0 1 auto;  /* fixed width so max 4 fit */
    white-space: nowrap; /* prevent text breaking */
    text-align: right;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .footer-link:hover,
  .footer-link:focus {
    color: var(--color-accent);
    text-decoration: underline;
  }
  
  /* Bottom copyright bar full width, centered */
  .footer-bottom {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 400;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Responsive: stack everything vertically on small screens */
  @media (max-width: 600px) {
    .footer-main {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }
    .footer-left {
      font-size: 1.3rem;
    }
    .footer-right {
      gap: 1rem;
    }
  }
  
  
  /* Slide Show */
  .slide-show {
    position: relative;
    height: 300px; /* adjust as you like */
    color: white;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    
    background:
      linear-gradient(135deg,#0000 20.5%,#8f9f80 0 29.5%,#0000 0) 0 16px,
      linear-gradient(45deg,#0000 8%,#8f9f80 0 17%,#0000 0 58%) 32px 0,
      linear-gradient(135deg,#0000 8%,#8f9f80 0 17%,#0000 0 58%,#8f9f80 0 67%,#0000 0),
      linear-gradient(45deg,#0000 8%,#8f9f80 0 17%,#0000 0 58%,#8f9f80 0 67%,#0000 0 83%,#8f9f80 0 92%,#0000 0),
      #a8b59d;
    background-size: 64px 64px;
    background-repeat: repeat;
    overflow: hidden;
  }
  
  .slides {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 1s ease-in-out;
    max-width: 600px;
  }
  
  .slide.active {
    opacity: 1;
  }
  
  
  /* What We Offer */
  .services-section {
    background-color: var(--color-off-white);
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-charcoal);
    margin-bottom: 2rem;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .service-card {
    background-color: var(--color-sage-light);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: var(--font-body);
  }
  
  .service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-charcoal);
  }
  
  .service-card p {
    font-size: 1rem;
    color: var(--color-charcoal);
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  }
  
  .service-card.angled {
    background: var(--color-sage-light);
    position: relative;
    padding: 2rem;
    font-family: var(--font-body);
    color: var(--color-charcoal);
    clip-path: polygon(0 0, 100% 0%, 100% 90%, 0% 100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  }
  
  .service-card.angled:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  }
  
  .about-section {
    background-color: var(--color-off-white);
    padding: 5rem 2rem;
  }
  
  .about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .about-text {
    flex: 1 1 500px;
    font-family: var(--font-body);
    color: var(--color-charcoal);
  }
  
  .about-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-sage-dark);
  }
  
  .about-text p {
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  
  .about-image {
    flex: 1 1 400px;
    text-align: center;
  }
  
  .about-image img {
    max-width: 100%;
  }
  
  .cta-divider {
    background-color: var(--color-sage);
    padding: 2rem 1rem;
    color: white;
    text-align: center;
  }
  
  .cta-tagline {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
  }
  
  .contact-section {
    background:
      linear-gradient(135deg, #a8b59d 25%, transparent 25%) -50px 0,
      linear-gradient(225deg, #a8b59d 25%, transparent 25%) -50px 0,
      linear-gradient(315deg, #a8b59d 25%, transparent 25%),
      linear-gradient(45deg, #a8b59d 25%, transparent 25%);
    background-size: 100px 100px;
    background-color: #8f9f80;
    color: white;
    padding: 4rem 2rem;
  }
  
  .contact-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }
  
  .contact-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .contact-section p {
    font-family: var(--font-body);
    margin-bottom: 2rem;
    font-size: 1rem;
    color: #f7f7f5;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: 2px solid var(--color-accent);
  }
  
  .contact-form button {
    align-self: center;
    padding: 0.75rem 2rem;
  }
  