/* ─── DESIGN TOKENS ──────────────────────────────────────────────────────── */
:root {
  --navy:        #023162;
  --teal-dark:   #00587a;
  --teal:        #0e597b;
  --teal-mid:    #27647c;
  --blue-light:  #4ab0e3;
  --gray-light:  #dee2e5;
  --gray-bg:     #f4f4f4;
  --gray:        #b2b1b1;
  --white:       #ffffff;

  --font-body:   'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
  --font-logo:   'Bebas Neue', var(--font-body);

  --max-w:       1600px;
  --px:          clamp(1rem, 5vw, 6rem);
}

/* ─── RESET ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { }
body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.2vw, 22px);
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; }

/* ─── NAV ────────────────────────────────────────────────────────────────── */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease;
}
.main-nav.scrolled {
  background: rgba(0, 88, 122, 0.95);
  backdrop-filter: blur(6px);
}
.nav-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.75rem var(--px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-link {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-decoration: none;
}
.nav-logo-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.nav-logo-img {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
}
.nav-logo-title {
  font-family: var(--font-logo);
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1.05;
}
.nav-logo-tagline {
  font-size: clamp(0.6rem, 0.9vw, 0.78rem);
  color: var(--white);
  letter-spacing: 0.1em;
  opacity: 0.85;
  text-align: justify;
  text-align-last: justify;
}
/* Hamburger – always visible, anchored to the right */
.hamburger {
  position: absolute;
  right: var(--px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
/* hamburger X state not used – close button in overlay handles it */

/* ─── HERO ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  background: var(--teal-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-gallery-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-gallery-img {
  /* padding: 4rem; */
  width: 90%;
  height: 90%;
  object-fit: cover;
  object-position: center;
}
.scroll-down {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: var(--white);
  user-select: none;
  z-index: 2;
}
.scroll-label {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-arrow {
  animation: bounce 1.8s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ─── LOGO BAR ────────────────────────────────────────────────────────────── */
.logo-bar {
  display: flex;
  justify-content: center;
  padding: 3rem var(--px);
  background: var(--white);
}
.logo-content {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.logo-top {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.logo-mark-img {
  height: 80px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(25%) sepia(60%) saturate(1400%) hue-rotate(165deg) brightness(90%);
}
.logo-title {
  font-family: var(--font-logo);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--teal-dark);
  line-height: 1.05;
}
.logo-tagline {
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: var(--teal-dark);
  margin-top: 0.25rem;
  letter-spacing: 0.06em;
  text-align: justify;
  text-align-last: justify;
}

/* ─── OUR STORY ──────────────────────────────────────────────────────────── */
.our-story {
  background: var(--white);
  padding: 5rem var(--px);
}
.container {
  max-width: var(--max-w);
  margin: 0 auto;
}
.story-layout {
  display: flex;
  gap: 5%;
  align-items: flex-start;
}
.story-image-wrap {
  position: relative;
  flex: 0 0 48%;
  max-width: 48%;
}
.story-img {
  width: 100%;
  border-radius: 4px;
  display: block;
}
.story-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1rem;
  width: 55%;
  background: var(--teal);
  color: var(--white);
  padding: 1.5rem 1.75rem;
  font-weight: 700;
  font-size: clamp(0.9rem, 1.1vw, 1.1rem);
  line-height: 1.45;
  box-shadow: 5px 5px 14px rgba(0,0,0,0.4);
}
.story-text {
  flex: 1;
  padding-top: 0.5rem;
}
.section-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.4rem, 2vw, 1.875rem);
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.section-title.centered { text-align: center; }
.story-text p {
  margin-bottom: 0.9rem;
  line-height: 1.65;
}
.story-list {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.story-list li {
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.55;
}
.story-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: var(--navy);
}

/* ─── MAP BANNER ─────────────────────────────────────────────────────────── */
.map-banner {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.map-banner-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── VISION ─────────────────────────────────────────────────────────────── */
.vision {
  background: var(--white);
  padding: 5rem var(--px);
}
.vision-row {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.vision-text {
  flex: 1;
  text-align: center;
  line-height: 1.65;
  color: var(--navy);
}
.vision-img {
  flex: 0 0 30%;
  max-width: 30%;
  border-radius: 4px;
  object-fit: cover;
}

/* ─── CORE VALUES ────────────────────────────────────────────────────────── */
.core-values {
  background: var(--gray-bg);
  padding: 5rem var(--px);
}
.core-values .section-title { margin-bottom: 3rem; }
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem 5%;
  max-width: var(--max-w);
  margin: 0 auto;
}
.value-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}
.value-icon {
  width: 78px;
  height: 78px;
  flex-shrink: 0;
}
.value-icon img {
  width: 100%;
  height: 100%;
}
.value-card h3 {
  font-weight: 700;
  font-size: clamp(1rem, 1.3vw, 1.3rem);
  color: var(--navy);
}
.value-card p {
  line-height: 1.6;
  color: var(--navy);
}
.value-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.value-list li {
  position: relative;
  padding-left: 1.2rem;
  line-height: 1.55;
}
.value-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--navy);
}

/* ─── CONTACT ────────────────────────────────────────────────────────────── */
.contact {
  background: var(--teal);
  padding: 5rem var(--px) 4rem;
}
.contact .container { max-width: var(--max-w); }
.contact-heading {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  color: var(--white);
  line-height: 1.15;
}
.contact-subheading {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  color: var(--white);
  margin-bottom: 2.5rem;
  line-height: 1.15;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-field label {
  font-weight: 700;
  font-size: clamp(0.85rem, 1.1vw, 1.1rem);
  color: var(--white);
  letter-spacing: 0.04em;
}
.form-field input {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--white);
  color: var(--white);
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1vw, 1rem);
  padding: 0.5rem 0;
  outline: none;
  transition: border-color 0.2s;
}
.form-field input::placeholder { color: rgba(255,255,255,0.5); }
.form-field input:focus { border-bottom-color: var(--blue-light); }
.form-actions { margin-top: 0.5rem; }
.btn-send {
  background: var(--white);
  color: var(--teal);
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.2vw, 1.2rem);
  letter-spacing: 0.08em;
  padding: 0.9rem 3.5rem;
  transition: background 0.2s, color 0.2s;
}
.btn-send:hover {
  background: var(--blue-light);
  color: var(--white);
}
.form-feedback {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--white);
  min-height: 1.4em;
}
.form-feedback.success { color: #90ee90; }
.form-feedback.error   { color: #ffb3b3; }

/* ─── ANIMATIONS ─────────────────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .form-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .story-layout {
    flex-direction: column;
    gap: 3rem;
  }
  .story-image-wrap {
    flex: unset;
    max-width: 100%;
    width: 100%;
  }
  .story-card { bottom: -1rem; left: 0; }
  .vision-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  .vision-img { flex: unset; max-width: 100%; }
  .values-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero { min-height: 480px; }
  .story-card { position: static; width: 100%; margin-top: 1rem; }
}

/* ─── FULL-SCREEN MENU OVERLAY ───────────────────────────────────────────── */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--teal-dark);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.menu-close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 4px;
  line-height: 0;
}
.menu-brand {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 3.5rem;
}
.menu-brand-top {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.menu-logo-img {
  height: 55px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.menu-logo-title {
  font-family: var(--font-logo);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  color: #e7e6dd;
  line-height: 1.1;
}
.menu-logo-tagline {
  font-size: clamp(0.75rem, 0.9vw, 0.9rem);
  color: #e7e6dd;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
  text-align: justify;
  text-align-last: justify;
}
.menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.menu-nav a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--white);
  letter-spacing: 0.05em;
  padding: 0.3rem 0;
  line-height: 1.25;
  transition: opacity 0.2s;
  text-align: center;
  display: block;
}
.menu-nav a:hover,
.menu-nav a.active { opacity: 0.55; }

