/* =========================================================
   NITYAM VENTURES — Premium Mono Carton Packaging
   Global stylesheet
   ========================================================= */

:root {
  --primary: #FFB800;
  --primary-dark: #E5A600;
  --primary-light: #FFF4D6;
  --dark: #0F0F0F;
  --dark-soft: #1A1A1A;
  --navy: #1A2547;
  --navy-soft: #243154;
  --gray-50: #FAFAFA;
  --gray-100: #F4F4F4;
  --gray-200: #E5E5E5;
  --gray-300: #D4D4D4;
  --gray-400: #A3A3A3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #2D2D2D;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --container: 1280px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* =========================================================
   TOP BAR
   ========================================================= */
.topbar {
  background: var(--dark);
  color: var(--white);
  font-size: 13px;
  padding: 10px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.tagline {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #E5E5E5;
}
.tagline svg { color: var(--primary); flex-shrink: 0; }
.contact-items {
  display: flex;
  gap: 28px;
  align-items: center;
}
.contact-items a, .contact-items span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #E5E5E5;
  transition: color var(--transition);
}
.contact-items a:hover { color: var(--primary); }
.contact-items svg { color: var(--primary); flex-shrink: 0; }

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  background: var(--white);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo img {
  height: 42px;
  width: auto;
}
.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--gray-700);
  position: relative;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition);
}
.nav-menu a:hover { color: var(--primary); }
.nav-menu a.active { color: var(--dark); font-weight: 700; }
.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.nav-menu .has-dropdown { position: relative; }
.nav-menu .dropdown-trigger svg {
  transition: transform var(--transition);
}
.nav-menu .has-dropdown:hover .dropdown-trigger svg {
  transform: rotate(180deg);
}
.nav-menu .has-dropdown:hover .dropdown-trigger {
  color: var(--primary);
}

/* Invisible bridge — keeps hover alive between trigger and dropdown */
.nav-menu .has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -10px;
  right: -10px;
  height: 22px;
  background: transparent;
  z-index: 109;
}

/* Dropdown menu */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.14);
  padding: 10px 0;
  min-width: 300px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
  z-index: 110;
  border-top: 3px solid var(--primary);
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: var(--primary);
  border-radius: 2px;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0s;
}
.dropdown-menu a {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 11px 22px !important;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy) !important;
  letter-spacing: 0.7px;
  white-space: nowrap;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
}
.dropdown-menu a::after { display: none !important; }
.dd-bullet {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.dropdown-menu a:hover {
  background: rgba(255, 184, 0, 0.08);
  border-left-color: var(--primary);
  color: var(--primary-dark) !important;
  padding-left: 28px !important;
}
.dropdown-menu a:hover .dd-bullet {
  transform: scale(1.4);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--dark);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn svg {
  transition: transform var(--transition);
}
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--primary);
  color: var(--dark);
  box-shadow: 0 6px 16px rgba(255, 184, 0, 0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 184, 0, 0.45);
}

.btn-outline {
  background: var(--white);
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover { background: var(--dark-soft); }

/* =========================================================
   HERO SLIDER — full-width image carousel
   ========================================================= */
.hero-slider {
  position: relative;
  padding: 0;
  background: var(--dark);
  overflow: hidden;
}
.slider-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.slide {
  flex: 0 0 100%;
  min-width: 100%;
  width: 100%;
}
.slide img {
  display: block;
  width: 100%;
  height: auto;
}

/* Prev / Next buttons */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  z-index: 10;
  transition: all var(--transition);
}
.slider-arrow:hover {
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 24px rgba(255, 184, 0, 0.5);
}
.slider-arrow.prev { left: 28px; }
.slider-arrow.next { right: 28px; }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider-dots .dot {
  width: 30px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.slider-dots .dot.active {
  background: var(--primary);
  width: 42px;
}

@media (max-width: 600px) {
  .slider-arrow {
    width: 42px;
    height: 42px;
  }
  .slider-arrow.prev { left: 12px; }
  .slider-arrow.next { right: 12px; }
  .slider-dots {
    bottom: 12px;
  }
  .slider-dots .dot {
    width: 22px;
    height: 5px;
  }
  .slider-dots .dot.active { width: 32px; }
}

/* =========================================================
   FEATURE STRIP
   ========================================================= */
.feature-strip {
  position: relative;
  background: var(--dark);
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
  z-index: 5;
  border-radius: 0;
}
.feature-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-radius: 0;
  box-shadow: none;
}
.feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.feature-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.feature-text h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}
.feature-text p {
  color: var(--gray-400);
  font-size: 13px;
  line-height: 1.5;
}

/* =========================================================
   SECTION COMMON
   ========================================================= */
section {
  padding: 100px 0;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 2.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.section-head h2 {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -1.2px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-head h2 span { color: var(--primary); }
.section-head p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.7;
}
.section-head .accent-line {
  margin: 0 auto 24px;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  background: linear-gradient(180deg, #FBF8F1 0%, #FFF6E0 100%);
  position: relative;
  overflow: hidden;
  padding: 70px 0 60px;
}
.about::before {
  content: '';
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 110px;
  height: 110px;
  background-image: radial-gradient(var(--primary) 1.4px, transparent 1.4px);
  background-size: 11px 11px;
  opacity: 0.3;
  pointer-events: none;
}
.about .container { position: relative; z-index: 2; }

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 36px;
}

/* Eyebrow */
.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--dark);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.about-eyebrow i {
  display: inline-block;
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

/* Heading — Plus Jakarta Sans for distinctive feel */
.about-heading {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1.6px;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about-heading .hdg-line {
  display: block;
}
.about-heading em {
  font-style: normal;
}
.about-heading .hdg-accent {
  color: var(--primary);
  position: relative;
  width: fit-content;
}
.about-heading .hdg-accent::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  width: 4px;
  height: 60%;
  background: var(--primary);
  border-radius: 2px;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.reveal.visible .about-heading .hdg-accent::before { opacity: 1; }
.about-heading .hdg-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 2px;
  margin-left: 8px;
  vertical-align: middle;
  transform: translateY(-4px);
}

.about-text > p {
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 540px;
  font-family: 'Poppins', sans-serif;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.af-card {
  text-align: left;
  position: relative;
  padding-top: 12px;
  transition: transform var(--transition);
}
.af-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.4s ease;
}
.af-card:hover { transform: translateY(-4px); }
.af-card:hover::before { width: 46px; }
.af-icon {
  width: 46px;
  height: 46px;
  background: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 12px;
  box-shadow: 0 4px 14px rgba(255, 184, 0, 0.22);
  transition: all var(--transition);
}
.af-card:hover .af-icon {
  background: var(--primary);
  color: var(--dark);
  transform: rotate(-6deg);
}
.af-card h5 {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.25;
  letter-spacing: -0.2px;
}
.af-card p {
  font-size: 11.5px;
  color: var(--gray-600);
  line-height: 1.5;
}

/* Visual (right column image) */
.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
}

