/* =============================================
   JP Universal & Global — Main Stylesheet
   Design: Corporate Prestige — Dark Navy + Gold
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --navy: #0d2137;
  --navy-mid: #1a3c5e;
  --navy-light: #1e4976;
  --gold: #c8960c;
  --gold-light: #e6b020;
  --gold-pale: #fdf3d8;
  --green: #2d6a4f;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --light-gray: #f0f3f7;
  --mid-gray: #8a9ab0;
  --dark-text: #0d1f2d;
  --body-text: #4a5568;
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--body-text);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--dark-text);
  line-height: 1.2;
}

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

.text-center { text-align: center; }
.mt-50 { margin-top: 50px; }
.section-pad { padding: 90px 0; }
.bg-light { background: var(--off-white); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,150,12,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

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

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

/* ---- Section Headers ---- */
.section-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--dark-text);
  margin-bottom: 16px;
}

.section-header h2 span,
h2 span { color: var(--gold); }

.section-sub {
  font-size: 1rem;
  color: var(--mid-gray);
  max-width: 580px;
  margin: 0 auto;
}

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.top-bar a {
  color: rgba(255,255,255,0.75);
  margin-left: 20px;
}
.top-bar a:hover, .top-bar-right a:hover { color: var(--gold-light); }
.top-bar i { margin-right: 5px; color: var(--gold); }

/* ---- NAVBAR ---- */
.navbar {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0;
  padding-bottom: 0;
  height: 72px;
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  width: 100px;
  height: 100px;
  margin-top: 10px;
}

.logo-jp {
 
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.9rem;
  width: 460px;
  height: 46px;
  display: flex;
  align-items: left;
  justify-content: left;
  border-radius: 8px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.logo-text em {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--mid-gray);
  letter-spacing: 0.5px;
}

.logo-light .logo-text { color: var(--white); }
.logo-light .logo-text em { color: rgba(255,255,255,0.6); }

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu > li > a {
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark-text);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--gold);
  background: var(--gold-pale);
}

.nav-menu > li > a.active { color: var(--gold); }

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  min-width: 240px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  border-top: 3px solid var(--gold);
  z-index: 100;
  overflow: hidden;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 12px 20px;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--body-text);
  border-bottom: 1px solid var(--light-gray);
  transition: var(--transition);
}

.dropdown li:last-child a { border-bottom: none; }

.dropdown li a:hover {
  background: var(--gold-pale);
  color: var(--gold);
  padding-left: 28px;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- HERO SLIDER ---- */
.hero-slider {
  position: relative;
  height: calc(100vh - 110px);
  min-height: 560px;
  max-height: 780px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.slide.active { opacity: 1; }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13,33,55,0.88) 0%,
    rgba(13,33,55,0.55) 60%,
    rgba(13,33,55,0.15) 100%
  );
  display: flex;
  align-items: center;
}

/* Fallback gradient for slides when no images */
.slide:nth-child(1) { background-color: #0d2137; background-image: linear-gradient(135deg, #0d2137 0%, #1a3c5e 50%, #2d6a4f 100%); }
.slide:nth-child(2) { background-color: #1a1a2e; background-image: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); }
.slide:nth-child(3) { background-color: #1b2838; background-image: linear-gradient(135deg, #1b2838 0%, #2d6a4f 60%, #c8960c 100%); }

.slide-content {
  margin-top: 20px;
  max-width: 620px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.3s;
}

.slide.active .slide-content {
  opacity: 1;
  transform: translateY(0);
}

.slide-tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.slide-content h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}

.slide-content h1 span { color: var(--gold-light); }

.slide-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-bottom: 36px;
  max-width: 480px;
}

.slide-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  font-size: 0.9rem;
}


/* Target screens that are 767px wide or smaller */
@media screen and (max-width: 767px) {
  .slider-btn {
    display: none !important;
  }
}

.slider-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.slider-btn.prev { left: 24px; }
.slider-btn.next { right: 24px; }

.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--navy);
  padding: 32px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}

.stat-item > span:not(.stat-num) {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-light);
}

.stat-item p {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 6px;
}

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

.img-stack {
  position: relative;
  padding-bottom: 60px;
}

.img-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--navy) 0%, var(--green) 100%);
  min-height: 420px;
}

.img-accent {
  position: absolute;
  bottom: 0;
  right: -30px;
  width: 55%;
  max-width: calc(55% + 30px);
}

.img-accent img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 5px solid var(--white);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--gold) 0%, var(--navy) 100%);
  min-height: 200px;
}

.img-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--gold);
  color: var(--navy);
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.img-badge span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  color: var(--navy);
}

.img-badge strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--navy);
}

.about-content { padding-left: 20px; }

.about-content h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--body-text);
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.about-highlights {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-text);
}

.highlight i {
  color: var(--green);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ---- SERVICES GRID ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  display: block;
  color: inherit;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  z-index: 2;
}

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

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

