:root {
  --primary: #005ca8;
  --primary-dark: #052c54;
  --primary-soft: #e7f4ff;
  --secondary: #ffb31a;
  --accent: #13b6ed;
  --whatsapp: #25d366;
  --text: #142033;
  --muted: #657084;
  --light: #f7fbff;
  --white: #ffffff;
  --dark: #07111f;
  --border: rgba(12, 42, 74, 0.12);
  --shadow: 0 22px 70px rgba(4, 40, 79, 0.15);
  --radius: 22px;
  --header-h: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.top-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--primary-dark);
  color: #dcefff;
  font-size: 13px;
  transition: transform 0.25s ease;
}

.top-strip__inner {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-strip__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.top-strip__actions a {
  color: var(--white);
  opacity: 0.95;
}

.site-header {
  position: fixed;
  top: 38px;
  left: 0;
  right: 0;
  z-index: 1000;
  /* background: rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16); */
  backdrop-filter: blur(10px);
  transition: 0.25s ease;
}

.site-header.scrolled {
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 40px rgba(8, 36, 65, 0.08);
}

.site-header.scrolled + main .hero {
  margin-top: 0;
}

.site-header.scrolled .main-nav > ul > li > a,
.site-header.scrolled .dropdown-toggle {
  color: var(--text);
}

.site-header.scrolled .brand {
  background: transparent;
}

.site-header.scrolled ~ .top-strip {
  transform: translateY(-100%);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 185px;
  padding: 7px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
}

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

.main-nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav li {
  position: relative;
}

.main-nav > ul > li > a,
.dropdown-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: 0.2s ease;
}

.main-nav > ul > li > a:hover,
.dropdown-toggle:hover,
.main-nav > ul > li > a.active {
  background: var(--secondary);
  color: var(--dark) !important;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 250px;
  list-style: none;
  padding: 10px;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.2s ease;
}

.has-dropdown:hover > .dropdown-menu,
.has-dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  color: var(--text);
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 650;
  font-size: 14px;
}

.dropdown-menu a:hover {
  background: var(--primary-soft);
  color: var(--primary);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--primary-dark);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 21px;
  height: 2px;
  background: var(--white);
  border-radius: 4px;
  transition: 0.2s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero__bg,
.hero__overlay,
.story-bg,
.story-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__bg {
  background: url("../images/story-bg.png") center / cover no-repeat;
  transform: scale(1.03);
}

.hero__overlay {
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(4, 20, 38, 0.88),
      rgba(4, 20, 38, 0.62),
      rgba(4, 20, 38, 0.2)
    ),
    radial-gradient(
      circle at 75% 20%,
      rgba(19, 182, 237, 0.35),
      transparent 35%
    );
}

.hero__content {
  padding-top: 135px;
  padding-bottom: 150px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 800;
  color: var(--secondary);
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 9px;
  background: currentColor;
}

.hero h1 {
  max-width: 760px;
  margin: 18px 0 18px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 2vw, 20px);
}

.hero__actions,
.project-card__actions,
.quick-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero__actions {
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary), #ffd26c);
  color: var(--dark);
  box-shadow: 0 14px 34px rgba(255, 179, 26, 0.28);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.btn-sm {
  min-height: 40px;
  padding: 10px 16px;
  font-size: 14px;
}

.hero-panel {
  position: absolute;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  width: min(980px, calc(100% - 32px));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px);
  box-shadow: 0 25px 90px rgba(0, 0, 0, 0.28);
}

.hero-feature {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 118px;
  padding: 18px 12px;
  text-align: center;
  color: var(--white);
  background: rgba(5, 44, 84, 0.34);
  transition: 0.2s ease;
}

.hero-feature:hover {
  background: rgba(255, 179, 26, 0.86);
  color: var(--dark);
}

.hero-feature span {
  font-size: 26px;
}

.hero-feature strong {
  font-size: 13px;
}