/* Stats bar */
.about-stats {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.06);
  padding: 22px 18px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  overflow: hidden;
}
.about-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary) 100%);
  border-radius: 0;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 18px;
  position: relative;
  transition: transform var(--transition);
}
.stat-item:hover { transform: translateY(-2px); }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: var(--gray-200);
}
.stat-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(255, 184, 0, 0.12);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.stat-item:hover .stat-icon {
  background: var(--primary);
  color: var(--dark);
}
.stat-icon svg { width: 24px; height: 24px; }
.stat-text { line-height: 1.2; }
.stat-num {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 3px;
  letter-spacing: -0.5px;
}
.stat-num-sm {
  font-size: 15px;
  line-height: 1.15;
}
.stat-label {
  font-size: 11.5px;
  color: var(--gray-500);
  font-weight: 500;
  line-height: 1.35;
}
.stat-label small {
  display: block;
  font-size: 10px;
  color: var(--gray-400);
  margin-top: 1px;
  font-weight: 400;
}

@media (max-width: 1100px) {
  .about-heading { font-size: 36px; }
  .about-features { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); row-gap: 24px; }
  .stat-item:nth-child(3n)::after { display: none; }
}
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-heading { font-size: 34px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .stat-item::after { display: none !important; }
}
@media (max-width: 600px) {
  .about-features { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: 1fr; row-gap: 18px; }
  .about-heading { font-size: 28px; letter-spacing: -1px; }
  .stat-item { padding: 6px 4px; }
}

/* =========================================================
   PRODUCTS
   ========================================================= */
.products {
  background: linear-gradient(180deg, #FBF8F1 0%, #FFF6E0 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 70px;
}
.products::before {
  content: '';
  position: absolute;
  top: 60px;
  right: 0;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(var(--primary) 1.4px, transparent 1.4px);
  background-size: 11px 11px;
  opacity: 0.3;
  pointer-events: none;
}
.products .container { position: relative; z-index: 2; }

/* Centered head */
.prod-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 50px;
}
.eyebrow-chip {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.eyebrow-chip i {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}
.prod-heading {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1.4px;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 16px;
}
.prod-heading span { color: var(--primary); }
.prod-head > p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}

/* Card grid */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 50px;
}

.prod-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}
.prod-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.prod-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #F3EDE0;
  border-radius: 16px 16px 0 0;
}
.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.prod-card:hover .prod-img img {
  transform: scale(1.06);
}

.prod-body {
  padding: 38px 26px 28px;
  flex: 1;
  position: relative;
}

.prod-icon {
  position: absolute;
  top: -26px;
  left: 26px;
  width: 52px;
  height: 52px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  border: 4px solid var(--white);
  z-index: 3;
  box-shadow: 0 6px 18px rgba(255, 184, 0, 0.45);
  transition: all var(--transition);
}
.prod-card:hover .prod-icon {
  transform: rotate(-8deg) scale(1.08);
  background: var(--dark);
  color: var(--primary);
  border-color: var(--white);
}

.prod-body h4 {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.3;
}
.prod-body h4 .arrow {
  display: inline-flex;
  width: 22px;
  height: 2px;
  background: var(--primary);
  position: relative;
  font-size: 0;
  transition: all var(--transition);
}
.prod-body h4 .arrow::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  transform: translateY(-50%) rotate(45deg);
}
.prod-card:hover .arrow {
  width: 32px;
}
.prod-body p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray-500);
}

/* Bottom features bar */
.prod-features {
  background: var(--white);
  border-radius: 16px;
  padding: 22px 18px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}
.prod-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
}
.pf-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 18px;
  position: relative;
  transition: transform var(--transition);
}
.pf-item:hover { transform: translateY(-2px); }
.pf-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: var(--gray-200);
}
.pf-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(255, 184, 0, 0.12);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.pf-item:hover .pf-icon {
  background: var(--primary);
  color: var(--dark);
}
.pf-icon svg { width: 22px; height: 22px; }
.pf-text { line-height: 1.3; }
.pf-text h5 {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  letter-spacing: -0.1px;
}
.pf-text p {
  font-size: 11.5px;
  color: var(--gray-500);
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 1100px) {
  .prod-heading { font-size: 36px; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-features { grid-template-columns: repeat(3, 1fr); row-gap: 22px; }
  .pf-item:nth-child(3n)::after { display: none; }
}
@media (max-width: 900px) {
  .prod-heading { font-size: 30px; }
  .prod-head > p br { display: none; }
  .prod-heading br { display: none; }
  .prod-features { grid-template-columns: repeat(2, 1fr); }
  .pf-item::after { display: none !important; }
}
@media (max-width: 600px) {
  .prod-grid { grid-template-columns: 1fr; gap: 20px; }
  .prod-heading { font-size: 24px; letter-spacing: -0.8px; }
  .prod-features { grid-template-columns: 1fr; padding: 18px 14px; row-gap: 14px; }
  .pf-item { padding: 6px 6px; }
}

/* =========================================================
   OUR PROCESS
   ========================================================= */
.process {
  background: linear-gradient(180deg, #FBF8F1 0%, #FFF6E0 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 70px;
}
.process-decor {
  position: absolute;
  top: 20px;
  left: -10px;
  pointer-events: none;
  z-index: 1;
}
.process .container { position: relative; z-index: 2; }

/* Heading */
.process-head {
  text-align: center;
  margin-bottom: 70px;
}
.process-heading {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 12px;
  line-height: 1.1;
}
.process-heading .dash {
  display: inline-block;
  width: 38px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}
.process-heading em {
  font-style: normal;
  color: var(--primary);
}
.process-sub {
  font-size: 15px;
  color: var(--gray-600);
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: 0.2px;
}
.process-accent {
  display: block;
  width: 56px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: 0 auto;
}

/* Grid of steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 60px;
  position: relative;
}

.step-card {
  background: var(--white);
  border-radius: 16px;
  padding: 56px 16px 28px;
  text-align: center;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.10);
}

/* Top icon circle */
.step-circle {
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 78px;
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  box-shadow: 0 8px 18px rgba(26, 37, 71, 0.12);
  transition: all 0.35s ease;
  z-index: 3;
}
.step-card:hover .step-circle {
  background: var(--navy);
  color: var(--white);
  transform: translateX(-50%) scale(1.05);
}

/* Yellow chevron between cards */
.step-card::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 22px;
  width: 14px;
  height: 14px;
  border-top: 3px solid var(--primary);
  border-right: 3px solid var(--primary);
  border-radius: 2px;
  transform: rotate(45deg);
  z-index: 4;
}
.step-card:last-child::after { display: none; }

/* Number badge */
.step-num {
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 800;
  margin: 0 auto 14px;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 10px rgba(255, 184, 0, 0.35);
}

.step-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.5px;
  line-height: 1.3;
  margin-bottom: 12px;
  min-height: 32px;
}
.step-line {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: 0 auto 14px;
  transition: width var(--transition);
}
.step-card:hover .step-line { width: 40px; }
.step-card p {
  font-size: 11.5px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Commitment bar */
.commitment-bar {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.07);
}