/* Card image area */
.service-card-img {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--navy-mid);
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.07);
}

/* Icon overlay badge on image */
.service-card-img-overlay {
  position: absolute;
  bottom: -22px;
  left: 28px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(200,150,12,0.4);
  z-index: 3;
  transition: var(--transition);
}

.service-card-img-overlay i {
  font-size: 1.2rem;
  color: var(--navy);
  transition: var(--transition);
}

.service-card:hover .service-card-img-overlay {
  background: var(--navy);
}
.service-card:hover .service-card-img-overlay i {
  color: var(--gold);
}

/* Card text body */
.service-card-body {
  padding: 40px 28px 28px;
}

.service-card-body h3 {
  font-size: 1.15rem;
  color: var(--dark-text);
  margin-bottom: 12px;
}

.service-card-body p {
  font-size: 0.88rem;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-link i { transition: var(--transition); }
.service-card:hover .service-link i { transform: translateX(4px); }

/* ---- WHY US ---- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-content h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  margin-bottom: 16px;
}

.why-content > p {
  color: var(--body-text);
  margin-bottom: 36px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-feat {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-icon i { color: var(--gold); font-size: 1.1rem; }

.why-feat h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-text);
  margin-bottom: 4px;
}

.why-feat p {
  font-size: 0.87rem;
  color: var(--body-text);
}

.why-img-wrap {
  position: relative;
}

.why-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--green) 100%);
  min-height: 480px;
}

.why-quote {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--gold);
  color: var(--navy);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 240px;
}

.why-quote i {
  font-size: 1.4rem;
  opacity: 0.5;
  margin-bottom: 8px;
  display: block;
}

.why-quote p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.4;
}

/* ---- CTA SECTION ---- */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--green) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="40" fill="none" stroke="rgba(200,150,12,0.1)" stroke-width="1"/><circle cx="80" cy="80" r="60" fill="none" stroke="rgba(200,150,12,0.08)" stroke-width="1"/></svg>');
  background-size: cover;
}

.cta-overlay {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, var(--green) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(200,150,12,0.15);
}

.page-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero-content h1 span { color: var(--gold-light); }

.page-hero-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  max-width: 520px;
}

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

.breadcrumb a {
  color: var(--gold-light);
}

.breadcrumb i {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
}

/* ---- FOOTER ---- */
.footer { background: var(--navy); }

.footer-top { padding: 72px 0 50px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin-top: 16px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.footer-links h4, .footer-contact h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links ul li a::before {
  content: '→';
  font-size: 0.75rem;
  color: var(--gold);
  opacity: 0;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-links ul li a:hover::before { opacity: 1; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  align-items: flex-start;
}

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

.footer-contact-item p,
.footer-contact-item a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.6;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: 9000;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37,211,102,0.5);
}

/* ---- ABOUT PAGE ---- */
.about-values { margin-top: 60px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.value-icon i {
  font-size: 1.6rem;
  color: var(--gold-light);
}

.value-card h3 {
  font-size: 1.1rem;
  color: var(--dark-text);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--body-text);
}

/* ---- SERVICES PAGE ---- */
.services-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 52px;
}

.service-list-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-list-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-list-img {
  height: 220px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--green) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-list-img i {
  font-size: 4rem;
  color: rgba(200,150,12,0.5);
}

.service-list-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-list-body h3 {
  font-size: 1.25rem;
  color: var(--dark-text);
  margin-bottom: 12px;
}

.service-list-body p {
  font-size: 0.88rem;
  color: var(--body-text);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}

/* ---- SERVICE DETAIL PAGE ---- */
.service-detail { padding: 80px 0; }

.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 56px;
  align-items: start;
}

.service-detail-main h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 20px;
   margin-top: 20px;
}

.service-detail-main p {
  font-size: 0.95rem;
  color: var(--body-text);
  margin-bottom: 16px;
  line-height: 1.8;
}

.service-features-list {
  margin: 28px 0;
}

.service-features-list h3 {
  font-size: 1.1rem;
  color: var(--dark-text);
  margin-bottom: 16px;
}

.service-features-list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-features-list ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--body-text);
}

.service-features-list ul li::before {
  content: '✓';
  background: var(--green);
  color: var(--white);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
}

.sidebar-card h4 {
  font-size: 1rem;
  color: var(--dark-text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-pale);
}

.sidebar-services ul li {
  border-bottom: 1px solid var(--light-gray);
}

.sidebar-services ul li:last-child { border-bottom: none; }

.sidebar-services ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 0.88rem;
  color: var(--body-text);
  transition: var(--transition);
}

.sidebar-services ul li a:hover { color: var(--gold); }
.sidebar-services ul li a.active { color: var(--gold); font-weight: 600; }

.sidebar-contact-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
}

