/* Global Styles */
:root {
  --primary: #1e3a5f;
  --accent: #f59e0b;
  --text: #1a1a2e;
  --text-light: #ffffff;
  --bg: #ffffff;
  --bg-alt: #f8f9fa;
  --radius: 8px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-child.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Nav scroll state */
.nav-scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1) !important;
}

/* Mobile nav body lock */
body.nav-mobile-open {
  overflow: hidden;
}

:root {
    --primary: #1e3a5f;
    --accent: #f59e0b;
    --text: #1a1a1a;
    --text-light: #6b7280;
    --bg: #ffffff;
    --bg-alt: #f9fafb;
    --radius: 8px;
  }

  #navigation_1 {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .nav-wrapper {
    background-color: var(--bg);
    box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 2px 12px rgba(0,0,0,0.06);
    width: 100%;
  }

  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }

  .nav-logo {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.3px;
    flex-shrink: 0;
    z-index: 10;
  }

  .nav-logo:hover {
    color: var(--accent);
  }

  .nav-toggle-input {
    display: none;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-link {
    display: block;
    padding: 8px 14px;
    font-size: 0.925rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    border-radius: var(--radius);
    transition: color 0.2s, background-color 0.2s;
    white-space: nowrap;
  }

  .nav-link:hover {
    color: var(--primary);
    background-color: var(--bg-alt);
  }

  .nav-cta-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--accent);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    white-space: nowrap;
    transition: background-color 0.2s, transform 0.15s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }

  .nav-cta-btn:hover {
    background-color: #d97706;
    transform: translateY(-1px);
  }

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

  .nav-cta-mobile {
    display: none;
  }

  .nav-hamburger {
    display: none;
    cursor: pointer;
    color: var(--primary);
    padding: 6px;
    border-radius: var(--radius);
    transition: background-color 0.2s;
    flex-shrink: 0;
    z-index: 10;
  }

  .nav-hamburger:hover {
    background-color: var(--bg-alt);
  }

  .nav-close {
    display: none;
    cursor: pointer;
    color: var(--primary);
    padding: 6px;
    border-radius: var(--radius);
    transition: background-color 0.2s;
    flex-shrink: 0;
    z-index: 10;
  }

  .nav-close:hover {
    background-color: var(--bg-alt);
  }

  @media (max-width: 767px) {
    .nav-cta-desktop {
      display: none;
    }

    .nav-hamburger {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .nav-links {
      display: none;
      flex-direction: column;
      align-items: stretch;
      gap: 4px;
      background-color: var(--bg);
      border-top: 1px solid #e5e7eb;
      padding: 16px 24px 24px;
      width: 100%;
    }

    .nav-link {
      padding: 12px 16px;
      font-size: 1rem;
      border-radius: var(--radius);
    }

    .nav-link:hover {
      background-color: var(--bg-alt);
    }

    .nav-cta-mobile {
      display: block;
      margin-top: 8px;
    }

    .nav-cta-mobile .nav-cta-btn {
      display: block;
      text-align: center;
      padding: 13px 20px;
      font-size: 0.975rem;
    }

    .nav-toggle-input:checked ~ .nav-links {
      display: flex;
      position: absolute;
      top: 68px;
      left: 0;
      right: 0;
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
      z-index: 999;
    }

    .nav-toggle-input:checked ~ .nav-hamburger {
      display: none;
    }

    .nav-toggle-input:checked ~ .nav-close {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .nav-container {
      flex-wrap: wrap;
      height: 68px;
      align-items: center;
    }
  }

  @media (min-width: 768px) and (max-width: 1023px) {
    .nav-links {
      gap: 2px;
    }

    .nav-link {
      padding: 8px 10px;
      font-size: 0.875rem;
    }

    .nav-cta-btn {
      padding: 9px 16px;
      font-size: 0.85rem;
    }
  }

  @media (min-width: 1024px) {
    .nav-container {
      padding: 0 40px;
    }
  }

.hero-section {
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }

  .hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

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

  .hero-overlay {
    position: absolute;
    inset: 0;
    background-color: #0a0f1a;
    opacity: 0.62;
    z-index: 1;
  }

  .hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
  }

  .hero-content {
    text-align: center;
    max-width: 780px;
    width: 100%;
  }

  .hero-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 24px 0;
  }

  .hero-subheadline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #e2e8f0;
    line-height: 1.7;
    margin: 0 0 40px 0;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--accent, #f59e0b);
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 16px 36px;
    border-radius: var(--radius, 6px);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  }

  .hero-cta svg {
    flex-shrink: 0;
    transition: transform 0.2s ease;
  }

  .hero-cta:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    background-color: #e08d00;
  }

  .hero-cta:hover svg {
    transform: translateX(4px);
  }

  .hero-cta:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 3px;
  }

  @media (min-width: 768px) {
    .hero-section {
      min-height: 85vh;
    }

    .hero-content-wrapper {
      min-height: 85vh;
      padding: 120px 40px;
    }

    .hero-subheadline {
      margin-bottom: 48px;
    }
  }

  @media (min-width: 1024px) {
    .hero-content-wrapper {
      padding: 120px 60px;
    }
  }

  @keyframes hero-fade-up {
    from {
      opacity: 0;
      transform: translateY(28px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .animate-on-scroll .hero-headline {
    animation: hero-fade-up 0.7s ease both;
    animation-delay: 0.1s;
  }

  .animate-on-scroll .hero-subheadline {
    animation: hero-fade-up 0.7s ease both;
    animation-delay: 0.25s;
  }

  .animate-on-scroll .hero-cta {
    animation: hero-fade-up 0.7s ease both;
    animation-delay: 0.42s;
  }

:root {
    --primary: #1e3a5f;
    --accent: #f59e0b;
    --text: #1a1a1a;
    --text-light: #6b7280;
    --bg: #ffffff;
    --bg-alt: #f8f7f4;
    --radius: 12px;
  }

  #about_1 {
    background-color: var(--bg-alt);
    padding: 80px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    box-sizing: border-box;
  }

  .about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
  }

  .about-image-col {
    width: 100%;
    flex-shrink: 0;
  }

  .about-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(30, 58, 95, 0.13);
    display: block;
  }

  .about-content-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .about-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
    border-left: 3px solid var(--accent);
    padding-left: 10px;
  }

  .about-headline {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.25;
    margin: 0 0 24px 0;
    letter-spacing: -0.01em;
  }

  .about-text {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .about-text p {
    margin: 0;
    color: var(--text);
  }

  .about-stats {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .about-stat-card {
    background-color: var(--bg);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    flex: 1 1 120px;
    min-width: 110px;
    box-shadow: 0 2px 12px rgba(30, 58, 95, 0.07);
    border-top: 3px solid var(--accent);
  }

  .about-stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.1;
    letter-spacing: -0.02em;
  }

  .about-stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.4;
  }

  @media (min-width: 768px) {
    #about_1 {
      padding: 100px 40px;
    }

    .about-image {
      height: 420px;
    }

    .about-headline {
      font-size: 2rem;
    }

    .about-stat-value {
      font-size: 2rem;
    }

    .about-stat-card {
      padding: 24px 28px;
    }
  }

  @media (min-width: 1024px) {
    #about_1 {
      padding: 120px 40px;
    }

    .about-container {
      flex-direction: row;
      align-items: stretch;
      gap: 72px;
    }

    .about-image-col {
      width: 45%;
      flex: 0 0 45%;
    }

    .about-image {
      height: 100%;
      min-height: 500px;
      object-position: center;
    }

    .about-content-col {
      flex: 1;
      justify-content: center;
    }

    .about-headline {
      font-size: 2.25rem;
    }

    .about-stats {
      flex-wrap: nowrap;
    }

    .about-stat-card {
      flex: 1 1 0;
    }
  }

  @keyframes about-fadeInUp {
    from {
      opacity: 0;
      transform: translateY(28px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  #about_1.animate-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  #about_1.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

#services_grid_1 {
    --primary: #1e3a5f;
    --accent: #f59e0b;
    --text: #1a1a2e;
    --text-light: #5a6a7e;
    --bg: #ffffff;
    --bg-alt: #f4f7fb;
    --radius: 12px;

    background-color: var(--bg-alt);
    padding: 80px 20px;
    box-sizing: border-box;
  }

  .services-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }

  .services-headline {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin: 0 0 56px 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .services-headline::after {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    background-color: var(--accent);
    margin: 16px auto 0;
    border-radius: 2px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .services-card {
    background-color: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(30, 58, 95, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    display: flex;
    flex-direction: column;
  }

  .services-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(30, 58, 95, 0.16);
  }

  .services-card-image-wrap {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    flex-shrink: 0;
  }

  .services-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  .services-card:hover .services-card-image {
    transform: scale(1.04);
  }

  .services-card-body {
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
  }

  .services-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #fff8eb;
    border-radius: 10px;
    color: var(--accent);
    flex-shrink: 0;
  }

  .services-card-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    line-height: 1.3;
  }

  .services-card-desc {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    flex: 1;
  }

  @media (min-width: 768px) {
    #services_grid_1 {
      padding: 100px 32px;
    }

    .services-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
    }
  }

  @media (min-width: 1024px) {
    #services_grid_1 {
      padding: 120px 40px;
    }

    .services-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .services-grid .services-card:last-child:nth-child(3n + 1) {
      grid-column: 1 / 2;
    }

    .services-grid .services-card:nth-last-child(1):nth-child(3n + 2) {
      grid-column: 2 / 3;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .services-card {
      transition: none;
    }
    .services-card-image {
      transition: none;
    }
  }