/* ─── PAGE HERO ──────────────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 49, 98, 0.5);
}
.page-hero-title {
  position: relative;
  z-index: 2;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--white);
  letter-spacing: 0.12em;
  text-align: center;
}
.page-hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: var(--white);
  user-select: none;
  z-index: 2;
}

/* ─── PRODUCTS PAGE ──────────────────────────────────────────────────────── */
.products-intro {
  background: var(--white);
  padding: 5rem var(--px);
  text-align: center;
}
.products-intro p {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
  color: var(--navy);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
}
.products-section {
  background: var(--gray-bg);
  padding: 5rem var(--px);
}
.products-section .section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.product-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}
.product-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.product-card-body {
  padding: 1.25rem 1.5rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.product-card-body h3 {
  font-weight: 700;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--teal-dark);
}
.product-card-body p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--navy);
}
.products-catalog {
  background: var(--teal-dark);
  padding: 4rem var(--px);
  text-align: center;
}
.products-catalog p {
  color: var(--white);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.65;
  max-width: 700px;
  margin: 0 auto 2rem;
}
.btn-catalog {
  display: inline-block;
  background: var(--white);
  color: var(--teal-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  padding: 0.9rem 3rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-catalog:hover { background: var(--blue-light); color: var(--white); }
@media (max-width: 1100px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .products-grid { grid-template-columns: 1fr; } }

/* ─── ACTIVITIES PAGE ────────────────────────────────────────────────────── */
.activities-intro {
  background: var(--navy);
  padding: 3.5rem var(--px);
  text-align: center;
}
.activities-intro p {
  color: var(--white);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.7;
}
.activity-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
}
.activity-block.reverse { direction: rtl; }
.activity-block.reverse > * { direction: ltr; }
.activity-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.activity-text {
  background: var(--teal-dark);
  padding: 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
}
.activity-text h2 {
  font-weight: 700;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  color: var(--white);
  line-height: 1.3;
}
.activity-text p { color: rgba(255,255,255,0.9); line-height: 1.7; }
@media (max-width: 768px) {
  .activity-block, .activity-block.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .activity-img { min-height: 280px; height: 280px; }
  .activity-text { padding: 2.5rem var(--px); }
  .activity-block.reverse .activity-text { padding: 2.5rem var(--px); }
}

/* ─── SHIPMENT PAGE ──────────────────────────────────────────────────────── */
.shipment-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.shipment-block.reverse { direction: rtl; }
.shipment-block.reverse > * { direction: ltr; }
.shipment-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shipment-text {
  background: var(--navy);
  padding: 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
}
.shipment-text h2 {
  font-weight: 700;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  color: var(--white);
}
.shipment-text p, .shipment-text li { color: rgba(255,255,255,0.9); line-height: 1.7; }
.shipment-text ul { display: flex; flex-direction: column; gap: 0.3rem; }
.shipment-text li { padding-left: 1.2rem; position: relative; }
.shipment-text li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.5em;
  width: 6px; height: 6px;
  background: var(--blue-light);
}
.shipment-text .partners-group { margin-top: 0.5rem; }
.shipment-text .partners-label {
  font-weight: 700;
  color: var(--blue-light);
  margin-bottom: 0.2rem;
}
@media (max-width: 768px) {
  .shipment-block, .shipment-block.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .shipment-img { min-height: 260px; height: 260px; }
  .shipment-text { padding: 2.5rem var(--px); }
  .shipment-block.reverse .shipment-text { padding: 2.5rem var(--px); }
}

