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

    :root {
      --navy: #061529;
      --navy-2: #0b2038;
      --gold: #d99a1a;
      --gold-2: #f2b941;
      --ink: #0f1d31;
      --muted: #627086;
      --line: #dfe6ef;
      --soft: #f6f8fb;
      --white: #ffffff;
      --shadow: 0 18px 45px rgba(6, 21, 41, .12);
      --radius: 8px;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      font-family: 'Poppins', Arial, sans-serif;
      background: var(--white);
      color: var(--ink);
      min-width: 320px;
      overflow-x: hidden;
    }

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

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

    .container {
      width: min(calc(100% - 32px), 1360px);
      margin: 0 auto;
    }

    .topbar {
      background: var(--navy);
      color: #fff;
      font-size: 13px;
      border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .topbar-inner {
      min-height: 38px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .top-list,
    .social-list {
      display: flex;
      align-items: center;
      gap: 22px;
      flex-wrap: wrap;
    }

    .top-item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      opacity: .9;
    }

    .mini-icon {
      width: 15px;
      height: 15px;
      color: var(--gold);
      flex: 0 0 auto;
    }

    .social-list span:not(:first-child) {
      width: 24px;
      height: 24px;
      display: inline-grid;
      place-items: center;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, .2);
      font-size: 12px;
      font-weight: 700;
      opacity: .92;
    }

    .navbar {
      position: sticky;
      top: 0;
      z-index: 30;
      background: rgba(255, 255, 255, .96);
      border-bottom: 1px solid var(--line);
      box-shadow: 0 8px 24px rgba(6, 21, 41, .04);
      backdrop-filter: blur(12px);
    }

    .nav-inner {
      min-height: 104px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }

    .brand {
      width: 210px;
      flex: 0 0 auto;
    }

    .brand img,
    .footer-logo img {
      width: 100%;
      height: auto;
      object-fit: contain;
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(14px, 1.6vw, 26px);
      color: #1d2738;
      font-size: 14px;
      font-weight: 600;
      white-space: nowrap;
    }

    .nav-links a {
      padding: 8px 0;
      transition: color .2s ease;
    }

    .nav-links a:hover,
    .nav-links a.active,
    .nav-item.active > a {
      color: var(--gold);
    }

    .nav-item {
      position: relative;
    }

    .has-dropdown > a {
      display: inline-flex;
      align-items: center;
      gap: 7px;
    }

    .has-dropdown > a::after {
      content: "";
      width: 6px;
      height: 6px;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: rotate(45deg) translateY(-2px);
    }

    .nav-dropdown {
      position: absolute;
      top: calc(100% + 16px);
      left: 50%;
      min-width: 230px;
      padding: 10px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
      box-shadow: var(--shadow);
      opacity: 0;
      visibility: hidden;
      transform: translate(-50%, 8px);
      transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
      z-index: 40;
    }

    .nav-dropdown a {
      display: block;
      padding: 11px 12px;
      border-radius: 6px;
      color: #1d2738;
      font-size: 13px;
      line-height: 1.35;
      white-space: normal;
    }

    .nav-dropdown a:hover,
    .nav-dropdown a.active {
      color: var(--gold);
      background: rgba(217, 154, 26, .1);
    }

    .has-dropdown:hover .nav-dropdown,
    .has-dropdown:focus-within .nav-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translate(-50%, 0);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .quote-btn,
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      border-radius: 6px;
      font-weight: 800;
      letter-spacing: .01em;
      transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    }

    .quote-btn {
      min-height: 48px;
      padding: 0 24px;
      background: linear-gradient(135deg, var(--gold), #c47b0f);
      color: #fff;
      box-shadow: 0 12px 26px rgba(217, 154, 26, .28);
      font-size: 14px;
      white-space: nowrap;
    }

    .quote-btn:hover,
    .btn-primary:hover {
      transform: translateY(-2px);
      background: linear-gradient(135deg, #e8a929, #b9720a);
    }

    .arrow-icon {
      width: 20px;
      height: 20px;
      flex: 0 0 auto;
    }

    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border: 1px solid var(--line);
      border-radius: 6px;
      background: #fff;
      color: var(--navy);
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .menu-toggle span,
    .menu-toggle span::before,
    .menu-toggle span::after {
      display: block;
      width: 20px;
      height: 2px;
      background: currentColor;
      content: "";
      position: relative;
    }

    .menu-toggle span::before {
      position: absolute;
      top: -7px;
    }

    .menu-toggle span::after {
      position: absolute;
      top: 7px;
    }

    .menu-toggle[aria-expanded="true"] span {
      background: transparent;
    }

    .menu-toggle[aria-expanded="true"] span::before {
      top: 0;
      transform: rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span::after {
      top: 0;
      transform: rotate(-45deg);
    }

    .hero {
      position: relative;
      min-height: 560px;
      color: #fff;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(3, 13, 27, .96) 0%, rgba(3, 13, 27, .74) 34%, rgba(3, 13, 27, .36) 64%, rgba(3, 13, 27, .88) 100%),
        linear-gradient(0deg, rgba(3, 13, 27, .24), rgba(3, 13, 27, .24)),
        url("background.png") center / cover no-repeat;
    }

    .hero-inner {
      min-height: 560px;
      display: grid;
      grid-template-columns: minmax(0, 780px) minmax(240px, 360px);
      align-items: center;
      justify-content: space-between;
      gap: 54px;
      padding: 58px 0 82px;
    }

    .hero-label {
      display: inline-flex;
      align-items: center;
      background: rgba(217, 154, 26, .24);
      color: var(--gold-2);
      border-left: 4px solid var(--gold);
      padding: 8px 13px;
      margin-bottom: 22px;
      font-weight: 800;
      letter-spacing: .08em;
      font-size: 14px;
    }

    .hero h1 {
      font-size: clamp(38px, 5vw, 64px);
      line-height: 1.06;
      font-weight: 800;
      max-width: 820px;
      margin-bottom: 22px;
      text-shadow: 0 12px 30px rgba(0, 0, 0, .28);
    }

    .hero h1 span {
      color: var(--gold-2);
      display: block;
    }

    .hero p {
      max-width: 660px;
      font-size: clamp(16px, 1.35vw, 20px);
      line-height: 1.65;
      opacity: .94;
      margin-bottom: 34px;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
    }

    .btn {
      min-height: 56px;
      padding: 0 28px;
      border: 1px solid transparent;
      font-size: 15px;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--gold), #c77d0f);
      color: #fff;
      box-shadow: 0 14px 30px rgba(217, 154, 26, .28);
    }

    .btn-outline {
      color: #fff;
      border-color: rgba(255, 255, 255, .72);
      background: rgba(6, 21, 41, .2);
    }

    .btn-outline:hover {
      background: #fff;
      color: var(--navy);
      transform: translateY(-2px);
    }

    .hero-side {
      display: grid;
      gap: 16px;
      justify-self: end;
    }

    .quality-item {
      display: grid;
      grid-template-columns: 58px 1fr;
      align-items: center;
      gap: 14px;
      color: #fff;
      font-size: 17px;
      font-weight: 700;
    }

    .quality-icon,
    .feature-icon,
    .service-icon,
    .stat-icon {
      display: inline-grid;
      place-items: center;
      color: var(--gold);
      flex: 0 0 auto;
    }

    .quality-icon {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      border: 2px solid var(--gold);
      background: rgba(6, 21, 41, .58);
    }

    .quality-icon svg,
    .feature-icon svg,
    .service-icon svg,
    .stat-icon svg {
      width: 28px;
      height: 28px;
      stroke-width: 1.8;
    }

    .hero-stats {
      position: absolute;
      right: min(6vw, 90px);
      bottom: 34px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 20px 46px rgba(0, 0, 0, .28);
    }

    .hero-stat {
      min-width: 190px;
      padding: 22px 26px;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 14px;
      align-items: center;
      background: var(--navy);
      color: #fff;
    }

    .hero-stat strong {
      display: block;
      font-size: 34px;
      line-height: 1;
    }

    .hero-stat span {
      display: block;
      font-size: 14px;
      line-height: 1.35;
      font-weight: 600;
    }

    .trust-bar {
      background: linear-gradient(180deg, var(--navy-2), var(--navy));
      color: #fff;
      border-top: 1px solid rgba(255, 255, 255, .16);
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }

    .trust-item {
      min-height: 112px;
      display: grid;
      grid-template-columns: 58px 1fr;
      align-items: center;
      gap: 18px;
      padding: 24px 34px;
      border-right: 1px solid rgba(255, 255, 255, .18);
    }

    .trust-item:last-child {
      border-right: 0;
    }

    .feature-icon {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      border: 1px solid var(--gold);
    }

    .trust-item h3 {
      font-size: 15px;
      letter-spacing: .06em;
      text-transform: uppercase;
      margin-bottom: 5px;
    }

    .trust-item p {
      opacity: .82;
      line-height: 1.55;
      font-size: 14px;
    }

    section {
      scroll-margin-top: 110px;
    }

    .about {
      padding: 86px 0 70px;
      background: #fff;
    }

    .section-kicker {
      color: var(--gold);
      font-size: 14px;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .section-heading {
      font-size: clamp(34px, 4.4vw, 54px);
      line-height: 1.16;
      color: var(--ink);
      margin-bottom: 18px;
    }

    .section-copy {
      color: var(--muted);
      line-height: 1.8;
      font-size: 16px;
    }

    .about-copy .section-copy + .section-copy {
      margin-top: 16px;
    }

    .about-grid {
      display: grid;
      grid-template-columns: minmax(0, 430px) 1fr;
      align-items: center;
      gap: 70px;
    }

    .about-copy .btn {
      margin-top: 28px;
      background: var(--navy);
      color: #fff;
    }

    .about-copy .btn:hover {
      background: #122a49;
      transform: translateY(-2px);
    }

    .about-side {
      display: grid;
      gap: 24px;
      align-self: stretch;
    }

    .ceo-message-img {
      display: block;
      width: 100%;
      border-radius: 8px;
      box-shadow: 0 18px 44px rgba(6, 21, 41, .12);
    }

    .mission-vision {
      position: relative;
      isolation: isolate;
      padding: 64px 0;
      overflow: hidden;
      background: #f4f6f4;
    }

    .mission-vision::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background: url("background.png") center / cover no-repeat;
      filter: grayscale(1) blur(4px);
      transform: scale(1.04);
      opacity: .16;
    }

    .mission-vision::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: rgba(255, 255, 255, .78);
    }

    .mission-vision-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: clamp(44px, 8vw, 110px);
    }

    .mission-vision-item h2 {
      margin-bottom: 12px;
      color: #5f7d6d;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(26px, 2.4vw, 34px);
      line-height: 1.15;
      text-transform: uppercase;
    }

    .mission-vision-item p {
      max-width: 660px;
      color: #4f5c6d;
      font-size: 17px;
      line-height: 1.9;
    }

    .stat-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .stat-card {
      min-height: 176px;
      padding: 24px 22px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: 0 14px 35px rgba(6, 21, 41, .07);
      display: flex;
      flex-direction: column;
      justify-content: center;
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .stat-card:hover,
    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow);
    }

    .stat-icon {
      width: 42px;
      height: 42px;
      margin-bottom: 14px;
    }

    .stat-card strong {
      display: block;
      color: var(--ink);
      font-size: 34px;
      line-height: 1;
      margin-bottom: 9px;
    }

    .stat-card span {
      display: block;
      color: #26344a;
      font-weight: 600;
      line-height: 1.45;
    }

    .services {
      padding: 54px 0 96px;
      background: #fff;
    }

    .section-top {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 28px;
      margin-bottom: 34px;
    }

    .section-top .section-heading {
      margin-bottom: 0;
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--ink);
      font-weight: 800;
      white-space: nowrap;
      transition: color .2s ease;
    }

    .text-link:hover {
      color: var(--gold);
    }

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

    .service-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      background: #fff;
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .service-link-card {
      display: block;
    }

    .service-link-card .service-body::after {
      content: "Open";
      margin-left: auto;
      color: var(--gold);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    .service-media {
      height: 250px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-color: #d8dee6;
    }

    .service-media.machine { background-image: url("service-machine.png"); }
    .service-media.contracting {
      background-image:
        linear-gradient(0deg, rgba(6, 21, 41, .04), rgba(6, 21, 41, .04)),
        url("background.png");
      background-position: center 42%;
    }
    .service-media.villa { background-image: url("service-villa.png"); }
    .service-media.renovation { background-image: url("service-renovation.png"); }
    .service-media.interior { background-image: url("service-interior.png"); }
    .service-media.mep { background-image: url("service-mep.png"); }
    .service-media.maintenance { background-image: url("service-maintenance.png"); }

    .service-body {
      min-height: 108px;
      display: grid;
      grid-template-columns: 52px 1fr;
      align-items: center;
      gap: 18px;
      padding: 22px 26px;
    }

    .service-icon {
      width: 46px;
      height: 46px;
    }

    .service-card h3 {
      color: var(--ink);
      font-size: clamp(20px, 2vw, 27px);
      line-height: 1.2;
    }

    .overview {
      padding: 92px 0;
      background: var(--soft);
    }

    .overview-grid {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 54px;
      align-items: center;
    }

    .overview-panel {
      position: relative;
      min-height: 440px;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      background:
        linear-gradient(180deg, rgba(6, 21, 41, .04), rgba(6, 21, 41, .02)),
        url("page1.png") center / cover no-repeat;
    }

    .overview-card {
      position: absolute;
      left: 28px;
      right: 28px;
      bottom: 28px;
      padding: 24px;
      border-radius: var(--radius);
      color: #fff;
      background: rgba(6, 21, 41, .88);
      border: 1px solid rgba(255, 255, 255, .18);
      backdrop-filter: blur(10px);
    }

    .overview-card strong {
      display: block;
      font-size: 27px;
      margin-bottom: 6px;
    }

    .overview-card span {
      opacity: .82;
      line-height: 1.6;
    }

    .capability-list {
      display: grid;
      gap: 16px;
      margin-top: 28px;
    }

    .capability {
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: 16px;
      padding: 18px 0;
      border-bottom: 1px solid var(--line);
    }

    .capability strong {
      display: block;
      margin-bottom: 4px;
      color: var(--ink);
      font-size: 18px;
    }

    .capability span {
      color: var(--muted);
      line-height: 1.65;
    }

    .quality {
      padding: 92px 0;
      background:
        linear-gradient(90deg, rgba(6, 21, 41, .95), rgba(6, 21, 41, .86)),
        url("services.png") center / cover no-repeat;
      color: #fff;
    }

    .quality-grid {
      display: grid;
      grid-template-columns: minmax(0, 560px) 1fr;
      gap: 64px;
      align-items: start;
    }

    .quality .section-heading,
    .quality .section-copy {
      color: #fff;
    }

    .quality .section-copy {
      opacity: .82;
    }

    .quality-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .quality-card {
      padding: 24px;
      border: 1px solid rgba(255, 255, 255, .16);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .08);
      backdrop-filter: blur(10px);
    }

    .quality-card strong {
      display: block;
      color: var(--gold-2);
      font-size: 18px;
      margin-bottom: 8px;
    }

    .quality-card p {
      color: rgba(255, 255, 255, .78);
      line-height: 1.65;
      font-size: 14px;
    }

    .contact-cta {
      padding: 74px 0;
      background: #fff;
    }

    .cta-box {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 32px;
      padding: 38px;
      border-radius: var(--radius);
      background: linear-gradient(135deg, var(--navy), #11365d);
      color: #fff;
      box-shadow: var(--shadow);
    }

    .cta-box h2 {
      font-size: clamp(28px, 3.2vw, 44px);
      line-height: 1.2;
      margin-bottom: 12px;
    }

    .cta-box p {
      opacity: .82;
      line-height: 1.7;
      max-width: 760px;
    }

    .whatsapp {
      position: fixed;
      left: 16px;
      bottom: 16px;
      z-index: 40;
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      background: #20bf55;
      color: #fff;
      box-shadow: 0 16px 34px rgba(32, 191, 85, .35);
      transition: transform .2s ease;
    }

    .whatsapp:hover {
      transform: translateY(-3px);
    }

    .whatsapp svg {
      width: 30px;
      height: 30px;
      fill: currentColor;
    }

    footer {
      background: var(--navy);
      color: #fff;
      padding: 66px 0 26px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1.15fr;
      gap: 44px;
      margin-bottom: 48px;
    }

    .footer-logo {
      width: 180px;
      padding: 10px 14px;
      border-radius: 6px;
      background: #fff;
      margin-bottom: 20px;
    }

    .footer-about p,
    .footer-links li {
      color: rgba(255, 255, 255, .76);
      line-height: 1.75;
      font-size: 14px;
    }

    .footer-links h3 {
      font-size: 18px;
      margin-bottom: 18px;
    }

    .footer-links ul {
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .footer-links a:hover {
      color: var(--gold-2);
    }

    .copyright {
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, .12);
      color: rgba(255, 255, 255, .62);
      text-align: center;
      font-size: 14px;
    }

    @media (max-width: 1180px) {
      .nav-links {
        display: none;
        position: absolute;
        left: 16px;
        right: 16px;
        top: calc(100% + 10px);
        max-height: calc(100dvh - 140px);
        overflow-y: auto;
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: #fff;
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        white-space: normal;
      }

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

      .nav-item {
        width: 100%;
      }

      .has-dropdown > a::after {
        display: none;
      }

      .nav-dropdown {
        position: static;
        min-width: 0;
        width: 100%;
        margin-top: 6px;
        padding: 6px 0 0 14px;
        border: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .hero-inner,
      .about-grid,
      .mission-vision-grid,
      .partnership-showcase,
      .partners-intro,
      .partner-profile,
      .service-detail-intro,
      .overview-grid,
      .quality-grid {
        grid-template-columns: 1fr;
      }

      .hero-side {
        justify-self: start;
        grid-template-columns: repeat(2, minmax(220px, 1fr));
      }

      .hero-stats {
        position: static;
        margin: -72px auto 0;
        width: min(90%, 380px);
      }

      .trust-grid,
      .stat-grid {
        grid-template-columns: repeat(2, 1fr);
      }

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

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

    @media (max-width: 760px) {
      .topbar-inner {
        padding: 10px 0;
      }

      .top-list,
      .social-list {
        gap: 10px 16px;
      }

      .social-list {
        display: none;
      }

      .nav-inner {
        min-height: 82px;
        gap: 14px;
      }

      .brand {
        width: 168px;
      }

      .quote-btn {
        display: none;
      }

      .hero,
      .hero-inner {
        min-height: auto;
      }

      .hero-inner {
        padding: 56px 0 86px;
      }

      .hero-side {
        grid-template-columns: 1fr;
      }

      .hero-stats,
      .trust-grid,
      .stat-grid,
      .services-grid,
      .quality-cards,
      .partner-activities,
      .service-detail-grid,
      .procurement-grid,
      .footer-grid,
      .cta-box {
        grid-template-columns: 1fr;
      }

      .hero-stat {
        min-width: 0;
      }

      .trust-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .18);
        padding: 22px 0;
      }

      .trust-item:last-child {
        border-bottom: 0;
      }

      .about,
      .overview,
      .quality {
        padding: 68px 0;
      }

      .services {
        padding: 40px 0 72px;
      }

      .section-top {
        align-items: start;
        flex-direction: column;
      }

      .service-media {
        height: 210px;
      }

      .partner-profile {
        padding: 22px;
      }

      .cta-box {
        padding: 28px;
      }

      .whatsapp {
        width: 52px;
        height: 52px;
      }
    }

    @media (max-width: 520px) {
      .container {
        width: min(calc(100% - 24px), 1360px);
      }

      .topbar {
        font-size: 12px;
      }

      .topbar-inner {
        justify-content: flex-start;
      }

      .top-list {
        width: 100%;
        gap: 8px;
      }

      .top-item {
        width: 100%;
        align-items: flex-start;
      }

      .nav-inner {
        min-height: 74px;
      }

      .brand {
        width: 142px;
      }

      .menu-toggle {
        width: 42px;
        height: 42px;
      }

      .nav-links {
        left: 12px;
        right: 12px;
        top: calc(100% + 6px);
        max-height: calc(100dvh - 104px);
        padding: 14px;
      }

      .hero {
        background-position: 58% center;
      }

      .hero-inner {
        padding: 46px 0 64px;
      }

      .hero-label {
        font-size: 12px;
        line-height: 1.35;
      }

      .hero h1 {
        font-size: clamp(34px, 11vw, 42px);
      }

      .hero p,
      .section-copy,
      .partner-detail p,
      .service-detail-card p,
      .procurement-card p {
        font-size: 15px;
        line-height: 1.7;
      }

      .hero-buttons,
      .contact-actions {
        width: 100%;
      }

      .btn,
      .contact-actions .btn {
        width: 100%;
        min-height: 52px;
        padding: 0 18px;
      }

      .quality-item {
        grid-template-columns: 48px 1fr;
        font-size: 15px;
      }

      .quality-icon,
      .feature-icon {
        width: 46px;
        height: 46px;
      }

      .trust-item {
        grid-template-columns: 46px 1fr;
        gap: 14px;
      }

      .section-heading,
      .page-hero .section-heading {
        font-size: clamp(30px, 10vw, 38px);
      }

      .page-hero {
        padding: 58px 0 54px;
      }

      .about,
      .overview,
      .quality,
      .page-section,
      .partners-page,
      .service-detail-page {
        padding: 56px 0;
      }

      .services {
        padding: 34px 0 58px;
      }

      .service-media {
        height: 190px;
      }

      .service-body {
        grid-template-columns: 42px 1fr;
        gap: 14px;
        padding: 20px;
      }

      .service-card h3 {
        font-size: 24px;
      }

      .mission-vision-item,
      .contact-card,
      .service-detail-card,
      .procurement-card {
        padding: 22px;
      }

      .partner-profile {
        padding: 18px;
      }

      .partner-logo-panel img {
        aspect-ratio: 16 / 11;
      }

      .contact-map {
        height: 300px;
      }

      .whatsapp {
        left: 12px;
        bottom: 12px;
        width: 48px;
        height: 48px;
      }
    }

    .page-hero {
      padding: 86px 0 78px;
      color: #fff;
      background:
        linear-gradient(90deg, rgba(3, 13, 27, .94), rgba(3, 13, 27, .72)),
        url("background.png") center / cover no-repeat;
    }

    .page-hero .section-kicker,
    .page-hero .section-heading,
    .page-hero .section-copy {
      color: #fff;
    }

    .page-hero .section-copy {
      max-width: 760px;
      opacity: .9;
    }

    .page-section {
      padding: 82px 0;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 36px;
    }

    .contact-card {
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 28px;
      background: #fff;
      box-shadow: 0 14px 34px rgba(6, 21, 41, .08);
    }

    .contact-card strong {
      display: block;
      color: var(--navy);
      font-size: 18px;
      margin-bottom: 10px;
    }

    .contact-card span,
    .contact-card a {
      color: var(--muted);
      line-height: 1.7;
    }

    .contact-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 32px;
      justify-content: flex-start;
    }

    .contact-actions .btn:not(.btn-primary) {
      border-color: var(--navy);
      color: var(--navy);
      background: #fff;
    }

    .contact-actions .btn:not(.btn-primary):hover {
      background: var(--navy);
      color: #fff;
      transform: translateY(-2px);
    }

    .partners-page {
      padding: 82px 0 88px;
      background: #fff;
    }

    .partnership-showcase {
      display: grid;
      grid-template-columns: minmax(320px, 430px) 1fr;
      gap: 64px;
      align-items: start;
      margin-bottom: 58px;
    }

    .partnership-copy .section-heading {
      max-width: 760px;
      margin-bottom: 24px;
    }

    .partnership-copy p {
      max-width: 760px;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.75;
    }

    .partnership-values {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      margin: 32px 0;
    }

    .partnership-value {
      display: grid;
      grid-template-columns: 62px 1fr;
      gap: 18px;
      align-items: start;
    }

    .partnership-icon,
    .partnership-metric-icon {
      display: inline-grid;
      place-items: center;
      color: var(--gold);
      border: 2px solid var(--gold);
      background: var(--navy);
    }

    .partnership-icon {
      width: 58px;
      height: 58px;
      border-radius: 50%;
    }

    .partnership-icon svg,
    .partnership-metric-icon svg {
      width: 28px;
      height: 28px;
      stroke-width: 1.8;
    }

    .partnership-value strong {
      display: block;
      color: var(--ink);
      font-size: 16px;
      line-height: 1.35;
      margin-bottom: 4px;
      text-transform: uppercase;
    }

    .partnership-value span:not(.partnership-icon) {
      display: block;
      color: var(--muted);
      line-height: 1.6;
      font-size: 14px;
    }

    .partnership-copy .btn {
      background: var(--navy);
      color: #fff;
    }

    .partnership-copy .btn:hover {
      background: #122a49;
      transform: translateY(-2px);
    }

    .partnership-visual {
      padding: 14px;
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 20px 54px rgba(6, 21, 41, .12);
    }

    .partnership-visual img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      display: block;
    }

    .partnership-metrics {
      position: relative;
      width: calc(100% - 44px);
      margin: -74px auto 0;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-radius: 8px;
      overflow: hidden;
      background: var(--navy);
      color: #fff;
      box-shadow: 0 18px 36px rgba(6, 21, 41, .26);
    }

    .partnership-metrics > div {
      min-height: 160px;
      padding: 24px 18px;
      text-align: center;
      border-right: 1px solid rgba(217, 154, 26, .65);
    }

    .partnership-metrics > div:last-child {
      border-right: 0;
    }

    .partnership-metric-icon {
      width: 46px;
      height: 46px;
      margin: 0 auto 12px;
      border: 0;
      background: transparent;
    }

    .partnership-metrics strong {
      display: block;
      font-size: 15px;
      line-height: 1.35;
      margin-bottom: 9px;
    }

    .partnership-metrics span:not(.partnership-metric-icon) {
      display: block;
      color: rgba(255, 255, 255, .82);
      font-size: 13px;
      line-height: 1.5;
    }

    .partners-intro {
      display: grid;
      grid-template-columns: minmax(0, 420px) 1fr;
      gap: 66px;
      align-items: start;
      margin-bottom: 58px;
    }

    .partners-copy {
      display: grid;
      gap: 18px;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.85;
    }

    .partner-profile {
      display: grid;
      grid-template-columns: minmax(260px, 360px) 1fr;
      gap: 40px;
      align-items: start;
      padding: 34px;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
    }

    .partner-logo-panel {
      width: 100%;
      max-width: 360px;
      justify-self: center;
      padding: 16px;
      border-radius: 8px;
      overflow: hidden;
      background: #20252b;
      box-shadow: none;
    }

    .partner-logo-panel img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: contain;
    }

    .partner-detail h2 {
      color: var(--ink);
      font-size: clamp(30px, 3vw, 44px);
      line-height: 1.16;
      margin-bottom: 18px;
    }

    .partner-detail h3 {
      color: var(--navy);
      font-size: 20px;
      margin: 26px 0 14px;
    }

    .partner-detail p {
      color: var(--muted);
      line-height: 1.85;
      font-size: 16px;
    }

    .partner-activities {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px 18px;
      list-style: none;
    }

    .partner-activities li {
      position: relative;
      padding: 14px 16px 14px 42px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
      color: #26344a;
      line-height: 1.55;
      font-weight: 600;
    }

    .partner-activities li::before {
      content: "";
      position: absolute;
      left: 17px;
      top: 21px;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--gold);
    }

    .service-detail-page {
      padding: 82px 0 0;
      background: #fff;
    }

    .service-detail-intro {
      display: grid;
      grid-template-columns: minmax(0, 460px) 1fr;
      gap: 64px;
      align-items: start;
      margin-bottom: 42px;
    }

    .service-detail-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
      margin-bottom: 72px;
    }

    .service-detail-card,
    .procurement-card {
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 14px 34px rgba(6, 21, 41, .08);
    }

    .service-detail-card {
      min-height: 250px;
      padding: 28px;
    }

    .service-detail-card h3,
    .procurement-card h3 {
      color: var(--ink);
      font-size: 22px;
      line-height: 1.25;
      margin-bottom: 12px;
    }

    .service-detail-card p,
    .procurement-card p {
      color: var(--muted);
      line-height: 1.75;
      font-size: 15px;
    }

    .procurement-band {
      padding: 72px 0 82px;
      background: var(--soft);
    }

    .procurement-band .section-heading {
      max-width: 860px;
      margin-bottom: 30px;
    }

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

    .procurement-card {
      min-height: 220px;
      padding: 28px;
    }

    .contact-map {
      width: min(100%, 980px);
      height: 450px;
      margin: 42px 0 0;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 8px;
      box-shadow: 0 18px 44px rgba(6, 21, 41, .12);
      background: var(--soft);
    }

    .contact-map iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    @media (max-width: 760px) {
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .contact-map {
        height: 340px;
        margin-top: 32px;
      }
    }

    @media (max-width: 760px) {
      .partners-page {
        padding: 46px 0 54px;
      }

      .partnership-showcase {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 38px;
      }

      .partnership-copy .section-heading {
        max-width: 13ch;
        margin-bottom: 18px;
      }

      .partnership-values {
        gap: 16px;
        margin: 26px 0;
      }

      .partnership-value {
        grid-template-columns: 50px 1fr;
        gap: 14px;
      }

      .partnership-icon {
        width: 48px;
        height: 48px;
      }

      .partnership-icon svg {
        width: 24px;
        height: 24px;
      }

      .partnership-visual {
        padding: 0;
        box-shadow: none;
      }

      .partnership-metrics {
        width: 100%;
        margin: 0;
        grid-template-columns: repeat(2, 1fr);
      }

      .partnership-metrics > div {
        min-height: 150px;
        border-right: 1px solid rgba(217, 154, 26, .45);
        border-bottom: 1px solid rgba(217, 154, 26, .45);
      }

      .partnership-metrics > div:nth-child(2n) {
        border-right: 0;
      }

      .partnership-metrics > div:nth-last-child(-n + 2) {
        border-bottom: 0;
      }

      .partners-intro {
        gap: 22px;
        margin-bottom: 28px;
      }

      .partners-intro .section-heading {
        max-width: 12ch;
      }

      .partners-copy {
        gap: 14px;
        font-size: 15px;
        line-height: 1.7;
      }

      .partner-profile {
        gap: 24px;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
      }

      .partner-logo-panel {
        max-width: 340px;
        justify-self: start;
      }

      .partner-detail h2 {
        font-size: clamp(28px, 8vw, 36px);
      }

      .partner-activities li {
        box-shadow: none;
      }
    }

    @media (max-width: 520px) {
      .container {
        width: min(calc(100% - 28px), 1360px);
      }

      .partners-page {
        padding: 38px 0 46px;
      }

      .partnership-showcase {
        gap: 24px;
        margin-bottom: 32px;
      }

      .partnership-copy .section-heading {
        max-width: 10ch;
      }

      .partnership-copy p {
        font-size: 15px;
        line-height: 1.7;
      }

      .partnership-metrics {
        grid-template-columns: 1fr;
      }

      .partnership-metrics > div,
      .partnership-metrics > div:nth-child(2n),
      .partnership-metrics > div:nth-last-child(-n + 2) {
        min-height: auto;
        padding: 22px 18px;
        border-right: 0;
        border-bottom: 1px solid rgba(217, 154, 26, .45);
      }

      .partnership-metrics > div:last-child {
        border-bottom: 0;
      }

      .partnership-values {
        margin: 22px 0 26px;
      }

      .partners-intro {
        gap: 18px;
        margin-bottom: 24px;
      }

      .partners-intro .section-heading {
        max-width: 10ch;
        margin-bottom: 0;
      }

      .partner-detail h2 {
        font-size: clamp(26px, 8.5vw, 32px);
      }

      .partner-logo-panel {
        max-width: 100%;
        padding: 12px;
      }

      .partner-activities li {
        padding: 13px 14px 13px 36px;
      }

      .partner-activities li::before {
        left: 15px;
      }

         .partner-profile{
     grid-template-columns: none;
     padding: 5%;
      
    }
    }
 