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

:root {
  --navy: #0D1B2A;
  --navy-light: #1A3C6E;
  --steel: #30445B;
  --ice: #EAF4FF;
  --orange: #FF6B00;
  --orange-dark: #E05A00;
  --bg: #FFFFFF;
  --bg-gray: #F5F7FA;
  --text: #2C2C2C;
  --text-light: #6B7280;
  --border: #E5E7EB;
  --shadow: 0 4px 24px rgba(13,27,42,0.10);
  --radius: 8px;
  --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 80px 0; }

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-title span { color: var(--orange); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 48px;
  max-width: 560px;
}

.title-line {
  width: 56px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 20px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }

.btn-outline {
  border-color: #fff;
  color: #fff;
}
.btn-outline:hover { background: #fff; color: var(--navy); transform: translateY(-2px); }

.btn-outline-orange {
  border-color: var(--orange);
  color: var(--orange);
}
.btn-outline-orange:hover { background: var(--orange); color: #fff; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(13,27,42,0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.logo-image-link {
  min-width: 0;
}

.site-logo-img {
  width: auto;
  height: 42px;
  max-width: 270px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
  padding: 4px 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--orange);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.logo-text { line-height: 1.1; }
.logo-text small { display: block; font-size: 0.6rem; font-weight: 400; color: rgba(255,255,255,0.6); letter-spacing: 2px; text-transform: uppercase; }

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
  background: rgba(255,107,0,0.1);
}

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

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--navy);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255,107,0,0.03) 40px,
    rgba(255,107,0,0.03) 80px
  );
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: 2.4rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 12px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
}

.breadcrumb a { color: var(--orange); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--navy-light);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item { color: #fff; }

.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--orange);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== SERVICE CARDS (home preview) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
  cursor: pointer;
  border-top: 4px solid transparent;
}

.service-card:hover {
  border-top-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

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

/* ===== WHY US ===== */
.why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
}

.why-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.why-check {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(255,107,0,0.1);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
}

.why-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.why-item p { font-size: 0.88rem; color: var(--text-light); }

/* ===== CTA STRIP ===== */
.cta-strip {
  background: var(--orange);
  padding: 60px 0;
  text-align: center;
}

.cta-strip h2 { font-size: 1.8rem; color: #fff; font-weight: 800; margin-bottom: 12px; }
.cta-strip p { color: rgba(255,255,255,0.85); margin-bottom: 28px; font-size: 1rem; }

.btn-white { background: #fff; color: var(--orange); border: 2px solid #fff; }
.btn-white:hover { background: transparent; color: #fff; }

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 380px;
}

.about-shape {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
  overflow: hidden;
}

.about-shape::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,107,0,0.15);
  top: -40px; right: -40px;
}

.about-shape::after {
  content: '';
  position: absolute;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,107,0,0.10);
  bottom: 20px; left: 20px;
}

.about-text h2 { font-size: 1.9rem; }
.about-text p { color: var(--text-light); margin-bottom: 16px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.value-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border-bottom: 4px solid transparent;
  transition: var(--transition);
}

.value-card:hover { border-bottom-color: var(--orange); transform: translateY(-4px); }

.value-icon { font-size: 2.6rem; margin-bottom: 16px; }
.value-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.value-card p { font-size: 0.9rem; color: var(--text-light); }

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.team-card:hover { transform: translateY(-5px); }

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 16px;
  border: 3px solid var(--orange);
}

.team-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-card .role { font-size: 0.82rem; color: var(--text-light); margin-bottom: 12px; }
.team-card a { font-size: 0.88rem; color: var(--orange); font-weight: 600; }
.team-card a:hover { text-decoration: underline; }

.team-photo {
  width: 118px;
  height: 118px;
  padding: 0;
  overflow: hidden;
  background: var(--ice);
  box-shadow: 0 12px 28px rgba(13,27,42,0.16);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

/* ===== SERVICES PAGE ===== */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.service-block:last-child { border-bottom: none; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-visual {
  height: 300px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background: linear-gradient(135deg, var(--bg-gray), var(--border));
  position: relative;
  overflow: hidden;
}

.service-visual::before {
  content: '';
  position: absolute;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,107,0,0.08);
  top: -30px; right: -30px;
}

.service-detail h2 { font-size: 1.7rem; color: var(--navy); margin-bottom: 16px; }
.service-detail p { color: var(--text-light); margin-bottom: 20px; }

.service-bullets { display: flex; flex-direction: column; gap: 10px; }

.service-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text);
}

