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

/* ============================================================
   1.  DESIGN TOKENS
   ============================================================ */
:root {
  --primary: #f2c40d;
  --primary-hover: #eab308;
  --navy: #1a2b3c;
  --bg-light: #f8f8f5;
  --bg-alt: #f9fafb; /* gray-50 */

  --text-900: #111827;
  --text-700: #374151;
  --text-600: #4b5563;
  --text-500: #6b7280;
  --text-400: #9ca3af;
  --text-300: #d1d5db;

  --border-100: #f3f4f6;
  --border-200: #e5e7eb;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);

  --radius: 0.25rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;

  --max-w: 1280px;
  --max-w-4xl: 896px;
  --transition: 0.2s ease;
}

/* ============================================================
   2.  BASE
   ============================================================ */
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans Georgian", sans-serif;
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 100;
  background-color: var(--bg-light);
  color: var(--navy);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}

.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
  display: inline-block;
  line-height: 1;
}

/* ============================================================
   3.  UTILITY
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ============================================================
   4.  BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: inherit;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition:
    background-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

/* Primary */
.btn--primary {
  background-color: var(--primary);
  color: var(--navy);
  font-weight: 700;
}
.btn--primary:hover {
  background-color: var(--primary-hover);
}

/* Ghost (gray) */
.btn--ghost {
  background-color: #f3f4f6;
  color: var(--navy);
  font-weight: 600;
}
.btn--ghost:hover {
  background-color: #e5e7eb;
}

/* Sizes */
.btn--sm {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  box-shadow: var(--shadow-sm);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: var(--shadow-xl);
}
.btn--lg:hover {
  transform: scale(1.05);
}

/* icon inside button – match text size */
.btn__icon {
  font-size: 0.875rem;
}

/* ============================================================
   6.  HERO BANNER (slim navy strip)
   ============================================================ */
.hero-banner {
  position: relative;
  background-color: var(--navy);
  padding: 2rem 0; /* py-16 */
  overflow: hidden;
}

.hero-banner__bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28, 44, 76, 0.85) 0%,
    rgba(28, 44, 76, 0.7) 100%
  );
  z-index: 1;
}

.hero-banner .container {
  position: relative;
  z-index: 2;
}

.hero-banner__title {
  font-size: 2rem; /* 32px roughly */
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.breadcrumb__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  transition: color var(--transition);
}
.breadcrumb__link:hover {
  color: #fde047;
} /* yellow-300 */

.breadcrumb__sep,
.breadcrumb__current {
  font-size: 0.875rem;
  font-weight: 500;
}
.breadcrumb__sep {
  color: var(--text-400);
}
.breadcrumb__current {
  color: #fff;
}

/* ============================================================
   7.  COMPACT SERVICES GRID
   ============================================================ */
.services-grid-section {
  background-color: var(--bg-alt);
  padding: 3rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 639px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  background-color: white;
  border: 1px solid var(--border-100);
  border-radius: var(--radius-lg);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.service-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.service-item__icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.service-item__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

/* ============================================================
   8.  SERVICE ROWS  (alternating white / gray)
   ============================================================ */
.land_freight_container{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem; /* gap-12 */
}
   .service-row {
  padding: 4rem 0;
} /* py-16 */
.service-row--white {
  background-color: #fff;
}
.service-row--alt {
  background-color: var(--bg-alt);
}

/* two-column layout */
.service-row__layout {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3rem; /* gap-12 */
}

.service-row__layout--reverse {
  flex-direction: row-reverse;
}

.service-row__text,
.service-row__media {
  flex: 1;
}

@media (max-width: 767px) {
  .service-row__layout,
  .service-row__layout--reverse {
    flex-direction: column;
  }
}

/* ── Text column ── */
.service-row__title {
  font-size: 1.875rem; /* 3xl */
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.service-row__desc {
  color: var(--text-600);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* ── Media column ── */
.service-row__media {
  width: 100%;
}

.service-row__img {
  aspect-ratio: 16 / 9; /* aspect-video */
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.service-row__map {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background-color: var(--bg-alt);
}

.service-row__map iframe {
  display: block;
}

/* Crop top 20px of embedded iframe (pull iframe up and enlarge it) */
.service-row__map {
  position: relative;
}

.service-row__map iframe {
  display: block;
  position: relative;
  top: -60px; /* move iframe content up to crop top 20px */
  width: 100%;
  height: calc(100% + 60px); /* ensure iframe fills the container after shifting */
  border: 0;
}

/* ============================================================
   8.  CHECKLIST  (used in Freight row)
   ============================================================ */
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem; /* space-y-3 */
  margin-bottom: 1.25rem;
}

.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-700);
}

.checklist__icon {
  color: var(--primary);
  flex-shrink: 0;
  font-size: 1.25rem;
  line-height: 1.4;
}

/* ============================================================
   9.  MODE GRID  (Air / Sea mini-cards)
   ============================================================ */
.mode-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.mode-card {
  padding: 1rem;
  background-color: #fff;
  border: 1px solid var(--border-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.mode-card__icon {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.mode-card__title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
}

.mode-card__sub {
  font-size: 0.75rem;
  color: var(--text-500);
  margin-top: 0.15rem;
}

/* ============================================================
  10.  FEATURE LIST  (Warehousing row)
   ============================================================ */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* space-y-4 */
  margin-bottom: 1.25rem;
}

.feature-list__item {
  display: flex;
  align-items: center;
  gap: 1rem; /* gap-4 */
}

.feature-list__icon-wrap {
  flex-shrink: 0;
  width: 2.5rem; /* size-10 */
  height: 2.5rem;
  border-radius: 9999px;
  background-color: rgba(242, 196, 13, 0.1); /* primary/10 */
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-list__icon {
  color: var(--primary);
  font-size: 1.25rem;
}

.feature-list__title {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.1rem;
}

.feature-list__sub {
  font-size: 0.875rem;
  color: var(--text-500);
}

/* ============================================================
  11.  CTA BAND
   ============================================================ */
.cta {
  background-color: var(--navy);
  padding: 4rem 0; /* py-16 */
}

.cta__inner {
  max-width: var(--max-w-4xl);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.cta__title {
  font-size: 1.875rem; /* 3xl */
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

.cta__subtitle {
  color: var(--text-300);
  font-size: 1.125rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

/* ============================================================
  12.  FOOTER
   ============================================================ */
.footer {
  background-color: #fff;
  border-top: 1px solid var(--border-200);
  padding: 3rem 0; /* py-12 */
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer__grid {
    /* brand spans 2 of 4 equal cols */
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* ── Brand column ── */
.logo--footer .logo__text {
  font-size: 1.125rem;
  color: var(--navy);
}

.footer__brand-desc {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-500);
  line-height: 1.6;
  max-width: 22rem;
}

/* ── Link columns ── */
.footer__col-title {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__link {
  font-size: 0.875rem;
  color: var(--text-500);
  transition: color var(--transition);
}
.footer__link:hover {
  color: var(--primary);
}

/* ── Contact items ── */
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-500);
}

.footer__contact-icon {
  font-size: 0.75rem; /* text-xs */
  color: var(--navy);
}

/* ── Bottom bar ── */
.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--text-400);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal-link {
  font-size: 0.75rem;
  color: var(--text-400);
  transition: color var(--transition);
}
.footer__legal-link:hover {
  color: var(--primary);
}

/* ============================================================
  13.  SCROLL-REVEAL helper (applied by JS)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}
