/* ─── VARIABLES ──────────────────────────────────────────── */
:root {
  --bg: #080c14;
  --surface: #101827;
  --surface2: #1a2335;
  --border: #2e3c53;
  --accent: #b68f5d;
  --accent-d: #8f6f47;
  --accent-2: #f4e9df;
  --text: #e8eaf0;
  --text-muted: #8a90a4;
  --white: #ffffff;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --radius: 10px;
  --trans: .25s cubic-bezier(.4, 0, .2, 1);
}

/* ─── RESET ──────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -20%;
  background:
    radial-gradient(circle at 12% 18%, rgba(182, 143, 93, .22), transparent 38%),
    radial-gradient(circle at 88% 14%, rgba(244, 233, 223, .14), transparent 42%),
    radial-gradient(circle at 52% 88%, rgba(182, 143, 93, .16), transparent 45%);
  pointer-events: none;
  z-index: -1;
}

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

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

svg {
  display: block;
}

/* ─── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--surface);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

/* ─── HELPERS ────────────────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header.light h2 {
  color: var(--white);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(182, 143, 93, .12);
  border: 1px solid rgba(182, 143, 93, .25);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--text);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 2000;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 2px 14px rgba(182, 143, 93, .55);
}

/* ─── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 70px;
  background: rgba(13, 15, 18, .85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--trans), background var(--trans);
}

.navbar.scrolled {
  border-color: var(--border);
  background: rgba(13, 15, 18, .97);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: .02em;
  flex-shrink: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
}

.logo-word {
  color: var(--white);
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: -0.01em;
}

.logo-word::first-letter {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: 8px;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--trans);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--trans);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--white);
}

.nav-links a.active::after {
  width: 100%;
}

.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.search-wrap svg {
  position: absolute;
  left: 10px;
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  pointer-events: none;
}

.search-wrap input {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: .85rem;
  padding: 7px 12px 7px 34px;
  width: 180px;
  transition: border-color var(--trans), width var(--trans);
  outline: none;
}

.search-wrap input:focus {
  border-color: var(--accent);
  width: 220px;
}

.search-wrap input::placeholder {
  color: var(--text-muted);
}

.lang-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .06em;
  padding: 5px 12px;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color var(--trans), color var(--trans), background var(--trans);
}

.lang-btn img {
  width: 19px;
  height: 13px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, .22);
}

.lang-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(182, 143, 93, .08);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--trans);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 10% 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/Engine-background.gif") center/cover no-repeat;
  opacity: .8;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 12, 20, .82), rgba(8, 12, 20, .58));
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: .32;
}

.orb-1 {
  width: 360px;
  height: 360px;
  left: -120px;
  top: 12%;
  background: radial-gradient(circle at 30% 30%, rgba(182, 143, 93, .9), rgba(182, 143, 93, .08));
  animation: floatOrb 12s ease-in-out infinite;
}

.orb-2 {
  width: 280px;
  height: 280px;
  right: 18%;
  bottom: -80px;
  background: radial-gradient(circle at 60% 40%, rgba(244, 233, 223, .9), rgba(244, 233, 223, .06));
  animation: floatOrb 16s ease-in-out infinite reverse;
}

@keyframes floatOrb {

  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }

  50% {
    transform: translateY(-18px) translateX(10px);
  }
}

.gear {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(182, 143, 93, .18);
  opacity: .5;
}

.gear::before,
.gear::after {
  content: '';
  position: absolute;
  background: rgba(182, 143, 93, .07);
  border-radius: 2px;
}

.gear-1 {
  width: 480px;
  height: 480px;
  right: -140px;
  top: 50%;
  transform: translateY(-50%);
  animation: spin 40s linear infinite;
}

.gear-2 {
  width: 260px;
  height: 260px;
  right: 160px;
  top: 10%;
  animation: spin 25s linear infinite reverse;
}

.gear::before {
  width: 20px;
  height: 100%;
  left: calc(50% - 10px);
  top: 0;
}

.gear::after {
  width: 100%;
  height: 20px;
  top: calc(50% - 10px);
  left: 0;
}

@keyframes spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.gear-2 {
  animation: spin2 25s linear infinite reverse;
}

@keyframes spin2 {
  to {
    transform: rotate(360deg);
  }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(182, 143, 93, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(182, 143, 93, .06) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 20% 50%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 70% 80% at 20% 50%, black 30%, transparent 100%);
}

.hero-content {
  position: relative;
  max-width: 680px;
  animation: fadeUp .9s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.hero-tag {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title em {
  color: var(--accent);
  font-style: normal;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 40px;
}

.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: var(--radius);
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  box-shadow: 0 8px 32px rgba(182, 143, 93, .25);
}

.cta-btn:hover {
  background: var(--accent-d);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(182, 143, 93, .35);
}

.hero-mini-badges {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-mini-badges span {
  font-size: .76rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #d8deea;
  background: rgba(182, 143, 93, .12);
  border: 1px solid rgba(182, 143, 93, .28);
  border-radius: 999px;
  padding: 7px 12px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  position: relative;
  animation: fadeUp .9s .3s ease both;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-n {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-l {
  font-size: .8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
}

/* ─── SERVICES ───────────────────────────────────────────── */
.services-section {
  background: var(--surface);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 20px;
}