.service-bullets li::before {
  content: '▸';
  color: var(--orange);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-form-wrap h2 { font-size: 1.6rem; color: var(--navy); margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.1);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.contact-info h2 { font-size: 1.6rem; color: var(--navy); margin-bottom: 28px; }

.info-block {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(255,107,0,0.1);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.info-block h4 { font-size: 0.88rem; color: var(--text-light); margin-bottom: 4px; font-weight: 600; }
.info-block p, .info-block a { font-size: 0.95rem; color: var(--text); }
.info-block a:hover { color: var(--orange); }

.managers-list { margin-top: 32px; }
.managers-list h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }

.manager-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.manager-row:last-child { border-bottom: none; }
.manager-name { font-weight: 600; font-size: 0.92rem; }
.manager-phone { color: var(--orange); font-weight: 600; font-size: 0.92rem; }
.manager-phone:hover { text-decoration: underline; }

.map-placeholder {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '📍';
  font-size: 2.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
}

.map-placeholder span { margin-top: 48px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p { font-size: 0.9rem; margin-top: 16px; max-width: 260px; line-height: 1.7; }

.footer h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--orange); padding-left: 4px; }

.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.88rem; }
.footer-contact-item span:first-child { color: var(--orange); }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ===== FADE IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; width: 100%; }

  .section-title { font-size: 1.6rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-list { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-block { grid-template-columns: 1fr; gap: 32px; }
  .service-block.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .page-hero h1 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-pad { padding: 56px 0; }
  .team-grid { grid-template-columns: 1fr; }
  .stat-number { font-size: 2rem; }
}

/* ===== VISUAL REFRESH ===== */
body * { letter-spacing: 0 !important; }

body {
  background:
    linear-gradient(180deg, #fff 0%, #F8FAFC 42%, #fff 100%);
}

.logo { gap: 12px; }

.logo-icon {
  position: relative;
  isolation: isolate;
  background: #fff;
  color: var(--navy);
  font-size: 0;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.logo-icon::before {
  content: "DL";
  position: relative;
  z-index: 1;
  font-size: 0.78rem;
  font-weight: 900;
}

.logo-icon::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 8px;
  background: var(--orange);
  transform: rotate(-34deg);
  right: -8px;
  bottom: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}

.hero {
  min-height: 78vh !important;
  padding: 108px 0 56px;
  background:
    linear-gradient(90deg, rgba(7,18,32,0.93) 0%, rgba(7,18,32,0.78) 42%, rgba(7,18,32,0.26) 76%, rgba(7,18,32,0.48) 100%),
    url("assets/hero-cold-chain.webp") center right / cover no-repeat !important;
}

.hero::before {
  background:
    linear-gradient(180deg, rgba(13,27,42,0.32), rgba(13,27,42,0.04) 44%, rgba(13,27,42,0.58)),
    linear-gradient(90deg, rgba(255,107,0,0.16), transparent 32%) !important;
}

.hero::after {
  content: "";
  position: absolute;
  right: clamp(28px, 8vw, 120px);
  bottom: clamp(34px, 10vh, 92px);
  z-index: 1;
  width: clamp(180px, 19vw, 300px);
  aspect-ratio: 1140 / 178;
  border-radius: 8px;
  background:
    rgba(255,255,255,0.92)
    url("assets/demir_lojistik_logo.webp") center / 88% auto no-repeat;
  box-shadow: 0 18px 44px rgba(0,0,0,0.28);
  opacity: 0.96;
}

.hero h1 {
  font-size: 3.05rem !important;
  max-width: 760px;
  text-wrap: balance;
}

.hero p {
  color: rgba(255,255,255,0.82) !important;
}

.hero-badge {
  background: rgba(255,255,255,0.10) !important;
  border-color: rgba(255,255,255,0.22) !important;
  color: #fff !important;
  border-radius: 999px !important;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin-top: 32px;
}

.hero-proof-grid div {
  min-height: 74px;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(10px);
}

.hero-proof-grid strong,
.hero-proof-grid span {
  display: block;
}

.hero-proof-grid strong {
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.1;
  margin-bottom: 6px;
}

.hero-proof-grid span {
  color: rgba(255,255,255,0.72);
  font-size: 0.83rem;
  line-height: 1.4;
}

.stats-strip {
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
  box-shadow: inset 0 1px rgba(255,255,255,0.08);
}

.visual-story {
  background: #fff;
}

.visual-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 56px;
  align-items: center;
}

.visual-story-image,
.about-photo,
.contact-visual-card,
.service-photo,
.service-image {
  overflow: hidden;
  border-radius: var(--radius);
}

.visual-story-image {
  aspect-ratio: 16 / 10;
  box-shadow: 0 24px 70px rgba(13,27,42,0.18);
}

.visual-story-image img,
.service-image img,
.about-photo img,
.service-photo img,
.contact-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-story-copy .section-sub {
  margin-bottom: 28px;
}

.process-list {
  display: grid;
  gap: 12px;
}

.process-list div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.process-list strong {
  color: var(--navy);
  font-size: 0.96rem;
}

.process-list span {
  color: var(--text-light);
  font-size: 0.92rem;
}

.services-section {
  background: linear-gradient(180deg, #F3F7FB 0%, #fff 100%) !important;
}

.service-card {
  padding: 0;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(13,27,42,0.08);
  border-top: 0;
}

.service-card:hover {
  border-top-color: transparent;
  box-shadow: 0 20px 44px rgba(13,27,42,0.15);
}

.service-image {
  aspect-ratio: 16 / 10;
  border-radius: 0;
  background: var(--ice);
}

.branded-vehicle-image {
  position: relative;
}

.branded-vehicle-image::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
  width: clamp(142px, 22%, 220px);
  aspect-ratio: 1140 / 178;
  border-radius: 7px;
  background:
    rgba(255,255,255,0.9)
    url("assets/demir_lojistik_logo.webp") center / 88% auto no-repeat;
  box-shadow: 0 12px 26px rgba(13,27,42,0.18);
  pointer-events: none;
}

.service-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 22px 24px 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,107,0,0.10);
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.service-card h3,
.service-card p {
  padding-left: 24px;
  padding-right: 24px;
}