.commit-left {
  background: var(--navy);
  color: var(--white);
  padding: 26px 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
}
.commit-left::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary);
}
.commit-icon {
  flex-shrink: 0;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.commit-text h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: 0.4px;
}
.commit-text p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin: 0;
}

.commit-right {
  background: var(--white);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}
.commit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 22px;
  position: relative;
  transition: transform var(--transition);
}
.commit-item:hover { transform: translateY(-2px); }
.commit-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--gray-200);
}
.commit-ico {
  width: 44px;
  height: 44px;
  background: rgba(255, 184, 0, 0.12);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.commit-item:hover .commit-ico {
  background: var(--primary);
  color: var(--navy);
}
.commit-item span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.5px;
  line-height: 1.3;
}

/* Responsive */
@media (max-width: 1100px) {
  .process-grid { grid-template-columns: repeat(3, 1fr); gap: 32px 18px; row-gap: 60px; }
  .step-card:nth-child(3n)::after { display: none; }
  .commitment-bar { grid-template-columns: 1fr; }
  .commit-left::after {
    right: 0; left: 0; top: auto; bottom: 0;
    width: 100%; height: 4px;
  }
}
@media (max-width: 700px) {
  .process-grid { grid-template-columns: 1fr 1fr; gap: 22px; row-gap: 56px; }
  .step-card::after { display: none !important; }
  .process-heading { font-size: 32px; gap: 14px; }
  .process-heading .dash { width: 26px; }
  .commit-right { grid-template-columns: 1fr; }
  .commit-item:not(:last-child)::after {
    right: 22px; left: 22px; top: auto; bottom: 0;
    width: auto; height: 1px;
  }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; gap: 16px; row-gap: 60px; }
  .process-heading { font-size: 26px; }
  .commit-left { flex-direction: column; text-align: center; gap: 14px; padding: 24px 20px; }
}

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-us {
  background: linear-gradient(180deg, #F5F4EE 0%, #FAF7EC 100%);
  position: relative;
  overflow: hidden;
  padding: 70px 0 80px;
}
.why-decor {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.25;
}
.why-decor-1 {
  top: 0;
  left: 0;
  width: 280px;
  height: 280px;
  background: repeating-linear-gradient(135deg, transparent 0 8px, var(--gray-200) 8px 9px);
}
.why-decor-2 {
  bottom: 200px;
  right: 0;
  width: 280px;
  height: 280px;
  background: repeating-linear-gradient(45deg, transparent 0 8px, var(--gray-200) 8px 9px);
}
.why-us .container { position: relative; z-index: 2; }

/* Head */
.why-head {
  text-align: center;
  margin-bottom: 70px;
}
.why-logo {
  height: 56px;
  margin: 0 auto 14px;
  display: block;
}
.why-heading {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 14px;
  line-height: 1.1;
}
.why-heading .navy { color: var(--navy); }
.why-heading em {
  font-style: normal;
  color: var(--primary);
}
.why-heading .dash {
  display: inline-block;
  width: 42px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}
.why-heading .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}
.why-sub {
  font-size: 14.5px;
  color: var(--gray-600);
  margin-bottom: 16px;
  font-weight: 500;
}
.why-accent {
  display: block;
  width: 56px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: 0 auto;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

/* Card base */
.why-card {
  background: var(--white);
  border-radius: 14px;
  position: relative;
  text-align: center;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding-bottom: 14px;
  overflow: hidden;
}
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.12);
}

.wc-head {
  height: 86px;
  position: relative;
  border-radius: 14px 14px 0 0;
}
.wc-icon {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: all 0.35s ease;
}

.wc-body {
  padding: 56px 16px 18px;
}
.wc-body h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.4px;
  line-height: 1.25;
  margin-bottom: 14px;
}
.wc-line {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: 0 auto 14px;
  transition: width 0.3s ease;
}
.why-card:hover .wc-line { width: 42px; }
.wc-body p {
  font-size: 11.5px;
  color: var(--gray-600);
  line-height: 1.65;
}

/* Bottom strip (matches header color) */
.why-card::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 4px;
  border-radius: 2px;
}

/* Navy variant */
.why-card.why-navy .wc-head { background: var(--navy); }
.why-card.why-navy .wc-icon {
  background: var(--navy);
  color: var(--white);
}
.why-card.why-navy::after { background: var(--navy); }
.why-card.why-navy:hover .wc-icon {
  background: var(--primary);
  color: var(--navy);
}

/* Yellow variant */
.why-card.why-yellow .wc-head { background: var(--primary); }
.why-card.why-yellow .wc-icon {
  background: var(--primary);
  color: var(--white);
}
.why-card.why-yellow::after { background: var(--primary); }
.why-card.why-yellow:hover .wc-icon {
  background: var(--navy);
  color: var(--primary);
}

