/* =========================================================
   Crestline Global — Premium Export & Import
   Brand: Navy #003560 | Cyan #D2F8FF | Silver #CECECE | Orange #FF8C00
   ========================================================= */

:root {
  --navy: #003560;
  --navy-700: #002a4d;
  --navy-900: #001a31;
  --cyan: #D2F8FF;
  --silver: #CECECE;
  --orange: #FF8C00;
  --orange-600: #e67d00;
  --ink: #0e1726;
  --muted: #5b6776;
  --bg: #ffffff;
  --bg-soft: #f5f9fc;
  --line: #e6edf2;
  --shadow-sm: 0 6px 18px rgba(0, 53, 96, .08);
  --shadow-md: 0 18px 40px rgba(0, 53, 96, .12);
  --shadow-lg: 0 30px 70px rgba(0, 53, 96, .18);
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1240px;
  --transition: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  margin: 0;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.18;
  margin-top: 0;
}

h1 { font-size: clamp(2.2rem, 4.6vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); }

p { color: var(--muted); }

a { color: var(--navy); text-decoration: none; transition: color .25s var(--transition); }
a:hover { color: var(--orange); }

.container-xl { max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }

/* Section utilities */
section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
.section-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  padding: .4rem .9rem;
  background: rgba(255, 140, 0, .08);
  border-radius: 999px;
  margin-bottom: 1rem;
}
.section-title { margin-bottom: 1rem; }
.section-lead {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.05rem;
}
.text-navy { color: var(--navy) !important; }
.text-orange { color: var(--orange) !important; }
.bg-navy { background: var(--navy) !important; color: #fff; }
.bg-cyan { background: var(--cyan) !important; }
.bg-soft { background: var(--bg-soft); }

/* =========================================================
   Loader
   ========================================================= */
#page-loader {
  position: fixed; inset: 0;
  background: var(--navy);
  display: grid; place-items: center;
  z-index: 9999;
  transition: opacity .6s ease, visibility .6s ease;
}
#page-loader.is-hidden { opacity: 0; visibility: hidden; }
.loader-mark {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 3px solid rgba(210, 248, 255, .2);
  border-top-color: var(--orange);
  animation: loaderSpin .9s linear infinite;
}
@keyframes loaderSpin { to { transform: rotate(360deg); } }

/* =========================================================
   Navbar
   ========================================================= */
.cg-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, padding .35s ease;
}
.cg-nav.scrolled {
  background: rgba(255, 255, 255, .92);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(0, 53, 96, .06);
}
.cg-nav .navbar { padding: 1rem 0; transition: padding .3s ease; }
.cg-nav.scrolled .navbar { padding: .55rem 0; }

.cg-brand { display: flex; align-items: center; gap: .65rem; font-weight: 700; }
.cg-brand-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), #0a4f8a);
  display: grid; place-items: center;
  color: #fff; font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 800;
  box-shadow: 0 8px 18px rgba(0, 53, 96, .25);
  position: relative; overflow: hidden;
}
.cg-brand-mark::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 55%, rgba(255, 140, 0, .55));
}
.cg-brand-text { display: flex; flex-direction: column; line-height: 1; }
.cg-brand-text strong { font-family: 'Playfair Display', serif; color: var(--navy); font-size: 1.15rem; }
.cg-brand-text small { font-size: .68rem; letter-spacing: .25em; color: var(--muted); text-transform: uppercase; margin-top: 3px; }

.cg-nav .nav-link {
  font-weight: 500;
  color: var(--ink);
  padding: .5rem .9rem !important;
  position: relative;
  font-size: .95rem;
}
.cg-nav .nav-link::after {
  content: ""; position: absolute;
  left: 50%; bottom: 6px;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width .3s ease, left .3s ease;
}
.cg-nav .nav-link:hover::after,
.cg-nav .nav-link.active::after { width: 22px; left: calc(50% - 11px); }
.cg-nav .nav-link.active { color: var(--navy); }

/* =========================================================
   Buttons
   ========================================================= */
.btn-cg {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.65rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--transition), box-shadow .25s var(--transition), background .25s ease, color .25s ease;
}
.btn-cg svg { width: 18px; height: 18px; }
.btn-primary-cg {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 140, 0, .35);
}
.btn-primary-cg:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(255, 140, 0, .45);
  color: #fff;
  background: var(--orange-600);
}
.btn-outline-cg {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
  backdrop-filter: blur(8px);
}
.btn-outline-cg:hover {
  background: #fff;
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-ghost-cg {
  background: transparent;
  color: var(--navy);
  border-color: var(--silver);
}
.btn-ghost-cg:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-2px);
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  color: #fff;
  overflow: hidden;
  padding-top: 6rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(0, 26, 49, .85) 0%, rgba(0, 53, 96, .55) 55%, rgba(0, 53, 96, .1) 100%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: .25; mix-blend-mode: overlay;
  background-image: radial-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px);
  background-size: 4px 4px;
}
.hero-inner { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .45rem 1rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cyan);
}
.hero h1 {
  color: #fff;
  margin: 1.2rem 0 1.2rem;
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--orange), #ffd09c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  color: rgba(255, 255, 255, .8);
  font-size: 1.15rem;
  max-width: 580px;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-badge {
  position: absolute;
  right: 4%; bottom: 8%;
  z-index: 2;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  max-width: 380px;
  color: #fff;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .35);
}
.hero-badge-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1;
}
.hero-badge-item span {
  font-size: .8rem;
  color: rgba(210, 248, 255, .85);
  text-transform: uppercase;
  letter-spacing: .15em;
}
@media (max-width: 768px) { .hero-badge { position: static; max-width: 100%; margin-top: 2rem; } }

/* Inner page hero (smaller) */
.page-hero {
  position: relative;
  padding: 9rem 0 5rem;
  color: #fff;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(0, 26, 49, .9), rgba(0, 53, 96, .55));
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255, 255, 255, .8); max-width: 640px; }

/* Breadcrumb */
.cg-breadcrumb {
  font-size: .85rem;
  color: rgba(255, 255, 255, .75);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.cg-breadcrumb a { color: rgba(255, 255, 255, .65); }
.cg-breadcrumb a:hover { color: var(--orange); }
.cg-breadcrumb span.sep { margin: 0 .6rem; opacity: .5; }

/* =========================================================
   Trust counters
   ========================================================= */
.trust-strip {
  margin-top: -3.5rem;
  position: relative; z-index: 5;
}
.trust-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2.2rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.trust-item { text-align: center; padding: .5rem; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item .count {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  display: block;
}
.trust-item .label {
  display: block;
  color: var(--muted);
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: .3rem;
}
@media (max-width: 768px) {
  .trust-card { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 1.2rem; }
  .trust-item:nth-child(2) { border-right: 0; }
}

/* =========================================================
   Cards
   ========================================================= */
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  transition: transform .35s var(--transition), box-shadow .35s var(--transition), border-color .35s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--navy));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-ico {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 53, 96, .08), rgba(255, 140, 0, .12));
  color: var(--navy);
  display: grid; place-items: center;
  margin-bottom: 1.2rem;
}
.feature-ico svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.feature-card p { margin: 0; font-size: .95rem; }

/* Product cards */
.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--transition), box-shadow .35s var(--transition);
  height: 100%;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-thumb {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
}
.product-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--transition);
}
.product-card:hover .product-thumb img { transform: scale(1.08); }
.product-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 53, 96, .25));
}
.product-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(8px);
  color: var(--navy);
  padding: .35rem .85rem;
  border-radius: 999px;
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
}
.product-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.product-body h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.product-body p { font-size: .92rem; flex: 1; }
.product-link {
  display: inline-flex; align-items: center; gap: .35rem;
  margin-top: 1rem;
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
  letter-spacing: .04em;
}
.product-link svg { transition: transform .3s ease; width: 16px; height: 16px; }
.product-link:hover { color: var(--orange); }
.product-link:hover svg { transform: translateX(4px); }

/* =========================================================
   Process timeline
   ========================================================= */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  counter-reset: step;
}
.timeline::before {
  content: ""; position: absolute;
  top: 38px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, var(--silver), var(--orange), var(--silver));
}
.timeline-step { position: relative; text-align: center; padding: 0 .5rem; }
.timeline-step .num {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--silver);
  color: var(--navy);
  display: grid; place-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  margin: 0 auto 1.2rem;
  position: relative; z-index: 2;
  transition: all .3s ease;
}
.timeline-step:hover .num {
  background: var(--orange); color: #fff; border-color: var(--orange);
  transform: scale(1.06);
  box-shadow: 0 10px 24px rgba(255, 140, 0, .35);
}
.timeline-step h4 { color: var(--navy); font-size: 1.05rem; margin-bottom: .35rem; }
.timeline-step p { font-size: .85rem; }
@media (max-width: 768px) {
  .timeline { grid-template-columns: 1fr; gap: 2rem; }
  .timeline::before { display: none; }
}

/* =========================================================
   Testimonials
   ========================================================= */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  position: relative;
}
.testimonial-card::before {
  content: "“";
  position: absolute; top: -10px; left: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 6rem; line-height: 1;
  color: var(--orange);
  opacity: .25;
}
.testimonial-card p { font-size: 1.05rem; color: var(--ink); line-height: 1.7; font-style: italic; }
.testimonial-meta { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.testimonial-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--orange));
  color: #fff;
  display: grid; place-items: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}
.testimonial-meta strong { display: block; color: var(--navy); }
.testimonial-meta span { font-size: .85rem; color: var(--muted); }

.testimonial-controls { display: flex; justify-content: center; gap: .75rem; margin-top: 2rem; }
.testimonial-controls button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--silver);
  background: #fff;
  color: var(--navy);
  display: grid; place-items: center;
  cursor: pointer;
  transition: all .3s ease;
}
.testimonial-controls button:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.testimonial-controls button svg { width: 18px; height: 18px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.faq-item:hover { border-color: var(--orange); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 1.3rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 1.02rem;
  cursor: pointer;
}
.faq-q .plus {
  flex: 0 0 28px; width: 28px; height: 28px; border-radius: 50%;
  background: var(--cyan); color: var(--navy);
  display: grid; place-items: center;
  transition: transform .3s ease, background .3s ease;
  font-size: 1.2rem; line-height: 1;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); background: var(--orange); color: #fff; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease;
  padding: 0 1.5rem;
  color: var(--muted);
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 1.4rem; }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band {
  position: relative;
  background: linear-gradient(120deg, var(--navy) 0%, #0a4f8a 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 140, 0, .35), transparent 70%);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .8); }

/* =========================================================
   Footer
   ========================================================= */
footer.cg-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, .75);
  padding: 5rem 0 1.5rem;
  position: relative;
  overflow: hidden;
}
footer.cg-footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.cg-footer h5 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.cg-footer a { color: rgba(255, 255, 255, .7); display: inline-block; padding: .25rem 0; }
.cg-footer a:hover { color: var(--orange); }
.cg-footer .cg-brand-text strong { color: #fff; }
.cg-footer .cg-brand-text small { color: var(--cyan); }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .85rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.social-icons { display: flex; gap: .65rem; margin-top: 1rem; }
.social-icons a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  display: grid; place-items: center;
  padding: 0;
  transition: all .3s ease;
}
.social-icons a:hover { background: var(--orange); transform: translateY(-3px); }
.social-icons svg { width: 16px; height: 16px; }

.newsletter-form { display: flex; gap: .5rem; margin-top: .5rem; }
.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  padding: .7rem 1.1rem;
  color: #fff;
  font-size: .9rem;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255, 255, 255, .4); }
.newsletter-form input:focus { border-color: var(--orange); }
.newsletter-form button {
  border-radius: 999px;
  border: 0;
  background: var(--orange);
  color: #fff;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  cursor: pointer;
}

/* =========================================================
   Values / About
   ========================================================= */
.value-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  border: 1px solid var(--line);
  text-align: center;
  height: 100%;
  transition: all .3s ease;
}
.value-card:hover { transform: translateY(-4px); border-color: var(--orange); box-shadow: var(--shadow-sm); }
.value-card .v-ico {
  width: 64px; height: 64px; margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--navy);
  display: grid; place-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
}

.mission-card {
  background: linear-gradient(135deg, #fff, var(--bg-soft));
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--line);
  height: 100%;
  position: relative; overflow: hidden;
}
.mission-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
  background: var(--orange);
}
.mission-card h3 {
  font-size: 1.6rem; margin-bottom: 1rem;
}

/* Team */
.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all .3s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-avatar {
  height: 220px;
  background: linear-gradient(135deg, var(--navy), #0a4f8a);
  display: grid; place-items: center;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  position: relative;
}
.team-avatar::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at center, transparent 40%, rgba(0, 0, 0, .25));
}
.team-body { padding: 1.5rem; }
.team-body h4 { color: var(--navy); margin-bottom: .25rem; font-size: 1.15rem; }
.team-body span { font-size: .85rem; color: var(--orange); letter-spacing: .12em; text-transform: uppercase; font-weight: 600; }

/* Global Reach */
.reach-wrap {
  background: linear-gradient(135deg, var(--navy), #0a4f8a);
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: #fff;
  overflow: hidden;
  position: relative;
}
.reach-wrap h2 { color: #fff; }
.reach-wrap p { color: rgba(255, 255, 255, .8); }
.reach-map {
  width: 100%; max-width: 520px; height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .3));
}
.reach-dot { fill: var(--orange); animation: pulseDot 2s ease-in-out infinite; transform-origin: center; }
@keyframes pulseDot { 0%, 100% { opacity: 1; r: 6; } 50% { opacity: .55; r: 9; } }

/* Search filter */
.product-search {
  display: flex; gap: .5rem; max-width: 540px; margin: 0 auto 3rem;
  background: #fff;
  border-radius: 999px;
  padding: .5rem .5rem .5rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.product-search input {
  flex: 1;
  border: 0; outline: 0;
  font-size: 1rem;
  background: transparent;
}
.product-search button {
  border: 0;
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  padding: .65rem 1.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .25s ease;
}
.product-search button:hover { background: var(--orange); }
.no-results { text-align: center; padding: 3rem; color: var(--muted); display: none; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.gallery-item {
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--transition);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 53, 96, .6));
  opacity: 0; transition: opacity .3s ease;
}
.gallery-item:hover::after { opacity: 1; }

/* Contact */
.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .85rem 1rem;
  font-size: .95rem;
  background: var(--bg-soft);
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 140, 0, .15);
}
.contact-form label {
  font-size: .8rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--navy); margin-bottom: .5rem;
}
.contact-info-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: 100%;
  position: relative; overflow: hidden;
}
.contact-info-card::after {
  content: ""; position: absolute; right: -100px; bottom: -100px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 140, 0, .3), transparent 70%);
}
.contact-info-card h3 { color: #fff; position: relative; }
.info-row { display: flex; gap: 1rem; margin-top: 1.5rem; position: relative; }
.info-row .ico {
  flex: 0 0 44px; width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255, 255, 255, .1);
  display: grid; place-items: center;
  color: var(--cyan);
}
.info-row .ico svg { width: 20px; height: 20px; }
.info-row strong { display: block; color: #fff; }
.info-row span { font-size: .9rem; color: rgba(255, 255, 255, .75); }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  background: #fff;
}
.map-frame iframe { display: block; width: 100%; height: 420px; border: 0; }

/* =========================================================
   Reveal animations
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .hero-bg { transform: none !important; }
}

/* Mobile fine-tunes */
@media (max-width: 992px) {
  .cg-nav .navbar-collapse {
    background: #fff;
    border-radius: var(--radius);
    margin-top: 1rem;
    padding: 1rem;
    box-shadow: var(--shadow-md);
  }
  .cg-nav .nav-link::after { display: none; }
}

@media (max-width: 576px) {
  .hero { min-height: 92vh; }
  .hero-actions .btn-cg { flex: 1; justify-content: center; }
  .contact-form, .contact-info-card { padding: 1.5rem; }
}