.services-lead {
  max-width: 760px;
  margin: 12px auto 0;
  color: var(--text-muted);
  font-size: .95rem;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
  cursor: default;
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(182, 143, 93, .16);
}

.card-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 20px;
}

.card-icon svg {
  width: 48px;
  height: 48px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.service-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-points {
  margin-top: 4px;
  padding-left: 18px;
  color: var(--text);
  font-size: .82rem;
  line-height: 1.55;
}

.service-points li {
  margin-bottom: 6px;
}

.service-points li:last-child {
  margin-bottom: 0;
}

.service-meta {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 8px;
}

.service-meta span {
  font-size: .69rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent-2);
  border: 1px solid rgba(182, 143, 93, .35);
  background: rgba(182, 143, 93, .1);
  border-radius: 999px;
  padding: 5px 10px;
}

.no-results {
  text-align: center;
  color: var(--text-muted);
  padding: 40px;
  font-size: 1rem;
}

/* ─── GALLERY ────────────────────────────────────────────── */
.gallery-section {
  background: var(--bg);
}

.gallery-section .section-header h2 {
  color: var(--white);
}

.gallery-lead {
  max-width: 760px;
  margin: 12px auto 0;
  color: var(--text-muted);
  font-size: .95rem;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 54px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(182, 143, 93, .15);
  background: var(--surface2);
  cursor: pointer;
  aspect-ratio: 4/3;
  will-change: transform;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s, border-color 0.5s;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(182, 143, 93, 0.18);
  border-color: rgba(182, 143, 93, .5);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s;
  filter: brightness(0.85) grayscale(15%);
}

.gallery-item:hover img {
  transform: scale(1.1) rotate(1.5deg);
  filter: brightness(1) grayscale(0%);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 12, 20, .95) 0%, rgba(8, 12, 20, .5) 50%, transparent 100%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 30px 24px;
  transition: opacity 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.overlay-content {
  width: 100%;
  transform: translateY(24px);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .overlay-content {
  transform: translateY(0);
}

.gallery-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transform: scale(0.8) translateY(12px);
  opacity: 0;
  transition: transform 0.4s 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s 0.1s;
}

.gallery-icon svg {
  width: 20px;
  height: 20px;
}

.gallery-item:hover .gallery-icon {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.overlay-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: .02em;
}

.overlay-content p {
  font-size: 0.88rem;
  color: var(--accent-2);
  opacity: 0;
  transform: translateX(-15px);
  transition: transform 0.4s 0.15s ease, opacity 0.4s 0.15s ease;
}

.gallery-item:hover .overlay-content p {
  transform: translateX(0);
  opacity: 0.85;
}

/* ─── ABOUT US ─────────────────────────────────────────── */
.about-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content h2 {
  margin-bottom: 24px;
  text-align: left;
}

.about-p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-features {
  margin: 32px 0;
  padding-left: 20px;
  border-left: 2px solid var(--accent);
}

.about-features h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 15px;
}

.about-features ul {
  list-style: none;
}

