:root {
  --bg: #f6fbff;
  --surface: #ffffff;
  --text: #102a43;
  --muted: #486581;
  --primary: #0f7c90;
  --primary-dark: #0b5667;
  --accent: #f08c00;
  --border: #d9e2ec;
  --shadow: 0 18px 34px rgba(15, 124, 144, 0.15);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 5%, rgba(240, 140, 0, 0.12), transparent 38%),
    radial-gradient(circle at 88% 2%, rgba(15, 124, 144, 0.12), transparent 34%),
    linear-gradient(180deg, #f6fbff 0%, #eef6fb 60%, #fefcf8 100%);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: 0;
}

p {
  margin: 0;
}

a {
  color: var(--primary-dark);
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(160deg, #0f7c90, #0b5667);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}

.brand {
  text-decoration: none;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  gap: 18px;
}

.main-nav a {
  text-decoration: none;
  font-weight: 700;
  color: #e9f9f5;
  padding: 8px 12px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.main-nav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}

.hero {
  padding-top: 108px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 30px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: #fff4dd;
  border: 1px solid #ffd39d;
  color: #8a4b00;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-content h1 {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 1.08rem;
  color: var(--muted);
}

.cta-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  text-decoration: none;
  border-radius: 14px;
  padding: 12px 18px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: #fff;
  color: var(--primary-dark);
  border: 1px solid #b7c9d8;
}

.hero-panel {
  background: linear-gradient(160deg, #0f7c90, #0b5667);
  color: #fff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}

.hero-panel h2 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
  margin-bottom: 28px;
}

.section-head h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  margin-bottom: 0;
}

.section-head p {
  color: var(--muted);
  max-width: 600px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-grid article {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(16, 42, 67, 0.06);
}

.about-grid h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.about-grid p {
  color: var(--muted);
}

.section-products {
  position: relative;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(16, 42, 67, 0.08);
  animation: fadeUp 0.7s ease both;
}

.product-card:nth-child(2) {
  animation-delay: 0.1s;
}

.product-card:nth-child(3) {
  animation-delay: 0.2s;
}

.product-card:nth-child(4) {
  animation-delay: 0.3s;
}

.product-card:nth-child(5) {
  animation-delay: 0.4s;
}

.product-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.product-card p {
  color: var(--muted);
}

.product-card.featured {
  border-color: #ffce8a;
  background: linear-gradient(180deg, #fff8ec 0%, #fff 60%);
}

.product-link {
  margin-top: 14px;
  display: inline-block;
  text-decoration: none;
  font-weight: 800;
  color: #8a4b00;
  background: #ffe4b8;
  border: 1px solid #ffce8a;
  border-radius: 10px;
  padding: 10px 12px;
}

.contact-box {
  background: linear-gradient(165deg, #e2f2f5, #fdf7ea);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
}

.contact-box h2 {
  margin-bottom: 10px;
}

.contact-box p {
  font-size: 1.02rem;
  color: var(--muted);
  margin-top: 8px;
}

.section-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

.section-title i {
  color: var(--accent);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(16, 42, 67, 0.08);
}

.card-icon {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.section-title i,
.transport-card h3 i,
.feature-list i,
.card i {
  color: var(--accent);
}

.btn i,
.btn-wa i {
  color: inherit;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  margin-top: 8px;
}

.contact-phone {
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  font-weight: 800;
  color: var(--text);
}

.contact-divider {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 14px 0;
}

.btn-wa {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1f9f64;
  color: #fff;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(31, 159, 100, 0.3);
}

.btn-call {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.contact-block {
  margin-top: 16px;
  background: linear-gradient(165deg, #e2f2f5, #fdf7ea);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px;
  text-align: center;
}

.contact-highlight-icon {
  font-size: 2rem;
  color: var(--accent);
}

.contact-block h3 {
  margin: 10px 0;
}

.contact-actions {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.office-card {
  margin-top: 16px;
  text-align: center;
}

.callback-theme {
  margin-top: 18px;
}

.callback-form-center {
  justify-items: center;
}

.callback-form-center input {
  width: 100%;
}

.muted-line {
  color: var(--muted);
}

.thank-note {
  margin: 22px 0 0;
  text-align: center;
  color: var(--muted);
  font-style: italic;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-subline {
  margin-top: 8px;
}

.product-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.transport-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.feature-list {
  margin: 16px 0 24px;
  padding-left: 18px;
}

.feature-list li {
  margin-bottom: 8px;
}

.info-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(16, 42, 67, 0.08);
}

.transport-main {
  padding-bottom: 48px;
}

.transport-nav-wrap {
  min-height: 70px;
}

.transport-hero {
  padding-top: 74px;
}

.transport-hero-box {
  background: linear-gradient(160deg, #0f7c90, #0b5667);
  color: #fff;
  border-radius: 24px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow);
}

.transport-hero-box h1 {
  font-size: clamp(1.8rem, 3.3vw, 3rem);
  margin-bottom: 14px;
}

.transport-hero-box p {
  color: #e6f4f6;
  max-width: 820px;
}

.transport-hero-box .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
  margin-bottom: 14px;
}

.transport-soft-bg {
  background: linear-gradient(180deg, rgba(226, 242, 245, 0.45), rgba(253, 247, 234, 0.45));
}

.transport-grid {
  display: grid;
  gap: 16px;
}

.transport-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.transport-grid.four-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.transport-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(16, 42, 67, 0.08);
}

.transport-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.transport-card h3 i {
  color: var(--accent);
  margin-right: 6px;
}

.transport-card p + p {
  margin-top: 10px;
}

.image-card {
  overflow: hidden;
}

.product-image {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 14px;
}

.transport-card-wide {
  margin-top: 12px;
}

.transport-callback {
  margin-top: 16px;
}

.callback-form {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
}

.callback-form input {
  border: 1px solid var(--border);
  border-radius: 12px;
  font: inherit;
  padding: 10px 12px;
  color: var(--text);
  background: #fff;
}

.callback-form input:focus {
  outline: 2px solid rgba(15, 124, 144, 0.28);
  border-color: var(--primary);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .product-grid,
  .transport-layout,
  .transport-grid.two-col,
  .transport-grid.four-col,
  .grid-2,
  .callback-form {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-panel {
    transform: none;
  }

  .transport-hero {
    padding-top: 56px;
  }
}

@media (max-width: 720px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 8px;
  }

  .section {
    padding: 64px 0;
  }
}
