@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');
:root {
  --navy: #0b2a5d;
  --navy-dark: #061b3f;
  --navy-soft: #1e3a67;
  --blue: #2097df;
  --cyan: #62c7f6;
  --white: #ffffff;
  --silver: #c9d4df;
  --muted: #6e7f92;
  --page: #f5f8fb;
  --border: rgba(255,255,255,0.14);
  --shadow: 0 24px 70px rgba(4, 19, 48, 0.28);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #122033;
  background: var(--page);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: radial-gradient(circle at center, #123a78, var(--navy-dark) 64%);
  display: grid;
  place-items: center;
  animation: introHide 0.55s ease forwards;
  animation-delay: 1.7s;
}
.intro-logo-wrap {
  position: relative;
  display: grid;
  place-items: center;
  color: #fff;
  gap: 18px;
  animation: introScale 1.5s ease both;
}
.intro-logo-wrap img { width: 190px; filter: drop-shadow(0 24px 42px rgba(0,0,0,0.35)); }
.intro-logo-wrap p { letter-spacing: 0.28em; text-transform: uppercase; font-weight: 800; color: rgba(255,255,255,0.82); }
.pulse-ring {
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(98,199,246,0.5);
  border-radius: 50%;
  animation: pulseRing 1.4s ease infinite;
}
@keyframes introScale { from { opacity: 0; transform: scale(.88); } to { opacity: 1; transform: scale(1); } }
@keyframes pulseRing { from { transform: scale(.7); opacity: .8; } to { transform: scale(1.25); opacity: 0; } }
@keyframes introHide { to { opacity: 0; visibility: hidden; pointer-events: none; } }

.top-warning {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  padding: 10px 20px;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(10, 38, 83, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  height: 82px;
  display: inline-flex;
  align-items: center;
}
.brand img {
  max-height: 78px;
  width: auto;
  display: block;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,0.18));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255,255,255,0.88);
  font-weight: 700;
  font-size: 15px;
}
.nav-links a, .lang-toggle { transition: 0.2s ease; }
.nav-links a:hover { color: var(--cyan); }

.nav-cta, .lang-toggle {
  border: 1px solid rgba(255,255,255,0.25);
  padding: 10px 18px;
  border-radius: 999px;
}
.lang-toggle {
  color: #fff;
  background: rgba(255,255,255,0.06);
  cursor: pointer;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px 0;
  background: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 75% 25%, rgba(98,199,246,0.28), transparent 28%),
    radial-gradient(circle at 10% 20%, rgba(32,151,223,0.22), transparent 30%),
    linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 70px;
  align-items: center;
  padding: 96px 0;
}
.eyebrow, .section-label {
  display: inline-flex;
  color: var(--cyan);
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1;
  letter-spacing: -0.055em;
  max-width: 760px;
}
.hero p {
  color: rgba(255,255,255,0.78);
  max-width: 620px;
  font-size: 18px;
  margin: 28px 0 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 18px 40px rgba(32,151,223,0.28);
}
.btn.primary:hover { transform: translateY(-2px); }
.btn.secondary {
  color: #fff;
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
}

.hero-card {
  position: relative;
  min-height: 500px;
  padding: 34px 34px 154px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
  border-radius: 36px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}
.hero-card img {
  width: min(64%, 310px);
  max-height: 270px;
  object-fit: contain;
  transform: translateY(-8px);
  filter: drop-shadow(0 30px 45px rgba(0,0,0,0.25));
}
.glass-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(6,27,63,0.84);
  padding: 24px;
  z-index: 2;
}
.glass-card strong, .glass-card span { display: block; }
.glass-card span { color: rgba(255,255,255,0.72); margin-top: 4px; }

.hero-bg-orbit {
  position: absolute;
  border: 1px solid rgba(98,199,246,0.2);
  border-radius: 50%;
  pointer-events: none;
}
.orbit-one { width: 620px; height: 220px; right: -120px; top: 160px; transform: rotate(-18deg); }
.orbit-two { width: 760px; height: 270px; left: -260px; bottom: 90px; transform: rotate(18deg); }

