:root {
  --primary-blue: #3fbbf4;
  --dark-blue: #0b2d5c;
  --green: #459e16;
  --green-dark: #2f7f0d;
  --dark: #071b33;
  --light-bg: #f7fbfd;
  --white: #ffffff;
  --muted: #5f7083;
  --line: rgba(11, 45, 92, 0.12);
  --shadow: 0 18px 45px rgba(7, 27, 51, 0.12);
  --font-main: "Helvetica World", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  color: var(--dark);
  background: var(--white);
  line-height: 1.62;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
.navbar-brand {
  font-family: var(--font-main);
}

.section {
  padding: 76px 0;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--green);
  font-family: var(--font-main);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 46px;
}

.section-heading p,
.overview-section p,
.about-section p,
.network-section p,
.contact-section p {
  color: var(--muted);
  font-size: 0.98rem;
}

h2 {
  color: var(--dark-blue);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 18px;
}

h3 {
  font-weight: 800;
  color: var(--dark-blue);
}

.navbar {
  padding: 12px 0;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(11, 45, 92, 0.08);
  box-shadow: 0 12px 30px rgba(7, 27, 51, 0.08);
}

.navbar.scrolled,
.navbar.menu-open {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 14px 34px rgba(7, 27, 51, 0.12);
  padding: 8px 0;
}

.navbar-brand img {
  width: 178px;
  height: 68px;
  object-fit: contain;
}

.navbar .nav-link {
  color: var(--dark-blue);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 12px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--green);
}

.navbar-toggler {
  border-color: rgba(11, 45, 92, 0.18);
}

.btn-quote,
.btn-primary-lg,
.btn-submit {
  background: var(--green);
  color: var(--white);
  border: 0;
  border-radius: 6px;
  font-weight: 800;
  padding: 11px 21px;
  box-shadow: 0 14px 26px rgba(69, 158, 22, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-quote:hover,
.btn-primary-lg:hover,
.btn-submit:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(69, 158, 22, 0.3);
}

.btn-outline-lg {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  font-weight: 800;
  padding: 12px 22px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-outline-lg:hover {
  background: var(--white);
  color: var(--dark-blue);
  transform: translateY(-2px);
}

.hero-section {
  min-height: 100vh;
  position: relative;
  color: var(--white);
  background: url("../images/container-port.webp") center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 27, 51, 0.9), rgba(11, 45, 92, 0.66) 48%, rgba(7, 27, 51, 0.16)),
    radial-gradient(circle at 72% 42%, rgba(69, 158, 22, 0.2), transparent 32%);
}

.hero-content {
  padding-top: 148px;
  padding-bottom: 138px;
}

.hero-content h1 {
  font-size: clamp(2.45rem, 5.8vw, 5.15rem);
  line-height: 1.02;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-lead {
  font-size: clamp(1.04rem, 1.75vw, 1.42rem);
  max-width: 650px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-tagline {
  font-family: var(--font-main);
  font-weight: 700;
  color: #7ed957;
  font-size: 1.04rem;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: 100%;
  z-index: 2;
}

.stat-card {
  min-height: 112px;
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  border-bottom: 4px solid var(--green);
}

.stat-card strong {
  display: block;
  color: var(--dark-blue);
  font-family: var(--font-main);
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.stat-card span {
  color: var(--muted);
  font-weight: 700;
}

.overview-section,
.services-section,
.why-section {
  background:
    linear-gradient(90deg, rgba(69, 158, 22, 0.035), transparent 26%),
    var(--light-bg);
}

.image-stack {
  position: relative;
  padding: 0 0 58px 58px;
}

.image-main,
.rounded-media,
.network-visual img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-main {
  aspect-ratio: 4 / 3;
}

.image-float {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48%;
  border: 8px solid var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.image-badge {
  position: absolute;
  right: 22px;
  bottom: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  max-width: 270px;
  padding: 16px 18px;
  border-radius: 8px;
  background: var(--dark-blue);
  color: var(--white);
  font-weight: 800;
  box-shadow: var(--shadow);
}

.image-badge i {
  color: #7ed957;
  font-size: 1.4rem;
}

.rounded-media {
  aspect-ratio: 4 / 5;
}

.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 28px;
  padding: 22px;
  border-radius: 8px;
  border-left: 4px solid var(--green);
  background: rgba(69, 158, 22, 0.08);
}

.about-highlight i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
}

.about-highlight strong,
.about-highlight span {
  display: block;
}

.about-highlight strong {
  color: var(--dark-blue);
  font-family: var(--font-main);
  margin-bottom: 4px;
}

.values-section {
  background:
    linear-gradient(135deg, rgba(69, 158, 22, 0.18), transparent 42%),
    linear-gradient(135deg, var(--dark) 0%, var(--dark-blue) 100%);
}

.vision-card,
.values-card {
  height: 100%;
  padding: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
}

.vision-card.featured {
  background: var(--white);
  color: var(--muted);
}

.vision-card i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  margin-bottom: 24px;
  font-size: 1.35rem;
}

.vision-card h3,
.values-card h3 {
  color: var(--white);
  margin-bottom: 14px;
}

.vision-card.featured h3 {
  color: var(--dark-blue);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.value-grid span {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--white);
  background: rgba(69, 158, 22, 0.18);
  border: 1px solid rgba(126, 217, 87, 0.24);
  font-weight: 800;
}

.service-card,
.why-card {
  height: 100%;
  padding: 30px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(7, 27, 51, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(69, 158, 22, 0.45);
}

.service-card i,
.why-card i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(69, 158, 22, 0.12);
  color: var(--green);
  font-size: 1.35rem;
  margin-bottom: 24px;
}

.service-card h3,
.why-card h3 {
  font-size: 1.08rem;
  line-height: 1.35;
  margin-bottom: 14px;
}

.service-card p,
.why-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.96rem;
}

