/*
Theme Name: Global Shipping Center
Description: Reconstructed Global Shipping Center site, based on the Flatsome parent theme.
Author: Digizaal
Template: flatsome
Version: 1.0.0
Text Domain: gsc
*/

@font-face {
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("assets/fonts/fira-sans-300.woff2") format("woff2");
}

@font-face {
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/fira-sans-400.woff2") format("woff2");
}

@font-face {
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/fira-sans-700.woff2") format("woff2");
}

@font-face {
  font-family: "Dancing Script";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/dancing-script-400.woff2") format("woff2");
}

:root {
  --gsc-navy: #143159;
  --gsc-lime: #bad13b;
  --gsc-white: #fff;
  --gsc-ink: #1b2d43;
  --gsc-max: 1120px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body.gsc-site {
  margin: 0;
  color: var(--gsc-ink);
  background: var(--gsc-navy);
  font-family: "Fira Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

body.admin-bar .gsc-header {
  top: 32px;
}

.gsc-site *,
.gsc-site *::before,
.gsc-site *::after {
  box-sizing: border-box;
}

.gsc-site a {
  color: inherit;
  text-decoration: none;
}

.gsc-skip {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 10px 16px;
  background: #fff;
  color: var(--gsc-navy);
}

.gsc-skip:focus {
  top: 10px;
}

.gsc-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 78px;
  background: rgba(20, 49, 89, 0.98);
  box-shadow: 0 3px 18px rgba(0, 0, 0, 0.14);
}

.gsc-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 36px), var(--gsc-max));
  height: 100%;
  margin: 0 auto;
}

.gsc-logo {
  display: inline-flex;
  align-items: center;
  width: min(372px, 46vw);
}

.gsc-logo img {
  display: block;
  width: 100%;
  max-height: 58px;
}

.gsc-nav {
  display: flex;
  align-items: stretch;
  align-self: stretch;
}

.gsc-nav a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  white-space: nowrap;
}

.gsc-nav img {
  width: 48px;
  height: 25px;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.gsc-nav a:nth-child(2) img {
  width: 62px;
}

.gsc-nav a:hover img,
.gsc-nav a:focus-visible img {
  transform: scale(1.16);
}

.gsc-nav__label {
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-width 0.35s ease, opacity 0.25s ease;
}

.gsc-nav a:hover .gsc-nav__label,
.gsc-nav a:focus-visible .gsc-nav__label {
  max-width: 110px;
  opacity: 1;
}

.gsc-menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.gsc-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.gsc-hero {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0.31), rgba(0, 0, 0, 0.31)), url("assets/images/Give-us-a-call-bovenaan-1024x683.jpg") 73% 50% / cover no-repeat;
}

.gsc-hero__inner {
  position: relative;
  width: min(calc(100% - 36px), var(--gsc-max));
  min-height: 500px;
  margin: 0 auto;
}

.gsc-callout {
  position: absolute;
  top: 7%;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 350px;
  min-height: 330px;
  padding: 52px 20px;
  color: #446084;
  text-align: center;
  background: url("assets/images/vlak3.svg") center / contain no-repeat;
  animation: gsc-rise 0.75s ease-out both;
}

.gsc-callout h1 {
  margin: 0 0 20px;
  font-family: Arial, sans-serif;
  font-size: clamp(42px, 4.6vw, 58px);
  font-weight: 400;
  line-height: 1.05;
}

.gsc-callout a {
  color: #fff;
  font-size: clamp(25px, 2.5vw, 34px);
  font-weight: 700;
}

@keyframes gsc-rise {
  from { opacity: 0; transform: translateY(35px); }
  to { opacity: 1; transform: translateY(0); }
}

.gsc-about {
  position: relative;
  padding: 62px 0 58px;
  color: #fff;
  background: var(--gsc-navy);
}

.gsc-about::after,
.gsc-service::after {
  content: "";
  position: absolute;
  z-index: 3;
  bottom: -26px;
  left: 50%;
  width: 54px;
  height: 28px;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateX(-50%);
}

.gsc-about__inner {
  display: grid;
  grid-template-columns: minmax(230px, 0.9fr) minmax(0, 1.55fr);
  gap: clamp(38px, 7vw, 84px);
  align-items: center;
  width: min(calc(100% - 36px), var(--gsc-max));
  margin: 0 auto;
}

.gsc-about__logo {
  width: min(100%, 360px);
  margin-left: -8px;
  border-radius: 8%;
}

.gsc-about h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.12;
  text-transform: uppercase;
}

.gsc-about p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 18px;
}

.gsc-service {
  position: relative;
  min-height: 518px;
  padding: 59px 0;
  color: #fff;
  background-color: #fff;
  background-position: 57% 60%;
  background-size: cover;
}

.gsc-service--ocean {
  background-image: url("assets/images/Ocean-Freight-scaled.jpg");
}

.gsc-service--air {
  background-image: url("assets/images/airfreight-wide-scaled.jpg");
}

