/* Global base + responsive cleanup */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  .hero {
    padding: 70px 5% 45px;
  }
  .grid-container {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
  }
  .pricing-header {
    gap: 1.5rem;
  }
  .contact-layout {
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  .grid-container {
    grid-template-columns: 1fr;
  }
  .pricing-header {
    grid-template-columns: 1fr;
    text-align: center;
  }
  #pricing .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .team-grid {
    flex-direction: column;
    align-items: center;
  }
  .team-card {
    min-width: 0;
    width: 100%;
    max-width: 520px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: auto;
    padding: 60px 5% 35px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .btn-primary,
  .btn-outline {
    justify-content: center;
    width: 100%;
  }
  .contact-form {
    padding: 1.4rem;
  }
}

@media (max-width: 600px) {
  section {
    padding: 3.25rem 5%;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  #services .grid-container {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 1.35rem;
  }
  .pricing-card,
  .team-card {
    padding: 1.5rem 1rem;
  }
  .verse-text,
  .verse-ref {
    font-size: 0.75rem;
  }
}

:root {
            --primary:       #5a7a6a;
            --primary-dark:  #3d5c4e;
            --primary-light: #7d9e8c;
            --sage:          #7d9e8c;
            --sage-pale:     #d4e4db;
            --sage-mist:     #eef4f0;
            --sage-dark:     #3d5c4e;
            --sage-light:    #7d9e8c;
            --sage-deep:     #3d5c4e;
            --secondary:     #2c3028;
            --text-light:    #6b7566;
            --text-dark:     #2c3028;
            --text:          var(--charcoal);
            --soft-green:    #eef4f0;
            --cream:         var(--cream-warm);
            --bg-cream:      #faf8f4;
            --cream-warm:    #f2ede4;
            --linen:         #e4ddd0;
            --white:         #ffffff;
            --charcoal:      #2c3028;
            --terracotta:    #c4785a;
            --transition:    0.3s ease;
            --shadow:        0 4px 28px rgba(61,92,78,0.10);
            --shadow-lg:     0 16px 52px rgba(61,92,78,0.15);
      
            /* Section Colors */
            --team-bg: #2b303b;    /* Deep Charcoal */
            --footer-bg: #1a4d44;  /* Dark Forest Sage */
        }

* { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: 'Jost', sans-serif;
            background-color: var(--bg-cream);
            color: var(--secondary);
            line-height: 1.6;
        }


        section { padding: 5rem 10%; text-align: center; }
        h1, h2, h3 { color: var(--text-dark); }

       /* --- Navbar Styles --- */
        .navbar {
              padding: 0.1rem 5%; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 80px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 20px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--secondary);
            font-weight: 500;
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--primary);
        }

	.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 220px; 
    width: auto;
    display: block;
    transition: transform var(--transition);
}