.process-section {
  background: var(--white);
}

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

.timeline::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  padding: 0 10px;
  z-index: 1;
}

.timeline-item span {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--primary-blue));
  border: 8px solid var(--white);
  box-shadow: 0 12px 28px rgba(63, 187, 244, 0.26);
  font-family: var(--font-main);
  font-weight: 800;
}

.timeline-item h3 {
  font-size: 1.15rem;
}

.timeline-item p {
  color: var(--muted);
  margin: 0;
}

.network-section {
  background: linear-gradient(180deg, var(--white), var(--light-bg));
}

.network-lists {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 20px;
  margin-top: 28px;
}

.network-lists > div {
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(7, 27, 51, 0.06);
}

.network-lists h3 {
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.network-lists ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.network-lists li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 9px;
  color: var(--muted);
  font-weight: 700;
}

.network-lists li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.network-visual {
  position: relative;
}

.network-visual img {
  aspect-ratio: 16 / 10;
}

.port-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 300px;
  padding: 20px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.port-card strong {
  color: var(--dark-blue);
  font-family: var(--font-main);
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.port-card span {
  color: var(--muted);
  font-weight: 700;
}

.gallery-section {
  padding-top: 0;
  background: var(--light-bg);
}

.operations-slider-section {
  padding: 24px 0 58px;
  background:
    linear-gradient(180deg, var(--light-bg), var(--white));
}

.operations-slider {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  max-width: 940px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(69, 158, 22, 0.16);
  box-shadow: 0 14px 34px rgba(7, 27, 51, 0.08);
}

.operation-slide {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  min-height: 178px;
  padding: 26px 108px 26px 28px;
}

.operations-slider .carousel-item {
  transition: opacity 0.45s ease-in-out;
}

.operation-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 30px rgba(69, 158, 22, 0.24);
  font-size: 1.7rem;
}

.operation-copy {
  position: relative;
  padding: 0;
  color: var(--dark);
  background: transparent;
}

.operation-copy::before {
  display: none;
}

.operation-copy span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.operation-copy h3 {
  color: var(--dark-blue);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.18;
  margin-bottom: 8px;
}

.operation-copy p {
  color: var(--muted);
  margin: 0;
  font-size: 0.94rem;
}

.operations-slider .carousel-indicators {
  right: 24px;
  left: auto;
  bottom: 18px;
  margin: 0;
  gap: 7px;
}

.operations-slider .carousel-indicators [data-bs-target] {
  width: 26px;
  height: 4px;
  border: 0;
  border-radius: 20px;
  background-color: rgba(11, 45, 92, 0.22);
  opacity: 1;
}

.operations-slider .carousel-indicators .active {
  background-color: var(--green);
}