.service-card p {
  padding-bottom: 26px;
}

.why-item {
  border: 1px solid rgba(13,27,42,0.06);
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(8,20,36,0.92), rgba(8,20,36,0.72)),
    url("assets/control-room.webp") center / cover no-repeat !important;
}

.page-hero::before {
  background:
    linear-gradient(90deg, rgba(255,107,0,0.14), transparent 34%),
    linear-gradient(180deg, rgba(13,27,42,0.15), rgba(13,27,42,0.68)) !important;
}

.about-visual {
  height: auto;
}

.about-photo {
  position: relative;
  min-height: 430px;
  box-shadow: 0 24px 70px rgba(13,27,42,0.17);
}

.about-photo img {
  min-height: 430px;
}

.about-photo figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(13,27,42,0.84);
  color: #fff;
  backdrop-filter: blur(12px);
}

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

.about-photo figcaption strong {
  margin-bottom: 4px;
  font-size: 1rem;
}

.about-photo figcaption span {
  color: rgba(255,255,255,0.76);
  font-size: 0.9rem;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.mission-card {
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 34px rgba(13,27,42,0.08);
}

.mission-card-dark {
  background:
    linear-gradient(135deg, rgba(13,27,42,0.98), rgba(26,60,110,0.96)),
    url("assets/hero-cold-chain.webp") center / cover;
  color: #fff;
}

.mission-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,107,0,0.12);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
}

.mission-card h3 {
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 14px;
}

.mission-card p {
  color: var(--text-light);
  line-height: 1.8;
}

.mission-card-dark h3,
.mission-card-dark p {
  color: #fff;
}

.mission-card-dark p {
  color: rgba(255,255,255,0.76);
}

.service-photo {
  position: relative;
  height: 340px;
  background: var(--ice);
  box-shadow: 0 20px 54px rgba(13,27,42,0.12);
}

.service-photo::before {
  content: none;
}

.service-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(13,27,42,0.82) 100%);
}