/* Optional: Subtle shrink effect when hovering */
.logo img:hover {
    transform: scale(1.05);
}

        /* --- Hamburger Menu Icon --- */
        .hamburger {
            display: none;
            cursor: pointer;
            border: none;
            background: none;
        }

        .hamburger .bar {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px auto;
            background-color: var(--secondary);
            transition: var(--transition);
        }

        /* --- Hero Header --- */
  .hero {
    min-height: 80vh;
    background: var(--sage-mist);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 6% 60px;
  }
  .hero::after {
    display: none;
  }
  .hero-left { position: relative; z-index: 2; text-align: center; max-width: 800px; }
  .hero-right { display: none; }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--sage-dark);
    margin-bottom: 1.8rem;
    animation: fadeUp 0.6s ease both;
    justify-content: center;
  }
  .hero-eyebrow::before {
    content: ''; width: 24px; height: 2px; background: var(--sage-dark); display: block;
  }
  .hero h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 700; line-height: 1.15;
    color: var(--charcoal); margin-bottom: 1.5rem;
    animation: fadeUp 0.6s 0.1s ease both;
  }
  .hero h1 em {
    color: var(--sage-dark); font-style: italic;
  }
  .hero-sub {
    font-size: 1.05rem; color: var(--text-light); line-height: 1.8;
    margin-bottom: 2.5rem; font-weight: 300;
    animation: fadeUp 0.6s 0.2s ease both;
  }
  .hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap;
    animation: fadeUp 0.6s 0.3s ease both;
    justify-content: center;
  }
  .btn-primary {
    background: var(--sage-deep); color: var(--white);
    padding: 1rem 2rem; border-radius: 6px; text-decoration: none;
    font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em;
    transition: all 0.25s; border: none; cursor: pointer;
    display: inline-flex; align-items: center; gap: 0.5rem;
  }
  .btn-primary:hover { background: var(--charcoal); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(61,92,78,0.3); }
  .btn-outline {
    background: transparent; color: var(--sage-deep);
    border: 1.5px solid var(--sage);
    padding: 1rem 2rem; border-radius: 6px; text-decoration: none;
    font-weight: 500; font-size: 0.95rem; transition: all 0.25s;
    display: inline-flex; align-items: center; gap: 0.5rem;
  }
  .btn-outline:hover { background: var(--sage-deep); color: var(--white); border-color: var(--sage-deep); }

  /* Hero card panel */
  .hero-panel {
    background: var(--white); border-radius: 20px; padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    animation: fadeUp 0.7s 0.2s ease both;
  }
  .hero-panel-label {
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--sage-dark); margin-bottom: 1.2rem;
  }
  .hero-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 2rem; }
  .hero-stat {
    background: var(--sage-mist); border-radius: 12px; padding: 1.2rem;
    text-align: center;
  }
  .hero-stat-num {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.9rem; font-weight: 700; color: var(--sage-deep); line-height: 1;
  }
  .hero-stat-label {
    font-size: 0.75rem; color: var(--text-light); margin-top: 0.3rem; line-height: 1.4;
  }
  .hero-quote {
    border-left: 3px solid var(--sage-light); padding-left: 1.2rem; margin-bottom: 1.5rem;
  }
  .hero-quote p {
    font-family: 'Libre Baskerville', serif; font-style: italic;
    font-size: 0.95rem; color: var(--text); line-height: 1.7;
  }
  .hero-quote-author { font-size: 0.78rem; color: var(--text-light); margin-top: 0.5rem; font-weight: 500; }
  .hero-phone {
    display: flex; align-items: center; gap: 0.8rem;
    background: var(--sage-deep); border-radius: 10px; padding: 1rem 1.2rem;
    text-decoration: none; transition: all 0.2s;
  }
  .hero-phone:hover { background: var(--charcoal); }
  .hero-phone-icon {
    width: 36px; height: 36px; background: rgba(255,255,255,0.15); border-radius: 8px;
    display: flex; align-items: center; justify-content: center; font-size: 1rem;
  }
  .hero-phone-text { color: var(--white); }
  .hero-phone-label { font-size: 0.7rem; opacity: 0.7; }
  .hero-phone-num { font-size: 1rem; font-weight: 600; }
        header {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('cover-image.jpg') center/cover no-repeat;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            padding: 0 20px;
        }
        header h1 { color: white; font-size: 2.8rem; margin-bottom: 1rem; }
        header p { font-size: 1.2rem; max-width: 700px; margin: 0 auto; }

        /* --- Layout & Cards --- */
        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 2rem auto 0;
        }

        .card {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            transition: transform var(--transition);
        }
        .card { position: relative; padding-top: 3.5rem; }

        .service-icon {
          position: absolute;
          top: -28px;
          left: 50%;
          transform: translateX(-50%);
          width: 56px;
          height: 56px;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 50%;
          background: var(--white);
          box-shadow: var(--shadow);
          font-size: 28px;
        }
        .card:hover { transform: translateY(-5px); }
        .card:nth-child(even) { background: var(--soft-green); }

        .service-details {
          margin-top: 1rem;
          text-align: center;
        }

        .service-details summary {
          display: inline-block;
          margin: 0 auto;
          cursor: pointer;
        }

        .service-details p {
          margin-top: 0.85rem;
        }

        .verse-text {
          margin-top: 1rem;
          margin-bottom: 1rem;
          font-size: 0.9rem;
          color: var(--text-light);
        }

        .verse-ref {
          margin-top: 0.5rem;
          margin-bottom: 1.5rem;
          font-size: 0.9rem;
          color: var(--text-light);
        }

        .hero-verse,
        .values-verse {
          margin-bottom: 1.5rem;
        }

 /* --- Services Section --- */
	#services h2 {
	   font-weight: 900;
	}

  #services .grid-container,
  #values .grid-container {
     margin-top: 4rem;
  }