.trust-strip { background: #fff; transform: translateY(-42px); position: relative; z-index: 3; }
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  border-radius: 28px;
  overflow: visible;
}
.strip-grid div {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(9,42,93,0.08);
}
.strip-grid strong { display: block; color: var(--navy); font-size: 30px; letter-spacing: -0.03em; }
.strip-grid span { color: var(--muted); font-size: 14px; }

.section { padding: 96px 0; }
.two-col, .quality-grid, .contact-grid, .footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.section h2 {
  color: #0f2340;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}
.section p { color: var(--muted); font-size: 17px; }
.about p + p { margin-top: 18px; }
.section-head { max-width: 740px; margin-bottom: 42px; }
.section-head p { margin-top: 16px; }

.cards, .product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card, .product-card {
  background: #fff;
  padding: 30px;
  border-radius: 28px;
  border: 1px solid #e7eef6;
  box-shadow: 0 18px 40px rgba(9,42,93,0.06);
  transition: 0.2s ease;
}
.service-card:hover, .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(9,42,93,0.12);
}
.icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  border-radius: 17px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(32,151,223,0.14), rgba(98,199,246,0.18));
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 28px;
}
.service-card h3, .product-card h3 { color: var(--navy); font-size: 22px; margin-bottom: 10px; }