.operations-slider .carousel-control-prev,
.operations-slider .carousel-control-next {
  top: auto;
  bottom: 16px;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(69, 158, 22, 0.12);
  color: var(--green);
  opacity: 1;
}

.operations-slider .carousel-control-prev {
  left: auto;
  right: 100px;
}

.operations-slider .carousel-control-next {
  right: 58px;
}

.operations-slider .carousel-control-prev:hover,
.operations-slider .carousel-control-next:hover {
  background: var(--green);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(7, 27, 51, 0.08);
}

.contact-section {
  background:
    linear-gradient(rgba(7, 27, 51, 0.92), rgba(7, 27, 51, 0.92)),
    url("../images/container-yard.webp") center/cover no-repeat;
  color: var(--white);
}

.contact-section h2,
.contact-section .section-kicker {
  color: var(--white);
}

.contact-section p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-list a,
.contact-list div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.contact-list i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  color: var(--white);
  background: rgba(69, 158, 22, 0.22);
}

.contact-form {
  padding: 34px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  color: var(--dark-blue);
  font-weight: 800;
}

.form-control,
.form-select {
  min-height: 52px;
  border-radius: 6px;
  border: 1px solid rgba(11, 45, 92, 0.16);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 0.22rem rgba(69, 158, 22, 0.16);
}

textarea.form-control {
  min-height: 132px;
}

.form-success {
  display: none;
  padding: 14px 16px;
  margin-bottom: 18px;
  border-radius: 6px;
  color: #1f6410;
  background: rgba(69, 158, 22, 0.12);
  font-weight: 800;
}

.form-success.show {
  display: block;
}

.site-footer {
  background:
    linear-gradient(135deg, rgba(69, 158, 22, 0.16), transparent 40%),
    var(--dark);
  color: rgba(255, 255, 255, 0.92);
  padding: 70px 0 28px;
  border-top: 5px solid var(--green);
}

.site-footer h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 9px;
}

.site-footer a:hover {
  color: #7ed957;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact {
  display: grid;
  gap: 14px;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
}

.footer-contact i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 6px;
  color: var(--white);
  background: rgba(69, 158, 22, 0.32);
  font-size: 0.9rem;
}

.footer-contact span {
  overflow-wrap: anywhere;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
  background: var(--green);
  color: var(--white);
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: var(--green);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 20;
}

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

@media (max-width: 1199.98px) {
  .navbar-collapse {
    margin-top: 14px;
    padding: 18px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 14px 34px rgba(7, 27, 51, 0.12);
  }

  .btn-quote {
    width: 100%;
    margin-top: 8px;
  }

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

  .timeline::before {
    display: none;
  }
}

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

  .hero-stats {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    padding-bottom: 32px;
  }

  .hero-content {
    padding-bottom: 52px;
  }

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

  .network-lists {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid img {
    height: 260px;
  }

  .operations-slider-section {
    padding: 14px 0 42px;
  }

  .operation-slide {
    grid-template-columns: 78px 1fr;
    min-height: 168px;
    padding: 24px 94px 24px 24px;
  }

  .operation-icon {
    width: 60px;
    height: 60px;
    font-size: 1.35rem;
  }
}

