:root {
  --primary: #76abb7;
  --primary-dark: #293232;
  --dark: #1f2728;
  --text: #232323;
  --text-soft: #667074;
  --white: #ffffff;
  --bg: #f6f9fa;
  --card: #ffffff;
  --border: rgba(41, 50, 50, 0.1);
  --shadow: 0 16px 42px rgba(41, 50, 50, 0.1);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button {
  font: inherit;
}

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

/* top bar */
.campaign-bar {
  background: linear-gradient(90deg, #293232 0%, #76abb7 50%, #293232 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  position: relative;
}

.campaign-marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.campaign-track {
  display: inline-flex;
  align-items: center;
  min-width: 200%;
  animation: campaignScroll 24s linear infinite;
}

.campaign-track span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 24px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.campaign-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.campaign-phone svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex-shrink: 0;
}

.campaign-mini-logo {
  width: auto;
  height: 18px;
  object-fit: contain;
  display: inline-block;
  flex-shrink: 0;
}

@keyframes campaignScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.logo-image {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.brand-text strong {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  transition: opacity 0.2s ease;
}

.nav-link:hover {
  opacity: 0.75;
}

.header-enuma-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
}

.header-enuma-logo {
  height: 24px;
  width: auto;
  display: block;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  position: relative;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--dark);
  transform: translateX(-50%);
  border-radius: 99px;
}

.menu-toggle span {
  top: 50%;
  transform: translate(-50%, -50%);
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

/* sections */
.section {
  padding: 64px 0;
}

.section-services {
  padding-top: 34px;
}

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

.section-head-blog {
  margin-bottom: 24px;
}

.moved-blog-head {
  margin-top: 34px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.eyebrow.light {
  color: #cde4ea;
}

.section-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  color: var(--dark);
}

.section-title-large {
  font-size: clamp(28px, 4vw, 44px);
}

.section-subtitle {
  max-width: 620px;
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
}

/* hero */
.hero {
  padding: 28px 0 20px;
}

.slider-wrap {
  position: relative;
}

.slider-track {
  position: relative;
  min-height: 560px;
}

.slide {
  position: absolute;
  inset: 0;
  min-height: 560px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.slide > img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 36px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.05) 100%);
}

.slide-panel {
  max-width: 650px;
  color: #fff;
}

.slide-panel h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.05;
  font-weight: 800;
}

.slide-panel p {
  margin: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
}

.slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: #6799a4;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(41, 50, 50, 0.2);
  cursor: pointer;
}

.slider-dot.active {
  background: var(--primary);
}

/* services */
.service-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-photo-card {
  overflow: hidden;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.service-photo-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.service-photo-content {
  padding: 22px;
}

.service-photo-content h3 {
  margin: 0 0 8px;
  font-size: 20px;
  color: var(--dark);
}

.service-photo-content p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
}

/* promo grid */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

/* cargo */
.cargo-box {
  background: linear-gradient(135deg, #293232 0%, #344445 100%);
  border: 1px solid rgba(118, 171, 183, 0.2);
  border-radius: 28px;
  padding: 36px 28px;
  box-shadow: 0 20px 50px rgba(41, 50, 50, 0.18);
  text-align: center;
  color: #fff;
  min-height: 100%;
}

.cargo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(118, 171, 183, 0.16);
  border: 1px solid rgba(118, 171, 183, 0.26);
  color: #bfe0e8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.cargo-box h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
}

.cargo-text {
  margin: 0 auto 24px;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.cargo-code-box {
  max-width: 520px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(118, 171, 183, 0.18);
  border-radius: 22px;
}

.cargo-code-label {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #bfe0e8;
  font-weight: 700;
}

.cargo-code {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffffff;
}

/* instagram */
.insta-banner-box {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #293232 0%, #3d5458 100%);
  color: #fff;
  border-radius: 30px;
  padding: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 100%;
}

.insta-phone {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 190px;
  padding: 10px;
  background: #0b0b0b;
  border-radius: 30px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.phone-notch {
  width: 100px;
  height: 18px;
  background: #000;
  border-radius: 0 0 16px 16px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.phone-screen {
  overflow: hidden;
  border-radius: 22px;
  background: #111;
}

.phone-screen img {
  width: 100%;
  height: auto;
}

.insta-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #b9d8df;
}

.insta-content h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
}

.insta-content h2 span {
  color: #9fd0db;
}

.insta-content p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
}

.insta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  background: #fff;
  color: #293232;
  font-weight: 800;
}

/* blog cards */
.cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.info-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
  transform: translateY(-4px);
}

.info-card strong {
  display: block;
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 10px;
  color: var(--dark);
}

.info-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-soft);
}

/* footer */
.footer {
  background: #101818;
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 20px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1.1fr;
  gap: 26px;
}

.footer h4 {
  margin: 0 0 16px;
  font-size: 18px;
  color: #fff;
}

.footer-brand-wrap {
  margin-bottom: 12px;
}

.footer-brand {
  margin-bottom: 10px;
}

.footer-logo {
  height: 34px;
  width: auto;
}

.footer-brand-title {
  margin: 0 0 10px;
  color: #fff;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-top {
  margin-top: 16px;
}

.footer-links a:hover {
  color: #fff;
}

.map-frame {
  overflow: hidden;
  border-radius: 18px;
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-frame iframe {
  width: 100%;
  height: 220px;
  border: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  margin-top: 28px;
  font-size: 14px;
}

/* whatsapp */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 35px rgba(37, 211, 102, 0.35);
  z-index: 120;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

/* responsive */
@media (max-width: 1100px) {
  .promo-grid,
  .cards-row,
  .service-photo-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

@media (max-width: 768px) {
  .campaign-track span {
    font-size: 11px;
    gap: 10px;
    padding: 7px 16px;
  }

  .campaign-mini-logo {
    height: 14px;
  }

  .campaign-phone {
    font-size: 12px;
    gap: 6px;
  }

  .campaign-phone svg {
    width: 13px;
    height: 13px;
  }

  .header-enuma-logo-link {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .slider-track,
  .slide,
  .slide > img {
    min-height: 500px;
    height: 500px;
  }

  .slide-content {
    padding: 24px;
    align-items: flex-end;
  }

  .slide-panel h1 {
    font-size: 32px;
  }

  .promo-grid,
  .cards-row,
  .service-photo-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .insta-banner-box {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 22px;
  }

  .phone-frame {
    width: 210px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .cargo-box {
    padding: 28px 18px;
  }

  .cargo-code {
    letter-spacing: 0.04em;
  }
}