.quality {
  background:
    radial-gradient(circle at 90% 10%, rgba(98,199,246,0.24), transparent 28%),
    linear-gradient(135deg, #071f49, #0b2a5d);
  color: #fff;
}
.quality h2, .quality p { color: #fff; }
.quality p { color: rgba(255,255,255,0.72); margin-top: 18px; }
.feature-list { display: grid; gap: 15px; }
.feature-list div {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
  padding: 22px;
  border-radius: 22px;
}
.feature-list strong { display: block; color: #fff; margin-bottom: 4px; }
.feature-list span { color: rgba(255,255,255,0.68); }

.shipment-card {
  background: #fff;
  border-radius: 34px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 24px 70px rgba(9,42,93,0.1);
}
.shipment-card p { max-width: 760px; margin-top: 18px; }

.map-section { padding-top: 20px; }
.map-card {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(9,42,93,0.12);
  border: 1px solid #e3ebf5;
  background: #fff;
}
.map-card iframe {
  width: 100%;
  height: 430px;
  border: 0;
  display: block;
}

.contact { padding-top: 40px; }
.contact-info { display: grid; gap: 16px; margin-top: 32px; color: var(--navy); font-weight: 900; }
.contact-form {
  background: #fff;
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 24px 70px rgba(9,42,93,0.1);
  display: grid;
  gap: 16px;
}
.contact-form label { color: #33445d; font-weight: 800; font-size: 14px; }
.contact-form input, .contact-form textarea {
  margin-top: 8px;
  width: 100%;
  border: 1px solid #dbe5ef;
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(32,151,223,0.12);
}

.footer {
  background: #061b3f;
  color: rgba(255,255,255,0.72);
  padding-top: 58px;
}
.footer-grid { grid-template-columns: 1.4fr 0.8fr 1fr; gap: 40px; }
.footer img { width: 150px; margin-bottom: 16px; filter: drop-shadow(0 14px 24px rgba(0,0,0,0.24)); }
.footer strong { display: block; color: #fff; margin-bottom: 16px; }
.footer a, .footer span { display: block; margin: 10px 0; }
.copyright {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 22px;
  margin-top: 42px;
  font-size: 14px;
}

.inner-page { background: #f5f8fb; }
.inner-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(98,199,246,0.24), transparent 28%),
    linear-gradient(135deg, #061b3f, #0b2a5d);
  color: #fff;
  padding: 110px 0 92px;
}
.inner-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  max-width: 880px;
  line-height: 1;
  letter-spacing: -0.055em;
}
.inner-hero p { max-width: 720px; margin-top: 24px; color: rgba(255,255,255,.74); font-size: 18px; }
.quote-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 34px;
  align-items: start;
}
.quote-form {
  grid-template-columns: 1fr 1fr;
}
.quote-form .full { grid-column: 1 / -1; }
.quote-side {
  background: linear-gradient(135deg, #071f49, #0b2a5d);
  color: #fff;
  border-radius: 32px;
  padding: 34px;
  box-shadow: 0 24px 70px rgba(9,42,93,.16);
  position: sticky;
  top: 114px;
}
.quote-side img { width: 170px; margin-bottom: 24px; }
.quote-side h3 { font-size: 28px; line-height: 1.1; margin-bottom: 14px; }
.quote-side p { color: rgba(255,255,255,.72); margin-bottom: 20px; }
.quote-side a { color: var(--cyan); font-weight: 900; }

.thanks-page {
  min-height: 100vh;
  background: radial-gradient(circle at center, #123a78, #061b3f 66%);
  display: grid;
  place-items: center;
  color: #fff;
}
.thanks-box {
  width: min(640px, calc(100% - 32px));
  text-align: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 36px;
  padding: 46px;
  box-shadow: var(--shadow);
}
.thanks-box img { width: 190px; margin-bottom: 20px; }
.thanks-box h1 { font-size: 42px; letter-spacing: -.04em; }
.thanks-box p { margin: 16px 0 28px; color: rgba(255,255,255,.72); }

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 98;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(37,211,102,.28);
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 96px;
    left: 20px;
    right: 20px;
    background: rgba(7,31,73,0.98);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 22px;
    padding: 22px;
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .hero-grid, .two-col, .quality-grid, .contact-grid, .footer-grid, .quote-grid { grid-template-columns: 1fr; gap: 38px; }
  .hero { min-height: auto; }
  .hero-card {
    min-height: 420px;
    padding: 28px 28px 144px;
  }
  .hero-card img {
    width: min(58%, 290px);
    max-height: 240px;
  }
  .strip-grid, .cards, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .shipment-card { flex-direction: column; align-items: flex-start; }
  .quote-side { position: static; }
}

@media (max-width: 620px) {
  .container, .navbar { width: min(100% - 28px, 1160px); }
  .top-warning { font-size: 12px; }
  .navbar { height: 88px; }
  .brand img { max-height: 70px; }
  .hero-grid { padding: 64px 0; }
  .hero h1, .inner-hero h1 { font-size: 42px; }
  .section { padding: 66px 0; }
  .section-label, .eyebrow { font-size: 16px; letter-spacing: 0.10em; margin-bottom: 18px; }
  .strip-grid, .cards, .product-grid { grid-template-columns: 1fr; }
  .strip-grid { gap: 14px; }
  .strip-grid div { padding: 22px; }
  .cards, .product-grid, .quote-form { grid-template-columns: 1fr; }
  .shipment-card, .contact-form, .quote-side { padding: 24px; border-radius: 24px; }
  .quote-form .full { grid-column: auto; }
  .whatsapp-float { right: 14px; bottom: 14px; }
  .contact h2 + p { margin-top: 16px; }
}

.contact h2 + p { margin-top: 18px; }
.quote-side a + a { margin-top: 8px; display: block; }
.contact-info a + a { margin-top: -4px; }

@media (max-width: 480px) {
  .navbar { height: 84px; }
  .nav-links { top: 84px; }
  .brand img { max-height: 66px; }
  .hero-card {
    min-height: 390px;
    padding: 24px 22px 132px;
  }
  .hero-card img {
    width: min(56%, 250px);
    max-height: 210px;
  }
  .glass-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 20px;
  }
  .glass-card strong {
    line-height: 1.35;
    font-size: 17px;
  }
  .strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .strip-grid strong { font-size: 22px; }
  .strip-grid span { font-size: 13px; line-height: 1.45; }
}

/* V4 PHOTO VERSION */
.photo-inline,
.shipment-photo,
.mini-photo {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.photo-inline::before,
.shipment-photo::before,
.mini-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,27,63,.78), rgba(32,151,223,.34));
  z-index: 1;
}
.photo-inline span,
.mini-photo strong,
.mini-photo span {
  position: relative;
  z-index: 2;
}
.photo-inline {
  margin-top: 30px;
  min-height: 260px;
  border-radius: 30px;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  color: #fff;
  box-shadow: 0 24px 70px rgba(9,42,93,.14);
}
.photo-inline span {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
  max-width: 360px;
}
.photo-lab {
  background-image: url("https://images.unsplash.com/photo-1581093458791-9d09cc4448a8?auto=format&fit=crop&w=1200&q=80");
}
.feature-list-photo {
  grid-template-columns: 1fr 1fr;
}
.feature-list-photo .mini-photo {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.photo-storage {
  background-image: url("https://images.unsplash.com/photo-1587854692152-cbe660dbde88?auto=format&fit=crop&w=900&q=80");
}
.photo-packaging {
  background-image: url("https://images.unsplash.com/photo-1582719508461-905c673771fd?auto=format&fit=crop&w=900&q=80");
}
.photo-cold {
  background-image: url("https://images.unsplash.com/photo-1583912267550-d44cfe6b1f56?auto=format&fit=crop&w=900&q=80");
}
.photo-record {
  background-image: url("https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?auto=format&fit=crop&w=900&q=80");
}
.shipment-card-photo {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: stretch;
  padding: 24px;
}
.shipment-card-photo > div:first-child {
  padding: 26px 18px 26px 24px;
}
.shipment-card-photo .btn {
  margin-top: 28px;
}
.shipment-photo {
  min-height: 360px;
  border-radius: 28px;
}
.photo-logistics {
  background-image: url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1200&q=80");
}
@media (max-width: 900px) {
  .shipment-card-photo {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .feature-list-photo {
    grid-template-columns: 1fr;
  }
  .photo-inline {
    min-height: 220px;
  }
  .shipment-photo {
    min-height: 260px;
  }
}

/* ==========================
   V5 PHOTO FIXES
   ========================== */
.hero-card img {
  background: transparent !important;
}

.premium-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.premium-badges span {
  color: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 800;
}

.photo-inline,
.shipment-photo,
.mini-photo {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative;
  overflow: hidden;
}

.photo-inline::before,
.shipment-photo::before,
.mini-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,27,63,.34), rgba(32,151,223,.18));
  z-index: 1;
}