.sidebar-contact-card i {
  font-size: 2.5rem;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.sidebar-contact-card h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 8px;
  padding-bottom: 0;
  border-bottom: none;
}

.sidebar-contact-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

/* ---- CONTACT PAGE ---- */
.contact-section { padding: 80px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--body-text);
  margin-bottom: 36px;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i {
  color: var(--gold);
  font-size: 1.1rem;
}

.contact-info-text h5 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark-text);
  margin-bottom: 4px;
}

.contact-info-text p, .contact-info-text a {
  font-size: 0.9rem;
  color: var(--body-text);
  line-height: 1.6;
}

.contact-info-text a:hover { color: var(--gold); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.05);
}

.contact-form h3 {
  font-size: 1.4rem;
  margin-bottom: 28px;
  color: var(--dark-text);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark-text);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark-text);
  background: var(--white);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,150,12,0.1);
}

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

.form-submit {
  margin-top: 8px;
}

.form-success {
  display: none;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 0.9rem;
  margin-top: 16px;
  align-items: center;
  gap: 10px;
}

/* Map */
.map-section {
  padding-bottom: 80px;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeInUp 0.7s ease forwards;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .about-grid,
  .why-grid { gap: 48px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid,
  .why-grid { grid-template-columns: 1fr; }
  .img-stack { padding-bottom: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.1); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .services-list-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  /* Clear about-content side padding when stacked */
  .about-content { padding-left: 0; }

  /* Contain overlapping accent image so it doesn't overflow */
  .img-accent { right: 0; }
  .img-badge { left: 0; }

  /* Contain why-quote so it doesn't overflow card */
  .why-quote { left: 0; bottom: 0; }
  .why-img-wrap img { height: 340px; min-height: 340px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px;
    box-shadow: var(--shadow-md);
    gap: 4px;
    border-top: 2px solid var(--gold);
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a { width: 100%; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-top: none; padding-left: 16px; border-left: 2px solid var(--gold-pale); margin-top: 4px; display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .navbar .container { position: relative; }

  .hero-slider { height: 70vh; min-height: 480px; max-height: none; }
  .slide-content h1 { font-size: 1.8rem; }
  .slider-btn.prev { left: 12px; }
  .slider-btn.next { right: 12px; }

  .top-bar-left { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .section-pad { padding: 60px 0; }

  /* Prevent horizontal overflow from decorative elements */
  .img-accent { right: 0; width: 50%; }
  .img-badge { left: 0; }
  .why-quote { left: 0; bottom: 0; max-width: 100%; }

  /* Slide overlay — stack content vertically on small screens */
  .slide-overlay { align-items: flex-end; padding-bottom: 60px; }
  .slide-content { max-width: 100%; }
  .slide-sub { max-width: 100%; }

  /* Stats — ensure last items in 2-col grid have no stray border */
  .stat-item:nth-child(3) { border-right: none; }
  .stat-item:nth-child(4) { border-right: none; }
}

@media (max-width: 480px) {
  .slide-buttons { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .slide-content {margin-top: 20px;}
}

/* ---- FLAG / TRADE CONNECTION WIDGET ---- */

/*
  Structure:
    .flag-page  → positioned overlay on the right side of the hero
      .flag     → flex row: [img-flag] [.view: arrows stacked] [img-flag]
        img-flag          → left flag (India)
        .view             → column of two arrows (up/down)
          img-arrow1      → top arrow
          img-arrow       → bottom arrow
        img-flag          → right flag (Nigeria)
*/

.flag-page {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5%;
  left: auto;
  width: clamp(200px, 28vw, 340px);
  z-index: 10;
  pointer-events: none;
}

.flag {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: auto;
  position: static;
}

.img-flag {
  width: clamp(48px, 7vw, 80px);
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
  margin: 0;
}

.view {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.img-arrow,
.img-arrow1 {
  display: block;
  width: 100%;
  max-width: 120px;
  height: auto;
  filter: invert(1) drop-shadow(0 1px 2px rgba(0,0,0,0.4));
  margin: 0;
}

/* Tablet */
@media (max-width: 993px) {
  .flag-page {
    right: 3%;
    width: clamp(160px, 24vw, 260px);
    top: 50%;
  }

  .img-flag {
    width: clamp(36px, 5.5vw, 60px);
  }

  .img-arrow,
  .img-arrow1 {
    max-width: 80px;
  }
}

/* Mobile landscape / small tablet */
@media (max-width: 768px) {
  .flag-page {
    top: auto;
    bottom: 70px;
    right: 16px;
    transform: none;
    width: clamp(130px, 36vw, 200px);
  }

  .flag {
    gap: 8px;
  }

  .img-flag {
    width: clamp(30px, 8vw, 48px);
  }

  .img-arrow,
  .img-arrow1 {
    max-width: 56px;
  }
}

/* Small mobile — hide to avoid clutter */
@media (max-width: 480px) {
  .flag-page {
    display: none;
  }
}