.hero-feature--accent {
  color: #ffdddd;
}

.hero-feature--whatsapp span {
  color: var(--whatsapp);
}

.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  font-size: 22px;
  line-height: 1;
}

.section {
  position: relative;
  padding: 100px 0;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}

.section-heading h2 {
  margin: 12px 0 12px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.section-heading--light h2,
.section-heading--light p {
  color: var(--white);
}

.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.filter-btn {
  border: 1px solid var(--border);
  background: var(--white);
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  color: var(--text);
  transition: 0.2s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.project-card {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark);
  box-shadow: var(--shadow);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.project-card.hidden {
  display: none;
}

.project-card:hover {
  transform: translateY(-8px);
}

.project-card img {
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  transition: 0.35s ease;
}

.project-card:hover img {
  transform: scale(1.04);
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.02),
    rgba(1, 10, 20, 0.88)
  );
}

.project-card__body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 22px;
  color: var(--white);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 179, 26, 0.95);
  color: var(--dark);
  font-size: 12px;
  font-weight: 900;
}

.badge--blue {
  background: rgba(19, 182, 237, 0.95);
  color: var(--white);
}

.badge--dark {
  background: rgba(5, 44, 84, 0.92);
  color: var(--white);
}

.badge--green {
  background: rgba(37, 211, 102, 0.92);
  color: var(--dark);
}

.project-card h3 {
  margin: 14px 0 4px;
  font-size: 22px;
  line-height: 1.1;
}

.project-card p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.78);
}

.project-card ul {
  padding-left: 18px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.project-card__actions a,
.text-btn {
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 800;
  cursor: pointer;
  font-size: 14px;
}

.project-card__actions a:hover,
.text-btn:hover {
  background: var(--secondary);
  color: var(--dark);
}

.story-section {
  min-height: 760px;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.story-bg {
  background: url("../images/story-bg.png") center / cover no-repeat;
  transform: scale(1.05);
}

.story-overlay {
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(4, 16, 30, 0.88),
    rgba(5, 44, 84, 0.55)
  );
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.value-card {
  min-height: 260px;
  padding: 28px 20px;
  border-radius: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

.value-card span {
  font-size: 34px;
}

.value-card h3 {
  margin: 16px 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 16px;
}

.value-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.about-subsections,
.news-awards,
.career-section {
  background: var(--light);
}

.split-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: center;
}

.split-layout .section-heading {
  text-align: left;
  margin: 0;
}

.info-cards,
.news-grid,
.blog-grid,
.testimonial-grid,
.details-grid {
  display: grid;
  gap: 20px;
}

.info-cards {
  grid-template-columns: 1fr;
}

.info-card,
.news-card,
.blog-card,
.testimonial-card,
.detail-box,
.job-card,
.contact-card,
.booking-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 14px 44px rgba(4, 40, 79, 0.08);
}

.info-card h3,
.news-card h3,
.blog-card h3,
.detail-box h3,
.job-card h3,
.contact-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.15;
}

.info-card p,
.news-card p,
.blog-card p,
.detail-box p,
.job-card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
}

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

.detail-box ul {
  margin: 0 0 20px;
  padding-left: 20px;
  color: var(--muted);
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.mini-gallery img {
  height: 150px;
  object-fit: cover;
  border-radius: 14px;
}

.announcement {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary-soft), #fff6df);
  border: 1px dashed rgba(0, 92, 168, 0.25);
}

.announcement span {
  color: var(--primary);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
}

.news-grid,
.blog-grid,
.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.news-card span,
.blog-card span,
.job-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--primary);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.testimonial-card p {
  margin: 0 0 20px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.65;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 14px;
}

.career-layout,
.booking-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
}

.career-layout .section-heading,
.booking-copy {
  text-align: left;
  margin: 0;
}

.job-card {
  min-height: 270px;
  display: grid;
  align-content: center;
}