.gsc-service--road {
  background-image: url("assets/images/Road-Transport-scaled.jpg");
}

.gsc-service__inner {
  width: min(calc(100% - 36px), var(--gsc-max));
  margin: 0 auto;
}

.gsc-service__card {
  width: min(56%, 630px);
  margin: 5px;
  padding: 18px 24px 20px;
  background: rgba(17, 17, 17, 0.56);
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.24);
}

.gsc-service__card h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(24px, 3vw, 36px);
  text-transform: uppercase;
}

.gsc-service__card p {
  margin: 0;
  color: #fff;
  font-size: 18px;
}

.gsc-contact {
  position: relative;
  min-height: 700px;
  padding: 72px 0;
  background: #fff url("assets/images/Contact-scaled.jpg") 87% 58% / cover no-repeat;
}

.gsc-contact__inner {
  display: grid;
  grid-template-columns: minmax(230px, 0.75fr) minmax(390px, 1.1fr) 0.2fr;
  gap: 34px;
  width: min(calc(100% - 36px), var(--gsc-max));
  margin: 0 auto;
}

.gsc-contact__copy {
  padding-top: 12px;
  color: var(--gsc-navy);
  font-size: 23px;
  line-height: 1.5;
}

.gsc-contact__copy p {
  margin: 0 0 18px;
}

.gsc-contact__name {
  font-family: "Dancing Script", cursive;
  font-size: 36px;
}

.gsc-form {
  padding: 24px;
  background: rgba(255, 254, 242, 0.82);
  box-shadow: 0 12px 35px rgba(20, 49, 89, 0.18);
  backdrop-filter: blur(3px);
}

.gsc-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gsc-form label {
  display: block;
  margin-bottom: 15px;
  color: #2a394b;
  font-size: 14px;
  font-weight: 700;
}

.gsc-form input,
.gsc-form textarea {
  display: block;
  width: 100%;
  margin-top: 5px;
  padding: 11px 12px;
  border: 1px solid #c8d0d9;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.96);
  color: #192a3e;
  font: inherit;
  font-weight: 400;
}

.gsc-form input:focus,
.gsc-form textarea:focus {
  outline: 3px solid rgba(186, 209, 59, 0.42);
  border-color: var(--gsc-navy);
}

.gsc-form button {
  padding: 11px 22px;
  border: 0;
  background: var(--gsc-navy);
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gsc-form button:hover,
.gsc-form button:focus-visible {
  background: #224c83;
  transform: translateY(-1px);
}

.gsc-form__notice {
  margin: 0 0 18px;
  padding: 11px 14px;
  border-left: 4px solid var(--gsc-lime);
  background: #fff;
  color: var(--gsc-navy);
}

.gsc-form__notice--error {
  border-color: #b20000;
}

.gsc-hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.gsc-footer {
  padding: 24px 18px;
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
  background: var(--gsc-navy);
  font-size: 14px;
}

.gsc-mail {
  position: fixed;
  z-index: 999;
  right: 22px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gsc-lime);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

.gsc-mail img {
  width: 29px;
  height: 29px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .gsc-header { height: 72px; }
  .gsc-menu-toggle { display: block; }
  .gsc-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    height: auto;
    padding: 14px 18px 18px;
    background: var(--gsc-navy);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  .gsc-nav.is-open { display: grid; grid-template-columns: 1fr 1fr; }
  .gsc-nav a { min-height: 58px; padding: 8px 12px; }
  .gsc-nav__label { max-width: none; opacity: 1; }
  .gsc-about__inner { grid-template-columns: 0.7fr 1.3fr; }
  .gsc-contact__inner { grid-template-columns: minmax(200px, 0.7fr) minmax(360px, 1.3fr); }
}

@media (max-width: 649px) {
  body.admin-bar .gsc-header { top: 46px; }
  .gsc-logo { width: min(285px, 72vw); }
  .gsc-nav.is-open { grid-template-columns: 1fr; }
  .gsc-hero,
  .gsc-hero__inner { min-height: 540px; }
  .gsc-callout {
    top: auto;
    bottom: 22px;
    left: 50%;
    width: min(94vw, 350px);
    transform: translateX(-50%);
    animation: none;
  }
  .gsc-about__inner,
  .gsc-contact__inner { grid-template-columns: 1fr; }
  .gsc-about__logo { width: min(72vw, 320px); margin: 0 auto; }
  .gsc-service { min-height: 485px; padding-top: 48px; }
  .gsc-service__card { width: 100%; margin: 0; }
  .gsc-contact { padding: 54px 0 66px; background-position: 72% 58%; }
  .gsc-contact__copy { max-width: 310px; padding: 18px; background: rgba(255, 255, 255, 0.8); }
  .gsc-form { padding: 18px; }
  .gsc-form__row { grid-template-columns: 1fr; gap: 0; }
  .gsc-mail { right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