/* Bottom CTA bar */
.why-cta {
  background: var(--navy);
  border-radius: 16px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1.1fr 1.6fr;
  align-items: center;
  gap: 32px;
  position: relative;
  box-shadow: 0 14px 36px rgba(26, 37, 71, 0.18);
  overflow: hidden;
}
.why-cta::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--primary);
}

.cta-brand {
  display: flex;
  align-items: center;
  gap: 22px;
  position: relative;
}
.cta-brand::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  height: 70%;
  width: 1px;
  background: rgba(255, 184, 0, 0.4);
}

.cta-logo {
  width: 64px;
  height: 64px;
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.cta-logo span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.cta-logo span::after {
  content: '';
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: 50%;
}
.cta-brand p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}
.cta-brand strong {
  color: var(--primary);
  font-weight: 700;
}

.cta-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.cf-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 16px;
  position: relative;
}
.cf-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 184, 0, 0.3);
}
.cf-icon {
  color: var(--primary);
  flex-shrink: 0;
}
.cf-item span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.4px;
  line-height: 1.3;
}

/* Responsive */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); row-gap: 28px; }
  .why-cta { grid-template-columns: 1fr; gap: 24px; }
  .cta-brand::after { display: none; }
  .cta-features { grid-template-columns: repeat(4, 1fr); padding-top: 20px; border-top: 1px solid rgba(255,184,0,0.2); }
}
@media (max-width: 800px) {
  .why-grid { grid-template-columns: 1fr 1fr; row-gap: 24px; }
  .why-heading { font-size: 34px; gap: 12px; }
  .why-heading .dash { width: 28px; }
  .cta-features { grid-template-columns: 1fr 1fr; row-gap: 18px; }
  .cf-item:nth-child(2n)::after { display: none; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-heading { font-size: 26px; }
  .why-cta { padding: 24px 20px; }
  .cta-brand { flex-direction: column; text-align: center; gap: 14px; }
  .cta-features { grid-template-columns: 1fr; }
  .cf-item::after { display: none !important; }
}

/* =========================================================
   OUR CLIENTS (LOGOS)
   ========================================================= */
.our-clients {
  background: linear-gradient(180deg, #F5F4EE 0%, #FAF7EC 100%);
  position: relative;
  overflow: hidden;
  padding: 70px 0 30px;
}
.cl-decor {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.cl-decor-1 {
  top: 0; left: 0;
  width: 0; height: 0;
  border-top: 70px solid var(--navy);
  border-right: 70px solid transparent;
}
.cl-decor-1::after {
  content: '';
  position: absolute;
  top: -68px; left: 0;
  border-top: 62px solid var(--primary);
  border-right: 18px solid transparent;
}
.cl-decor-2 {
  top: 30px; right: 30px;
  width: 80px; height: 80px;
  background-image: repeating-linear-gradient(135deg, transparent 0 7px, rgba(26,37,71,0.08) 7px 8px);
  opacity: 0.6;
}
.our-clients .container { position: relative; z-index: 2; }

/* Head */
.cl-head {
  text-align: center;
  margin-bottom: 50px;
}
.cl-logo {
  height: 56px;
  margin: 0 auto 14px;
  display: block;
}
.cl-heading {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 14px;
  line-height: 1.1;
}
.cl-heading .navy { color: var(--navy); }
.cl-heading em {
  font-style: normal;
  color: var(--primary);
}
.cl-heading .dash {
  display: inline-block;
  width: 42px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}
.cl-heading .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}
.cl-sub {
  font-size: 14.5px;
  color: var(--gray-600);
  margin-bottom: 16px;
  font-weight: 500;
}
.cl-accent {
  display: block;
  width: 56px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: 0 auto;
}

/* Logo grid */
.cl-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-bottom: 60px;
}

.cl-card {
  background: var(--white);
  border-radius: 14px;
  padding: 24px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 5 / 3;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}
.cl-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.10);
  border-color: rgba(255, 184, 0, 0.4);
}
.cl-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0%);
  transition: filter 0.3s ease, transform 0.3s ease;
}
.cl-card:hover img {
  transform: scale(1.05);
}

/* Bottom dark banner */
.cl-banner {
  background: var(--navy);
  border-radius: 16px;
  padding: 26px 36px;
  display: flex;
  align-items: center;
  gap: 22px;
  position: relative;
  box-shadow: 0 14px 36px rgba(26, 37, 71, 0.18);
  overflow: hidden;
}
.cl-banner::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--primary);
}
.cl-banner-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(255, 184, 0, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.cl-banner p {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  font-weight: 400;
}
.cl-banner strong {
  color: var(--primary);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 1100px) {
  .cl-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .cl-heading { font-size: 38px; }
}
@media (max-width: 800px) {
  .cl-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .cl-heading { font-size: 32px; gap: 12px; }
  .cl-heading .dash { width: 26px; }
  .cl-banner { flex-direction: column; text-align: center; padding: 24px 22px; }
}
@media (max-width: 480px) {
  .cl-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cl-card { padding: 18px 16px; aspect-ratio: 4 / 3; }
  .cl-heading { font-size: 26px; }
  .cl-banner p { font-size: 13px; }
}

/* =========================================================
   PORTFOLIO (banner + slider)
   ========================================================= */
.portfolio {
  background: var(--white);
  padding: 0 0 80px;
  overflow: hidden;
}

/* Full-width banner */
.port-banner {
  width: 100%;
  display: block;
  margin-bottom: 50px;
}
.port-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Section header — title left, arrows right */
.port-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 32px;
}
.port-title { flex: 1; }
.port-title .eyebrow-chip {
  color: var(--primary);
  margin-bottom: 12px;
}
.port-heading {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--navy);
  line-height: 1.15;
  margin: 0;
}
.port-heading em {
  font-style: normal;
  color: var(--primary);
}

/* Arrow buttons */
.port-nav {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.port-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--navy);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}
.port-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 184, 0, 0.35);
}
.port-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Slider */
.port-slider {
  position: relative;
  overflow: hidden;
}
.port-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 6px;
}
.port-track::-webkit-scrollbar { display: none; }

.port-slide {
  flex: 0 0 calc((100% - 80px) / 5);
  scroll-snap-align: start;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  background: var(--gray-100);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.port-slide:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}