.booking-layout {
  align-items: start;
}

.book-viewing-section {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(19, 182, 237, 0.14),
      transparent 32%
    ),
    linear-gradient(135deg, var(--primary-dark), #0a4d89);
  color: var(--white);
}

.book-viewing-section::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 179, 26, 0.16);
}

.booking-copy h2 {
  margin: 12px 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.booking-copy p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
}

.quick-contact a {
  display: inline-flex;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-weight: 800;
}

.booking-form {
  position: relative;
  z-index: 1;
}

.form-row {
  margin-bottom: 16px;
}

.form-row label {
  display: block;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 14px;
  background: var(--white);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 92, 168, 0.1);
}

.contact-layout {
  grid-template-columns: auto;
  align-items: stretch;
}

.map-card,
.contact-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-card {
  background: var(--white);
  border: 1px solid var(--border);
}

.map-card img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.contact-card {
  background: var(--dark);
  color: var(--white);
  border: 0;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.contact-form {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.site-footer {
  background: #040b14;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  padding: 60px 0 38px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 34px;
}

.footer-grid img {
  width: 190px;
  padding: 8px 10px;
  border-radius: 14px;
  background: var(--white);
  margin-bottom: 16px;
}

.footer-grid h3 {
  color: var(--white);
  margin: 0 0 16px;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin: 8px 0;
}

.footer-bottom {
  text-align: center;
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 14px;
}

.floating-whatsapp,
.back-to-top {
  position: fixed;
  z-index: 1002;
  right: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.floating-whatsapp {
  bottom: 88px;
  background: var(--whatsapp);
  color: var(--white);
  font-size: 28px;
}

.back-to-top {
  bottom: 24px;
  border: 0;
  background: var(--primary);
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.2s ease;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.modal.open {
  display: flex;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 20, 0.68);
  backdrop-filter: blur(6px);
}

.modal__content {
  position: relative;
  width: min(640px, 100%);
  max-height: calc(100svh - 36px);
  overflow: auto;
  background: var(--white);
  border-radius: 24px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.modal__content h2 {
  margin: 0 0 10px;
  font-size: 30px;
}

.modal__content p,
.modal__content li {
  color: var(--muted);
}

.modal__close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--light);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.modal-form {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 20px);
  z-index: 2200;
  background: var(--dark);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
  box-shadow: var(--shadow);
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .brand {
    width: 165px;
  }

  .main-nav > ul > li > a,
  .dropdown-toggle {
    font-size: 13px;
    padding: 10px 8px;
  }

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

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

@media (max-width: 920px) {
  .top-strip__inner {
    justify-content: center;
  }

  .top-strip__inner > span {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: calc(38px + var(--header-h));
    left: 0;
    right: 0;
    max-height: calc(100svh - 120px);
    overflow: auto;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 22px 50px rgba(4, 40, 79, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: 0.24s ease;
  }

  .site-header.scrolled .main-nav {
    top: var(--header-h);
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav > ul {
    width: min(100%, 720px);
    margin: 0 auto;
    padding: 14px 16px 24px;
    display: block;
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav > ul > li > a,
  .dropdown-toggle {
    color: var(--text) !important;
    width: 100%;
    justify-content: space-between;
    padding: 14px 12px;
    border-radius: 12px;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    margin: 0 0 8px;
    padding: 0 0 0 12px;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .has-dropdown.open > .dropdown-menu {
    display: block;
  }

  .has-dropdown:hover > .dropdown-menu {
    display: none;
  }

  .has-dropdown.open:hover > .dropdown-menu {
    display: block;
  }

  .hero__content {
    padding-top: 160px;
    padding-bottom: 220px;
  }

  .hero-panel {
    grid-template-columns: repeat(5, minmax(118px, 1fr));
    overflow-x: auto;
    justify-content: start;
  }

  .hero-feature {
    min-height: 104px;
  }

  .split-layout,
  .career-layout,
  .booking-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .split-layout .section-heading,
  .career-layout .section-heading,
  .booking-copy {
    text-align: center;
    margin-inline: auto;
  }

  .news-grid,
  .blog-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  :root {
    --header-h: 72px;
  }

  html {
    scroll-padding-top: 88px;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .top-strip {
    font-size: 11px;
  }

  .top-strip__actions {
    gap: 8px;
  }

  .site-header {
    top: 38px;
  }

  .brand {
    width: 148px;
    padding: 6px 8px;
  }

  .brand img {
    height: 48px;
  }

  .hero {
    min-height: 940px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero-panel {
    bottom: 52px;
    grid-template-columns: 1fr 1fr;
    overflow: visible;
  }

  .hero-feature {
    min-height: 88px;
  }

  .scroll-down {
    bottom: 12px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .project-grid,
  .details-grid,
  .values-grid,
  .two-col,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .project-card,
  .project-card img {
    min-height: 520px;
  }

  .story-section {
    min-height: auto;
  }

  .value-card {
    min-height: 200px;
  }

  .mini-gallery {
    grid-template-columns: 1fr;
  }

  .mini-gallery img {
    height: 220px;
  }

  .map-card img {
    min-height: 360px;
  }

  .floating-whatsapp,
  .back-to-top {
    right: 14px;
    width: 46px;
    height: 46px;
  }

  .modal__content {
    padding: 28px 20px;
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ===== Updated OPL requirements =====
   - All navigation items are inside hamburger on every screen.
   - Desktop header: logo left, hamburger right.
   - Hero background uses image slider.
   - Project showcase is full width.
*/
.site-header {
  top: 38px;
}

.site-header.scrolled {
  top: 0;
}

.header-inner {
  justify-content: space-between;
}

.nav-toggle {
  display: flex !important;
  position: relative;
  z-index: 2101;
  background: rgba(5, 44, 84, 0.96);
  box-shadow: 0 12px 30px rgba(5, 44, 84, 0.2);
}

.site-header:not(.scrolled) .nav-toggle {
  background: rgba(255, 255, 255, 0.92);
}

.site-header:not(.scrolled) .nav-toggle span {
  background: var(--primary-dark);
}

.site-header:not(.scrolled) .nav-toggle.active {
  background: var(--primary-dark);
}

.site-header:not(.scrolled) .nav-toggle.active span {
  background: var(--white);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1998;
  border: 0;
  background: rgba(3, 11, 22, 0.56);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  cursor: pointer;
}

.menu-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.main-nav {
  position: fixed !important;
  top: 0 !important;
  right: 0;
  left: auto !important;
  width: min(430px, 92vw);
  height: 100svh;
  max-height: none !important;
  overflow-y: auto;
  z-index: 2100;
  padding: 24px 24px 32px;
  background: rgba(255, 255, 255, 0.98) !important;
  border-left: 1px solid var(--border);
  border-bottom: 0 !important;
  box-shadow: -30px 0 90px rgba(3, 18, 35, 0.22);
  transform: translateX(105%) !important;
  opacity: 1 !important;
  visibility: visible !important;
  transition: transform 0.28s ease !important;
}

.main-nav.open {
  transform: translateX(0) !important;
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 20px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.drawer-head img {
  width: 170px;
  height: auto;
}

.drawer-close {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--light);
  color: var(--primary-dark);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.main-nav > ul {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.main-nav li {
  width: 100%;
}

.main-nav > ul > li {
  border-bottom: 1px solid rgba(12, 42, 74, 0.09);
}

.main-nav > ul > li > a,
.dropdown-toggle {
  width: 100%;
  justify-content: space-between;
  padding: 15px 4px !important;
  border-radius: 0 !important;
  color: var(--text) !important;
  font-size: 16px !important;
  font-weight: 850 !important;
  background: transparent !important;
}

.main-nav > ul > li > a:hover,
.dropdown-toggle:hover,
.main-nav > ul > li > a.active {
  background: transparent !important;
  color: var(--primary) !important;
}

.dropdown-toggle span {
  transition: transform 0.2s ease;
}

.has-dropdown.open .dropdown-toggle span {
  transform: rotate(180deg);
}

.dropdown-menu,
.has-dropdown:hover > .dropdown-menu,
.has-dropdown.open:hover > .dropdown-menu {
  position: static !important;
  width: 100% !important;
  display: none;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  margin: 0 0 12px !important;
  padding: 4px 0 10px 14px !important;
  border: 0 !important;
  border-left: 3px solid var(--primary-soft) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.has-dropdown.open > .dropdown-menu,
.has-dropdown.open:hover > .dropdown-menu {
  display: block !important;
}

.dropdown-menu a {
  color: var(--muted) !important;
  padding: 9px 10px !important;
  border-radius: 10px !important;
  font-size: 14px !important;
}

.dropdown-menu a:hover {
  background: var(--primary-soft) !important;
  color: var(--primary) !important;
}

.drawer-contact {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.drawer-contact a {
  display: flex;
  justify-content: center;
  padding: 13px 16px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-weight: 850;
}

.drawer-contact a:last-child {
  background: var(--whatsapp);
}

.hero__slider {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.08);
  transition:
    opacity 1s ease,
    transform 6s ease;
}

.hero__slide.active {
  opacity: 1;
  transform: scale(1.02);
}

.project-showcase {
  padding-left: 0;
  padding-right: 0;
  background: linear-gradient(180deg, var(--white), var(--light));
}

.project-showcase > .container {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.project-showcase .section-heading,
.project-showcase .filter-tabs {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.project-showcase .project-grid {
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.project-showcase .project-card {
  border-radius: 0;
  min-height: 650px;
  box-shadow: none;
}

.project-showcase .project-card:hover {
  transform: none;
}

.project-showcase .project-card img {
  min-height: 650px;
}

.project-showcase .project-card__body {
  padding: 34px;
}

@media (max-width: 1120px) {
  .project-showcase .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .main-nav {
    width: min(360px, 92vw);
    padding: 20px 18px 28px;
  }

  .drawer-head img {
    width: 145px;
  }

  .project-showcase .project-grid {
    grid-template-columns: 1fr;
  }

  .project-showcase .project-card,
  .project-showcase .project-card img {
    min-height: 560px;
  }

  .project-showcase .project-card__body {
    padding: 24px;
  }
}

/* ===== Final requested changes: remove top bar + center hero panel ===== */
.top-strip {
  display: none !important;
}

.site-header,
.site-header.scrolled {
  top: 0 !important;
}

html {
  scroll-padding-top: calc(var(--header-h) + 16px);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-h) + 70px) !important;
  padding-bottom: 360px !important;
}

.hero-panel {
  top: 80% !important;
  bottom: auto !important;
  z-index: 3;
  transform: translate(-50%, -50%) !important;
}

.hero-panel.reveal {
  transform: translate(-50%, calc(-50% + 26px)) !important;
}

.hero-panel.reveal.visible {
  transform: translate(-50%, -50%) !important;
}

.scroll-down {
  bottom: 22px !important;
}

@media (max-width: 920px) {
  .hero__content {
    padding-top: calc(var(--header-h) + 54px) !important;
    padding-bottom: 390px !important;
  }

  .hero-panel {
    top: 68% !important;
    grid-template-columns: repeat(5, minmax(118px, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 0 !important;
  }

  .hero {
    min-height: 980px;
  }

  .hero__content {
    padding-top: calc(var(--header-h) + 40px) !important;
    padding-bottom: 430px !important;
  }

  .hero-panel {
    top: 69% !important;
    grid-template-columns: 1fr 1fr !important;
    overflow: visible !important;
  }
}
.map-section .container {
  width: 100% !important;
}