/* ============================================
           PRICING SECTION
        ============================================ */
        #pricing {
            background: var(--cream-warm);
            padding: 90px 6%;
        }

        .pricing-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: end;
            max-width: 1200px;
            margin: 0 auto 3.5rem auto;
        }

        .pricing-note {
            font-size: 0.95rem;
            color: var(--text-light);
            line-height: 1.75;
            font-weight: 300;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .pricing-card {
            background: var(--white);
            border-radius: 16px;
            padding: 2.5rem;
            border: 1px solid var(--linen);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: var(--sage-pale);
        }

        .pricing-card.featured {
            background: var(--primary-dark);
            border-color: var(--primary-dark);
        }

        .pricing-card.featured::before { background: var(--terracotta); }

        .pricing-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-5px);
        }

        .popular-tag {
            position: absolute;
            top: 0.4rem;
            left: 50%;
            transform: translateX(-50%);
            background: var(--terracotta);
            color: white;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 0.25rem 0.75rem;
            border-radius: 40px;
            z-index: 10;
        }

        .pricing-plan {
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 0.4rem;
        }

        .pricing-card.featured .pricing-plan { color: var(--sage-pale); }

        .pricing-card h3 {
            font-family: 'Libre Baskerville', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 0.3rem;
        }

        .pricing-card.featured h3 { color: var(--white); }

        .price-value {
            font-family: 'Libre Baskerville', serif;
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.3rem;
        }

        .price-value span {
            font-size: 0.88rem;
            color: var(--text-light);
            font-weight: 400;
            font-family: 'Jost', sans-serif;
        }

        .pricing-card.featured .price-value { color: var(--sage-pale); }
        .pricing-card.featured .price-value span { color: rgba(212,228,219,0.6); }

        .pricing-desc {
            font-size: 0.85rem;
            color: var(--text-light);
            line-height: 1.6;
            font-weight: 300;
            margin-top: 0.4rem;
            margin-bottom: 1.2rem;
            padding-bottom: 1.2rem;
            border-bottom: 1px solid var(--linen);
        }

        .pricing-card.featured .pricing-desc {
            color: rgba(212,228,219,0.65);
            border-color: rgba(255,255,255,0.12);
        }

        .pricing-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
            margin-bottom: 1.8rem;
            flex: 1;
        }

        .pricing-features li {
            display: flex;
            align-items: flex-start;
            gap: 0.65rem;
            font-size: 0.88rem;
            color: var(--text-light);
            line-height: 1.5;
            font-weight: 400;
            text-align: left;
            justify-content: flex-start;
        }

        .pricing-features li::before {
            content: '';
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            margin-top: 0.08rem;
            border-radius: 50%;
            background-color: var(--sage-mist);
            background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%235a7a6a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
        }

        .pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.85); }

        .pricing-card.featured .pricing-features li::before {
            background-color: rgba(255,255,255,0.15);
            background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%23d4e4db' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        }

        .btn-card {
            display: block;
            text-align: center;
            padding: 0.85rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.88rem;
            text-decoration: none;
            transition: all 0.2s;
            background: var(--sage-mist);
            color: var(--primary-dark);
            border: 1.5px solid var(--sage-pale);
            margin-top: auto;
        }

        .btn-card:hover {
            background: var(--primary-dark);
            color: var(--white);
            border-color: var(--primary-dark);
        }

        .pricing-card.featured .btn-card {
            background: var(--white);
            color: var(--primary-dark);
            border-color: var(--white);
        }



/* Responsive: Pricing Section (already handled above, removed duplicate) */

        .pricing-card.featured .btn-card:hover {
            background: var(--charcoal);
            color: var(--white);
            border-color: var(--charcoal);
        }



/* --- Meet the Team (Forced Side-by-Side) --- */
.team-section {
    background-color: var(--bg-cream);
    padding: 5rem 10%;
    text-align: center;
    width: 100%;
}

.team-section h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 3rem;
}