.port-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.port-slide:hover img {
  transform: scale(1.06);
}
.port-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26, 37, 71, 0.55) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}
.port-slide:hover::after { opacity: 1; }

/* Responsive */
@media (max-width: 1100px) {
  .port-slide { flex: 0 0 calc((100% - 60px) / 4); }
  .port-heading { font-size: 30px; }
}
@media (max-width: 800px) {
  .port-slide { flex: 0 0 calc((100% - 40px) / 3); }
  .port-head { flex-direction: column; align-items: stretch; }
  .port-nav { align-self: flex-end; }
  .port-heading { font-size: 26px; }
  .port-banner { margin-bottom: 40px; }
}
@media (max-width: 560px) {
  .port-slide { flex: 0 0 calc((100% - 20px) / 2); }
  .port-track { gap: 12px; }
  .port-heading { font-size: 22px; }
  .port-arrow { width: 42px; height: 42px; }
}

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

/* Top white strip with logo */
.ft-top {
  position: relative;
  background: var(--white);
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ft-top-logo {
  height: 60px;
  width: auto;
  position: relative;
  z-index: 3;
}
.ft-top-corner {
  position: absolute;
  top: 0;
  height: 100%;
  width: 220px;
  pointer-events: none;
}
.ft-top-corner-l {
  left: 0;
  background:
    linear-gradient(115deg, var(--primary) 0 12px, transparent 12px 18px, var(--navy) 18px 30px, transparent 30px 100%);
}
.ft-top-corner-r {
  right: 0;
  background: repeating-linear-gradient(135deg, transparent 0 10px, rgba(26, 37, 71, 0.06) 10px 11px);
}

/* Main dark area */
.ft-main {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  padding: 70px 0 0;
}

.ft-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.1fr 1.1fr;
  gap: 56px;
  margin-bottom: 60px;
  position: relative;
}

/* Vertical yellow separators */
.ft-col:not(:last-child) {
  position: relative;
}
.ft-col:not(.ft-brand-col):not(:last-child)::after {
  content: '';
  position: absolute;
  right: -28px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(255, 184, 0, 0.25);
}
.ft-brand-col::after {
  content: '';
  position: absolute;
  right: -28px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(255, 184, 0, 0.25);
}

/* Brand column wordmark */
.ft-wordmark {
  display: block;
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  margin-bottom: 16px;
  line-height: 1;
}
.ft-wordmark .lt {
  display: block;
  font-size: 38px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1.5px;
}
.ft-wordmark .lt em {
  font-style: normal;
  color: var(--primary);
}
.ft-wordmark .lb {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 8px;
  margin-top: 6px;
  padding-left: 4px;
}
.ft-accent {
  display: block;
  width: 56px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 18px;
}
.ft-brand-col > p {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}
.ft-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ft-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}
.ft-contact a:hover { color: var(--primary); }
.fc-ico {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 184, 0, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all var(--transition);
}
.ft-contact li:hover .fc-ico {
  background: var(--primary);
  color: var(--navy);
}

/* Column heads (Quick Links / Services / Connect) */
.ft-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.ft-head-ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ft-head h5 {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  margin: 0;
}
.ft-col-line {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 22px;
  margin-left: 58px;
}

/* Links list */
.ft-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ft-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13.5px;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 0;
}
.ft-links a::before {
  content: '›';
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  transition: transform var(--transition);
}
.ft-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}
.ft-links a:hover::before {
  transform: translateX(2px);
}

/* Connect column */
.ft-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 20px;
  line-height: 1.5;
}
.ft-social {
  display: flex;
  gap: 12px;
}
.ft-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.ft-social a:hover {
  background: var(--primary);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(255, 184, 0, 0.35);
}

/* Features bar */
.ft-features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 184, 0, 0.18);
  border-bottom: 1px solid rgba(255, 184, 0, 0.18);
}
.ftf-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  position: relative;
}
.ftf-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 184, 0, 0.25);
}
.ftf-ico {
  flex-shrink: 0;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ftf-text h6 {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.6px;
  margin-bottom: 4px;
  line-height: 1.2;
}
.ftf-text p {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
  margin: 0;
}

/* Copyright bar */
.ft-bottom {
  position: relative;
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 18px;
  overflow: hidden;
}
.ft-bottom p { margin: 0; }
.ft-bottom strong {
  color: var(--primary);
  font-weight: 700;
}
.ft-bottom a {
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
}
.ft-bottom a:hover { color: var(--primary); }
.ft-sep {
  color: rgba(255, 184, 0, 0.5);
  font-weight: 500;
}
.ft-bottom-corner {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-bottom: 50px solid var(--primary);
  border-left: 90px solid transparent;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 1100px) {
  .ft-grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }
  .ft-col:not(:last-child)::after,
  .ft-brand-col::after { display: none; }
  .ft-features { grid-template-columns: repeat(3, 1fr); row-gap: 20px; padding: 26px 12px; }
  .ftf-item:nth-child(3n)::after { display: none; }
}
@media (max-width: 700px) {
  .ft-grid { grid-template-columns: 1fr; gap: 36px; }
  .ft-features { grid-template-columns: repeat(2, 1fr); }
  .ftf-item::after { display: none !important; }
  .ft-wordmark .lt { font-size: 32px; }
  .ft-top-corner { width: 120px; }
  .ft-bottom-corner { border-bottom-width: 36px; border-left-width: 64px; }
}
@media (max-width: 480px) {
  .ft-features { grid-template-columns: 1fr; }
  .ft-bottom { flex-direction: column; gap: 8px; padding: 24px 16px 40px; }
  .ft-sep { display: none; }
  .ft-main { padding-top: 50px; }
}

/* =========================================================
   PAGE BANNER (used on sub-pages instead of hero slider)
   ========================================================= */
.page-banner {
  width: 100%;
  display: block;
  background: var(--white);
  padding: 0 !important;
  margin: 0;
}
.page-banner img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}

/* =========================================================
   BREADCRUMB BAR
   ========================================================= */