.service-photo span {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 1;
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-detail h2 {
  text-wrap: balance;
}

.service-bullets li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.contact-visual-card {
  margin-top: 42px;
  background: var(--navy);
  box-shadow: 0 18px 44px rgba(13,27,42,0.15);
}

.contact-visual-card img {
  aspect-ratio: 16 / 9;
}

.contact-visual-card div {
  padding: 22px;
}

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

.contact-visual-card strong {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 6px;
}

.contact-visual-card span {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
}

.home-team-section {
  background:
    linear-gradient(180deg, #fff 0%, #F3F7FB 100%);
}

.team-card {
  border: 1px solid rgba(13,27,42,0.06);
}

.team-card:hover .team-photo {
  transform: scale(1.03);
}

.footer {
  background:
    linear-gradient(135deg, #081424 0%, var(--navy) 60%, #122B47 100%);
}

.footer .site-logo-img {
  height: 46px;
  max-width: 300px;
}

.floating-contact {
  position: fixed;
  left: 22px;
  bottom: 28px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-contact-item,
.floating-contact-toggle {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(13,27,42,0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.floating-contact-item:hover,
.floating-contact-toggle:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 36px rgba(13,27,42,0.28);
}

.floating-contact-item svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-whatsapp svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
  stroke: none;
}

.floating-sms span,
.floating-linkedin span {
  color: #fff;
  font-weight: 900;
  line-height: 1;
}

.floating-sms span {
  font-size: 0.88rem;
}

.floating-linkedin span {
  font-size: 1.55rem;
  letter-spacing: -0.02em !important;
}

.floating-phone { background: #11D990; }
.floating-whatsapp { background: #39E56B; }
.floating-email { background: #FF485F; }
.floating-sms { background: #FF549C; }
.floating-linkedin { background: #0077B5; }

.floating-instagram {
  background:
    radial-gradient(circle at 30% 110%, #FEDA75 0%, #FA7E1E 28%, transparent 45%),
    radial-gradient(circle at 20% 20%, #F58529 0%, transparent 35%),
    linear-gradient(135deg, #833AB4 0%, #C13584 42%, #E1306C 66%, #F77737 100%);
}

.floating-contact-toggle {
  position: relative;
  background: #526AD6;
}

.floating-contact-toggle span {
  position: absolute;
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.25s ease;
}

.floating-contact-toggle span:first-child { transform: rotate(45deg); }
.floating-contact-toggle span:last-child { transform: rotate(-45deg); }

.floating-contact.is-collapsed .floating-contact-item {
  display: none;
}

.floating-contact.is-collapsed .floating-contact-toggle span:first-child { transform: rotate(0deg); }
.floating-contact.is-collapsed .floating-contact-toggle span:last-child { transform: rotate(90deg); }

@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.65rem !important;
  }

  .visual-story-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto !important;
    padding: 86px 0 34px;
    background-position: 62% center !important;
  }

  .hero h1 {
    font-size: 2rem !important;
  }

  .hero p {
    font-size: 1rem !important;
  }

  .hero::after {
    right: 16px;
    bottom: 16px;
    width: 154px;
  }

  .hero-buttons {
    gap: 10px !important;
  }

  .hero-proof-grid { display: none; }

  .process-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .about-photo,
  .about-photo img {
    min-height: 320px;
  }

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

  .mission-card {
    padding: 28px;
  }

  .service-photo {
    height: 260px;
  }

  .branded-vehicle-image::before {
    right: 12px;
    top: 12px;
    width: 132px;
  }

  .contact-form-wrap form > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
  }

  .floating-contact {
    left: 12px;
    bottom: 16px;
    gap: 8px;
  }

  .floating-contact-item,
  .floating-contact-toggle {
    width: 46px;
    height: 46px;
  }

  .floating-contact-item svg {
    width: 25px;
    height: 25px;
  }

  .floating-whatsapp svg {
    width: 28px;
    height: 28px;
  }

  .floating-sms span {
    font-size: 0.68rem;
  }

  .floating-linkedin span {
    font-size: 1.25rem;
  }

  .floating-contact-toggle span {
    width: 23px;
    height: 3px;
  }

  .hero-badge {
    max-width: 100%;
    white-space: normal;
  }

  .site-logo-img {
    height: 34px;
    max-width: 218px;
    padding: 3px 6px;
  }

  .footer .site-logo-img {
    height: 38px;
    max-width: 250px;
  }

  .service-kicker {
    margin-left: 18px;
    margin-right: 18px;
  }

  .service-card h3,
  .service-card p {
    padding-left: 18px;
    padding-right: 18px;
  }

  .about-photo figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
}
