﻿:root {
      --ink: #111923;
      --muted: #637282;
      --line: #dce3e8;
      --panel-border: #9fb7b4;
      --surface: #f3f6f7;
      --surface-strong: #e9f0ef;
      --white: #ffffff;
      --brand: #0f766e;
      --brand-dark: #0b4f4a;
      --phone-blue: #2563EB;
      --phone-blue-dark: #1D4ED8;
      --accent: #c9892b;
      --accent-soft: #f3d8a5;
      --shadow: 0 18px 55px rgba(13, 28, 40, .16);
      --radius: 8px;
    }

    * { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 82px;
    }

    body {
      margin: 0;
      font-family: "Aptos", "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;
      color: var(--ink);
      background:
        radial-gradient(circle at 12% 0, rgba(15, 118, 110, .10), transparent 28rem),
        linear-gradient(180deg, #ffffff 0%, #f7faf9 48%, #ffffff 100%);
      line-height: 1.6;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
    }

    img {
      display: block;
      max-width: 100%;
      height: auto;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .topbar {
      position: fixed;
      inset: 0 0 auto;
      z-index: 20;
      background: rgba(13, 25, 34, .82);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(255,255,255,.12);
      color: var(--white);
    }

    .nav {
      position: relative;
      width: min(1220px, calc(100% - 18px));
      min-height: 82px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 16px;
      min-width: 0;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: none;
    }

    .brand-mark {
      width: 96px;
      height: 60px;
      display: block;
      padding: 4px 0;
      border-radius: 0;
      box-shadow: none;
      flex: 0 0 auto;
    }

    .brand-mark img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: left center;
    }

    .brand-name {
      display: inline-block;
      white-space: nowrap;
      font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
      font-size: clamp(24px, 2.8vw, 38px);
      line-height: 1;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      background: linear-gradient(90deg, #A67C00 0%, #D4AF37 40%, #F4D77B 50%, #D4AF37 60%, #A67C00 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-shadow: 0 1px 8px rgba(244, 215, 123, .22);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 0;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      opacity: 1;
      visibility: visible;
      transform: none;
      font-size: 14px;
      color: rgba(255,255,255,.88);
      transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    }

    .nav-links.is-open {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .nav-links a {
      display: block;
      padding: 10px 0;
      border-radius: var(--radius);
    }

    .nav-links a:hover {
      background: rgba(255,255,255,.08);
      color: #fff;
    }

    .menu-toggle {
      width: 48px;
      height: 48px;
      flex: 0 0 auto;
      display: none;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255,255,255,.22);
      border-radius: var(--radius);
      background: rgba(255,255,255,.08);
      color: #fff;
      cursor: pointer;
      transition: background .2s ease, transform .2s ease, border-color .2s ease;
    }

    .menu-toggle:hover {
      background: rgba(255,255,255,.14);
      border-color: rgba(244,215,123,.45);
      transform: translateY(-1px);
    }

    .menu-toggle span {
      position: relative;
      width: 24px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
    }

    .menu-toggle span::before,
    .menu-toggle span::after {
      content: "";
      position: absolute;
      left: 0;
      width: 24px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
    }

    .menu-toggle span::before {
      top: -7px;
    }

    .menu-toggle span::after {
      top: 7px;
    }

    .hero {
      height: calc(100vh + 10px);
      min-height: calc(100vh + 10px);
      display: grid;
      align-items: center;
      position: relative;
      isolation: isolate;
      color: var(--white);
      overflow: hidden;
      padding: 54px 0 42px;
      background:
        linear-gradient(90deg, rgba(8,17,24,.94) 0%, rgba(8,17,24,.76) 38%, rgba(8,17,24,.36) 68%, rgba(8,17,24,.18) 100%),
        var(--hero-image) center / cover no-repeat;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 120px;
      background: linear-gradient(180deg, transparent, rgba(8,17,24,.45));
      z-index: -1;
    }

    .container {
      width: min(1160px, calc(100% - 32px));
      margin: 0 auto;
    }

    .hero-content {
      max-width: 860px;
      transform: translateY(86px);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 18px;
      color: #f5c76e;
      font-weight: 700;
      text-transform: uppercase;
      font-size: 13px;
      letter-spacing: .08em;
    }

    .eyebrow::before {
      content: "";
      width: 38px;
      height: 2px;
      background: currentColor;
    }

    h1 {
      margin: 0;
      max-width: 860px;
      font-size: clamp(32px, 4.7vw, 60px);
      line-height: 1.03;
      letter-spacing: 0;
      text-wrap: balance;
    }

    .hero-text {
      max-width: 620px;
      margin: 18px 0 0;
      color: rgba(255,255,255,.86);
      font-size: clamp(17px, 2vw, 20px);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .btn {
      min-height: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 0 18px;
      border-radius: var(--radius);
      font-weight: 800;
      border: 1px solid transparent;
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: var(--accent);
      color: #101820;
    }

    .btn-secondary {
      color: var(--white);
      border-color: rgba(255,255,255,.38);
      background: rgba(255,255,255,.08);
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1px;
      max-width: 760px;
      margin-top: 38px;
      border: 1px solid rgba(255,255,255,.18);
      background: rgba(255,255,255,.12);
      backdrop-filter: blur(12px);
      box-shadow: 0 22px 70px rgba(0,0,0,.22);
    }

    .stat {
      padding: 18px;
      background: rgba(6, 18, 26, .42);
    }

    .stat strong {
      display: block;
      font-size: 22px;
      line-height: 1.2;
      color: #f5c76e;
    }

    .stat span {
      display: block;
      margin-top: 4px;
      color: rgba(255,255,255,.78);
      font-size: 14px;
    }

    section {
      padding: 82px 0;
    }

    .section-head {
      max-width: 720px;
      margin-bottom: 32px;
    }

    .section-head h2 {
      margin: 0;
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.12;
      letter-spacing: 0;
      text-wrap: balance;
    }

    .section-head p {
      margin: 14px 0 0;
      color: var(--muted);
      font-size: 17px;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 36px;
      align-items: start;
    }

    .about-copy {
      font-size: 18px;
      color: #33404c;
    }

    .info-panel {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background:
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.72)),
        var(--surface-strong);
      padding: 24px;
      box-shadow: var(--shadow);
    }

    .info-row {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 14px;
      padding: 16px 0;
      border-bottom: 1px solid var(--line);
    }

    .info-row:first-child {
      padding-top: 0;
    }

    .info-row:last-child {
      padding-bottom: 0;
      border-bottom: 0;
    }

    .info-icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border: .5px solid rgba(15, 23, 42, .14);
      border-radius: var(--radius);
      background: #e3f1ef;
    }

    .info-row b {
      display: block;
      margin-bottom: 2px;
    }

    .info-row span {
      color: var(--muted);
    }

    .services {
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(15,118,110,.12), transparent 34%),
        linear-gradient(180deg, var(--surface) 0%, #eef4f3 100%);
    }

    .services::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(17,25,35,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17,25,35,.045) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: linear-gradient(180deg, rgba(0,0,0,.85), transparent 75%);
    }

    .service-grid {
      position: relative;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px 28px;
      padding: 26px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255,255,255,.82);
      box-shadow: var(--shadow);
    }

    .service-item {
      min-height: auto;
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 8px 0;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      color: #1f2b36;
    }

    .service-copy {
      min-width: 0;
    }

    .service-copy strong {
      display: block;
      margin-bottom: 4px;
      font-size: 17px;
      line-height: 1.25;
      font-weight: 700;
      white-space: nowrap;
    }

    .service-item p {
      display: block;
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.45;
      font-weight: 500;
    }

    .check {
      flex: 0 0 auto;
      width: 24px;
      height: 24px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: var(--white);
      background: linear-gradient(135deg, var(--brand), var(--accent));
      font-size: 14px;
      font-weight: 900;
    }

    .campaign {
      background: #111b23;
      color: var(--white);
    }

    .campaign .section-head p {
      color: rgba(255,255,255,.7);
    }

    .campaign-grid {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: 300px;
      gap: 18px;
      overflow-x: auto;
      overflow-y: hidden;
      padding: 4px 2px 18px;
      scroll-snap-type: x mandatory;
      scroll-padding-left: 2px;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior-x: contain;
    }

    .campaign-gallery-wrap {
      position: relative;
    }

    .campaign-gallery-wrap::after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      bottom: 18px;
      width: 78px;
      pointer-events: none;
      background: linear-gradient(90deg, transparent, #111b23);
    }

    .gallery-hint {
      display: inline-flex;
      margin: -14px 0 18px;
      color: rgba(255,255,255,.58);
      font-size: 14px;
      font-weight: 700;
    }

    .gallery-nav {
      position: absolute;
      top: 42%;
      z-index: 2;
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 50%;
      background: rgba(17, 27, 35, .82);
      color: #fff;
      font-size: 30px;
      line-height: 1;
      cursor: pointer;
      box-shadow: 0 14px 34px rgba(0,0,0,.26);
      transition: transform .2s ease, background .2s ease, border-color .2s ease;
    }

    .gallery-nav:hover {
      transform: scale(1.06);
      background: rgba(17, 27, 35, .96);
      border-color: rgba(244,215,123,.5);
    }

    .gallery-prev {
      left: -18px;
    }

    .gallery-next {
      right: -18px;
    }

    .campaign-grid::-webkit-scrollbar {
      height: 10px;
    }

    .campaign-grid::-webkit-scrollbar-track {
      background: rgba(255,255,255,.08);
      border-radius: 999px;
    }

    .campaign-grid::-webkit-scrollbar-thumb {
      background: rgba(244,215,123,.48);
      border-radius: 999px;
    }

    .campaign-grid::-webkit-scrollbar-thumb:hover {
      background: rgba(244,215,123,.72);
    }

    .campaign-card {
      margin: 0;
      height: 455px;
      display: flex;
      flex-direction: column;
      padding: 0;
      overflow: hidden;
      border-radius: var(--radius);
      background: #1a2630;
      border: 1px solid rgba(255,255,255,.12);
      box-shadow: var(--shadow);
      color: inherit;
      cursor: pointer;
      font: inherit;
      text-align: left;
      scroll-snap-align: start;
      transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
    }

    .campaign-card:hover {
      transform: translateY(-5px);
      border-color: rgba(240,196,108,.5);
      box-shadow: 0 24px 70px rgba(0,0,0,.32);
    }

    .campaign-card img {
      width: 100%;
      aspect-ratio: 4 / 5;
      object-fit: cover;
      object-position: center;
    }

    .campaign-card.is-wide {
      grid-column: auto;
    }

    .campaign-card.is-wide img {
      aspect-ratio: 4 / 5;
    }

    .campaign-caption {
      flex: 0 0 88px;
      display: grid;
      gap: 4px;
      padding: 15px 16px;
      color: rgba(255,255,255,.78);
      font-size: 14px;
    }

    .campaign-caption strong {
      display: block;
      color: #fff;
      font-size: 15px;
      line-height: 1.25;
    }

    .campaign-caption span {
      color: rgba(255,255,255,.62);
      line-height: 1.35;
    }

    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 10000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: rgba(8, 15, 21, .88);
      backdrop-filter: blur(10px);
    }

    .lightbox.is-open {
      display: flex;
    }

    .lightbox-inner {
      width: min(1040px, 100%);
      position: relative;
      display: grid;
      gap: 14px;
    }

    .lightbox-frame {
      overflow: hidden;
      border-radius: var(--radius);
      background: #0c141b;
      border: 1px solid rgba(255,255,255,.16);
      box-shadow: 0 30px 90px rgba(0,0,0,.45);
    }

    .lightbox-frame img {
      width: 100%;
      max-height: min(78vh, 760px);
      object-fit: contain;
      background: #0c141b;
    }

    .lightbox-caption {
      color: #fff;
      font-weight: 800;
      text-align: center;
    }

    .lightbox-btn {
      position: absolute;
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 50%;
      background: rgba(255,255,255,.1);
      color: #fff;
      font-size: 28px;
      line-height: 1;
      cursor: pointer;
      transition: transform .2s ease, background .2s ease;
    }

    .lightbox-btn:hover {
      transform: scale(1.05);
      background: rgba(255,255,255,.18);
    }

    .lightbox-close {
      top: -58px;
      right: 0;
    }

    .lightbox-prev,
    .lightbox-next {
      top: 50%;
      transform: translateY(-50%);
    }

    .lightbox-prev:hover,
    .lightbox-next:hover {
      transform: translateY(-50%) scale(1.05);
    }

    .lightbox-prev {
      left: -64px;
    }

    .lightbox-next {
      right: -64px;
    }

    .contact {
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(17, 25, 35, .035) 0 1px, transparent 1px 42px),
        linear-gradient(45deg, rgba(17, 25, 35, .026) 0 1px, transparent 1px 56px),
        radial-gradient(circle at 22px 22px, rgba(17, 25, 35, .04) 1.2px, transparent 1.8px),
        linear-gradient(180deg, #fbfcfc 0%, #f6f8f8 100%);
      background-size: 84px 84px, 112px 112px, 44px 44px, auto;
    }

    .contact::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(90deg, transparent 0 18%, rgba(17,25,35,.035) 18% 18.15%, transparent 18.15% 100%),
        linear-gradient(0deg, transparent 0 28%, rgba(17,25,35,.028) 28% 28.15%, transparent 28.15% 100%);
      background-size: 260px 180px;
      opacity: .8;
      mask-image: linear-gradient(90deg, transparent, rgba(0,0,0,.9) 18%, rgba(0,0,0,.85) 82%, transparent);
    }

    .contact > .container {
      position: relative;
      z-index: 1;
    }

    .faq {
      background: #fff;
    }

    .faq-list {
      display: grid;
      gap: 14px;
      max-width: 920px;
    }

    .faq-item {
      border: 2px solid var(--panel-border);
      border-radius: var(--radius);
      background: #fbfcfc;
      overflow: hidden;
    }

    .faq-item summary {
      cursor: pointer;
      padding: 18px 20px;
      font-weight: 800;
      color: var(--ink);
      list-style: none;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      float: right;
      color: var(--brand-dark);
      font-size: 22px;
      line-height: 1;
    }

    .faq-item[open] summary::after {
      content: "-";
    }

    .faq-item p {
      margin: 0;
      padding: 0 20px 18px;
      color: var(--muted);
    }

    .contact-wrap {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 34px;
      align-items: stretch;
    }

    .contact-box {
      position: relative;
      overflow: hidden;
      padding: 28px;
      border-radius: var(--radius);
      background:
        radial-gradient(circle at 86% 16%, rgba(244, 215, 123, .18), transparent 22%),
        linear-gradient(135deg, rgba(244,215,123,.16) 0 1px, transparent 1px 28px),
        linear-gradient(45deg, rgba(255,255,255,.1) 0 1px, transparent 1px 34px),
        linear-gradient(135deg, rgba(9, 74, 70, .98), rgba(5, 52, 50, .97));
      background-size: auto, 56px 56px, 68px 68px, auto;
      color: var(--white);
    }

    .contact-box::before {
      content: "";
      position: absolute;
      inset: -34px;
      width: auto;
      height: auto;
      pointer-events: none;
      background-image:
        linear-gradient(30deg, transparent 45%, rgba(244, 215, 123, .28) 45% 46.5%, transparent 46.5%),
        linear-gradient(150deg, transparent 45%, rgba(244, 215, 123, .22) 45% 46.5%, transparent 46.5%),
        linear-gradient(90deg, transparent 48%, rgba(255,255,255,.14) 48% 49%, transparent 49%),
        linear-gradient(0deg, transparent 48%, rgba(255,255,255,.11) 48% 49%, transparent 49%);
      background-size: 82px 82px;
      opacity: .9;
      transform: rotate(-8deg);
      mask-image: linear-gradient(90deg, rgba(0,0,0,.42), rgba(0,0,0,1) 38%, rgba(0,0,0,1));
    }

    .contact-box::after {
      content: "";
      position: absolute;
      inset: 22px;
      width: auto;
      height: auto;
      pointer-events: none;
      opacity: .32;
      background:
        linear-gradient(135deg, transparent 49%, rgba(244,215,123,.55) 49% 50.5%, transparent 50.5%) 0 0 / 52px 52px,
        linear-gradient(45deg, transparent 49%, rgba(255,255,255,.2) 49% 50.5%, transparent 50.5%) 0 0 / 52px 52px;
      clip-path: polygon(6% 0, 94% 0, 100% 14%, 100% 86%, 94% 100%, 6% 100%, 0 86%, 0 14%);
    }

    .contact-box > * {
      position: relative;
      z-index: 1;
    }

    .contact-box h2 {
      margin: 0;
      font-size: 34px;
      line-height: 1.15;
    }

    .contact-box p {
      margin: 14px 0 24px;
      color: rgba(255,255,255,.78);
    }

    .contact-actions {
      display: grid;
      gap: 12px;
    }

    .contact-actions .btn-primary[href^="tel:"] {
      background: linear-gradient(135deg, var(--phone-blue), var(--phone-blue-dark));
      color: #fff;
    }

    .contact-actions .btn-secondary[href*="wa.me"] {
      background: #25D366;
      border-color: #25D366;
      color: #fff;
    }

    .contact-actions .btn-social-instagram {
      background: radial-gradient(circle at 20% 110%, rgba(254,218,117,.92) 0%, rgba(250,126,30,.9) 24%, rgba(214,41,118,.86) 48%, rgba(150,47,191,.82) 72%, rgba(79,91,213,.86) 100%);
      border-color: rgba(255,255,255,.26);
      color: #fff;
    }

    .contact-actions .btn-social-facebook {
      background: rgba(24, 119, 242, .9);
      border-color: rgba(255,255,255,.24);
      color: #fff;
    }

    .contact-actions .btn-social-youtube {
      background: rgba(255, 0, 0, .86);
      border-color: rgba(255,255,255,.24);
      color: #fff;
    }

    .contact-actions .btn-social-tiktok {
      background: linear-gradient(135deg, rgba(17,17,17,.9) 0%, rgba(0,0,0,.92) 58%, rgba(37,244,238,.62) 76%, rgba(254,44,85,.76) 100%);
      border-color: rgba(255,255,255,.24);
      color: #fff;
    }

    .contact-actions .btn-social-x {
      background: rgba(0,0,0,.84);
      border-color: rgba(255,255,255,.24);
      color: #fff;
    }

    .contact-list {
      display: grid;
      gap: 14px;
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .contact-list li {
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: 14px;
      align-items: center;
      padding: 20px;
      border: 2px solid var(--panel-border);
      border-radius: var(--radius);
      background: var(--surface);
    }

    .contact-list-icon {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border: .5px solid rgba(15, 23, 42, .14);
      border-radius: var(--radius);
      background: #e3f1ef;
    }

    .contact-list li:first-child .contact-list-icon {
      background: var(--phone-blue);
    }

    .contact-list li:nth-child(2) .contact-list-icon {
      background: #E0F2FE;
    }

    .contact-list li:nth-child(3) .contact-list-icon {
      background: #FEF3C7;
    }

    .contact-list li:nth-child(4) .contact-list-icon {
      background: #FEE2E2;
    }

    .contact-list li:nth-child(5) .contact-list-icon {
      background: #EDE9FE;
    }

    .contact-list-icon img {
      width: 24px;
      height: 24px;
    }

    .contact-list b {
      display: block;
      margin-bottom: 4px;
    }

    .contact-form {
      grid-column: 1 / -1;
      display: grid;
      gap: 16px;
      padding: 24px;
      border: 2px solid var(--panel-border);
      border-radius: var(--radius);
      background: var(--surface);
    }

    .contact-form-head h3 {
      margin: 0;
      font-size: 24px;
      line-height: 1.2;
    }

    .contact-form-head p {
      margin: 6px 0 0;
      color: var(--muted);
    }

    .contact-form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .form-field {
      display: grid;
      gap: 7px;
      min-width: 0;
    }

    .form-field.is-wide {
      grid-column: 1 / -1;
    }

    .form-field label {
      font-weight: 800;
      color: var(--ink);
    }

    .form-field input,
    .form-field textarea {
      width: 100%;
      border: 1px solid rgba(15, 23, 42, .18);
      border-radius: var(--radius);
      background: #fff;
      color: var(--ink);
      font: inherit;
      outline: none;
      transition: border-color .2s ease, box-shadow .2s ease;
    }

    .form-field input {
      min-height: 48px;
      padding: 0 14px;
    }

    .form-field textarea {
      min-height: 132px;
      padding: 12px 14px;
      resize: vertical;
    }

    .form-field input:focus,
    .form-field textarea:focus {
      border-color: var(--brand);
      box-shadow: 0 0 0 3px rgba(15, 118, 110, .14);
    }

    .contact-form .btn {
      width: fit-content;
      border: 0;
      cursor: pointer;
    }

    .location {
      margin-top: 0;
      background:
        linear-gradient(180deg, #ffffff 0%, #f3f6f7 100%);
      border-top: 1px solid var(--line);
    }

    .map-panel {
      overflow: hidden;
      border: 2px solid var(--panel-border);
      border-radius: var(--radius);
      background: var(--surface);
      box-shadow: var(--shadow);
    }

    .map-panel iframe {
      display: block;
      width: 100%;
      height: 430px;
      border: 0;
    }

    .map-link {
      color: var(--brand-dark);
      font-weight: 800;
    }

    .floating-contact {
      position: fixed;
      right: 24px;
      bottom: 24px;
      z-index: 9999;
      display: grid;
      gap: 12px;
    }

    .float-btn {
      width: 60px;
      height: 60px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: var(--white);
      box-shadow: 0 14px 34px rgba(8, 18, 28, .22);
      transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
      will-change: transform;
    }

    .float-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 18px 42px rgba(8, 18, 28, .28);
      filter: saturate(1.05);
    }

    .float-whatsapp {
      background: #25D366;
    }

    .float-phone {
      background: linear-gradient(135deg, var(--phone-blue), var(--phone-blue-dark));
    }

    .float-btn svg,
    .float-btn img,
    .btn svg,
    .btn img,
    .info-icon svg {
      width: 22px;
      height: 22px;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
    }

    .info-icon img {
      width: 22px;
      height: 22px;
    }

    .info-icon.is-phone {
      background: var(--phone-blue);
    }

    .info-row:nth-child(2) .info-icon {
      background: #FEE2E2;
    }

    .info-row:nth-child(3) .info-icon {
      background: #FEF3C7;
    }

    .float-btn img,
    .btn img {
      object-fit: contain;
    }

    .float-btn img {
      width: 31px;
      height: 31px;
    }

    footer {
      padding: 28px 0;
      border-top: 1px solid #d7e3e1;
      color: #5d6c76;
      font-size: 14px;
      background:
        radial-gradient(circle at 12% 0%, rgba(244,215,123,.16), transparent 28%),
        linear-gradient(135deg, rgba(15,118,110,.05) 0 1px, transparent 1px 48px),
        linear-gradient(180deg, #fbfcfb 0%, #edf5f3 100%);
      background-size: auto, 96px 96px, auto;
    }

    .footer-inner {
      width: min(1160px, calc(100% - 32px));
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      align-items: center;
    }

    .footer-credit {
      width: 100%;
      color: #677782;
    }

    .footer-credit a {
      color: var(--brand-dark);
      font-weight: 800;
    }

    @media (max-width: 860px) {
      html {
        scroll-padding-top: 76px;
      }

      .nav {
        min-height: 76px;
      }

      .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        min-width: min(260px, calc(100vw - 32px));
        display: grid;
        align-items: center;
        gap: 4px;
        padding: 12px;
        border: 1px solid rgba(255,255,255,.14);
        border-radius: var(--radius);
        background: rgba(13, 25, 34, .96);
        box-shadow: 0 20px 48px rgba(0,0,0,.24);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
      }

      .nav-links.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .nav-links a {
        padding: 11px 12px;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .hero {
        height: calc(100vh + 10px);
        min-height: calc(100vh + 10px);
        padding-top: 42px;
        background-position: 64% center;
      }

      .hero-content {
        transform: none;
      }

      .hero-stats,
      .about-grid,
      .contact-wrap {
        grid-template-columns: 1fr;
      }

      .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .campaign-grid {
        grid-auto-columns: 290px;
      }

      section {
        padding: 64px 0;
      }
    }

    @media (max-height: 760px) and (min-width: 861px) {
      .hero {
        align-items: start;
        padding-top: 38px;
      }

      .hero-stats {
        margin-top: 28px;
      }

      .stat {
        padding: 14px 18px;
      }
    }

    @media (max-width: 560px) {
      .container,
      .nav,
      .footer-inner {
        width: min(100% - 24px, 1160px);
      }

      .brand-mark {
        width: 72px;
        height: 48px;
        padding: 3px 0;
      }

      .brand {
        gap: 12px;
      }

      .brand-name {
        font-size: clamp(16px, 4.5vw, 22px);
        letter-spacing: 1px;
      }

      .menu-toggle {
        width: 44px;
        height: 44px;
      }

      .nav-links {
        right: 0;
        min-width: min(260px, calc(100vw - 32px));
      }

      .hero {
        padding-bottom: 42px;
        background:
          linear-gradient(90deg, rgba(8,17,24,.95) 0%, rgba(8,17,24,.78) 55%, rgba(8,17,24,.48) 100%),
          var(--hero-image) 66% center / cover no-repeat;
      }

      .hero-actions {
        display: grid;
      }

      .btn {
        width: 100%;
      }

      .hero-stats,
      .service-grid {
        grid-template-columns: 1fr;
      }

      .campaign-grid {
        grid-auto-columns: 82vw;
        margin-right: -12px;
        padding-right: 12px;
      }

      .campaign-card {
        height: 438px;
      }

      .gallery-prev {
        left: 6px;
      }

      .gallery-next {
        right: 6px;
      }

      .gallery-nav {
        width: 42px;
        height: 42px;
        font-size: 28px;
      }

      .lightbox {
        padding: 14px;
      }

      .lightbox-close {
        top: -54px;
        right: 0;
      }

      .lightbox-prev,
      .lightbox-next {
        top: auto;
        bottom: -58px;
      }

      .lightbox-prev {
        left: calc(50% - 58px);
      }

      .lightbox-next {
        right: calc(50% - 58px);
      }

      .stat {
        padding: 15px;
      }

      .floating-contact {
        right: 16px;
        bottom: 20px;
      }

      .contact-box {
        padding: 22px;
      }

      .map-panel iframe {
        height: 360px;
      }
    }
    @media (max-width: 768px) {
      html,
      body {
        overflow-x: hidden;
      }

      .container,
      .nav,
      .footer-inner {
        width: min(100% - 40px, 1160px);
      }

      section {
        padding: 68px 0;
      }

      .nav {
        min-height: 76px;
      }

      .brand {
        min-width: 0;
        gap: 10px;
      }

      .brand-mark {
        width: 58px;
        height: 46px;
        padding: 3px 0;
      }

      .brand-name {
        font-size: clamp(15px, 4.3vw, 21px);
        letter-spacing: .8px;
        max-width: calc(100vw - 142px);
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .menu-toggle {
        width: 44px;
        height: 44px;
      }

      .hero {
        height: auto;
        min-height: auto;
        align-items: start;
        padding: 112px 0 76px;
        background:
          linear-gradient(90deg, rgba(8,17,24,.95) 0%, rgba(8,17,24,.82) 58%, rgba(8,17,24,.52) 100%),
          var(--hero-image) 67% center / cover no-repeat;
      }

      .hero-content {
        max-width: 100%;
        transform: none;
      }

      .eyebrow {
        margin-bottom: 12px;
        font-size: 11px;
        line-height: 1.35;
      }

      h1 {
        max-width: 100%;
        font-size: clamp(28px, 7.6vw, 40px);
        line-height: 1.08;
      }

      .hero-text {
        max-width: 100%;
        margin-top: 16px;
        font-size: clamp(15px, 4vw, 17px);
        line-height: 1.65;
      }

      .hero-actions {
        display: grid;
        gap: 12px;
        margin-top: 26px;
      }

      .hero-actions .btn {
        width: 100%;
        min-height: 50px;
        padding: 0 16px;
      }

      .hero-stats {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 100%;
        margin-top: 30px;
        border: 0;
        background: transparent;
        box-shadow: none;
      }

      .stat {
        min-height: auto;
        padding: 20px 22px;
        border: 1px solid rgba(255,255,255,.18);
        border-radius: var(--radius);
        background: rgba(6, 18, 26, .62);
      }

      .stat strong {
        font-size: 22px;
      }

      .stat span {
        font-size: 14px;
      }

      .floating-contact {
        right: 16px;
        bottom: 16px;
        gap: 12px;
      }

      .float-btn {
        width: 56px;
        height: 56px;
      }

      .float-btn img {
        width: 29px;
        height: 29px;
      }

      .section-head {
        margin-bottom: 26px;
      }

      .section-head h2 {
        font-size: clamp(27px, 8vw, 36px);
      }

      .section-head p {
        font-size: 16px;
      }

      .service-grid,
      .contact-list,
      .faq-list {
        gap: 16px;
      }

      .contact-form-grid {
        grid-template-columns: 1fr;
      }

      .contact-form .btn {
        width: 100%;
      }

      .service-grid {
        padding: 22px;
      }

      .service-item,
      .contact-list li,
      .faq-item summary {
        padding: 20px;
      }

      .campaign-grid {
        grid-auto-columns: minmax(260px, 84vw);
        gap: 18px;
      }

      .campaign-card {
        height: 438px;
      }
    }
.admin-link{display:none}

@media (max-width: 560px) {
  .container,
  .nav,
  .footer-inner {
    width: min(100% - 24px, 1160px);
  }

  .nav-links {
    min-width: min(260px, calc(100vw - 24px));
  }

  .campaign-grid {
    grid-auto-columns: minmax(252px, 84vw);
    margin-right: -12px;
    padding-right: 12px;
  }

  .campaign-card {
    height: min(438px, 118vw);
  }

  .contact-box,
  .service-grid,
  .contact-form {
    padding: 20px;
  }
}