.about-features li {
  margin-bottom: 10px;
  color: var(--text);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-features li::before {
  content: '→';
  color: var(--accent);
  font-weight: 700;
}

.about-slogan-box {
  background: var(--surface2);
  padding: 24px;
  border-radius: 12px;
  border-right: 4px solid var(--accent);
  margin-top: 40px;
}

.about-slogan-box h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.about-slogan-box p {
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 600;
  font-style: italic;
}

.about-visual {
  position: relative;
}

.visual-orb {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.15;
  filter: blur(40px);
  z-index: -1;
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  left: -40px;
  background: var(--surface2);
  border: 1px solid var(--accent);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  z-index: 10;
}

.experience-badge .num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 5px;
}

/* ─── ABOUT VIDEO ───────────────────────────────────────── */
.about-video-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 440px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.about-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-hint {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(8, 12, 20, 0.6);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 99px;
  border: 1px solid rgba(182, 143, 93, 0.3);
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ─── VISION GRID (COMPACT) ─────────────────────────────── */
.history-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.history-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(var(--accent-d) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.1;
  pointer-events: none;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.v-node {
  background: var(--surface2);
  padding: 32px 24px;
  border-radius: 20px;
  border: 1px solid var(--border);
  text-align: center;
  transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.v-node:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.v-icon {
  width: 54px;
  height: 54px;
  background: rgba(182, 143, 93, 0.1);
  color: var(--accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(182, 143, 93, 0.2);
}

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

.v-node h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
}

.v-node p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.vision-quote-compact {
  margin-top: 48px;
  text-align: center;
  padding: 32px;
  border-radius: 20px;
  border-left: 4px solid var(--accent);
  background: var(--surface2);
}

.vision-quote-compact p {
  font-size: 1.4rem;
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
}

/* ─── SHIPPING ───────────────────────────────────────────── */
.shipping-section {
  background: var(--bg);
}

.shipping-inner {
  display: flex;
  align-items: center;
  gap: 64px;
}

.shipping-visual {
  flex: 0 0 340px;
}

.ship-map {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.ship-map svg {
  width: 100%;
}

.shipping-text {
  flex: 1;
}

.shipping-text .section-tag {
  display: inline-block;
  margin-bottom: 14px;
}

.shipping-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.2;
}

.shipping-text p {
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.ship-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ship-feat {
  display: flex;
  gap: 10px;
  align-items: center;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: .88rem;
  color: var(--text);
}

.ship-feat span:first-child {
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
}

.ship-feat {
  transition: transform var(--trans), border-color var(--trans), background var(--trans);
}

.ship-feat:hover {
  transform: translateY(-2px);
  border-color: rgba(182, 143, 93, .7);
  background: rgba(182, 143, 93, .08);
}

/* ─── CONTACT ────────────────────────────────────────────── */
.contact-section {
  background: var(--surface);
  text-align: center;
}

.contact-section .section-header.light h2 {
  color: var(--white);
}

.contact-sub {
  color: var(--text-muted);
  margin-top: 10px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 40px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .04em;
  margin-top: 36px;
  transition: transform var(--trans), box-shadow var(--trans);
  box-shadow: 0 8px 32px rgba(37, 211, 102, .2);
}

.wa-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(37, 211, 102, .3);
}

.wa-btn svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.wa-btn em {
  font-style: normal;
  font-size: .85rem;
  opacity: .85;
  margin-left: 4px;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 48px;
}

.footer-brand p {
  font-size: .88rem;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.6;
}

.footer-note {
  margin-top: 10px;
  font-size: .82rem;
  color: var(--accent);
  font-style: italic;
}

.footer-brand .logo {
  margin-bottom: 6px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.soc {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  transition: color var(--trans), border-color var(--trans), background var(--trans), transform var(--trans);
}

.soc:hover {
  color: var(--white);
  transform: translateY(-3px);
}

.soc[aria-label="Instagram"]:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-color: transparent;
}

.soc[aria-label="TikTok"]:hover {
  background: #000000;
  border-color: #ff0050;
  color: #ff0050;
  box-shadow: 2px 2px 0 #00f2ea, -2px -2px 0 #ff0050;
}

.soc svg {
  width: 20px;
  height: 20px;
}

.footer-info h4,
.footer-map h4 {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-info p {
  font-size: .88rem;
  color: var(--text);
  margin-bottom: 8px;
}

.footer-info a {
  color: var(--accent);
}

.map-placeholder {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-placeholder svg {
  width: 100%;
}

.location-details {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(182, 143, 93, .08);
}

.location-details p {
  font-size: .82rem;
  color: var(--text);
  margin-bottom: 6px;
}

.location-details p:last-child {
  margin-bottom: 0;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  text-align: center;
  font-size: .82rem;
  color: var(--text-muted);
}

.footer-credit {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: .82rem;
}

.footer-credit a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── WA FAB ─────────────────────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .35);
  transition: transform var(--trans), box-shadow var(--trans), filter var(--trans);
  animation: waPulse 1.8s ease-in-out infinite;
}

.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, .5);
}

.wa-fab svg {
  width: 28px;
  height: 28px;
}

.wa-fab::before,
.wa-fab::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .45);
  z-index: -1;
  animation: waRing 2.6s linear infinite;
}