.team-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
  flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.team-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem 2rem;
    flex: 0 1 calc(50% - 1.25rem);
    min-width: 300px;
    max-width: 450px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
}

.team-photo img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

.team-card h3 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.team-card p strong {
    color: var(--primary);
    font-size: 1rem;
    display: block;
    margin-bottom: 1rem;
}


/* Mobile Breakpoint: Only stack when screen is very narrow (already handled above, removed duplicate) */




        /* --- SECTIONS --- */
        section { padding: 110px 6%; }
        .section-label {
          display: inline-flex; align-items: center; gap: 0.5rem;
          font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
          text-transform: uppercase; color: var(--sage-dark); margin-bottom: 1rem;
        }
        .section-label::before { content: ''; width: 18px; height: 2px; background: var(--sage-dark); }
        .section-title {
          font-family: 'Libre Baskerville', serif;
          font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700;
          color: var(--charcoal); line-height: 1.2; margin-bottom: 1rem;
        }
        .section-sub {
          font-size: 1rem; color: var(--text-light); line-height: 1.8;
          max-width: 500px; font-weight: 300;
        }

        /* --- Contact --- */
        .contact { background: var(--cream-warm); }
        .contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; max-width: 1100px; margin: 0 auto; align-items: start; }
        .contact-info {
          text-align: left;
          align-items: flex-start;
        }
        .contact-info .section-sub { margin-bottom: 2.5rem; }
        .contact-item {
          display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem;
          padding: 1.2rem 1.5rem; background: var(--white);
          border-radius: 12px; text-decoration: none; transition: all 0.2s;
          border: 1px solid var(--linen);
        }
        .contact-item:hover { border-color: var(--sage-light); box-shadow: var(--shadow); }
        .contact-item-static { cursor: default; }
        .contact-item-static:hover { border-color: var(--linen); box-shadow: none; }
        .contact-item-icon {
          width: 42px; height: 42px; background: var(--sage-mist); border-radius: 10px;
          display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
          flex-shrink: 0;
        }
        .contact-item-label { font-size: 0.7rem; color: var(--text-light); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }
        .contact-item-val { font-size: 0.92rem; color: var(--charcoal); font-weight: 500; margin-top: 0.1rem; }
        .contact-social,
        .footer-social {
          display: flex;
          flex-direction: row;
          align-items: center;
          flex-wrap: wrap;
          gap: 0.6rem;
        }
        .contact-social { margin-top: 0.8rem; }
        .contact-social-link,
        .social-link {
          display: inline-flex;
          align-items: center;
          gap: 0.45rem;
          text-decoration: none;
          border-radius: 999px;
          padding: 0.4rem 0.7rem;
          font-size: 0.78rem;
          font-weight: 500;
          transition: all 0.2s;
        }
        .contact-social-link {
          color: var(--charcoal);
          background: var(--white);
          border: 1px solid var(--linen);
        }
        .contact-social-link:hover {
          border-color: var(--sage-light);
          box-shadow: var(--shadow);
        }
        .social-link {
          color: var(--sage-pale);
          background: rgba(255,255,255,0.08);
          border: 1px solid rgba(255,255,255,0.16);
        }
        .social-link:hover {
          color: var(--white);
          border-color: rgba(255,255,255,0.3);
        }
        .contact-social-link svg,
        .social-link svg {
          width: 16px;
          height: 16px;
          display: block;
          fill: currentColor;
        }
        .contact-item-val,
        .footer-contact,
        .footer-contact a {
          overflow-wrap: anywhere;
          word-break: break-word;
        }
        .contact-form {
          background: var(--white); border-radius: 20px; padding: 3rem;
          border: 1px solid var(--linen); box-shadow: var(--shadow);
        }
        .contact-form h3 {
          font-family: 'Libre Baskerville', serif; font-size: 1.5rem;
          font-weight: 700; color: var(--charcoal); margin-bottom: 0.4rem;
        }
        .contact-cta {
          display: block;
          text-align: center;
          width: 100%;
          margin-bottom: 2.5rem;
          padding: 1.1rem;
        }
        .contact-form-sub { font-size: 0.88rem; color: var(--text-light); margin-bottom: 2rem; font-weight: 300; }
        .contact-submit {
          width: 100%;
          justify-content: center;
          font-size: 1rem;
          padding: 1.1rem;
        }
        .form-group { margin-bottom: 1.2rem; }
        .form-group label {
          display: block; font-size: 0.75rem; font-weight: 600; color: var(--text);
          margin-bottom: 0.45rem; letter-spacing: 0.05em; text-transform: uppercase;
        }
        .form-group input, .form-group textarea, .form-group select {
          width: 100%; padding: 0.85rem 1.1rem;
          border: 1.5px solid var(--linen); border-radius: 10px;
          font-family: 'Jost', sans-serif; font-size: 0.95rem; font-weight: 300;
          color: var(--text); background: var(--cream); transition: all 0.2s; outline: none;
          appearance: none;
        }
        .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
          border-color: var(--sage); background: var(--white); box-shadow: 0 0 0 4px rgba(125,158,140,0.1);
        }
        .form-group textarea { resize: vertical; min-height: 110px; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

        /* --- Footer --- */
        footer {
          background: var(--charcoal); padding: 3rem 6% 2rem;
        }
        .footer-top {
          display: flex; align-items: flex-start; justify-content: space-between;
          padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.08);
          margin-bottom: 1.5rem; gap: 2rem; flex-wrap: wrap;
        }
        .footer-logo {
          font-family: 'Libre Baskerville', serif; font-size: 1.1rem;
          color: var(--white); margin-bottom: 0.5rem;
        }
        .footer-tagline { font-size: 0.8rem; color: rgba(255,255,255,0.4); font-weight: 300; }
        .footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
        .footer-links a {
          font-size: 0.82rem; color: rgba(255,255,255,0.45);
          text-decoration: none; transition: color 0.2s;
        }
        .footer-links a:hover { color: var(--sage-light); }
        .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
        .footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
        .footer-contact { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
        .footer-contact a { color: var(--sage-light); text-decoration: none; }

        /* --- Mobile Navigation --- */
        @media (max-width: 800px) {
            .hero { display: block; }
            .hero::after { display: none; }
            .hero-right { display: none; }
            .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
          .footer-social { flex-direction: row; }
          .team-grid { flex-direction: column; align-items: center; }
          .team-card { min-width: 0; width: 100%; max-width: 520px; }
            .nav-links { display: none; }
            .nav-links.active { display: flex !important; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: var(--white); box-shadow: 0 10px 10px rgba(0,0,0,0.1); padding: 20px 0; z-index: 1001; }
            section { padding: 80px 5%; }
            .form-row { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }

            .hamburger.active .bar:nth-child(2) { opacity: 0; }
            .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
            .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

            .nav-links {
                position: absolute;
                top: 100%;
                left: -100%;
                flex-direction: column;
                background-color: var(--white);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 10px rgba(0,0,0,0.1);
                padding: 20px 0;
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links li {
                margin: 15px 0;
            }

}

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }
