/* ============================================================
   GLOBEX ENERGY — Global Stylesheet
   Color palette sourced from company logo:
   Navy #1A2D5A | Blue #1E90FF | Sky #5BB8F5
   Orange #F47C20 | Amber #F5A623 | Green #4CAF50
   ============================================================ */

/* ── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  --navy:       #1A2D5A;
  --navy-dark:  #0d1f42;
  --blue:       #1E90FF;
  --sky:        #5BB8F5;
  --orange:     #F47C20;
  --amber:      #F5A623;
  --green:      #4CAF50;
  --white:      #FFFFFF;
  --offwhite:   #F7F9FC;
  --light:      #EEF3FB;
  --gray:       #6B7280;
  --gray-light: #9CA3AF;
  --dark:       #111827;
  --border:     #E5E9F2;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;

  --shadow-sm:  0 2px 8px rgba(26,45,90,0.07);
  --shadow-md:  0 6px 24px rgba(26,45,90,0.10);
  --shadow-lg:  0 12px 40px rgba(26,45,90,0.14);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --transition: 0.28s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; padding: 0; margin: 0; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
}

.section-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}

.section-title .accent { color: var(--blue); }

.section-subtitle {
  font-size: 1.02rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 600px;
}

.divider {
  width: 52px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.divider-center { margin-left: auto; margin-right: auto; }

/* ── SECTION SPACING ────────────────────────────────────────── */
.section-pad  { padding: 5rem 0; }
.section-pad-sm { padding: 3.5rem 0; }

.bg-offwhite { background: var(--offwhite); }
.bg-navy     { background: var(--navy); }
.bg-dark-grad { background: linear-gradient(135deg, #080f1e 0%, #1A2D5A 100%); }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-globex {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.9rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: #d96a15;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,124,32,0.3);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.45);
}

.btn-outline-white:hover {
  border-color: var(--sky);
  color: var(--sky);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--orange);
}

.btn-white:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1050;
  padding: 1.1rem 0;
  transition: all 0.35s ease;
}

#mainNav.nav-transparent { background: transparent; }

#mainNav.nav-solid {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  backdrop-filter: blur(12px);
  padding: 0.65rem 0;
}

#mainNav.nav-solid-always {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  backdrop-filter: blur(12px);
  padding: 0.65rem 0;
}

.navbar-brand img { height: 50px; transition: height 0.3s; }
#mainNav.nav-solid .navbar-brand img { height: 44px; }

/* Nav links — white on transparent, navy on solid */
.nav-link-item {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.5rem 0.85rem;
  color: var(--white);
  position: relative;
  transition: color var(--transition);
}

#mainNav.nav-solid .nav-link-item,
#mainNav.nav-solid-always .nav-link-item { color: var(--navy); }

.nav-link-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0.85rem; right: 0.85rem;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-link-item:hover::after,
.nav-link-item.active::after { transform: scaleX(1); }

.nav-link-item:hover { color: var(--orange); }
#mainNav.nav-solid .nav-link-item:hover,
#mainNav.nav-solid-always .nav-link-item:hover { color: var(--blue); }

.nav-cta-btn {
  background: var(--orange);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  padding: 0.45rem 1.2rem !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta-btn::after { display: none !important; }
.nav-cta-btn:hover { background: #d96a15 !important; transform: translateY(-1px); }

.navbar-toggler { border: none; background: transparent; }
.navbar-toggler:focus { box-shadow: none; }

.toggler-icon {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: all 0.3s;
}

#mainNav.nav-solid .toggler-icon,
#mainNav.nav-solid-always .toggler-icon { background: var(--navy); }

/* ── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #080f1e 0%, #1A2D5A 80%, #0d3a6e 100%);
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(91,184,245,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,184,245,0.05) 1px, transparent 1px);
  background-size: 55px 55px;
}

.page-hero-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,144,255,0.18) 0%, transparent 70%);
  top: -120px; right: -80px;
  pointer-events: none;
}

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

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero h1 .accent { color: var(--orange); }

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.68);
  max-width: 580px;
  line-height: 1.75;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.breadcrumb-nav a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

.breadcrumb-nav a:hover { color: var(--sky); }

.breadcrumb-nav span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

.breadcrumb-nav .current {
  font-size: 0.8rem;
  color: var(--orange);
  font-weight: 600;
}

/* ── CARDS ──────────────────────────────────────────────────── */
.card-globex {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.card-globex::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.card-globex:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: transparent;
}

.card-globex:hover::before { transform: scaleX(1); }

.card-icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: var(--blue);
  margin-bottom: 1.25rem;
  transition: all var(--transition);
  flex-shrink: 0;
}

.card-globex:hover .card-icon {
  background: var(--blue);
  color: var(--white);
}

.card-title {
  font-size: 1.1rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.card-text {
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.65;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--blue);
  margin-top: 1.25rem;
  transition: gap var(--transition), color var(--transition);
}

.card-link:hover { gap: 0.7rem; color: var(--navy); }

/* ── STATS BAR ──────────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, var(--navy), #0d3a6e);
  padding: 3.5rem 0;
}

.stat-item { text-align: center; padding: 1.25rem; }

.stat-item + .stat-item {
  border-left: 1px solid rgba(255,255,255,0.08);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-num .accent { color: var(--orange); }

.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
}

/* ── WHY-CHOOSE ROW ─────────────────────────────────────────── */
.why-item {
  display: flex;
  gap: 1.1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: all var(--transition);
  margin-bottom: 1rem;
}

.why-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--sky);
}

.why-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--white);
  flex-shrink: 0;
}

.why-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.why-text {
  font-size: 0.84rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/* ── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #c95e10 100%);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.07), transparent 60%);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.cta-banner p { color: rgba(255,255,255,0.8); }

/* ── MARQUEE ────────────────────────────────────────────────── */
.marquee-bar {
  background: var(--navy);
  padding: 0.8rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marqueeScroll 22s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.marquee-item i { color: var(--orange); font-size: 0.6rem; }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SERVICE CARD (services page) ───────────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: all var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: transparent;
}

.service-card-header {
  background: linear-gradient(135deg, var(--navy) 0%, #1a4080 100%);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.service-card-header::after {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.service-card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.service-card-title {
  font-size: 1.15rem;
  color: var(--white);
  margin: 0;
}

.service-card-body { padding: 1.75rem; }

.service-card-desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.benefit-list { padding: 0; }

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: var(--gray);
  padding: 0.3rem 0;
}

.benefit-list li i {
  color: var(--green);
  font-size: 0.7rem;
  width: 14px;
  flex-shrink: 0;
}

/* ── PROCESS STEPS (buyback) ────────────────────────────────── */
.process-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.step-bubble {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(244,124,32,0.12);
  border: 2px solid var(--orange);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
}

.step-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.step-text p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  margin: 0;
}

/* ── FORM STYLES ────────────────────────────────────────────── */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-card-dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(8px);
}

.form-label-styled {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  display: block;
}

.form-label-styled.light { color: rgba(255,255,255,0.6); }
.form-label-styled.dark  { color: var(--navy); }

.form-control-styled {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control-styled.light {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
}

.form-control-styled.light::placeholder { color: rgba(255,255,255,0.3); }
.form-control-styled.light:focus {
  background: rgba(255,255,255,0.1);
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,144,255,0.15);
}

.form-control-styled.dark {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--dark);
}

.form-control-styled.dark::placeholder { color: var(--gray-light); }
.form-control-styled.dark:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,144,255,0.1);
}

.form-row { display: flex; gap: 1rem; }
.form-row .form-group { flex: 1; }
.form-group { margin-bottom: 1.1rem; }

textarea.form-control-styled { resize: vertical; min-height: 110px; }

.form-success-msg {
  display: none;
  background: rgba(76,175,80,0.1);
  border: 1px solid rgba(76,175,80,0.3);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.2rem;
  font-size: 0.87rem;
  font-weight: 600;
  color: #2e7d32;
  margin-bottom: 1rem;
}

/* ── INDUSTRY CARD ──────────────────────────────────────────── */
.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  text-align: center;
  height: 100%;
  transition: all var(--transition);
}

.industry-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--blue);
}

.industry-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--blue);
  margin: 0 auto 1.25rem;
  transition: all var(--transition);
}

.industry-card:hover .industry-icon {
  background: var(--navy);
  color: var(--white);
}

.industry-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.industry-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ── CONTACT INFO ───────────────────────────────────────────── */
.contact-info-panel {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: 100%;
}

.contact-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.contact-row:last-child { border-bottom: none; }

.contact-row-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(30,144,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--sky);
  flex-shrink: 0;
}

.contact-row-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.2rem;
}

.contact-row-val {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 500;
}

.contact-row-val a {
  color: var(--sky);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-row-val a:hover { color: var(--white); }

/* ── FOOTER ─────────────────────────────────────────────────── */
#mainFooter {
  background: #06101f;
  padding: 4.5rem 0 0;
}

.footer-logo img { height: 48px; margin-bottom: 1rem; }

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  margin-right: 0.45rem;
  transition: all var(--transition);
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--blue);
  color: var(--white);
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 1.25rem;
}

.footer-links li { margin-bottom: 0.55rem; }

.footer-links a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
}

.footer-contact-item i {
  color: var(--orange);
  font-size: 0.85rem;
  margin-top: 3px;
  width: 14px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.45);
}

.footer-contact-item a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.055);
  padding: 1.4rem 0;
  margin-top: 3rem;
}

.footer-bottom-text {
  font-size: 0.79rem;
  color: rgba(255,255,255,0.25);
}

.footer-bottom-links a {
  font-size: 0.79rem;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  margin-left: 1.25rem;
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.55); }

/* ── FLOATING BUTTONS ───────────────────────────────────────── */
.fab-wrap {
  position: fixed;
  bottom: 1.75rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
}

.fab {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
  transition: transform var(--transition), box-shadow var(--transition);
  border: none;
  cursor: pointer;
}

.fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.fab-whatsapp { background: #25D366; color: var(--white); }

.fab-top {
  background: var(--navy);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform var(--transition), box-shadow var(--transition);
}

.fab-top.show { opacity: 1; pointer-events: all; }

/* ── SCROLL ANIMATIONS ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

/* ── MAP ─────────────────────────────────────────────────────── */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ── TAGS / PILLS ────────────────────────────────────────────── */
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  margin: 0.2rem;
}

/* ── MISSION/VISION CARDS ───────────────────────────────────── */
.mv-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
}

.mv-card.mission-card {
  background: linear-gradient(135deg, var(--navy), #1a4080);
}

.mv-card.vision-card {
  background: linear-gradient(135deg, #0a2015, #1a4020);
}

.mv-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.mv-title {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.65rem;
}

.mv-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin: 0;
}

/* ── VALUE ITEMS ────────────────────────────────────────────── */
.value-item {
  display: flex;
  gap: 1rem;
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  transition: all var(--transition);
}

.value-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.value-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--blue);
  flex-shrink: 0;
}

.value-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.value-text {
  font-size: 0.83rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.55;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 991px) {
  .stat-item + .stat-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); }
  .form-row { flex-direction: column; }
  .cta-banner { padding: 2.5rem; }
  .page-hero { padding: 8rem 0 4rem; }
}

@media (max-width: 768px) {
  .section-pad    { padding: 3.5rem 0; }
  .section-pad-sm { padding: 2.5rem 0; }
  .cta-banner     { padding: 2rem 1.5rem; }
  .form-card, .form-card-dark { padding: 1.75rem; }
  .contact-info-panel { margin-bottom: 1.5rem; }
}

@media (max-width: 576px) {
  .btn-globex { width: 100%; justify-content: center; }
  .hero-btns  { flex-direction: column; }
}

/* ── PRINT ───────────────────────────────────────────────────── */
@media print {
  #mainNav, .fab-wrap, .marquee-bar { display: none !important; }
}

.ups-service-image{
    width:100%;
    height:380px;
    object-fit:cover;
    border-radius:12px;
    box-shadow:0 12px 30px rgba(0,0,0,0.15);
    transition:0.3s ease;
}

.ups-service-image:hover{
    transform:scale(1.02);
    box-shadow:0 18px 40px rgba(0,0,0,0.2);
}
