﻿    :root {
      --brand-blue: #5e819d;
      --brand-green: #16a06e;
      --ink: #203243;
      --sand: #f4efe7;
      --paper: #fffdf8;
      --line: #c7d5df;
      --shadow: rgba(22, 36, 51, 0.2);
      --photo-soft-filter: saturate(0.9) contrast(0.9) brightness(1.03);
      --photo-soft-filter-hover: saturate(0.95) contrast(0.94) brightness(1.02);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Montserrat", "Avenir Next", "Segoe UI", Arial, sans-serif;
      color: var(--ink);
      background:
        radial-gradient(circle at 15% 10%, rgba(22, 160, 110, 0.12), transparent 26%),
        radial-gradient(circle at 88% 30%, rgba(94, 129, 157, 0.18), transparent 30%),
        linear-gradient(180deg, var(--paper), var(--sand));
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-rendering: optimizeLegibility;
    }

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

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

    .container {
      width: min(1120px, 92%);
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      backdrop-filter: blur(8px);
      background: rgba(255, 253, 248, 0.85);
      border-bottom: 1px solid rgba(94, 129, 157, 0.25);
    }

    .nav-wrap {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      padding: 1.8rem 0;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .brand img {
      width: 288px;
      height: 288px;
      object-fit: contain;
    }


    .menu-btn {
      display: none;
      border: 1px solid var(--line);
      background: #ffffff;
      color: var(--ink);
      padding: 0.45rem 0.65rem;
      border-radius: 0.4rem;
      cursor: pointer;
      font-size: 0.95rem;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 1.1rem;
      font-size: 1.2rem;
      font-weight: 500;
      text-transform: none;
      letter-spacing: 0.01em;
    }

    .main-nav a {
      padding: 0.45rem 0.25rem;
      border-bottom: 2px solid transparent;
      transition: color 180ms ease, border-color 180ms ease;
    }

    .main-nav a:hover,
    .main-nav a:focus-visible {
      color: var(--brand-green);
      border-color: var(--brand-green);
    }

    .hero {
      min-height: 75vh;
      padding: 5rem 0 4rem;
      display: grid;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(105deg, rgba(32, 50, 67, 0.78), rgba(22, 160, 110, 0.34)),
        url("assets/photos/466710587_1703077100533392_5661003821074810606_n.jpg") center/cover;
      z-index: -1;
      transform: scale(1.02);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 2rem;
      align-items: end;
    }

    .hero h1 {
      color: #ffffff;
      font-size: clamp(2.1rem, 5vw, 4rem);
      font-weight: 600;
      line-height: 1.05;
      letter-spacing: 0.005em;
      max-width: 16ch;
    }

    .hero p {
      margin-top: 1rem;
      color: #eaf3f9;
      font-size: clamp(1rem, 2.3vw, 1.35rem);
      max-width: 50ch;
    }

    .hero-actions {
      margin-top: 1.6rem;
      display: flex;
      gap: 0.8rem;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-block;
      border: 0;
      border-radius: 999px;
      padding: 0.78rem 1.25rem;
      font-weight: 600;
      letter-spacing: 0.01em;
      cursor: pointer;
      transition: transform 180ms ease, filter 180ms ease;
    }

    .btn:hover,
    .btn:focus-visible {
      transform: translateY(-2px);
      filter: brightness(1.03);
    }

    .btn-primary {
      background: linear-gradient(120deg, var(--brand-green), #31b381);
      color: #ffffff;
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.9);
      color: #193043;
    }

    .hero-card {
      justify-self: end;
      background: rgba(255, 255, 255, 0.93);
      border: 1px solid rgba(94, 129, 157, 0.35);
      border-radius: 1rem;
      padding: 1rem;
      width: min(360px, 100%);
      box-shadow: 0 12px 30px var(--shadow);
    }

    .hero-card img {
      border-radius: 0.75rem;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      margin-bottom: 0.75rem;
      filter: var(--photo-soft-filter);
    }

    .hero-card h2 {
      font-size: 1.15rem;
      color: var(--brand-blue);
      margin-bottom: 0.3rem;
    }

    .hero-card p {
      color: var(--ink);
    }

    section {
      padding: 4rem 0;
    }

    .section-head {
      margin-bottom: 1.4rem;
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      align-items: end;
      flex-wrap: wrap;
    }

    .section-head h2 {
      font-size: clamp(1.55rem, 3vw, 2.2rem);
      font-weight: 600;
      color: var(--brand-blue);
    }

    .section-head p {
      max-width: 58ch;
      color: #35526b;
    }

    .services {
      background: linear-gradient(180deg, rgba(94, 129, 157, 0.08), transparent 38%);
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
    }

    .facility-cards {
      margin-top: 1rem;
    }

    .service-card {
      background: #ffffff;
      border: 1px solid rgba(94, 129, 157, 0.26);
      border-left: 5px solid var(--brand-green);
      border-radius: 0.8rem;
      padding: 1rem;
      box-shadow: 0 8px 18px rgba(20, 45, 63, 0.08);
    }

    .service-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 0.6rem;
      margin-bottom: 0.65rem;
      filter: var(--photo-soft-filter);
    }

    .service-card h3 {
      margin-bottom: 0.45rem;
      color: var(--ink);
      font-size: 1.1rem;
      font-weight: 600;
    }

    .service-card ul {
      margin-top: 0.35rem;
      padding-left: 1.1rem;
      display: grid;
      gap: 0.45rem;
    }

    .service-card li {
      line-height: 1.45;
    }

    .highlights-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.1rem;
    }

    .about-feature {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 1rem;
      align-items: stretch;
      border: 1px solid rgba(94, 129, 157, 0.28);
      border-radius: 0.85rem;
      background: #ffffff;
      box-shadow: 0 8px 18px rgba(20, 45, 63, 0.08);
      overflow: hidden;
      margin-top: 2.2rem;
    }

    .about-page .about-feature,
    .about-page .panel {
      border-left: 5px solid var(--brand-green);
    }

    .about-feature-reverse img {
      order: 2;
    }

    .about-feature-reverse .about-feature-text {
      order: 1;
    }

    .about-feature img {
      width: 100%;
      height: 100%;
      min-height: 320px;
      object-fit: cover;
      filter: var(--photo-soft-filter);
    }

    .about-image-uncropped {
      object-fit: contain !important;
      height: auto !important;
      min-height: 0 !important;
      max-height: none !important;
      align-self: center;
      background: rgba(94, 129, 157, 0.08);
    }

    .about-feature-text {
      padding: 1.2rem 1.3rem;
      display: grid;
      gap: 0.75rem;
      align-content: center;
    }

    .about-feature-text h2 {
      color: var(--brand-blue);
      font-size: clamp(1.6rem, 2.7vw, 2.2rem);
    }

    .panel {
      border-radius: 0.85rem;
      overflow: hidden;
      border: 1px solid rgba(94, 129, 157, 0.28);
      background: #ffffff;
      box-shadow: 0 8px 18px rgba(20, 45, 63, 0.08);
    }

    .panel img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      filter: var(--photo-soft-filter);
    }

    .panel .text {
      padding: 0.9rem 1rem 1rem;
    }

    .panel .text h3 {
      color: var(--brand-blue);
      margin-bottom: 0.25rem;
    }

    .gallery {
      background:
        radial-gradient(circle at 10% 0, rgba(22, 160, 110, 0.1), transparent 28%),
        linear-gradient(180deg, #f8fbfd, #f4efe7);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.75rem;
    }

    .gallery-card {
      display: grid;
      gap: 0.45rem;
      align-content: start;
    }

    .gallery-item {
      position: relative;
      border: 0;
      border-radius: 0.65rem;
      overflow: hidden;
      padding: 0;
      cursor: pointer;
      box-shadow: 0 7px 14px rgba(14, 32, 48, 0.12);
      aspect-ratio: 4 / 3;
      min-height: 0;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: var(--photo-soft-filter);
      transition: transform 250ms ease, filter 250ms ease;
    }

    .gallery-item::after {
      content: "View";
      position: absolute;
      inset: auto 0 0 0;
      text-align: center;
      padding: 0.55rem 0;
      color: #f5fffb;
      background: linear-gradient(180deg, transparent, rgba(22, 160, 110, 0.85));
      letter-spacing: 0.02em;
      text-transform: none;
      font-size: 0.72rem;
      opacity: 0;
      transition: opacity 240ms ease;
    }

    .gallery-item:hover img,
    .gallery-item:focus-visible img {
      transform: scale(1.03);
      filter: var(--photo-soft-filter-hover);
    }

    .gallery-item:hover::after,
    .gallery-item:focus-visible::after {
      opacity: 1;
    }

    .gallery-caption {
      font-size: 0.88rem;
      line-height: 1.4;
      color: #2f4a60;
      padding: 0 0.15rem;
    }

    .contact {
      padding-top: 4.2rem;
    }

    .contact-wrap {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 1rem;
      background: #ffffff;
      border: 1px solid rgba(94, 129, 157, 0.25);
      border-radius: 1rem;
      box-shadow: 0 10px 24px rgba(20, 45, 63, 0.11);
      overflow: hidden;
    }

    .contact-copy {
      padding: 1.2rem 1.2rem 1.5rem;
      border-right: 1px solid rgba(94, 129, 157, 0.22);
    }

    .contact-copy h3 {
      color: var(--brand-blue);
      font-size: 1.3rem;
      margin-bottom: 0.4rem;
    }

    .contact-list {
      margin-top: 1rem;
      display: grid;
      gap: 0.55rem;
      font-size: 0.98rem;
    }

    .contact-list strong {
      color: var(--brand-green);
    }

    .quick-form {
      padding: 1.2rem;
      background: linear-gradient(180deg, rgba(94, 129, 157, 0.1), rgba(22, 160, 110, 0.08));
    }

    .quick-form h4 {
      color: var(--ink);
      margin-bottom: 0.7rem;
      font-size: 1.08rem;
    }

    .form-row {
      display: grid;
      gap: 0.55rem;
    }

    .quick-form input,
    .quick-form textarea {
      border: 1px solid rgba(94, 129, 157, 0.35);
      border-radius: 0.55rem;
      background: #ffffff;
      padding: 0.62rem 0.7rem;
      font: inherit;
      color: var(--ink);
    }

    .quick-form textarea {
      resize: vertical;
      min-height: 120px;
    }

    .site-footer {
      margin-top: 3.2rem;
      padding: 1.2rem 0;
      background: #1d3447;
      color: #d5e8f6;
      text-align: center;
      font-size: 0.93rem;
      border-top: 3px solid var(--brand-green);
    }

    .site-footer a {
      color: #abdbff;
    }

    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(12, 22, 32, 0.82);
      display: none;
      place-items: center;
      z-index: 2200;
      padding: 1rem;
    }

    .lightbox.active {
      display: grid;
    }

    .lightbox-inner {
      width: min(980px, 100%);
      max-height: 92vh;
      position: relative;
    }

    .lightbox img {
      width: 100%;
      max-height: 92vh;
      object-fit: contain;
      border-radius: 0.65rem;
      border: 1px solid rgba(255, 255, 255, 0.22);
      filter: var(--photo-soft-filter);
    }

    .lightbox-close {
      position: absolute;
      top: 0.45rem;
      right: 0.45rem;
      border: 0;
      background: rgba(255, 255, 255, 0.84);
      color: #173145;
      width: 34px;
      height: 34px;
      border-radius: 999px;
      font-size: 1.2rem;
      cursor: pointer;
    }

    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      border: 0;
      background: rgba(255, 255, 255, 0.84);
      color: #173145;
      width: 38px;
      height: 38px;
      border-radius: 999px;
      font-size: 1.3rem;
      line-height: 1;
      cursor: pointer;
      display: grid;
      place-items: center;
    }

    .lightbox-prev {
      left: 0.45rem;
    }

    .lightbox-next {
      right: 0.45rem;
    }

    .lightbox-nav:hover,
    .lightbox-nav:focus-visible,
    .lightbox-close:hover,
    .lightbox-close:focus-visible {
      background: #ffffff;
    }

    @media (max-width: 980px) {
      .nav-wrap {
        justify-content: center;
        position: relative;
      }

      .brand {
        margin: 0 auto;
      }

      .hero-grid,
      .contact-wrap {
        grid-template-columns: 1fr;
      }

      .hero-card {
        justify-self: start;
      }

      .contact-copy {
        border-right: 0;
        border-bottom: 1px solid rgba(94, 129, 157, 0.22);
      }

      .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 760px) {
      .nav-wrap {
        padding: 1rem 0;
      }

      .brand {
        justify-content: center;
      }

      .brand img {
        width: 168px;
        height: 168px;
      }

      .menu-btn {
        display: inline-block;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
      }

      .main-nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        background: rgba(255, 253, 248, 0.97);
        border-bottom: 1px solid rgba(94, 129, 157, 0.25);
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 0.6rem 1rem 0.9rem;
      }

      .main-nav a {
        width: 100%;
        border-bottom: 1px solid rgba(94, 129, 157, 0.2);
      }

      .main-nav a:last-child {
        border-bottom: 0;
      }

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

      .service-grid {
        grid-template-columns: 1fr;
      }

      .highlights-grid {
        grid-template-columns: 1fr;
      }

      .about-feature {
        grid-template-columns: 1fr;
      }

      .about-feature-reverse img,
      .about-feature-reverse .about-feature-text {
        order: initial;
      }

      .about-feature img {
        min-height: 240px;
      }

      .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
  