/* ─── CONTACT PAGE ───────────────────────────────────────────────────────── */
.contact-page {
  background: var(--teal);
  padding: 5rem var(--px);
}
.contact-page-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 6%;
  align-items: start;
}
.contact-form-section h2 {
  font-weight: 700;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.1rem;
}
.contact-form-section h3 {
  font-weight: 700;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  color: var(--white);
  margin-bottom: 2.5rem;
  line-height: 1.15;
}
.contact-full-form { display: flex; flex-direction: column; gap: 0; }
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.contact-form-row.single { grid-template-columns: 1fr; }
.contact-full-form .form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--white);
  color: var(--white);
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1vw, 1rem);
  padding: 0.5rem 0;
  outline: none;
  resize: vertical;
  min-height: 90px;
  width: 100%;
  transition: border-color 0.2s;
}
.contact-full-form .form-field textarea::placeholder { color: rgba(255,255,255,0.5); }
.contact-full-form .form-field textarea:focus { border-bottom-color: var(--blue-light); }
.contact-address { padding-top: 1rem; }
.contact-address h3 {
  font-weight: 700;
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  color: var(--white);
  margin-bottom: 2rem;
}
.address-item { margin-bottom: 1.5rem; }
.address-label {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--blue-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.3rem;
}
.address-item p, .address-item a {
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  display: block;
}
.address-item a:hover { color: var(--blue-light); }
@media (max-width: 900px) {
  .contact-page-inner { grid-template-columns: 1fr; }
  .contact-form-row { grid-template-columns: 1fr; }
}