.photo-inline span,
.mini-photo strong,
.mini-photo span {
  position: relative;
  z-index: 2;
}

.photo-inline {
  min-height: 260px;
  margin-top: 28px;
  padding: 28px;
  display: flex;
  align-items: flex-end;
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(9,42,93,.14);
}
.photo-inline span {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.12;
  max-width: 360px;
}

.feature-list-photo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.feature-list-photo .mini-photo {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.feature-list-photo .mini-photo strong {
  color: #fff;
  margin-bottom: 6px;
}
.feature-list-photo .mini-photo span {
  color: rgba(255,255,255,.9);
}

/* Local images */
.photo-lab {
  background-image: url("assets/about-photo.jpg") !important;
}
.photo-storage {
  background-image: url("assets/quality-1.jpg") !important;
}
.photo-packaging {
  background-image: url("assets/quality-2.jpg") !important;
}
.photo-cold {
  background-image: url("assets/quality-3.jpg") !important;
}
.photo-record {
  background-image: url("assets/quality-4.jpg") !important;
}
.photo-logistics {
  background-image: url("assets/shipment-photo.jpg") !important;
}

.shipment-card-photo {
  display: grid !important;
  grid-template-columns: .95fr 1.05fr;
  align-items: stretch;
  gap: 24px;
  padding: 24px;
}
.shipment-card-photo > div:first-child {
  padding: 26px 18px 26px 24px;
}
.shipment-card-photo .btn {
  margin-top: 28px;
}
.shipment-photo {
  min-height: 360px;
  border-radius: 28px;
  box-shadow: 0 20px 55px rgba(9,42,93,.08);
}

@media (max-width: 900px) {
  .shipment-card-photo {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 620px) {
  .premium-badges {
    margin-top: 20px;
  }
  .feature-list-photo {
    grid-template-columns: 1fr;
  }
  .photo-inline {
    min-height: 220px;
  }
  .shipment-photo {
    min-height: 260px;
  }
}


/* ==========================
   V6 PHOTO REFINEMENTS
   ========================== */

/* Better trust strip / stats section */
.trust-strip {
  background: linear-gradient(180deg, transparent 0, transparent 30%, #f5f8fb 30%, #f5f8fb 100%) !important;
  transform: translateY(-54px);
  margin-bottom: -24px;
}
.trust-strip .container {
  width: min(1120px, calc(100% - 40px));
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px !important;
  overflow: visible !important;
}
.strip-grid div {
  min-height: 122px;
  padding: 28px 28px 24px !important;
  border-radius: 28px !important;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
  border: 1px solid #e6edf5;
  box-shadow: 0 18px 40px rgba(9,42,93,.07) !important;
}
.strip-grid strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 10px;
}
.strip-grid span {
  display: block;
  color: #647892 !important;
  font-size: 16px !important;
  line-height: 1.45;
}

/* About section cleanup */
.about .two-col {
  align-items: start;
}
.about .two-col > div:last-child {
  max-width: 640px;
}
.about p {
  max-width: 640px;
}
.photo-inline {
  min-height: 290px !important;
  margin-top: 34px !important;
  border-radius: 32px !important;
  align-items: stretch !important;
  padding: 0 !important;
}
.photo-inline::before {
  background: linear-gradient(180deg, rgba(6,27,63,.12), rgba(6,27,63,.34) 55%, rgba(6,27,63,.62)) !important;
}
.photo-inline .photo-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  z-index: 2;
}
.photo-inline .photo-caption small {
  display: inline-block;
  color: rgba(255,255,255,.82);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 8px;
}
.photo-inline .photo-caption span {
  display: block;
  color: #fff;
  font-size: 30px !important;
  line-height: 1.05;
  font-weight: 900;
  max-width: 420px;
  text-shadow: 0 4px 16px rgba(0,0,0,.18);
}

/* Higher-quality photo cards in quality section */
.feature-list-photo .mini-photo {
  min-height: 184px !important;
  border-radius: 28px !important;
  background-position: center !important;
  box-shadow: 0 16px 32px rgba(0,0,0,.12);
}
.feature-list-photo .mini-photo::before {
  background: linear-gradient(180deg, rgba(6,27,63,.08), rgba(6,27,63,.20) 45%, rgba(6,27,63,.68)) !important;
}
.feature-list-photo .mini-photo strong {
  font-size: 18px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,.24);
}
.feature-list-photo .mini-photo span {
  font-size: 15px;
  line-height: 1.45;
  text-shadow: 0 2px 10px rgba(0,0,0,.24);
}