#gallery_1 {
    background-color: var(--bg);
    padding: 80px 20px;
    box-sizing: border-box;
    width: 100%;
  }

  .gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }

  .gallery-headline {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin: 0 0 56px 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gallery-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .gallery-img-wrap {
    overflow: hidden;
    border-radius: var(--radius, 10px);
    aspect-ratio: 4 / 3;
    background-color: var(--bg-alt);
    display: block;
    width: 100%;
  }

  .gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius, 10px);
    transition: transform 0.35s ease;
  }

  .gallery-img-wrap:hover .gallery-img {
    transform: scale(1.03);
  }

  .gallery-caption {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
    text-align: center;
    padding: 0 4px;
  }

  @media (min-width: 768px) {
    #gallery_1 {
      padding: 96px 32px;
    }

    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }
  }

  @media (min-width: 1024px) {
    #gallery_1 {
      padding: 120px 40px;
    }

    .gallery-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .gallery-headline {
      margin-bottom: 64px;
    }
  }

  @keyframes gallery-fade-up {
    from {
      opacity: 0;
      transform: translateY(28px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  #gallery_1.animate-on-scroll .gallery-headline,
  #gallery_1.animate-on-scroll .gallery-item {
    opacity: 0;
    animation: gallery-fade-up 0.55s ease forwards;
  }

  #gallery_1.animate-on-scroll .gallery-headline {
    animation-delay: 0.05s;
  }

  #gallery_1.animate-on-scroll .gallery-item:nth-child(1) { animation-delay: 0.12s; }
  #gallery_1.animate-on-scroll .gallery-item:nth-child(2) { animation-delay: 0.20s; }
  #gallery_1.animate-on-scroll .gallery-item:nth-child(3) { animation-delay: 0.28s; }
  #gallery_1.animate-on-scroll .gallery-item:nth-child(4) { animation-delay: 0.36s; }
  #gallery_1.animate-on-scroll .gallery-item:nth-child(5) { animation-delay: 0.44s; }
  #gallery_1.animate-on-scroll .gallery-item:nth-child(6) { animation-delay: 0.52s; }

:root {
    --primary: #1e3a5f;
    --accent: #f59e0b;
    --text: #1a1a2e;
    --text-light: #6b7280;
    --bg: #ffffff;
    --bg-alt: #f8f7f4;
    --radius: 10px;
  }

  #contact_1 {
    background-color: var(--bg-alt);
    padding: 80px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    box-sizing: border-box;
  }

  .contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* ---- Info Column ---- */
  .contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .contact-headline {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 20px 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  .contact-text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-light);
    margin: 0 0 36px 0;
    max-width: 480px;
  }

  .contact-details {
    list-style: none;
    margin: 0 0 32px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .contact-detail-item {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: var(--bg);
    border-radius: var(--radius);
    color: var(--accent);
    flex-shrink: 0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  }

  .contact-detail-link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .contact-detail-link:hover {
    color: var(--accent);
  }

  .contact-detail-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
  }

  .contact-divider {
    width: 100%;
    height: 1px;
    background-color: #e5e7eb;
    margin-bottom: 28px;
  }

  .contact-hours-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 16px 0;
  }

  .contact-hours-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 24px;
  }

  .contact-hours-day {
    font-size: 0.9375rem;
    color: var(--text-light);
    font-weight: 500;
  }

  .contact-hours-time {
    font-size: 0.9375rem;
    color: var(--primary);
    font-weight: 700;
  }

  /* ---- Form Column ---- */
  .contact-form-col {
    background-color: var(--bg);
    border-radius: calc(var(--radius) * 1.5);
    padding: 40px 32px;
    box-shadow: 0 4px 24px rgba(30, 58, 95, 0.08);
  }

  .contact-form-title {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 28px 0;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg-alt);
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .contact-field-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .contact-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .contact-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }

  .contact-input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 16px;
    font-size: 0.9375rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    background-color: var(--bg-alt);
    border: 1.5px solid #e5e7eb;
    border-radius: var(--radius);
    outline: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
  }

  .contact-input::placeholder {
    color: #adb5bd;
  }

  .contact-input:focus {
    border-color: var(--primary);
    background-color: var(--bg);
  }

  .contact-input:hover:not(:focus) {
    border-color: #c9d1d9;
  }

  .contact-textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
  }

  .contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--accent);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 12px rgba(245, 158, 11, 0.30);
    align-self: flex-start;
    letter-spacing: 0.01em;
  }

  .contact-submit:hover {
    background-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.38);
  }

  .contact-submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.25);
  }

  /* ---- Animate on scroll ---- */
  #contact_1.animate-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }

  #contact_1.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ---- Responsive: 768px ---- */
  @media (min-width: 768px) {
    #contact_1 {
      padding: 100px 40px;
    }

    .contact-field-group.contact-field-row {
      flex-direction: row;
      gap: 20px;
    }

    .contact-field-group.contact-field-row .contact-field {
      flex: 1;
    }

    .contact-submit {
      align-self: flex-end;
    }
  }

  /* ---- Responsive: 1024px ---- */
  @media (min-width: 1024px) {
    #contact_1 {
      padding: 120px 40px;
    }

    .contact-container {
      grid-template-columns: 1fr 1.1fr;
      gap: 72px;
      align-items: start;
    }

    .contact-text {
      max-width: 100%;
    }

    .contact-submit {
      align-self: flex-start;
    }
  }