.breadcrumb-bar {
  background: var(--navy);
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-weight: 500;
  letter-spacing: 0.4px;
  border-bottom: 3px solid var(--primary);
}
.breadcrumb-bar .container {
  display: flex;
  align-items: center;
  gap: 10px;
}
.breadcrumb-bar a {
  color: rgba(255, 255, 255, 0.78);
  transition: color var(--transition);
}
.breadcrumb-bar a:hover { color: var(--primary); }
.breadcrumb-bar .bc-sep {
  display: inline-flex;
  color: var(--primary);
}
.breadcrumb-bar .bc-current {
  color: var(--primary);
  font-weight: 700;
}

/* =========================================================
   MVV — MISSION / VISION / VALUES
   ========================================================= */
.mvv {
  background: var(--white);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.mvv-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.mvv-heading {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 14px;
}
.mvv-heading em {
  font-style: normal;
  color: var(--primary);
}
.mvv-accent {
  display: block;
  width: 56px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: 0 auto 16px;
}
.mvv-head > p {
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.7;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.mvv-card {
  position: relative;
  padding: 40px 32px 32px;
  border-radius: 18px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.mvv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.14);
}

.mvv-num {
  position: absolute;
  top: 22px;
  right: 28px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 60px;
  font-weight: 800;
  line-height: 1;
  opacity: 0.12;
  letter-spacing: -2px;
}
.mvv-ico {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all var(--transition);
}
.mvv-card:hover .mvv-ico { transform: rotate(-6deg) scale(1.06); }

.mvv-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}
.mvv-line {
  display: block;
  width: 36px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 14px;
  transition: width 0.3s ease;
}
.mvv-card:hover .mvv-line { width: 52px; }
.mvv-card p {
  font-size: 13.5px;
  line-height: 1.7;
}

/* Navy variant */
.mvv-card.mvv-navy {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
}
.mvv-card.mvv-navy .mvv-num { color: var(--primary); }
.mvv-card.mvv-navy .mvv-ico {
  background: rgba(255, 184, 0, 0.15);
  color: var(--primary);
}
.mvv-card.mvv-navy h3 { color: var(--white); }
.mvv-card.mvv-navy .mvv-line { background: var(--primary); }

/* Yellow variant */
.mvv-card.mvv-yellow {
  background: var(--primary);
  color: var(--navy);
}
.mvv-card.mvv-yellow .mvv-num { color: var(--navy); }
.mvv-card.mvv-yellow .mvv-ico {
  background: var(--navy);
  color: var(--primary);
}
.mvv-card.mvv-yellow h3 { color: var(--navy); }
.mvv-card.mvv-yellow .mvv-line { background: var(--navy); }

/* =========================================================
   OUR STRENGTHS
   ========================================================= */
.strengths {
  background: linear-gradient(180deg, #FBF8F1 0%, #FFF6E0 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.str-decor {
  position: absolute;
  top: 80px;
  right: 0;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(var(--primary) 1.4px, transparent 1.4px);
  background-size: 12px 12px;
  opacity: 0.3;
  pointer-events: none;
}
.strengths .container { position: relative; z-index: 2; }

.str-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.str-heading {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 14px;
}
.str-heading em {
  font-style: normal;
  color: var(--primary);
}
.str-accent {
  display: block;
  width: 56px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: 0 auto 16px;
}
.str-head > p {
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.7;
}

.str-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.str-card {
  background: var(--white);
  padding: 30px 26px;
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.05);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 4px solid transparent;
  position: relative;
}
.str-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.10);
  border-bottom-color: var(--primary);
}

.str-ico {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 184, 0, 0.14);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
}
.str-card:hover .str-ico {
  background: var(--primary);
  color: var(--navy);
  transform: rotate(-6deg);
}

.str-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.2px;
  margin-bottom: 10px;
  line-height: 1.3;
}
.str-card p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.65;
}

/* =========================================================
   PHILOSOPHY QUOTE
   ========================================================= */
.philosophy {
  background: var(--white);
  padding: 90px 0;
}
.phil-card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
  border-radius: 20px;
  padding: 60px 56px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(26, 37, 71, 0.22);
}
.phil-card::before,
.phil-card::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.phil-card::before { top: -80px; left: -60px; }
.phil-card::after { bottom: -80px; right: -60px; }

.phil-quote-mark {
  position: absolute;
  top: 20px;
  left: 36px;
  font-family: Georgia, serif;
  font-size: 120px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  opacity: 0.4;
}
.phil-card .eyebrow-chip {
  color: var(--primary);
  position: relative;
  z-index: 2;
}
.phil-card h3 {
  position: relative;
  z-index: 2;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin: 14px auto 18px;
  max-width: 640px;
}
.phil-card h3 em {
  font-style: normal;
  color: var(--primary);
}
.phil-card > p {
  position: relative;
  z-index: 2;
  font-size: 15px;
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 28px;
}
.phil-card strong { color: var(--primary); font-weight: 600; }

.phil-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  z-index: 2;
}
.sig-line {
  width: 44px;
  height: 2px;
  background: var(--primary);
  display: inline-block;
}
.sig-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--primary);
}

/* =========================================================
   COMMITMENT CTA
   ========================================================= */
.commit-cta {
  background: linear-gradient(180deg, #FBF8F1 0%, #FFF6E0 100%);
  padding: 80px 0 90px;
}
.cc-wrap {
  background: var(--navy);
  border-radius: 22px;
  padding: 52px 56px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(26, 37, 71, 0.2);
}
.cc-wrap::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cc-wrap::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
}

.cc-eyebrow { color: var(--primary) !important; }
.cc-left {
  position: relative;
  z-index: 2;
}
.cc-left h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.8px;
  line-height: 1.18;
  margin: 14px 0 16px;
}
.cc-left h3 em {
  font-style: normal;
  color: var(--primary);
}
.cc-left > p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  margin-bottom: 26px;
  max-width: 500px;
}
.cc-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

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

.cc-right { position: relative; z-index: 2; }
.cc-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
}
.cc-points li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--primary);
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  transition: all 0.3s ease;
}
.cc-points li:hover {
  background: rgba(255, 255, 255, 0.10);
  transform: translateX(4px);
}
.cc-check {
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* =========================================================
   GALLERY PAGE
   ========================================================= */
.gal-section {
  background: linear-gradient(180deg, #FBF8F1 0%, #FFF6E0 100%);
  padding: 80px 0 90px;
}
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.gal-item {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  background: var(--gray-100);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  cursor: zoom-in;
}
.gal-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gal-item:hover img { transform: scale(1.08); }
.gal-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 37, 71, 0.0) 50%, rgba(26, 37, 71, 0.55) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}
.gal-item:hover::after { opacity: 1; }
.gal-zoom {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.7) rotate(-30deg);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  box-shadow: 0 6px 18px rgba(255, 184, 0, 0.4);
}
.gal-item:hover .gal-zoom {
  opacity: 1;
  transform: scale(1) rotate(0);
}