@media (max-width: 767.98px) {
  body {
    line-height: 1.55;
  }

  .navbar {
    padding: 8px 0;
  }

  .navbar.scrolled,
  .navbar.menu-open {
    padding: 6px 0;
  }

  .navbar-brand img {
    width: 136px;
    height: 52px;
  }

  .navbar-toggler {
    width: 42px;
    height: 38px;
    padding: 5px 8px;
  }

  .navbar-collapse {
    margin-top: 8px;
    padding: 12px;
  }

  .navbar .nav-link {
    padding: 9px 8px;
    font-size: 0.92rem;
  }

  .btn-quote {
    padding: 10px 14px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(7, 27, 51, 0.94), rgba(11, 45, 92, 0.82));
  }

  .hero-section {
    background-position: 60% center;
  }

  .hero-section .min-vh-100 {
    min-height: auto !important;
  }

  .hero-content {
    padding-top: 126px;
    padding-bottom: 32px;
  }

  .hero-content h1 {
    max-width: 340px;
    font-size: clamp(2rem, 10.5vw, 2.55rem);
    line-height: 1.05;
    margin-bottom: 16px;
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .hero-tagline {
    font-size: 0.96rem;
    margin-bottom: 22px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    padding: 11px 16px;
  }

  .hero-stats {
    padding-bottom: 18px;
  }

  .stat-card {
    min-height: auto;
    padding: 16px 18px;
    border-bottom-width: 3px;
  }

  .stat-card strong {
    font-size: 1rem;
    margin-bottom: 2px;
  }

  .stat-card span {
    font-size: 0.9rem;
  }

  .section {
    padding: 50px 0;
  }

  .section-heading {
    margin-bottom: 30px;
    text-align: left !important;
  }

  .section-kicker,
  .eyebrow {
    font-size: 0.72rem;
    margin-bottom: 10px;
  }

  h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .section-heading p,
  .overview-section p,
  .about-section p,
  .network-section p,
  .contact-section p {
    font-size: 0.94rem;
  }

  .operations-slider {
    max-width: 100%;
    box-shadow: 0 10px 24px rgba(7, 27, 51, 0.08);
  }

  .operation-slide {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
    padding: 18px 16px 58px;
  }

  .operation-icon {
    width: 54px;
    height: 54px;
    font-size: 1.2rem;
  }

  .operation-copy h3 {
    font-size: 1.1rem;
    line-height: 1.24;
  }

  .operation-copy p {
    font-size: 0.88rem;
  }

  .operations-slider .carousel-indicators {
    right: auto;
    left: 18px;
    bottom: 18px;
  }

  .operations-slider .carousel-control-prev {
    right: 58px;
  }

  .operations-slider .carousel-control-next {
    right: 18px;
  }

  .image-stack {
    padding: 0;
  }

  .image-main,
  .rounded-media,
  .network-visual img {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
  }

  .rounded-media {
    aspect-ratio: auto;
    height: auto;
    object-fit: contain;
    background: var(--white);
  }

  .image-float,
  .image-badge {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .image-float {
    display: none;
  }

  .image-badge {
    padding: 14px 16px;
    font-size: 0.94rem;
  }

  .about-highlight,
  .vision-card,
  .values-card,
  .service-card,
  .why-card,
  .network-lists > div,
  .contact-form {
    padding: 20px;
  }

  .vision-card i,
  .service-card i,
  .why-card i {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    font-size: 1.08rem;
  }

  .service-card h3,
  .why-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .timeline-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    padding: 0;
  }

  .timeline-item span {
    width: 48px;
    height: 48px;
    border-width: 5px;
    margin: 0;
    font-size: 0.82rem;
  }

  .timeline-item h3 {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .timeline-item p {
    font-size: 0.9rem;
  }

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

  .contact-form {
    margin-top: 2px;
  }

  .port-card {
    position: static;
    margin-top: 16px;
    max-width: none;
    padding: 16px;
  }

  .gallery-section {
    padding-top: 0;
  }

  .gallery-grid {
    gap: 12px;
  }

  .gallery-grid img {
    height: 210px;
  }

  .contact-list {
    gap: 10px;
    margin-top: 20px;
  }

  .contact-list a,
  .contact-list div {
    gap: 10px;
    font-size: 0.92rem;
    overflow-wrap: anywhere;
  }

  .contact-list i {
    width: 36px;
    height: 36px;
  }

  .form-control,
  .form-select {
    min-height: 48px;
    font-size: 0.94rem;
  }

  textarea.form-control {
    min-height: 118px;
  }

  .site-footer {
    padding: 38px 0 22px;
  }

  .site-footer .row {
    row-gap: 18px;
  }

  .site-footer h3 {
    margin-bottom: 10px;
  }

  .site-footer a {
    margin-bottom: 6px;
  }

  .footer-contact {
    gap: 10px;
  }

  .social-links {
    margin-top: 14px;
  }

  .footer-bottom {
    margin-top: 28px;
    font-size: 0.86rem;
  }

  .back-to-top {
    width: 42px;
    height: 42px;
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 420px) {
  .hero-content h1 {
    font-size: 1.86rem;
  }

  h2 {
    font-size: 1.58rem;
  }

  .section {
    padding: 44px 0;
  }

  .navbar-brand img {
    width: 146px;
    height: 56px;
  }

  .hero-content {
    padding-top: 116px;
  }
}