#footer_1 {
    background-color: var(--primary);
    color: #e8edf4;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding: 80px 0 0;
    box-sizing: border-box;
    width: 100%;
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 64px;
  }

  @media (min-width: 768px) {
    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 48px 40px;
    }
    .footer-col--brand {
      grid-column: 1 / -1;
    }
  }

  @media (min-width: 1024px) {
    .footer-grid {
      grid-template-columns: 2fr 1fr 1.5fr;
      gap: 40px 60px;
    }
    .footer-col--brand {
      grid-column: auto;
    }
  }

  .footer-logo {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.1;
  }

  .footer-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #a8bdda;
    margin: 0;
    max-width: 380px;
  }

  .footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 20px;
  }

  .footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-link {
    color: #a8bdda;
    text-decoration: none;
    font-size: 0.9375rem;
    line-height: 1.4;
    transition: color 0.2s ease;
    display: inline-block;
    position: relative;
  }

  .footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #ffffff;
    transition: width 0.25s ease;
  }

  .footer-link:hover {
    color: #ffffff;
  }

  .footer-link:hover::after {
    width: 100%;
  }

  .footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #a8bdda;
    font-size: 0.9375rem;
    line-height: 1.5;
  }

  .footer-contact-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #6e9bc7;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-contact-icon svg {
    width: 18px;
    height: 18px;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-copyright {
    font-size: 0.875rem;
    color: #6e87a8;
    margin: 0;
    text-align: center;
  }