/* Slightly more refined hero badges */
.premium-badges span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

/* Better mobile behavior */
@media (max-width: 900px) {
  .trust-strip {
    transform: translateY(-28px);
  }
  .strip-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
  .about .two-col > div:last-child {
    max-width: none;
  }
}

@media (max-width: 620px) {
  .trust-strip {
    transform: translateY(-14px);
    margin-bottom: 0;
  }
  .trust-strip .container {
    width: min(100% - 28px, 1120px);
  }
  .strip-grid {
    grid-template-columns: 1fr !important;
  }
  .strip-grid div {
    min-height: auto;
    padding: 24px !important;
  }
  .strip-grid strong {
    font-size: 28px;
    margin-bottom: 8px;
  }
  .strip-grid span {
    font-size: 15px !important;
  }
  .photo-inline {
    min-height: 240px !important;
  }
  .photo-inline .photo-caption {
    left: 20px;
    right: 20px;
    bottom: 18px;
  }
  .photo-inline .photo-caption span {
    font-size: 24px !important;
  }
  .feature-list-photo .mini-photo {
    min-height: 210px !important;
  }
}


/* ==========================
   V7 FINAL REFINEMENTS
   ========================== */
:root {
  --page-bg: #f5f8fb;
}

html { scroll-behavior: smooth; }