.wa-fab::after {
  animation-delay: 1.3s;
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, .35);
    filter: drop-shadow(0 0 0 rgba(37, 211, 102, .2));
  }

  50% {
    box-shadow: 0 14px 36px rgba(37, 211, 102, .55);
    filter: drop-shadow(0 0 10px rgba(37, 211, 102, .5));
  }
}

@keyframes waRing {
  0% {
    transform: scale(.8);
    opacity: .9;
  }

  70% {
    transform: scale(1.35);
    opacity: 0;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 899;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(182, 143, 93, .6);
  background: rgba(17, 24, 39, .92);
  color: var(--accent-2);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--trans), transform var(--trans), visibility var(--trans), border-color var(--trans);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ─── LIGHTBOX ───────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 20, 0.95);
  backdrop-filter: blur(10px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 40px;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.lightbox-content img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(182, 143, 93, 0.3);
  transform: scale(0.9);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: auto;
}

.lightbox.open img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: var(--surface2);
  color: var(--white);
  border: 1px solid var(--border);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  z-index: 3001;
}

.lightbox-close:hover {
  background: var(--accent);
  color: var(--white);
  transform: rotate(90deg) scale(1.1);
}

/* ─── EXTRA UTILS ────────────────────────────────────────── */
.hero-exp {
  margin-top: 15px;
  font-size: 0.95rem;
  color: var(--accent-2);
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.9;
  border-left: 3px solid var(--accent);
  padding-left: 15px;
}

.footer-info .working-hours {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid var(--border);
}

.footer-info .working-hours h4 {
  margin-bottom: 10px;
}

.footer-info .working-hours p {
  color: var(--accent-2);
  margin-bottom: 4px;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width:900px) {
  .shipping-inner {
    flex-direction: column;
  }

  .shipping-visual {
    flex: none;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .timeline::before {
    left: 24px;
  }

  .tl-left,
  .tl-right {
    justify-content: flex-start;
    padding-left: 60px;
    padding-right: 0;
  }

  .tl-dot {
    left: 24px;
  }

  .tl-card {
    max-width: 100%;
  }

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

  .footer-brand {
    grid-column: 1/-1;
  }
}

@media (max-width:640px) {
  .section {
    padding: 64px 0;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
  }

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

  .nav-links a {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .hamburger {
    display: flex;
  }

  .search-wrap {
    display: none;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    order: -1;
  }

  .experience-badge {
    left: 20px;
    bottom: -20px;
    flex-direction: row;
    gap: 15px;
  }

  .vision-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .vision-quote-compact p {
    font-size: 1.1rem;
  }

  .about-video-wrapper {
    height: 320px;
  }

  .logo-word {
    font-size: 1.95rem;
    transform: translateY(3px);
  }

  .logo-img {
    width: 52px;
    height: 52px;
    border-radius: 6px;
  }

  .video-container {
    aspect-ratio: 4/3;
  }

  .video-overlay {
    padding: 30px;
  }

  .ship-features {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding: 90px 24px 40px;
  }

  .hero-title {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .hero-mini-badges {
    gap: 8px;
  }

  .hero-mini-badges span {
    font-size: .68rem;
    padding: 6px 9px;
  }

  .back-to-top {
    right: 16px;
    bottom: 92px;
  }

  .wa-fab {
    right: 16px;
    bottom: 24px;
  }
}

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

/* ─── SCROLL ANIMATIONS ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

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

.service-card,
.tl-card,
.ship-map,
.ship-feat,
.wa-btn,
.cta-btn,
.gallery-item {
  will-change: transform;
}

/* ─── HIGHLIGHT ──────────────────────────────────────────── */
.service-card.hidden {
  display: none;
}