/* Fancybox theme override — match brand */
.fancybox__toolbar { background: rgba(26, 37, 71, 0.85) !important; }
.fancybox__container { --fancybox-accent-color: #FFB800; }
.fancybox__nav .f-button { background: rgba(26, 37, 71, 0.6); }
.fancybox__nav .f-button:hover { background: var(--primary); color: var(--navy); }

@media (max-width: 1100px) {
  .gal-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}
@media (max-width: 700px) {
  .gal-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 480px) {
  .gal-grid { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-page {
  background: var(--white);
  padding: 80px 0 70px;
}
.ctp-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: start;
}

/* LEFT — Contact info */
.ctp-info h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  line-height: 1.2;
}
.ctp-sub {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 28px;
}
.ctp-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--gray-50);
  border-radius: 12px;
  border-left: 3px solid var(--primary);
  margin-bottom: 14px;
  transition: all var(--transition);
}
.ctp-card:hover {
  transform: translateX(4px);
  background: #FBF8F1;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}
.ctp-card-ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ctp-card h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--gray-500);
  margin-bottom: 6px;
}
.ctp-card p {
  font-size: 14px;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}
.ctp-card a { color: var(--navy); transition: color var(--transition); }
.ctp-card a:hover { color: var(--primary); }

.ctp-social-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  margin-top: 20px;
}
.ctp-social-strip span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--white);
}
.ctp-social {
  display: flex;
  gap: 10px;
  margin-left: auto;
}
.ctp-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.ctp-social a:hover {
  background: var(--primary);
  color: var(--navy);
  transform: translateY(-3px);
}

/* RIGHT — Form */
.ctp-form-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 38px 36px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--primary);
}
.ctp-form-head { margin-bottom: 26px; }
.ctp-form-head h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.4px;
  margin-bottom: 6px;
}
.ctp-form-head p {
  font-size: 13.5px;
  color: var(--gray-600);
  margin: 0;
}

.ctp-form { display: block; }
.ctp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.ctp-field { margin-bottom: 16px; }
.ctp-row .ctp-field { margin-bottom: 0; }
.ctp-field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.ctp-field label span {
  color: var(--primary);
  font-weight: 700;
}
.ctp-field input,
.ctp-field select,
.ctp-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--navy);
  background: var(--white);
  transition: all var(--transition);
}
.ctp-field input:focus,
.ctp-field select:focus,
.ctp-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.15);
}
.ctp-field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}
.ctp-field input::placeholder,
.ctp-field textarea::placeholder { color: var(--gray-400); }

.ctp-form-status {
  display: none;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  margin: 4px 0 14px;
}
.ctp-form-status.success {
  display: block;
  background: #E8F8EF;
  color: #14823F;
  border-left: 3px solid #14823F;
}
.ctp-form-status.error {
  display: block;
  background: #FDECEC;
  color: #C03333;
  border-left: 3px solid #C03333;
}

.ctp-submit {
  width: 100%;
  justify-content: center;
  padding: 15px 28px;
  font-size: 14px;
  margin-top: 4px;
}
.ctp-form-note {
  font-size: 11.5px;
  color: var(--gray-500);
  text-align: center;
  margin-top: 14px;
  margin-bottom: 0;
  line-height: 1.5;
}

/* MAP */
.ctp-map {
  width: 100%;
  display: block;
  background: var(--gray-100);
  line-height: 0;
}
.ctp-map iframe { display: block; width: 100%; }

/* Responsive */
@media (max-width: 1000px) {
  .ctp-grid { grid-template-columns: 1fr; gap: 36px; }
  .ctp-form-wrap { padding: 32px 26px; }
}
@media (max-width: 600px) {
  .ctp-row { grid-template-columns: 1fr; gap: 0; }
  .ctp-row .ctp-field { margin-bottom: 16px; }
  .ctp-form-wrap { padding: 26px 20px; }
  .ctp-info h3 { font-size: 22px; }
  .ctp-social-strip { flex-direction: column; align-items: flex-start; gap: 12px; }
  .ctp-social { margin-left: 0; }
  .ctp-map iframe { height: 280px; }
}

/* =========================================================
   PRODUCT DETAIL PAGES
   ========================================================= */

/* Intro: text + side card */
.pd-intro { background: var(--white); padding: 80px 0 60px; }
.pd-intro-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
}
.pd-intro-text .pd-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.pd-intro-text .pd-eyebrow i {
  width: 30px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}
.pd-intro-text h1 {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 22px;
}
.pd-intro-text h1 em {
  font-style: normal;
  color: var(--primary);
}
.pd-intro-text > p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 14px;
}
.pd-intro-text .pd-cta {
  display: inline-flex;
  margin-top: 18px;
}

.pd-intro-side {
  background: var(--navy);
  color: var(--white);
  border-radius: 18px;
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(26, 37, 71, 0.18);
}
.pd-intro-side::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,184,0,0.18) 0%, transparent 70%);
}
.pd-intro-side h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
  position: relative; z-index: 2;
}
.pd-intro-side > p {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative; z-index: 2;
}
.pd-intro-side ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative; z-index: 2;
}
.pd-intro-side li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
}
.pd-intro-side li svg {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}

/* What we offer — sub-type cards */
.pd-offers {
  background: linear-gradient(180deg, #FBF8F1 0%, #FFF6E0 100%);
  padding: 80px 0;
}
.pd-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.pd-section-head .eyebrow-chip { color: var(--primary); margin-bottom: 14px; }
.pd-section-head h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 14px;
}
.pd-section-head h2 em {
  font-style: normal;
  color: var(--primary);
}
.pd-section-head > p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}
.pd-section-head .pd-accent {
  display: block;
  width: 56px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: 0 auto 16px;
}