body,
input,
textarea,
button {
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: var(--page-bg);
}

/* Stronger header */
.site-header {
  background: linear-gradient(180deg, rgba(6,27,63,.95), rgba(10,38,83,.92));
  box-shadow: 0 14px 28px rgba(2, 15, 39, .14);
}
.navbar {
  height: 98px;
}
.nav-links {
  gap: 24px;
  font-weight: 800;
}
.brand img {
  max-height: 80px;
}
.nav-cta,
.lang-toggle {
  background: rgba(255,255,255,.06);
}

/* Hero refinements */
.hero {
  padding-bottom: 88px;
}
.hero h1,
.inner-hero h1,
.section h2 {
  font-weight: 800;
}
.hero-content p {
  max-width: 700px;
}
.hero-card {
  box-shadow: 0 30px 70px rgba(2, 20, 51, .22);
}
.glass-card strong {
  font-size: 20px;
}

/* FIX: add spacing between hero and stat cards */
.trust-strip {
  background: linear-gradient(180deg, transparent 0, transparent 22px, #f5f8fb 22px, #f5f8fb 100%) !important;
  transform: none !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 22px;
  padding-bottom: 18px;
}
.trust-strip .container {
  padding-top: 8px;
}
.strip-grid {
  gap: 20px !important;
}
.strip-grid div {
  min-height: 128px;
  border-radius: 30px !important;
}

/* About section redesign */
.about {
  padding-top: 72px;
}
.about-shell {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: start;
}
.about-intro {
  position: sticky;
  top: 126px;
}
.about-intro h2 {
  max-width: 500px;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.about-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #eaf6ff;
  color: #0b2a5d;
  border: 1px solid #d7ecfb;
  font-size: 13px;
  font-weight: 800;
}
.about-card {
  background: linear-gradient(180deg, #ffffff, #f9fbfd);
  border: 1px solid #e4edf6;
  border-radius: 34px;
  padding: 34px;
  box-shadow: 0 24px 60px rgba(9,42,93,.08);
}
.about-copy p {
  font-size: 18px;
  line-height: 1.72;
  color: #5d7089;
}
.about-copy p + p {
  margin-top: 16px;
}
.about-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 26px;
}
.about-metrics div {
  padding: 22px 22px 18px;
  border-radius: 24px;
  background: #f5f9fd;
  border: 1px solid #e2edf7;
}
.about-metrics strong {
  display: block;
  color: #0b2a5d;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 10px;
}
.about-metrics span {
  display: block;
  color: #6c8198;
  font-size: 15px;
  line-height: 1.45;
}
.photo-inline {
  min-height: 310px !important;
  margin-top: 26px !important;
  overflow: hidden;
}
.photo-inline::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(98,199,246,.3), rgba(98,199,246,0));
  z-index: 1;
}
.photo-inline .photo-caption span {
  max-width: 480px;
  font-size: 28px !important;
}

/* Service / product / form harmony */
.service-card,
.product-card,
.contact-form,
.map-card,
.shipment-card,
.quote-side {
  border-radius: 30px;
  box-shadow: 0 22px 56px rgba(9,42,93,.08);
}
.service-card h3,
.product-card h3 {
  font-size: 24px;
}
.product-grid .product-card {
  min-height: 245px;
}

/* Inner page badges */
.inner-page-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: -28px;
  margin-bottom: 6px;
}
.inner-page-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(11,42,93,.12);
  background: #fff;
  color: #0b2a5d;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(9,42,93,.05);
}
.inner-page .section:first-of-type {
  padding-top: 54px;
}

/* Footer final */
.footer {
  margin-top: 36px;
  background:
    radial-gradient(circle at 20% 0%, rgba(32,151,223,.16), transparent 28%),
    linear-gradient(180deg, #061b3f, #041632);
}
.footer-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 38px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-topline span {
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-mini-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: #fff !important;
  font-weight: 800;
}
.footer-grid {
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 46px;
  padding-top: 32px;
  padding-bottom: 14px;
}
.footer-brand img {
  max-width: 160px;
  margin-bottom: 18px;
}
.footer-brand p {
  max-width: 430px;
  line-height: 1.7;
  color: rgba(255,255,255,.72);
}
.footer strong {
  display: block;
  margin-bottom: 18px;
  font-size: 18px;
}
.footer a,
.footer span {
  color: rgba(255,255,255,.78);
}
.footer a:hover {
  color: #62c7f6;
}
.copyright {
  margin-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 20px 24px;
  color: rgba(255,255,255,.66);
}

/* Better mobile/footer/about handling */
@media (max-width: 980px) {
  .about-shell {
    grid-template-columns: 1fr;
  }
  .about-intro {
    position: static;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .navbar {
    height: 88px;
  }
  .trust-strip {
    padding-top: 20px;
    padding-bottom: 8px;
    background: linear-gradient(180deg, transparent 0, transparent 14px, #f5f8fb 14px, #f5f8fb 100%) !important;
  }
  .strip-grid {
    gap: 14px !important;
  }
  .strip-grid div {
    min-height: auto;
  }
  .about {
    padding-top: 56px;
  }
  .about-card {
    padding: 24px;
    border-radius: 28px;
  }
  .about-metrics {
    grid-template-columns: 1fr;
  }
  .photo-inline {
    min-height: 250px !important;
  }
  .photo-inline .photo-caption span {
    font-size: 22px !important;
  }
  .inner-page-badges {
    margin-top: -18px;
  }
  .footer-topline {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}


/* ==========================
   V7 FINAL - PRODUCTS & QUOTE ONLY FIX
   Ana sayfa korunur. Sadece body.inner-page sayfalarında çalışır.
   ========================== */

body.inner-page .inner-hero {
  padding: 112px 0 104px;
}

body.inner-page .inner-hero .container {
  width: min(1180px, calc(100% - 80px));
}

body.inner-page .inner-hero h1 {
  max-width: 980px;
  font-size: clamp(52px, 5.8vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin-bottom: 24px;
}

body.inner-page .inner-hero p {
  max-width: 820px;
  margin-top: 0;
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.65;
}

body.inner-page .section:first-of-type {
  padding-top: 86px;
}

body.inner-page .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.inner-page .product-card {
  min-height: 225px;
}

body.inner-page .quote-grid {
  grid-template-columns: 1.12fr .88fr;
  align-items: start;
}

body.inner-page .footer {
  margin-top: 40px;
}

@media (max-width: 1100px) {
  body.inner-page .inner-hero .container {
    width: min(100% - 48px, 1180px);
  }

  body.inner-page .inner-hero h1 {
    font-size: clamp(46px, 7vw, 64px);
  }

  body.inner-page .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body.inner-page .inner-hero {
    padding: 92px 0 76px;
  }

  body.inner-page .inner-hero .container {
    width: min(100% - 28px, 1180px);
  }

  body.inner-page .inner-hero h1 {
    font-size: clamp(36px, 11vw, 50px);
    line-height: 1.06;
    margin-bottom: 18px;
  }

  body.inner-page .inner-hero p {
    font-size: 16px;
    line-height: 1.6;
  }

  body.inner-page .section:first-of-type {
    padding-top: 64px;
  }

  body.inner-page .product-grid,
  body.inner-page .quote-grid {
    grid-template-columns: 1fr;
  }
}


/* UAE metric removed: keep remaining about metric balanced */
.about-metrics {
  grid-template-columns: 1fr !important;
  max-width: 360px;
}