.pd-offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pd-offer-card {
  background: var(--white);
  padding: 30px 26px;
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.05);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 4px solid transparent;
}
.pd-offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.10);
  border-top-color: var(--primary);
}
.pd-offer-card .pdo-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.pd-offer-card .pdo-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,184,0,0.14);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.pd-offer-card:hover .pdo-ico {
  background: var(--primary);
  color: var(--navy);
}
.pd-offer-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.2px;
  line-height: 1.25;
}
.pd-offer-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 0;
}
.pd-offer-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: var(--gray-600);
  line-height: 1.5;
}
.pd-offer-card li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  margin-top: 7px;
}

/* Gallery grid */
.pd-gallery { background: var(--white); padding: 80px 0; }
.pd-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pdg-item {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 14px;
  overflow: hidden;
  background: var(--gray-100);
  box-shadow: 0 6px 22px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.pdg-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.14);
}
.pdg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.pdg-item:hover img { transform: scale(1.07); }
.pdg-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26,37,71,0.6) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}
.pdg-item:hover::after { opacity: 1; }

/* Process mini timeline */
.pd-process {
  background: linear-gradient(180deg, #FBF8F1 0%, #FFF6E0 100%);
  padding: 80px 0;
}
.pdp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}
.pdp-step {
  background: var(--white);
  padding: 30px 24px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 6px 22px rgba(0,0,0,0.05);
  transition: all 0.35s ease;
  position: relative;
}
.pdp-step:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(0,0,0,0.1); }
.pdp-step::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 28%;
  width: 14px; height: 14px;
  border-top: 3px solid var(--primary);
  border-right: 3px solid var(--primary);
  border-radius: 2px;
  transform: rotate(45deg);
  z-index: 4;
}
.pdp-step:last-child::after { display: none; }
.pdp-num {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 800;
  margin: 0 auto 16px;
  letter-spacing: 0.3px;
}
.pdp-step h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.2px;
  margin-bottom: 8px;
}
.pdp-step p {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.55;
}

/* Related categories */
.pd-related { background: var(--white); padding: 80px 0; }
.pd-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pdr-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  color: inherit;
  position: relative;
}
.pdr-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.12);
}
.pdr-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #F3EDE0;
}
.pdr-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.pdr-card:hover .pdr-img img { transform: scale(1.06); }
.pdr-body {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pdr-body h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin: 0;
}
.pdr-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,184,0,0.14);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}
.pdr-card:hover .pdr-arrow {
  background: var(--primary);
  color: var(--navy);
  transform: rotate(-45deg);
}

/* Solutions overview — uses prod-card style but with link */
.sol-link { display: block; color: inherit; }

/* Responsive — page-level sections */
@media (max-width: 1100px) {
  .mvv-grid { grid-template-columns: 1fr; gap: 22px; max-width: 600px; margin: 0 auto; }
  .str-grid { grid-template-columns: repeat(2, 1fr); }
  .cc-wrap { grid-template-columns: 1fr; gap: 36px; padding: 44px 36px; }
  .mvv-heading, .str-heading { font-size: 32px; }
  .pd-intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .pd-intro-text h1 { font-size: 34px; }
  .pd-offers-grid { grid-template-columns: repeat(2, 1fr); }
  .pd-gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .pdp-grid { grid-template-columns: repeat(2, 1fr); }
  .pdp-step:nth-child(2n)::after { display: none; }
  .pd-related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .str-grid { grid-template-columns: 1fr; }
  .phil-card { padding: 50px 28px 40px; }
  .phil-card h3 { font-size: 24px; }
  .phil-quote-mark { font-size: 80px; top: 10px; left: 20px; }
  .cc-wrap { padding: 36px 24px; }
  .cc-left h3 { font-size: 26px; }
  .mvv-heading, .str-heading { font-size: 26px; }
  .breadcrumb-bar { padding: 12px 0; font-size: 12px; }
  .pd-intro-text h1 { font-size: 26px; }
  .pd-section-head h2 { font-size: 26px; }
  .pd-offers-grid { grid-template-columns: 1fr; }
  .pd-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .pdp-grid { grid-template-columns: 1fr; }
  .pdp-step::after { display: none !important; }
  .pd-related-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}
.fade-up.delay-1 { animation-delay: 0.15s; }
.fade-up.delay-2 { animation-delay: 0.3s; }
.fade-up.delay-3 { animation-delay: 0.45s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 99;
}

/* =========================================================
   WHATSAPP FLOATING BUTTON
   ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 100;
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  background: #1DA851;
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
  color: var(--white);
}
.whatsapp-float svg {
  position: relative;
  z-index: 2;
}

/* Pulse ring */
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: 0;
  animation: wa-pulse 1.8s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Tooltip */
.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--navy);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--navy);
  border-radius: 2px;
}
.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 600px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .scroll-top {
    bottom: 84px;
    right: 23px;
    width: 42px;
    height: 42px;
  }
  .wa-tooltip { display: none; }
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-4px);
}

/* =========================================================
   GLOBAL RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .nav-menu { gap: 22px; }
  .nav-menu a { font-size: 13px; }
}

@media (max-width: 900px) {
  .topbar { display: none; }
  .nav-menu {
    position: fixed;
    top: 62px;
    right: 0;
    height: calc(100vh - 62px);
    width: 300px;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 6px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
  }
  .nav-menu.open { transform: translateX(0); }
  .menu-toggle { display: flex; }
  .nav-menu > a,
  .nav-menu .has-dropdown { width: 100%; }
  .nav-menu > a {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
  }
  .nav-menu .dropdown-trigger {
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid var(--gray-100);
  }
  /* Mobile dropdown — inline accordion */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border-top: none;
    background: transparent;
    padding: 4px 0 8px;
    min-width: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .dropdown-menu::before { display: none; }
  .has-dropdown.open .dropdown-menu { max-height: 500px; }
  .has-dropdown:hover .dropdown-menu { transform: none; }
  .dropdown-menu a {
    padding: 9px 14px !important;
    font-size: 11.5px;
    border-left: 2px solid var(--gray-200);
  }
  .dropdown-menu a:hover {
    padding-left: 20px !important;
    background: transparent;
  }
  .nav-inner .btn-primary { display: none; }
  .feature-inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 28px;
  }
  section { padding: 70px 0; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .feature-inner { grid-template-columns: 1fr; }
}
