/*
Theme Name: IRS - Innovative Retail Solution
Theme URI: https://irsprints.in
Author: Innovative Retail Solution
Author URI: https://irsprints.in
Description: A premium B2B landing page theme for Innovative Retail Solution — India's trusted design-build execution partner for physical branding, retail displays, large format printing, and PAN-India signage execution.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: irs-theme
Tags: one-page, custom-logo, custom-colors, featured-images, theme-options
*/


/* IRS Design System & Landing Page Styles */
/* ───────── GOOGLE FONTS ───────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Manrope:wght@600;700;800&display=swap');

/* ───────── DESIGN TOKENS ───────── */
:root {
  /* Palette */
  --primary: #0F172A;
  --accent: #0EA5E9;
  --accent-sec: #2563EB;
  --logo-blue: #2563EB;
  --logo-red: #E63946;
  --neutral: #F8FAFC;
  --white: #FFFFFF;
  --text-gray: #64748B;
  --text-dark: #1E293B;
  --border: #E2E8F0;

  /* Typography */
  --heading-font: 'Manrope', sans-serif;
  --body-font: 'Inter', sans-serif;

  /* Spacing */
  --section-pad-desktop: 100px;
  --section-pad-mobile: 60px;
  --container-max: 1200px;

  /* Motion & Soft Styling */
  --radius: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --shadow: 0 10px 40px rgba(15, 23, 42, 0.03);
  --shadow-hover: 0 20px 60px rgba(15, 23, 42, 0.06);
  --shadow-soft: 0 30px 80px rgba(15, 23, 42, 0.04);
  --ease-standard: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: all 0.6s var(--ease-standard);
  --dur: 0.7s;
  --ease: cubic-bezier(.25, .46, .45, .94);
}


/* ───────── RESET / BASE ───────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--neutral);
}

html::-webkit-scrollbar {
  width: 8px;
}

html::-webkit-scrollbar-track {
  background: var(--neutral);
}

html::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb:hover {
  background: var(--accent-sec);
}

body {
  font-family: var(--body-font);
  color: var(--text-gray);
  background-color: var(--neutral);
  line-height: 1.7;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  color: var(--primary);
  line-height: 1.2;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}


/* ───────── UTILITIES ───────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.mx-auto {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-padding {
  padding: var(--section-pad-desktop) 0;
}

.section-label {
  display: inline-block;
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.section-title span {
  color: var(--logo-red);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-gray);
  max-width: 600px;
  margin-bottom: 3rem;
}


/* ───────── TAG PILL ───────── */
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background-color: rgba(14, 165, 233, 0.1);
  color: var(--accent);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.tag-pill .dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
}


/* ───────── BUTTONS ───────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  gap: 8px;
  line-height: 1;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--accent-sec);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--white);
  color: var(--primary);
  font-weight: 700;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-text {
  color: var(--accent);
  font-weight: 600;
  padding: 0;
  margin-top: 1rem;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}

.btn-text:hover {
  color: var(--accent-sec);
  transform: translateX(5px);
}

.btn-text-arrow {
  font-size: 0.8rem;
}


/* ───────── ANIMATIONS ───────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-standard), transform 0.8s var(--ease-standard);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 {
  transition-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
}


/* =============================================================
   PRE-HEADER TICKER BAR
   ============================================================= */
.pre-header {
  background: var(--primary);
  overflow: hidden;
  white-space: nowrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  height: 34px;
}

.pre-header-ticker {
  display: inline-flex;
  gap: 60px;
  animation: preHeaderScroll 30s linear infinite;
  padding: 8px 0;
}

.pre-header-ticker span {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.3px;
  flex-shrink: 0;
}

.pre-header-ticker span i {
  color: var(--logo-red);
  margin-right: 6px;
}

@keyframes preHeaderScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


/* =============================================================
   HEADER / NAVIGATION
   ============================================================= */
.site-header {
  position: fixed;
  top: 34px;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #ffffff;
  transition: var(--transition-smooth);
  padding: 0;
}

.site-header.glass-header {
  background-color: #ffffff;
}

.header-inner {
  display: flex;
  align-items: center;
  padding: 12px 24px;
  gap: 3rem;
  width: 100%;
}

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, #1E3A5F 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.logo-icon::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, transparent 40%, rgba(14, 165, 233, 0.15) 50%, transparent 60%);
  transition: transform 0.6s ease;
  transform: translateX(-100%);
}

.logo-wrap:hover .logo-icon::after {
  transform: translateX(100%);
}

.logo-wrap:hover .logo-icon {
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.3);
}

.logo-icon-letter {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.logo-icon-accent {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--heading-font);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -0.3px;
}

.logo-highlight {
  color: var(--logo-red);
  margin: 0 2px;
  position: relative;
}

.logo-sub {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-gray);
  margin-top: 3px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
}

.logo-sub-diamond {
  font-size: 0.3rem;
  color: var(--logo-red);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 2.4rem;
}

.nav-item-link {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.88rem;
  padding: 8px 0;
  position: relative;
  letter-spacing: 0.2px;
}

.nav-item-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease-standard);
}

.nav-item-link:hover::after,
.nav-item-link.active::after {
  width: 100%;
}

.nav-item-link:hover {
  color: var(--accent);
}

.nav-item-link.active {
  color: var(--accent);
}

/* Nav separator pipe */
.nav-separator {
  color: #d1d5db;
  font-size: 1rem;
  font-weight: 300;
  user-select: none;
  margin: 0 0.5rem;
}

/* Nav shortcuts (Courier, Shop) */
.nav-shortcut i {
  margin-right: 4px;
  font-size: 0.82rem;
}

/* Dropdown */
.nav-dropdown {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.88rem;
  position: relative;
  padding: 8px 0;
  cursor: pointer;
  letter-spacing: 0.2px;
}

.nav-dropdown:hover {
  color: var(--accent);
}

.nav-dd-icon {
  font-size: 0.75rem;
  margin-left: 4px;
  opacity: 0.6;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  padding: 8px 0;
  z-index: 200;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-gray);
  font-size: 0.85rem;
  font-weight: 500;
}

.dropdown-menu a:hover {
  background-color: var(--neutral);
  color: var(--primary);
}

/* Nav External */
.nav-external {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  padding-left: 1.5rem;
  margin-left: 0.5rem;
}

.nav-external a {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-gray);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-external a:hover {
  color: var(--accent);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header-cta-btn {
  padding: 9px 24px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 6px;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.35s var(--ease);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  flex-direction: column;
  gap: 15px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-weight: 600;
  color: var(--text-dark);
}

.mobile-divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin: 10px 0;
}

.mobile-external {
  color: var(--text-gray) !important;
}

.mobile-cta {
  margin-top: 10px;
  text-align: center;
}


/* =============================================================
   1. HERO SECTION (Curved Wave Split)
   ============================================================= */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: var(--white);
  overflow: hidden;
  display: flex;
}

/* ── Angled Divider Strip ── */
.hero-divider {
  position: absolute;
  top: 0;
  left: 47%;
  width: 60px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  overflow: visible;
}

.hero-divider-line {
  position: absolute;
  top: -5%;
  left: 50%;
  width: 3px;
  height: 110%;
  background: linear-gradient(180deg, transparent, var(--logo-blue), transparent);
  transform: translateX(-50%) rotate(2deg);
  opacity: 0.4;
}

/* ── Left — Text Side ── */
.hero-text-side {
  position: relative;
  z-index: 4;
  width: 48%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px 0;
}

.hero-text-inner {
  max-width: 580px;
  margin: 0 auto;
  padding: 0 40px 0 60px;
}

.hero h1 {
  color: var(--primary);
  font-size: 3.2rem;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  animation: heroSlideIn 0.8s ease-out both;
}

.hero h1 span {
  color: var(--logo-blue);
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 2.5rem;
  max-width: 460px;
  line-height: 1.7;
  animation: heroSlideIn 0.8s ease-out 0.15s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: heroSlideIn 0.8s ease-out 0.3s both;
}

.hero-outline-btn {
  border-color: var(--primary) !important;
  color: var(--primary) !important;
}

.hero-outline-btn:hover {
  background: var(--primary) !important;
  color: var(--white) !important;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  animation: heroSlideIn 0.8s ease-out 0.45s both;
}

@keyframes heroSlideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.stat-item h3 {
  color: var(--primary);
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}

.stat-item p {
  color: var(--logo-blue);
  font-size: 0.75rem;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Right — Image Grid Side ── */
.hero-image-side {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 3px;
  width: 100%;
  height: 100%;
  padding: 0;
}

.hero-img-cell {
  position: relative;
  overflow: hidden;
}

.hero-img-cell.cell-wide {
  grid-column: span 2;
}

.hero-img-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-img-cell .cycle-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: imgCycle 8s ease-in-out infinite;
}

/* Stagger the cycling so cells don't all flip at once */
.hero-img-cell:nth-child(1) .cycle-img {
  animation-delay: 0s;
}

.hero-img-cell:nth-child(2) .cycle-img {
  animation-delay: 1.5s;
}

.hero-img-cell:nth-child(3) .cycle-img {
  animation-delay: 3s;
}

.hero-img-cell:nth-child(4) .cycle-img {
  animation-delay: 4.5s;
}

.hero-img-cell:nth-child(5) .cycle-img {
  animation-delay: 6s;
}

.hero-img-cell:nth-child(6) .cycle-img {
  animation-delay: 7s;
}

@keyframes imgCycle {

  0%,
  40% {
    opacity: 0;
  }

  50%,
  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* ── Hero Badge (floating) ── */
.hero-badge {
  position: absolute;
  bottom: 40px;
  left: -10px;
  background: var(--white);
  padding: 18px 24px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-dark);
  z-index: 5;
  animation: badgeFloat 4s ease-in-out infinite;
}

@keyframes badgeFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.hero-badge-icon {
  width: 44px;
  height: 44px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--logo-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.hero-badge-text h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.hero-badge-text p {
  font-size: 0.78rem;
  color: var(--text-gray);
  margin: 0;
}


/* =============================================================
   2. VISUAL SHOWCASE — CAROUSEL
   ============================================================= */
.showcase {
  background-color: var(--white);
  padding: 80px 0 60px 0;
  overflow: hidden;
}

.showcase-slider {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
  border: 1px solid rgba(14, 165, 233, 0.1);
}

.showcase-track {
  display: flex;
  transition: transform 0.6s var(--ease-standard);
}

.showcase-slide {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
  min-height: 320px;
  position: relative;
  isolation: isolate;
}

.showcase-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.16) 0%, rgba(15, 23, 42, 0.3) 100%);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

.showcase-slide[style*="background-image"]::before {
  opacity: 1;
}

.slide-icon-wrap {
  display: none;
}

.slide-icon-wrap::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed rgba(14, 165, 233, 0.2);
  animation: spinSlow 20s linear infinite;
}

@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}

.slide-fa-icon {
  font-size: 2.2rem;
  color: var(--accent);
}

.slide-caption {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 18px 26px;
  border-radius: 14px;
  border: 1px solid rgba(14, 165, 233, 0.18);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.showcase-slide[style*="background-image"] .slide-caption {
  background: rgba(15, 23, 42, 0.52);
  border-color: rgba(255, 255, 255, 0.2);
}

.slide-caption h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.slide-caption p {
  font-size: 1.05rem;
  color: var(--text-gray);
  max-width: 400px;
  margin: 0 auto;
}

.showcase-slide[style*="background-image"] .slide-caption h3 {
  color: var(--white);
}

.showcase-slide[style*="background-image"] .slide-caption p {
  color: rgba(255, 255, 255, 0.9);
}

/* Carousel Controls */
.showcase-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  pointer-events: none;
}

.showcase-controls button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  color: var(--primary);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.showcase-controls button:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: scale(1.1);
}

/* Carousel Dots */
.showcase-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.showcase-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.showcase-dots span.active {
  background: var(--accent);
  width: 32px;
  border-radius: 5px;
}

.showcase-dots span:hover {
  background: var(--accent);
  opacity: 0.7;
}

/* Section Divider */
.section-divider {
  padding: 0;
  line-height: 0;
  overflow: hidden;
}

.section-divider svg {
  width: 100%;
  height: 12px;
  display: block;
}


/* =============================================================
   3. SERVICES OVERVIEW GRID (Image Cards)
   ============================================================= */
.services {
  background-color: var(--neutral);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.service-card.has-image {
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.03);
  padding: 0;
}

.service-card.has-image:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.service-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-standard);
}

.service-card.has-image:hover .service-card-img img {
  transform: scale(1.08);
}

.service-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.service-card-body {
  padding: 28px 28px 24px 28px;
}

.service-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.service-card-body p {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-bottom: 1rem;
}


/* =============================================================
   4. INFRASTRUCTURE & CAPABILITY (Split Layout)
   ============================================================= */
.infrastructure {
  background-color: var(--white);
}

.infra-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.infra-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.infra-stat-card {
  background-color: var(--neutral);
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid var(--accent);
  transition: var(--transition-smooth);
}

.infra-stat-card:hover {
  transform: translateX(5px);
  background-color: var(--white);
  box-shadow: var(--shadow);
}

.infra-stat-card h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--logo-blue);
}

.infra-stat-card p {
  font-size: 0.9rem;
  margin: 0;
}

/* Infrastructure Video Panel */
.infra-video-panel {
  border-radius: 16px;
  overflow: hidden;
  background: var(--neutral);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.video-caption i {
  color: var(--accent);
  font-size: 1.2rem;
}


/* =============================================================
   5. COMPANIES THAT TRUST US
   ============================================================= */
.trust {
  background: var(--neutral);
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}

.logo-ticker-wrapper {
  overflow: hidden;
  margin-top: 48px;
  padding: 20px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  pointer-events: none;
}

.logo-ticker {
  display: flex;
  gap: 48px;
  animation: tickerScroll 12s linear infinite;
  width: max-content;
  pointer-events: none;
}

.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  height: 150px;
  padding: 24px 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  user-select: none;
  pointer-events: none;
}

.logo-item img {
  max-height: 120px;
  max-width: 250px;
  object-fit: contain;
  filter: none;
  -webkit-user-drag: none;
}

.logo-item-text {
  font-family: var(--heading-font);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}



/* =============================================================
   6. EXECUTION FLOW — HOW WE WORK
   ============================================================= */
.process {
  background-color: var(--neutral);
}

.process-steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin-top: 3rem;
  position: relative;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 16px;
  padding: 0 22px 28px;
  transition: all 0.4s ease;
  flex: 1;
  max-width: 260px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.step-card::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--logo-blue), var(--accent));
  margin: 0 -22px 28px;
  transition: all 0.4s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: var(--logo-blue);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
}

.step-card:hover::before {
  background: linear-gradient(90deg, var(--logo-red), var(--logo-blue));
  height: 5px;
}

.step-card:hover .step-icon-circle {
  background: var(--logo-blue);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.step-card:hover .step-icon-circle i {
  animation: stepIconBounce 0.5s ease;
}

@keyframes stepIconBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.step-icon-circle {
  width: 60px;
  height: 60px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--logo-blue);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 1rem;
  transition: all 0.4s ease;
}

.step-number {
  font-family: var(--heading-font);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--logo-blue);
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  opacity: 0.5;
}

.step-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-weight: 700;
}

.step-card p {
  font-size: 0.82rem;
  max-width: 200px;
  margin: 0 auto;
  line-height: 1.65;
  color: var(--text-gray);
}

/* Connector arrows between steps */
.step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  flex-shrink: 0;
  padding-top: 45px;
}

.connector-line {
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.15), var(--logo-blue));
  border-radius: 1px;
}

.connector-arrow {
  color: var(--logo-blue);
  font-size: 0.65rem;
  margin-top: 4px;
  animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: translateX(0);
  }

  50% {
    opacity: 1;
    transform: translateX(3px);
  }
}


/* =============================================================
   7. FINAL CTA SECTION (Form + Map)
   ============================================================= */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #0C1E3C 50%, #0F172A 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, transparent 60%);
  z-index: 0;
}

.cta-decor {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.cta-decor-1 {
  width: 300px;
  height: 300px;
  top: -80px;
  right: -80px;
  border: 1px solid rgba(14, 165, 233, 0.15);
  animation: ctaFloatA 8s ease-in-out infinite;
}

.cta-decor-2 {
  width: 200px;
  height: 200px;
  bottom: -60px;
  left: -40px;
  background: rgba(14, 165, 233, 0.06);
  animation: ctaFloatB 10s ease-in-out infinite;
}

@keyframes ctaFloatA {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(-20px, 15px) rotate(5deg);
  }
}

@keyframes ctaFloatB {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(15px, -20px);
  }
}

.cta-main-title {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.cta-main-title span {
  color: var(--accent);
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-submit-btn {
  width: 100%;
  font-size: 1rem;
  padding: 16px;
  letter-spacing: 0.5px;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

/* Form Card */
.cta-form-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 40px;
}

.cta-form-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-form-card h3 i {
  color: var(--accent);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--body-font);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: var(--primary);
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(14, 165, 233, 0.08);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Form Submit */
.cta-form .btn-primary {
  margin-top: 8px;
  padding: 16px;
  font-size: 1rem;
}

/* Info Panel */
.cta-info-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cta-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--logo-blue);
  border-radius: 12px;
  padding: 22px;
  transition: all 0.4s ease;
}

.cta-info-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(6px) scale(1.02);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
  border-left-color: var(--logo-red);
}

.cta-info-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(14, 165, 233, 0.15));
  color: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.4s ease;
}

.cta-info-card:hover .cta-info-icon {
  background: var(--logo-blue);
  color: var(--white);
  transform: scale(1.1);
}

.cta-info-card h4 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.cta-info-card a,
.cta-info-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

.cta-info-card a:hover {
  color: var(--accent);
}

.cta-map {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}


/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
  background-color: #0B1120;
  color: rgba(255, 255, 255, 0.6);
  padding: 70px 48px 30px 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  color: var(--white);
  font-size: 1.5rem;
  font-family: var(--heading-font);
  font-weight: 800;
  margin-bottom: 1rem;
  display: block;
}

.footer-logo span {
  color: var(--logo-red);
}

.footer-desc {
  font-size: 0.88rem;
  max-width: 320px;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

/* Footer Social Icons */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

/* Footer Newsletter */
.footer-newsletter-desc {
  font-size: 0.85rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-newsletter {
  display: flex;
  gap: 0;
}

.footer-newsletter input {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-right: none;
  border-radius: 8px 0 0 8px;
  padding: 10px 14px;
  color: var(--white);
  font-size: 0.85rem;
  font-family: var(--body-font);
  outline: none;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter input:focus {
  border-color: var(--accent);
}

.footer-newsletter button {
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 0 8px 8px 0;
  padding: 10px 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 0.9rem;
}

.footer-newsletter button:hover {
  background: var(--accent-sec);
}

.site-footer h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
}

.site-footer ul li {
  margin-bottom: 0.75rem;
}

.site-footer ul a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.site-footer ul a:hover {
  color: var(--accent);
}

.site-footer ul a i {
  margin-right: 6px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.hours-val {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
  color: var(--accent);
}

/* =============================================================
   INNER PAGES (ABOUT, SERVICES, COURIER, INFRA, PROCESS, CONTACT)
   ============================================================= */
.inner-page {
  padding-top: 130px;
  background: var(--white);
}

.inner-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 52px;
  background:
    radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.15), transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(37, 99, 235, 0.12), transparent 36%),
    linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
  border-bottom: 1px solid rgba(14, 165, 233, 0.12);
}

.inner-hero .section-subtitle {
  max-width: 760px;
  margin-bottom: 0;
}

.inner-hero-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.inner-hero-tags span {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(14, 165, 233, 0.2);
  background: rgba(14, 165, 233, 0.08);
  color: var(--logo-blue);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.inner-page-section {
  background: var(--white);
}

.inner-alt-bg {
  background: var(--neutral);
}

.inner-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.inner-two-col p+p {
  margin-top: 1rem;
}

.inner-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 1.75rem;
}

.inner-stat-card {
  border: 1px solid rgba(14, 165, 233, 0.18);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 12px;
  padding: 16px 18px;
}

.inner-stat-card h3 {
  font-size: 1.4rem;
  line-height: 1.1;
  color: var(--primary);
  margin-bottom: 4px;
}

.inner-stat-card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-gray);
}

.inner-feature-list {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 22px;
  box-shadow: var(--shadow);
}

.inner-feature-list h3 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.inner-feature-list ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.inner-feature-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-dark);
  font-size: 0.93rem;
  line-height: 1.6;
}

.inner-feature-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--accent);
  font-size: 0.84rem;
}

.inner-card-grid {
  display: grid;
  gap: 20px;
  margin-top: 2.25rem;
}

.inner-card-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.inner-card-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.inner-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  box-shadow: var(--shadow);
  height: 100%;
}

.inner-info-card i {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 165, 233, 0.12);
  color: var(--logo-blue);
  font-size: 1rem;
  margin-bottom: 12px;
}

.inner-info-card h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.inner-info-card p {
  margin: 0;
  color: var(--text-gray);
  font-size: 0.92rem;
  line-height: 1.65;
}

.inner-list-plain {
  margin: 0;
  padding-left: 18px;
}

.inner-list-plain li {
  color: var(--text-gray);
  margin-bottom: 8px;
  font-size: 0.92rem;
}

.inner-check-list {
  margin-top: 1rem;
  display: grid;
  gap: 8px;
}

.inner-check-list li {
  color: var(--text-dark);
  font-size: 0.95rem;
}

.inner-belief-card {
  border-radius: 16px;
  border: 1px solid rgba(14, 165, 233, 0.2);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(37, 99, 235, 0.08));
  padding: 30px;
}

.inner-belief-card .section-title {
  margin-bottom: 0.8rem;
}

.inner-belief-card p {
  margin: 0;
  color: var(--text-dark);
}

.inner-career-note {
  margin-top: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--logo-blue);
  border-radius: 12px;
  padding: 18px 20px;
}

.inner-career-note h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.inner-career-note p {
  margin: 0;
  color: var(--text-gray);
  font-size: 0.92rem;
}

.inner-channel-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.inner-channel-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  padding: 16px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow);
}

.inner-channel-card i {
  color: var(--logo-blue);
}

.inner-process-grid {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.inner-process-card {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 18px;
  box-shadow: var(--shadow);
}

.inner-process-card span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--logo-blue);
  letter-spacing: 1px;
}

.inner-process-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.inner-process-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-gray);
}

.inner-timeline {
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 16px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.inner-timeline-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.inner-timeline-item {
  background: var(--neutral);
  border-radius: 10px;
  padding: 14px;
}

.inner-timeline-item span {
  color: var(--logo-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.inner-timeline-item p {
  margin: 6px 0 0;
  color: var(--text-dark);
  font-size: 0.88rem;
}

.inner-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.inner-contact-grid .inner-info-card a {
  color: var(--logo-blue);
}

.glass-effect {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.inner-timeline-v2 {
  position: relative;
  padding-left: 30px;
}

.inner-timeline-v2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.inner-timeline-step {
  position: relative;
  padding-bottom: 24px;
}

.inner-timeline-step::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--logo-blue);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.2);
}

.inner-timeline-step h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.inner-timeline-step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-gray);
}

.text-gradient {
  background: linear-gradient(135deg, var(--logo-blue), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* =============================================================
   BOOTSTRAP-FREE GRID & UTILITY CLASSES
   ============================================================= */

/* ── Row / Column Grid System ── */
.row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.row.g-4 {
  gap: 1.5rem;
}

.row.g-5 {
  gap: 2rem;
}

.row.align-items-center {
  align-items: center;
}

.col-md-1 {
  grid-column: span 1;
}

.col-md-4 {
  grid-column: span 4;
}

.col-md-6 {
  grid-column: span 6;
}

.col-md-11 {
  grid-column: span 11;
}

.col-lg-6 {
  grid-column: span 6;
}

@media (max-width: 768px) {

  .col-md-1,
  .col-md-4,
  .col-md-6,
  .col-md-11,
  .col-lg-6 {
    grid-column: span 12;
  }
}

/* ── Spacing Utilities ── */
.p-0 {
  padding: 0 !important;
}

.p-5 {
  padding: 2.5rem !important;
}

.py-3 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 2.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 2.5rem;
}

.me-2 {
  margin-right: 0.5rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ── Display & Flex Utilities ── */
.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.text-center {
  text-align: center;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

/* ── Custom Text Colors for Contrast ── */
.text-white {
  color: var(--white) !important;
}

.text-dark {
  color: var(--text-dark) !important;
}

.text-primary {
  color: var(--primary) !important;
}

/* ── Enhanced Card Hover ── */
.inner-info-card {
  transition: transform 0.3s var(--ease-standard), box-shadow 0.3s var(--ease-standard);
}

.inner-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(14, 165, 233, 0.12);
}

/* ── Inner Page CTA Section ── */
.inner-page-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #1a3a6b 100%);
  padding: var(--section-pad-desktop) 0;
}

.inner-page-cta .container {
  text-align: center;
}

.inner-page-cta h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.inner-page-cta h2 span {
  color: var(--accent);
}

.inner-page-cta p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

.inner-page-cta .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Location Card (flex layout) ── */
.inner-location-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 24px 28px;
}

.inner-location-card i {
  font-size: 2rem;
  color: var(--logo-red);
  margin: 0;
  background: none;
  width: auto;
  height: auto;
}

.inner-location-card h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.inner-location-card p {
  margin: 0;
}

/* ── Map Wrapper ── */
.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  min-height: 400px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  display: block;
}

/* ── How IRS Works Flow ── */
.irs-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.irs-flow-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease-standard), box-shadow 0.3s var(--ease-standard);
}

.irs-flow-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(14, 165, 233, 0.12);
}

.irs-flow-card .flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-sec));
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.irs-flow-card i {
  font-size: 1.8rem;
  color: var(--logo-blue);
  margin-bottom: 10px;
  display: block;
}

.irs-flow-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.irs-flow-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-gray);
}

@media (max-width: 768px) {
  .irs-flow-grid {
    grid-template-columns: 1fr;
  }
}


/* =============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================= */
@media (max-width: 1024px) {

  .pre-header {
    display: none;
  }

  .site-header {
    top: 0;
  }

  .nav-links,
  .nav-external,
  .header-cta-btn,
  .header-toplinks {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero stacked */
  .hero {
    flex-direction: column;
    min-height: auto;
  }

  .hero-text-side {
    width: 100%;
    min-height: auto;
    padding: 120px 20px 50px 20px;
    text-align: center;
  }

  .hero-text-inner {
    max-width: 600px;
    padding: 0;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-divider {
    display: none;
  }

  .hero-badge {
    display: none;
  }

  .hero-image-side {
    position: relative;
    width: 100%;
    height: 360px;
  }

  .hero-img-grid {
    grid-template-rows: 1fr 1fr;
  }

  .hero-img-cell.cell-wide {
    grid-column: span 2;
  }

  .infra-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .infra-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Process steps: wrap to grid, hide connectors */
  .process-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .step-connector {
    display: none;
  }

  .step-card {
    max-width: none;
  }

  .cta-grid {
    grid-template-columns: 1fr;
  }

  .cta-main-title {
    font-size: 2.2rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .inner-page {
    padding-top: 95px;
  }

  .inner-two-col,
  .inner-card-grid-3,
  .inner-channel-grid,
  .inner-process-grid,
  .inner-timeline-grid,
  .inner-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* =============================================================
   SERVICES PAGE — CUSTOM COMPONENTS
   ============================================================= */

/* Services Hero extra stats (4 columns) */
.services-hero .inner-stats-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* ── Feature Row (Image + Content side by side) ── */
.services-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2rem;
}

.services-feature-row.reverse {
  direction: rtl;
}

.services-feature-row.reverse>* {
  direction: ltr;
}

.services-feature-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  background: linear-gradient(135deg, var(--primary), #1E3A5F);
  box-shadow: var(--shadow-hover);
}

.srv-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  display: block;
  transition: transform 0.5s var(--ease-standard);
}

.services-feature-img:hover .srv-img {
  transform: scale(1.04);
}

.srv-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.85) 0%, transparent 100%);
  padding: 20px 20px 16px;
}

.srv-img-overlay span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.services-feature-content {
  padding: 0 10px;
}

/* ── mt-section spacing ── */
.mt-section {
  margin-top: 4rem;
}

/* ── Service Tags ── */
.srv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.srv-tag {
  display: inline-block;
  background: rgba(14, 165, 233, 0.1);
  color: var(--accent);
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ── DTDC Partner Banner ── */
.srv-dtdc-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #1a3a6b 100%);
  border-radius: 16px;
  padding: 2.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-hover);
  margin-bottom: 3rem;
}

.srv-dtdc-content {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex: 1;
}

.srv-dtdc-content>i {
  font-size: 2.5rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}

.srv-dtdc-content h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.srv-dtdc-content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ── Services CTA Block ── */
.srv-cta-block {
  background: linear-gradient(135deg, var(--logo-red) 0%, #b91c1c 100%);
  border-radius: 20px;
  padding: 3.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 20px 50px rgba(230, 57, 70, 0.2);
}

.srv-cta-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ── Glass Film Cards ── */
.srv-glass-card {
  border-top: 3px solid var(--accent);
}

/* ── Advantage Cards ── */
.inner-card-grid-2 .srv-adv-card {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  text-align: left;
}

.srv-adv-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--accent), var(--accent-sec));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.srv-adv-icon i {
  font-size: 1.3rem;
  color: #fff;
  margin: 0 !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
}

/* ── Highlight Strip ── */
.srv-highlight-strip {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--logo-red);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--shadow);
}

.srv-highlight-strip>i {
  font-size: 2rem;
  color: var(--logo-red);
  flex-shrink: 0;
}

.srv-highlight-strip h4 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.srv-highlight-strip p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin: 0;
}

/* ── Service Note (small text under cards) ── */
.srv-note {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
}

/* ── Inner card grid 2-col ── */
.inner-card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* =============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================= */
@media (max-width: 1024px) {
  .services-hero .inner-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-feature-row {
    grid-template-columns: 1fr;
  }

  .services-feature-row.reverse {
    direction: ltr;
  }

  .srv-dtdc-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .srv-cta-block {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .inner-card-grid-2 {
    grid-template-columns: 1fr;
  }
}


/* =============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================= */
@media (max-width: 768px) {
  :root {
    --section-pad-desktop: var(--section-pad-mobile);
  }

  .hero {
    padding: 0;
  }

  .hero-text-side {
    padding: 100px 16px 40px 16px;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-image-side {
    height: 280px;
  }

  .hero-img-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .hero-img-cell.cell-wide {
    grid-column: span 2;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .infra-stats-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .step-connector {
    display: none;
  }

  .step-card {
    max-width: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .inner-hero {
    padding: 52px 0 34px;
  }

  .inner-stats-grid,
  .inner-two-col,
  .inner-card-grid-2,
  .inner-card-grid-3,
  .inner-channel-grid,
  .inner-process-grid,
  .inner-timeline-grid,
  .inner-contact-grid {
    grid-template-columns: 1fr;
  }

  .inner-belief-card,
  .inner-timeline {
    padding: 22px;
  }
}


/* =============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================= */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .logo-main {
    font-size: 0.95rem;
  }

  .cta-form-card {
    padding: 24px;
  }
}


/* =============================================================
   FAQ ACCORDION
   ============================================================= */
.faq-section {
  background: var(--bg-gray);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s var(--ease-standard);
}

.faq-item:hover {
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.faq-question i {
  transition: transform 0.3s var(--ease-standard);
  color: var(--logo-blue);
  font-size: 0.9rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-standard), padding 0.3s var(--ease-standard);
  padding: 0 24px;
  color: var(--text-gray);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px;
}


/* =============================================================
   DIRECTOR CARD
   ============================================================= */
.director-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 32px;
  border-radius: 20px;
  max-width: 420px;
  margin: 0 auto;
}

.director-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.18);
  margin-bottom: 20px;
}

.director-card h3 {
  margin: 0 0 4px;
  font-size: 1.3rem;
}

.director-card .director-role {
  color: var(--logo-blue);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.director-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
}


/* =============================================================
   HIRING NOTICE
   ============================================================= */
.hiring-notice {
  background: linear-gradient(135deg, #ecfdf5 0%, #f0f9ff 100%);
  border: 2px solid #10b981;
  border-radius: 16px;
  padding: 28px 32px;
}

.hiring-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #10b981;
  color: #fff;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

.hiring-notice h3 {
  margin-bottom: 8px;
}

.hiring-notice table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

.hiring-notice th,
.hiring-notice td {
  text-align: left;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
}

.hiring-notice th {
  background: rgba(14, 165, 233, 0.06);
  font-weight: 700;
  font-size: 0.9rem;
}

.hiring-notice td {
  font-size: 0.92rem;
}


/* =============================================================
   POLICY / LEGAL PAGES
   ============================================================= */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 1.3rem;
  margin: 2rem 0 0.75rem;
  color: var(--text-dark);
}

.policy-content p,
.policy-content li {
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 0.95rem;
}

.policy-content ul {
  padding-left: 1.5rem;
}

.policy-content ul li {
  margin-bottom: 6px;
}

.policy-content a {
  color: var(--logo-blue);
  text-decoration: underline;
}


/* =============================================================
   SERVICE IMAGE CARDS
   ============================================================= */
.srv-img-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  min-height: 280px;
  box-shadow: var(--shadow);
}

.srv-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 280px;
}

.srv-img-card .srv-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
  padding: 40px 20px 16px;
  font-size: 0.95rem;
  font-weight: 600;
}

/* ── Text-Image Grid ── */
.text-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.text-image-grid.reverse {
  direction: rtl;
}

.text-image-grid.reverse>* {
  direction: ltr;
}

@media (max-width: 768px) {

  .text-image-grid,
  .text-image-grid.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .director-card {
    padding: 28px 20px;
  }

  .director-img {
    width: 120px;
    height: 120px;
  }

  .hiring-notice {
    padding: 20px;
  }
}

/* =============================================================
   PREMIUM INNER PAGE UI COMPONENTS (Visual Overhaul)
   ============================================================= */

/* ── Refined Design Tokens ── */
:root {
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-blur: blur(12px);
  --glass-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);

  --grad-primary: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  --grad-accent: linear-gradient(135deg, #0EA5E9 0%, #2563EB 100%);
  --grad-surface: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

/* ── Advanced Utility Classes ── */
.text-gradient-alt {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.glass-card-premium {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
}

.glass-card-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.15);
  border-color: rgba(14, 165, 233, 0.3);
}

/* ── Modern Inner Hero ── */
.inner-hero-premium {
  position: relative;
  padding: 160px 0 100px;
  background-color: var(--primary);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  color: var(--white);
}

.inner-hero-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.9) 30%, rgba(15, 23, 42, 0.5) 100%);
  z-index: 1;
}

.inner-hero-premium .container {
  position: relative;
  z-index: 2;
}

.inner-hero-premium h1 {
  color: var(--white);
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.inner-hero-premium h1 span {
  color: var(--accent);
}

.inner-hero-premium p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  max-width: 600px;
}

/* ── Image Display Grid ── */
.image-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.showcase-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-standard);
}

.showcase-item:hover img {
  transform: scale(1.1);
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.85));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.showcase-item:hover .showcase-overlay {
  opacity: 1;
}

.showcase-overlay h4 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.showcase-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
}

/* ── Content Blocks ── */
.premium-content-block {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.premium-content-block.reverse {
  grid-template-columns: 1fr 1.2fr;
}

.premium-image-wrap {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.premium-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-stats-v2 {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--white);
  padding: 24px 32px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.95);
}

.floating-stats-v2 h5 {
  color: var(--accent);
  font-size: 2rem;
  margin: 0;
}

.floating-stats-v2 p {
  color: var(--text-gray);
  font-size: 0.8rem;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ── Process Visual ── */
.process-steps-premium {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  margin-top: 60px;
}

.process-steps-premium::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.step-item-premium {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-icon-premium {
  width: 90px;
  height: 90px;
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 1.75rem;
  color: var(--accent);
  transition: var(--transition-smooth);
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.1);
}

.step-item-premium:hover .step-icon-premium {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 30px rgba(14, 165, 233, 0.3);
}

.step-item-premium h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.step-item-premium p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ── Form Section Enhancement ── */
.contact-grid-modern {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 0;
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 50px 100px rgba(15, 23, 42, 0.12);
}

.contact-info-side {
  background: var(--primary);
  background-image: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('https://images.unsplash.com/photo-1557683316-973673baf926?auto=format&fit=crop&q=80&w=800');
  background-size: cover;
  color: var(--white);
  padding: 70px 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-form-side {
  padding: 70px 60px;
}

.contact-info-side h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.contact-info-side p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

.info-item-alt {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.info-item-alt i {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
}

.info-item-alt h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 4px;
}

.info-item-alt p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
}

/* ── Responsive adjustments for premium components ── */
@media (max-width: 992px) {
  .inner-hero-premium h1 {
    font-size: 2.8rem;
  }

  .premium-content-block,
  .premium-content-block.reverse {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .contact-grid-modern {
    grid-template-columns: 1fr;
  }

  .process-steps-premium {
    flex-direction: column;
    padding-left: 20px;
  }

  .process-steps-premium::before {
    top: 60px;
    left: 45px;
    bottom: 60px;
    width: 2px;
    height: auto;
  }

  .step-item-premium {
    display: flex;
    text-align: left;
    gap: 25px;
    align-items: center;
  }
}

/* Professional Form Styles (Soft & Smooth) */
.premium-form .form-floating {
  position: relative;
}

/* ... and so on ... */
.premium-form .glass-input {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
  padding: 1.625rem 1rem 0.625rem;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  transition: var(--transition-smooth);
}

.premium-form .glass-input:focus {
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.05);
}

.premium-form textarea.glass-input {
  height: auto;
  min-height: 150px;
  padding: 1.625rem 1rem;
}

.premium-form label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity .1s ease-in-out, transform .1s ease-in-out;
  color: var(--text-gray);
}

.premium-form .glass-input:focus~label,
.premium-form .glass-input:not(:placeholder-shown)~label {
  opacity: .65;
  transform: scale(.85) translateY(-.5rem) translateX(.15rem);
}

.premium-form .glass-input::placeholder {
  color: transparent;
}


/* =============================================================
   PREMIUM INNER PAGE COMPONENTS (Soft & Smooth Aesthetic)
   ============================================================= */

.inner-hero-premium {
  position: relative;
  padding: 140px 0 100px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  overflow: hidden;
}

.inner-hero-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(14, 165, 233, 0.75) 100%);
  z-index: 1;
}

.inner-hero-premium .container {
  position: relative;
  z-index: 2;
}

.glass-card-premium {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  overflow: hidden;
}

.glass-card-premium:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  background: rgba(255, 255, 255, 0.8);
}

.premium-content-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
}

.premium-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transform: translateZ(0);
  /* Hardware accel for smooth corner rendering */
}

.image-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.section-label {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--accent);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.glass-input {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.glass-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.step-icon-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(37, 99, 235, 0.1));
  color: var(--accent);
  border-radius: var(--radius);
}

/* =============================================================
   TRENDING LAYOUTS (Bento, Split, Sticky, Floating)
   ============================================================= */

/* Floating Animation */
@keyframes floatSoft {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

.float-animate {
  animation: floatSoft 6s ease-in-out infinite;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(250px, auto);
  gap: 2rem;
}

.bento-item-span-2 {
  grid-column: span 2;
}

.bento-item-span-3 {
  grid-column: span 3;
}

.bento-item-row-2 {
  grid-row: span 2;
}

@media (max-width: 992px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-item-span-3 {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-item-span-2,
  .bento-item-span-3,
  .bento-item-row-2 {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* Sticky Split Layout */
.sticky-split-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.sticky-split-side {
  width: 50%;
  padding: 4rem;
}

.sticky-side {
  position: sticky;
  top: 100px;
  /* Offset for header */
  height: calc(100vh - 100px);
  overflow-y: auto;
}

.scroll-side {
  padding-bottom: 6rem;
}

@media (max-width: 992px) {
  .sticky-split-side {
    width: 100%;
    padding: 2rem;
  }

  .sticky-side {
    position: relative;
    top: 0;
    height: auto;
  }
}

/* Alternating Feature Layout */
.feature-block-alt {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 6rem;
}

.feature-block-alt:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-block-img-wrap {
  flex: 1;
  position: relative;
}

.feature-block-content {
  flex: 1;
}

.feature-block-img-wrap img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

/* Overlapping Decoration */
.feature-block-img-wrap::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
  border-radius: var(--radius-xl);
  z-index: -1;
}

.feature-block-alt:nth-child(even) .feature-block-img-wrap::after {
  right: 20px;
  left: -20px;
}

@media (max-width: 992px) {
  .feature-block-alt {
    flex-direction: column !important;
    gap: 2rem;
    margin-bottom: 4rem;
  }
}

/* Abstract Background Blobs */
.bg-blob {
  position: absolute;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.4;
  border-radius: 50%;
}

.blob-primary {
  background: var(--primary);
}

.blob-accent {
  background: var(--accent);
}


/* =============================================================
   SERVICES PAGE — V2 REDESIGN
   ============================================================= */

/* ── Services Hero V2 ── */
.srv-hero-v2 {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, #0C1E3C 50%, #0F172A 100%);
  overflow: hidden;
  color: var(--white);
}

.srv-hero-v2-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(14, 165, 233, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.12) 0%, transparent 40%);
  z-index: 0;
}

.srv-hero-v2 .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.srv-hero-v2-content {
  max-width: 640px;
}

.srv-hero-v2-content h1 {
  color: var(--white);
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
}

.srv-hero-v2-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.2rem;
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.srv-hero-v2-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.srv-hero-v2-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 24px 32px;
  animation: badgeFloat 4s ease-in-out infinite;
  flex-shrink: 0;
}

.srv-hero-v2-badge-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent), var(--accent-sec));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
}

.srv-hero-v2-badge h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 2px;
}

.srv-hero-v2-badge p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  margin: 0;
}


/* ── Category Grid ── */
.srv-category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.srv-category-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.srv-category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-sec));
  transition: height 0.4s ease;
}

.srv-category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(14, 165, 233, 0.2);
}

.srv-category-card:hover::before {
  height: 6px;
}

.srv-category-icon {
  width: 64px;
  height: 64px;
  background: rgba(14, 165, 233, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.srv-category-icon-alt {
  background: rgba(230, 57, 70, 0.1);
  color: var(--logo-red);
}

.srv-category-card:hover .srv-category-icon {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.1);
}

.srv-category-card:hover .srv-category-icon-alt {
  background: var(--logo-red);
}

.srv-category-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.srv-category-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex: 1;
}

.srv-category-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}

.srv-category-card:hover .srv-category-link {
  transform: translateX(5px);
}


/* ── Service Cards Grid ── */
.srv-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}

.srv-service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition-smooth);
}

.srv-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(14, 165, 233, 0.2);
}

.srv-service-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(37, 99, 235, 0.08));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
  transition: var(--transition-smooth);
}

.srv-service-card:hover .srv-service-card-icon {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.srv-service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.srv-service-card p {
  color: var(--text-gray);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 0;
}


/* ── Cargo Services Grid ── */
.srv-cargo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.srv-cargo-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: var(--transition-smooth);
}

.srv-cargo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-left: 3px solid var(--accent);
}

.srv-cargo-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--accent-sec));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.srv-cargo-card-body h4 {
  font-size: 1.08rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.srv-cargo-card-body p {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}


/* ── Why Choose Grid ── */
.srv-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.srv-why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition-smooth);
}

.srv-why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(14, 165, 233, 0.25);
}

.srv-why-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(37, 99, 235, 0.08));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  margin: 0 auto 1.25rem;
  transition: var(--transition-smooth);
}

.srv-why-card:hover .srv-why-card-icon {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.15);
}

.srv-why-card h3 {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.srv-why-card p {
  color: var(--text-gray);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


/* ── Services CTA Section ── */
.srv-cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #0C1E3C 50%, #0F172A 100%);
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.srv-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, transparent 60%);
  z-index: 0;
}

.srv-cta-section .container {
  position: relative;
  z-index: 1;
}

.srv-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* =============================================================
   ABOUT US PAGE — REDESIGN
   ============================================================= */

/* ── About Overview Split ── */
.about-overview-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-overview-img {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-overview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.about-overview-floating {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 20px 28px;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  z-index: 5;
}

.about-overview-floating h5 {
  color: var(--accent);
  font-size: 2rem;
  margin: 0;
  font-weight: 800;
}

.about-overview-floating p {
  color: var(--text-gray);
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.about-overview-content p {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.5rem;
}


/* ── Mission & Vision Grid ── */
.about-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.about-mv-card {
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}

.about-mission-card {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(37, 99, 235, 0.06));
  border: 1px solid rgba(14, 165, 233, 0.2);
}

.about-vision-card {
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.06), rgba(230, 57, 70, 0.03));
  border: 1px solid rgba(230, 57, 70, 0.15);
}

.about-mv-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.about-mission-card .about-mv-icon {
  background: rgba(14, 165, 233, 0.15);
  color: var(--accent);
}

.about-vision-card .about-mv-icon {
  background: rgba(230, 57, 70, 0.12);
  color: var(--logo-red);
}

.about-mv-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.about-mv-card p {
  color: var(--text-dark);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
}


/* ── Industries Grid ── */
.about-industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.about-industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition-smooth);
}

.about-industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(14, 165, 233, 0.2);
}

.about-industry-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(37, 99, 235, 0.08));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
  margin: 0 auto 1rem;
  transition: var(--transition-smooth);
}

.about-industry-card:hover .about-industry-icon {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.1);
}

.about-industry-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.about-industry-card p {
  color: var(--text-gray);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}


/* ── Partnerships Split ── */
.about-partnerships-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-partnerships-content p {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-partnership-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.about-ps-item h3 {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.2rem;
}

.about-ps-item p {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.about-partnerships-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-partnerships-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}


/* =============================================================
   HR & HIRING PAGE — REDESIGN
   ============================================================= */

/* ── HR Benefits Grid ── */
.hr-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.hr-benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition-smooth);
}

.hr-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(14, 165, 233, 0.2);
}

.hr-benefit-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(37, 99, 235, 0.08));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
  margin: 0 auto 1.25rem;
  transition: var(--transition-smooth);
}

.hr-benefit-card:hover .hr-benefit-icon {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.15);
}

.hr-benefit-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.hr-benefit-card p {
  color: var(--text-gray);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}


/* ── Departments Grid ── */
.hr-departments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.hr-dept-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.hr-dept-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-sec));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.hr-dept-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.hr-dept-card:hover::before {
  transform: scaleX(1);
}

.hr-dept-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(37, 99, 235, 0.08));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
  transition: var(--transition-smooth);
}

.hr-dept-card:hover .hr-dept-icon {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.hr-dept-card h4 {
  font-size: 1.08rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.hr-dept-card p {
  color: var(--text-gray);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 0;
}


/* ── Employee Perks Grid ── */
.hr-perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.hr-perk-card {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.06), rgba(37, 99, 235, 0.04));
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition-smooth);
}

.hr-perk-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  background: var(--white);
}

.hr-perk-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
  margin: 0 auto 1rem;
  transition: var(--transition-smooth);
}

.hr-perk-card:hover .hr-perk-icon {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.hr-perk-card h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--primary);
}

.hr-perk-card p {
  color: var(--text-gray);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}


/* ── Application Form ── */
.hr-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-soft);
}

.hr-form-header {
  margin-bottom: 2.5rem;
}

.hr-form-header .section-subtitle {
  margin-bottom: 0;
}

.hr-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.hr-form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.hr-form-full {
  margin-bottom: 1.25rem;
}

.hr-form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hr-form-group input,
.hr-form-group select,
.hr-form-group textarea {
  background: var(--neutral);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--text-dark);
  font-family: var(--body-font);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.hr-form-group input::placeholder,
.hr-form-group textarea::placeholder {
  color: var(--text-gray);
  opacity: 0.6;
}

.hr-form-group input:focus,
.hr-form-group select:focus,
.hr-form-group textarea:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.hr-form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.hr-form-group select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.hr-file-upload {
  position: relative;
}

.hr-file-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.hr-file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 32px 20px;
  border: 2px dashed var(--border);
  border-radius: 12px;
  background: var(--neutral);
  color: var(--text-gray);
  font-size: 0.88rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.hr-file-upload-label i {
  font-size: 1.5rem;
  color: var(--accent);
}

.hr-file-upload:hover .hr-file-upload-label {
  border-color: var(--accent);
  background: rgba(14, 165, 233, 0.05);
}

.hr-submit-btn {
  width: 100%;
  margin-top: 0.5rem;
  padding: 16px;
  font-size: 1rem;
}


/* ── HR Contact Grid ── */
.hr-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.hr-contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition-smooth);
}

.hr-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.hr-contact-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent), var(--accent-sec));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  margin: 0 auto 1.25rem;
}

.hr-contact-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.hr-contact-card a,
.hr-contact-card p {
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}


/* =============================================================
   PRODUCTS & ENQUIRY SYSTEM
   ============================================================= */

/* ── Products Search Bar ── */
.products-search-section {
  padding: 3rem 0 0;
  margin-top: -2rem;
  position: relative;
  z-index: 5;
}

.products-search-form {
  max-width: 700px;
  margin: 0 auto;
}

.products-search-wrap {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 60px;
  padding: 6px 6px 6px 28px;
  transition: all 0.3s ease;
  gap: 12px;
}

.products-search-wrap:hover {
  border-color: var(--text-dark);
}

.products-search-wrap:focus-within {
  border-color: var(--primary);
  outline: 2px solid rgba(15, 23, 42, 0.08);
  outline-offset: 2px;
}

.products-search-icon {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.products-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--body-font);
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 12px 0;
}

.products-search-input::placeholder {
  color: var(--text-gray);
  opacity: 0.6;
}

.products-search-clear {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-gray);
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.products-search-clear:hover {
  background: rgba(15, 23, 42, 0.06);
  color: var(--primary);
}

.products-search-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 13px 32px;
  border-radius: 50px;
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.products-search-btn:hover {
  background: var(--text-dark);
}


/* ── Products Grid ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.products-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}


/* ── Products Layout (Sidebar + Grid) ── */
.products-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
}

.products-sidebar {
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.03);
}

.sidebar-title {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 8px;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-gray);
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.category-list a:hover {
  background: rgba(14, 165, 233, 0.05);
  color: var(--accent);
  padding-left: 16px;
}

.category-list a.active {
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
}

.cat-count {
  font-size: 0.8rem;
  opacity: 0.6;
}

.category-list a.active .cat-count {
  opacity: 0.9;
}

/* ── Product Card ── */
.product-card {
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.5), rgba(37, 99, 235, 0.1), transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--neutral);
}

.product-card-image a {
  display: block;
  width: 100%;
  height: 100%;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 1s ease;
  will-change: transform;
}

.product-card:hover .product-card-img {
  transform: scale(1.12);
  filter: brightness(1.05);
}

.product-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(37, 99, 235, 0.03));
  color: var(--text-gray);
  font-size: 3rem;
  opacity: 0.3;
}

.product-card-body {
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: var(--white);
  position: relative;
}

.product-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.product-tag-pill {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(37, 99, 235, 0.05));
  color: var(--accent);
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
}

.product-card:hover .product-tag-pill {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.product-card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.35;
  font-weight: 700;
}

.product-card-title a {
  color: var(--primary);
  transition: color 0.3s ease;
  background-image: linear-gradient(to right, var(--accent), var(--accent-sec));
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-bottom: 2px;
}

.product-card:hover .product-card-title a {
  background-size: 100% 2px;
  color: var(--accent);
}

.product-card-excerpt {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  flex: 1;
}

.product-card-actions {
  margin-top: auto;
}

.product-card-btn {
  padding: 12px 24px;
  font-size: 0.9rem;
  border-radius: 50px;
  gap: 10px;
  width: 100%;
  justify-content: center;
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--border);
  box-shadow: none;
}

.product-card:hover .product-card-btn {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.25);
}

.product-card-btn i {
  font-size: 0.8rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card-btn i {
  transform: translateX(6px);
}


/* ── Products Search Results Header ── */
.products-search-results-header {
  margin-bottom: 2rem;
}

.products-search-results-header .section-title {
  margin-bottom: 0.5rem;
}

.products-search-results-header .section-subtitle {
  margin-bottom: 2rem;
}


/* ── Products Pagination ── */
.products-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.products-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-gray);
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition-smooth);
}

.products-pagination .page-numbers:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.products-pagination .page-numbers.current {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.products-pagination .page-numbers.prev,
.products-pagination .page-numbers.next {
  font-size: 0.75rem;
}


/* ── Products Fallback / No Results ── */
.products-fallback,
.products-no-results {
  padding: 4rem 2rem;
}

.products-fallback-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(37, 99, 235, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--accent);
  margin: 0 auto 2rem;
}


/* =============================================================
   SINGLE PRODUCT PAGE
   ============================================================= */

/* ── SP Hero ── */
.sp-hero {
  position: relative;
  padding: 80px 0 50px;
  background: var(--white);
  overflow: hidden;
}

.sp-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(135deg, var(--neutral) 0%, rgba(14, 165, 233, 0.03) 100%);
  z-index: 0;
}

.sp-hero .container {
  position: relative;
  z-index: 1;
}

.sp-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.sp-hero-image {
  position: relative;
}

.sp-main-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
  object-fit: cover;
  max-height: 540px;
  border: 1px solid rgba(14, 165, 233, 0.1);
}

.sp-image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(37, 99, 235, 0.03));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--text-gray);
  opacity: 0.2;
}

.sp-gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.sp-thumb {
  width: 76px;
  height: 76px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background: none;
  padding: 0;
  opacity: 0.7;
}

.sp-thumb.active {
  opacity: 1;
  border-color: var(--accent);
}

.sp-thumb:hover {
  opacity: 1;
  border-color: rgba(14, 165, 233, 0.5);
}

.sp-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.sp-gallery-hint {
  font-size: 0.8rem;
  color: var(--text-gray);
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.7;
}

/* ── Lightbox Overlay ── */
.sp-lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 20px;
}

.sp-lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sp-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100000;
}

.sp-lightbox-close:hover {
  background: var(--accent);
  transform: rotate(90deg);
}

.sp-lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sp-lightbox-overlay.active .sp-lightbox-content {
  transform: scale(1);
}

.sp-lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* ── SP Details ── */
.sp-breadcrumb {
  font-size: 0.82rem;
  color: var(--text-gray);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.sp-breadcrumb a {
  color: var(--accent);
  font-weight: 600;
}

.sp-breadcrumb a:hover {
  text-decoration: underline;
}

.sp-breadcrumb-sep {
  font-size: 0.6rem;
  opacity: 0.5;
}

.sp-breadcrumb-current {
  color: var(--text-gray);
  font-weight: 500;
}

.sp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1rem;
}

.sp-title {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.sp-short-desc {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.sp-short-desc p {
  margin-bottom: 0.75rem;
}

.sp-categories {
  font-size: 0.88rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.sp-meta-label {
  font-weight: 700;
  color: var(--text-dark);
  margin-right: 6px;
}

.sp-meta-label i {
  color: var(--accent);
  margin-right: 4px;
}

.sp-cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.sp-enquiry-btn {
  padding: 16px 36px;
  font-size: 1.05rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
  border: none;
}

.sp-enquiry-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(14, 165, 233, 0.4);
}

.sp-whatsapp-btn {
  padding: 14px 28px;
  font-size: 0.95rem;
  border-color: #25D366 !important;
  color: #25D366 !important;
}

.sp-whatsapp-btn:hover {
  background: #25D366 !important;
  color: var(--white) !important;
}


/* ── SP Description ── */
.sp-description-section {
  background: var(--neutral);
}

.sp-description-wrap {
  max-width: 100%;
  margin: 0 auto;
}

.sp-description-content {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.8;
}

.sp-description-content p {
  margin-bottom: 1.25rem;
}

.sp-description-content h3,
.sp-description-content h4 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.sp-description-content ul,
.sp-description-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.sp-description-content li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.sp-description-content img {
  border-radius: var(--radius);
  margin: 1.5rem 0;
  box-shadow: var(--shadow);
}


/* =============================================================
   ENQUIRY MODAL
   ============================================================= */
.enquiry-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.enquiry-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.enquiry-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 36px;
  box-shadow: 0 40px 100px rgba(15, 23, 42, 0.15);
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s var(--ease-standard);
}

.enquiry-modal-overlay.active .enquiry-modal {
  transform: translateY(0) scale(1);
}

.enquiry-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-gray);
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 2;
}

.enquiry-modal-close:hover {
  background: var(--neutral);
  color: var(--primary);
  border-color: var(--text-gray);
}

.enquiry-modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.enquiry-modal-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(37, 99, 235, 0.08));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  margin: 0 auto 1rem;
}

.enquiry-modal-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.enquiry-modal-header p {
  font-size: 0.88rem;
  color: var(--text-gray);
}

.enquiry-modal-header p strong {
  color: var(--accent);
}


/* ── Enquiry Form ── */
.enquiry-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.enquiry-form-group {
  margin-bottom: 1rem;
}

.enquiry-form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.enquiry-form-group label .required {
  color: var(--logo-red);
}

.enquiry-form-group input,
.enquiry-form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--neutral);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--body-font);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-smooth);
  outline: none;
  box-sizing: border-box;
}

.enquiry-form-group input::placeholder,
.enquiry-form-group textarea::placeholder {
  color: var(--text-gray);
  opacity: 0.6;
}

.enquiry-form-group input:focus,
.enquiry-form-group textarea:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.enquiry-form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.enquiry-file-input {
  padding: 10px !important;
  background: var(--neutral) !important;
  border: 1px dashed var(--border) !important;
  cursor: pointer;
}

.enquiry-file-input::-webkit-file-upload-button {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  margin-right: 12px;
  transition: var(--transition-smooth);
}

.enquiry-file-input::-webkit-file-upload-button:hover {
  background: var(--primary);
}

.form-text.text-muted {
  display: block;
  font-size: 0.75rem;
  color: var(--text-gray);
  margin-top: 6px;
}

.enquiry-submit-btn {
  padding: 16px 32px;
  font-size: 1rem;
}

.enquiry-form-feedback {
  margin-top: 1rem;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.enquiry-form-feedback.success {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.enquiry-form-feedback.error {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.2);
}


/* ── Inline Form in Hero (replaces CTA buttons) ── */
.sp-inline-form-wrap {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.sp-inline-form-title {
  font-size: 1.05rem;
  color: var(--primary);
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sp-inline-form-title i {
  color: var(--accent);
}

.sp-inline-form .enquiry-form-grid {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.sp-inline-form .enquiry-form-group {
  margin-bottom: 10px;
}

.sp-inline-form .enquiry-form-group input,
.sp-inline-form .enquiry-form-group textarea {
  padding: 12px 16px;
  font-size: 0.88rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 10px;
  width: 100%;
  font-family: var(--body-font);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: var(--neutral);
}

.sp-inline-form .enquiry-form-group input:focus,
.sp-inline-form .enquiry-form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
  background: var(--white);
}

.sp-inline-form .enquiry-file-input {
  font-size: 0.82rem;
}

.sp-inline-form .form-text {
  font-size: 0.75rem;
  opacity: 0.6;
}

.sp-inline-form-actions {
  display: flex;
  gap: 10px;
  margin-top: 0.5rem;
}

.sp-inline-form-actions .enquiry-submit-btn {
  flex: 1;
  padding: 13px 20px;
  font-size: 0.9rem;
}

.sp-inline-form-actions .sp-whatsapp-btn {
  padding: 13px 20px;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* SP Categories as links */
.sp-categories a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.sp-categories a:hover {
  color: var(--primary);
  text-decoration: underline;
}


/* ── Image Wrapper with Zoom Hint ── */
.sp-main-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: zoom-in;
}

.sp-main-img-wrap .sp-main-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.sp-main-img-wrap:hover .sp-main-img {
  transform: scale(1.03);
}

.sp-img-zoom-hint {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.sp-main-img-wrap:hover .sp-img-zoom-hint {
  opacity: 1;
}


/* ── WhatsApp Button ── */
.sp-whatsapp-btn {
  border-color: #25d366 !important;
  color: #25d366 !important;
}

.sp-whatsapp-btn:hover {
  background: #25d366 !important;
  color: var(--white) !important;
}


/* =============================================================
   CATEGORY ARCHIVE PAGE
   ============================================================= */
.cat-archive-hero {
  position: relative;
  padding: 100px 0 60px;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.cat-archive-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, #1e3a5f 50%, var(--accent) 100%);
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.cat-archive-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.4) 100%);
  z-index: 1;
}

.cat-archive-hero .container {
  position: relative;
  z-index: 2;
}

.cat-archive-hero-content {
  color: var(--white);
}

.cat-archive-hero-content .sp-breadcrumb {
  margin-bottom: 1rem;
}

.cat-archive-hero-content .sp-breadcrumb a,
.cat-archive-hero-content .sp-breadcrumb-sep {
  color: rgba(255, 255, 255, 0.6);
}

.cat-archive-hero-content .sp-breadcrumb a:hover {
  color: var(--white);
}

.cat-archive-hero-content .sp-breadcrumb-current {
  color: var(--white);
}

.cat-archive-title {
  font-family: var(--heading-font);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 0.75rem 0;
  line-height: 1.15;
}

.cat-archive-meta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.cat-archive-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.cat-archive-count i {
  color: var(--accent);
}

/* ── Category Description Card ── */
.cat-archive-desc {
  padding: 3rem 0;
}

.cat-archive-desc-card {
  display: flex;
  gap: 24px;
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.cat-archive-desc-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(37, 99, 235, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.cat-archive-desc-text {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.7;
}

.cat-archive-desc-text p:last-child {
  margin-bottom: 0;
}

.cat-archive-products-no-desc {
  padding-top: 1rem;
}


/* ── Mobile Dropdown Label ── */
.mobile-dropdown-label {
  padding: 10px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-sub-link {
  padding-left: 36px !important;
  font-size: 0.9rem !important;
  opacity: 0.8;
}


/* =============================================================
   PRODUCTS SYSTEM — RESPONSIVE
   ============================================================= */

/* ── Tablet (≤ 1024px) ── */
@media (max-width: 1024px) {
  .sp-hero-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .sp-title {
    font-size: 1.8rem;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

  .products-grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }

  .products-layout {
    grid-template-columns: 1fr;
  }

  .products-sidebar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
  }

  .sidebar-title {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    margin-right: 12px;
  }

  .category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .category-list li {
    margin-bottom: 0;
  }

  .cat-archive-title {
    font-size: 2.2rem;
  }

  .cat-archive-desc-card {
    flex-direction: column;
  }
}

/* ── Mobile (≤ 768px) ── */
@media (max-width: 768px) {
  .products-search-wrap {
    border-radius: 16px;
    padding: 6px 6px 6px 16px;
  }

  .products-search-btn {
    padding: 10px 20px;
    font-size: 0.82rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .products-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .sp-title {
    font-size: 1.6rem;
  }

  .sp-inline-form .enquiry-form-grid {
    grid-template-columns: 1fr;
  }

  .sp-inline-form-actions {
    flex-direction: column;
  }

  .enquiry-form-grid {
    grid-template-columns: 1fr;
  }

  .cat-archive-title {
    font-size: 1.8rem;
  }

  .cat-archive-hero {
    padding: 80px 0 40px;
    min-height: 240px;
  }
}

/* ── Small Mobile (≤ 480px) ── */
@media (max-width: 480px) {
  .product-card-body {
    padding: 14px;
  }

  .product-card-title {
    font-size: 0.9rem;
  }

  .product-card-excerpt {
    font-size: 0.8rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .sp-gallery-thumbs {
    gap: 6px;
  }

  .sp-thumb {
    width: 54px;
    height: 54px;
  }

  .cat-archive-title {
    font-size: 1.5rem;
  }
}


/* =============================================================
   INNER PAGES — RESPONSIVE ADDITIONS
   ============================================================= */


/* ── Tablet (≤ 1024px) ── */
@media (max-width: 1024px) {
  .srv-hero-v2 .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .srv-hero-v2-badge {
    display: none;
  }

  .srv-hero-v2-content h1 {
    font-size: 2.8rem;
  }

  .srv-category-grid {
    grid-template-columns: 1fr;
  }

  .srv-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-overview-split,
  .about-partnerships-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-mv-grid {
    grid-template-columns: 1fr;
  }

  .hr-departments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hr-perks-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hr-contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Mobile (≤ 768px) ── */
@media (max-width: 768px) {
  .srv-hero-v2-content h1 {
    font-size: 2.2rem;
  }

  .srv-hero-v2-sub {
    font-size: 1rem;
  }

  .srv-hero-v2-btns {
    flex-direction: column;
  }

  .srv-service-grid {
    grid-template-columns: 1fr;
  }

  .srv-cargo-grid {
    grid-template-columns: 1fr;
  }

  .srv-why-grid {
    grid-template-columns: 1fr;
  }

  .about-overview-img img {
    min-height: 280px;
  }

  .about-partnership-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .about-partnerships-img img {
    min-height: 260px;
  }

  .about-industries-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hr-benefits-grid {
    grid-template-columns: 1fr;
  }

  .hr-departments-grid {
    grid-template-columns: 1fr;
  }

  .hr-perks-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hr-form-wrapper {
    padding: 28px 20px;
  }

  .hr-form-grid {
    grid-template-columns: 1fr;
  }

  .srv-dtdc-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Small Mobile (≤ 480px) ── */
@media (max-width: 480px) {
  .srv-hero-v2-content h1 {
    font-size: 1.8rem;
  }

  .about-industries-grid {
    grid-template-columns: 1fr;
  }

  .hr-perks-grid {
    grid-template-columns: 1fr;
  }

  .srv-category-card {
    padding: 28px 22px;
  }

  .about-mv-card {
    padding: 28px 22px;
  }
}

/* ========================================================================
   USER VISUAL REFINEMENTS & TWEAKS
======================================================================== */

/* Darken Category / Products Hero Overlay so Text is absolutely visible */
.cat-archive-hero-overlay {
  background: rgba(0, 0, 0, 0.65) !important;
}

/* Fix Dropdown Menu Hover (Corners) */
.dropdown-menu {
  overflow: hidden !important;
}

/* Wider Products Container */
#products-grid-section .container {
  max-width: 1400px;
  padding: 0 40px;
}

/* Adjust distance between hero, search bar, and products heading */
.products-search-section {
  margin-top: 40px !important;
  margin-bottom: 0px !important;
  padding: 0px !important;
}

#products-grid-section {
  padding-top: 40px !important;
}

/* Remove Extra Margin Between Header and Hero for Single Product & Products pages */
.sp-hero {
  padding-top: 30px !important;
  margin-top: 0px !important;
}

.cat-archive-hero {
  padding-top: 60px !important;
  margin-top: 0px !important;
}

/* Fix Single Product Background Separation (Removed the weird grey half-background) */
.sp-hero-bg {
  display: none !important;
}

.sp-hero {
  background: var(--white) !important;
}

/* Enhanced styling for the Single Product File Input */
.enquiry-file-group {
  margin-top: 1.5rem;
  background: var(--white);
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.enquiry-file-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--primary);
}

.enquiry-file-label i {
  color: var(--accent);
  font-size: 1.25rem;
}

.file-title {
  font-weight: 700;
  font-size: 0.95rem;
}

.file-optional {
  font-weight: 500;
  color: #ef4444;
  /* red text for (Not Compulsory) */
  font-size: 0.8rem;
  margin-left: auto;
  background: rgba(239, 68, 68, 0.1);
  padding: 4px 8px;
  border-radius: 12px;
}

.enquiry-file-input {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--neutral);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  color: var(--text-dark);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.enquiry-file-input:hover {
  border-color: var(--accent);
  background: rgba(14, 165, 233, 0.02);
}

.enquiry-file-input::file-selector-button {
  background: var(--primary);
  color: var(--white);
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 6px;
  padding: 8px 16px;
  margin-right: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.enquiry-file-input::file-selector-button:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
}

/* ========================================================================
   CATEGORY PAGE DESCRIPTION & BUTTON REFINEMENTS
======================================================================== */

/* 1. Equalize padding for Category Description */
.cat-archive-desc {
  padding-top: 60px !important;
  padding-bottom: 30px !important;
}

#cat-products-grid {
  padding-top: 30px !important;
}

/* 2. Enhance Category Description Card without 3D shadows */
.cat-archive-desc-card {
  border: 1.5px solid #1e293b !important;
  /* Dark border as requested */
  box-shadow: none !important;
  background: linear-gradient(145deg, #ffffff, #f8fafc) !important;
  /* Subtle color enhancement */
}

/* 3. Remove 3D hover/shadow effects from buttons globally (WhatsApp, Contact, etc.) */
.btn {
  box-shadow: none !important;
  transform: none !important;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease !important;
}

.btn:hover,
.btn:focus,
.btn:active {
  box-shadow: none !important;
  transform: none !important;
}

/* 4. Provide stable color-changing hovers for primary and white buttons */
.btn-primary:hover {
  background-color: #0d1b2a !important;
  /* Darker distinct shade */
  color: #ffffff !important;
}

.btn-white:hover {
  background-color: var(--primary) !important;
  color: var(--white) !important;
  border-color: var(--primary) !important;
}

/* ========================================================================
   HOMEPAGE: WHITE CTA SECTION (Contact Card Layout)
======================================================================== */
.cta-section-white {
  background: var(--white);
  position: relative;
  z-index: 1;
}

.cta-white-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.04);
}

.cta-white-info {
  background: #f8fafc;
  padding: 40px;
  border-right: 1.5px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cta-white-info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cta-info-card-light {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.cta-light-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(37, 99, 235, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.cta-info-card-light h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.cta-info-card-light p,
.cta-info-card-light a {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.5;
}

.cta-info-card-light a:hover {
  color: var(--accent);
}

.cta-white-map {
  margin-top: auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.cta-white-form-wrapper {
  padding: 40px;
  background: #ffffff;
}

.cta-white-form-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.cta-white-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-white-form .form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.cta-white-form .form-group input,
.cta-white-form .form-group textarea,
.cta-white-form .form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--neutral);
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  color: var(--text-dark);
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.cta-white-form .form-group input:focus,
.cta-white-form .form-group textarea:focus,
.cta-white-form .form-group select:focus {
  outline: none;
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.cta-white-form .form-group input::placeholder,
.cta-white-form .form-group textarea::placeholder {
  color: #94a3b8;
  /* Slate 400 - darker placeholder for contrast against form background */
  opacity: 1;
}

@media (max-width: 991px) {
  .cta-white-card {
    grid-template-columns: 1fr;
  }

  .cta-white-info {
    border-right: none;
    border-bottom: 1.5px solid #e2e8f0;
  }
}

@media (max-width: 576px) {

  .cta-white-info,
  .cta-white-form-wrapper {
    padding: 24px;
  }
}

/* ========================================================================
   INNER PAGE: CONTACT US (FLAT GRID)
======================================================================== */
.contact-flat-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.contact-flat-info {
  padding: 50px 40px;
  background: #f8fafc;
  /* Very light slate for subtle contrast */
  border-right: 1px solid #e2e8f0;
}

.info-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid #e2e8f0;
}

.flat-map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  margin-top: 20px;
}

.contact-flat-form-wrapper {
  padding: 50px;
  background: var(--white);
}

.flat-form .form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.flat-form .form-control {
  width: 100%;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  color: var(--text-dark);
  font-size: 1rem;
  transition: all 0.2s ease;
  font-family: var(--font-body);
}

.flat-form .form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 27, 42, 0.08);
  /* Primary color focus ring */
}

.flat-form .form-control::placeholder {
  color: #94a3b8;
  opacity: 1;
}

@media (max-width: 991px) {
  .contact-flat-grid {
    grid-template-columns: 1fr;
  }

  .contact-flat-info {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
  }
}

@media (max-width: 576px) {

  .contact-flat-info,
  .contact-flat-form-wrapper {
    padding: 30px 24px;
  }
}

/* ========================================================================
   HOMEPAGE: HOW IRS WORKS & REVIEW SECTION
======================================================================== */
.process-review-section {
  background: var(--neutral);
}

.process-review-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

/* Left: Process Steps Vertical */
.process-card-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

.process-steps-vertical {
  display: flex;
  flex-direction: column;
}

.process-step-row {
  display: flex;
  gap: 20px;
}

.step-icon-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-icon-circle-small {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(13, 27, 42, 0.15);
  z-index: 2;
}

.step-line-vertical {
  width: 2px;
  flex-grow: 1;
  background: #cbd5e1;
  margin: 10px 0;
  min-height: 40px;
}

.step-content-col {
  padding-bottom: 30px;
  padding-top: 10px;
}

.process-step-row:last-child .step-content-col {
  padding-bottom: 0;
}

.step-content-col h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-num-color {
  color: var(--accent);
}

.step-content-col p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Right: Client Review Card */
.review-card-wrapper {
  display: flex;
  justify-content: center;
}

.review-card {
  background: var(--primary);
  color: var(--white);
  padding: 50px 40px;
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: 0 20px 40px rgba(13, 27, 42, 0.15);
}

.review-quote-icon {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 30px;
  right: 40px;
}

.review-stars {
  color: #fbbf24;
  font-size: 1.1rem;
  margin-bottom: 24px;
  display: flex;
  gap: 4px;
}

.review-text {
  font-size: 1.15rem;
  line-height: 1.8;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
}

.review-logo {
  background: var(--white);
  padding: 8px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-logo img {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.review-meta h5 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.review-meta span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 991px) {
  .process-review-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {

  .process-card-wrapper,
  .review-card {
    padding: 30px 24px;
  }
}

/* Card Hover Underline Fix */
.category-product-card a:focus,
.category-product-card a:hover,
.loop-product-card a:focus,
.loop-product-card a:hover,
.product-card a:focus,
.product-card a:hover,
.related-product-card a:focus,
.related-product-card a:hover,
.woocommerce-loop-product__title,
.woocommerce-loop-category__title {
  text-decoration: none !important;
}

/* Form Fields Enhancement */
.form-control,
.form-select,
.enquiry-form-group input,
.enquiry-form-group textarea,
.enquiry-file-label {
  background-color: #fcfcfc !important;
  border-color: #e2e8f0 !important;
  color: #334155 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02) !important;
}

.form-control:hover,
.form-select:hover,
.enquiry-form-group input:hover,
.enquiry-form-group textarea:hover,
.enquiry-file-label:hover {
  background-color: #ffffff !important;
  border-color: #cbd5e1 !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04) !important;
}

.form-control:focus,
.form-select:focus,
.enquiry-form-group input:focus,
.enquiry-form-group textarea:focus {
  background-color: #ffffff !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15) !important;
  outline: none !important;
}

/* Single Product Modal Backdrop Transparency Fix */
.sp-gallery-modal {
  background: rgba(0, 0, 0, 0.75) !important;
  /* 75% transparency black */
}

/* ───────── ABOUT & HR CUSTOM PAGES (Mar 10) ───────── */
/* Reduced Section Padding for About & HR */
#about-page .section-padding,
#hr-page .section-padding {
  padding: 70px 0;
}

/* Override inner hero overlay to black instead of blue on these pages */
#about-page .inner-hero-premium::before,
#hr-page .inner-hero-premium::before {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 100%);
}

/* Split Grid (Image & Content) */
.irs-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.irs-split-grid.reverse-mobile {
  /* Keeps layout standard on desktop, easily reversable on mobile if needed */
}

.irs-rounded-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.irs-director-img {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-soft);
}

.irs-desc-text {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;
}

.irs-features-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.irs-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--primary);
}

.irs-feature-item i {
  color: var(--logo-blue);
  font-size: 1.5rem;
}

/* Cards Grid */
.irs-cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.irs-cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.irs-info-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f1f5f9;
}

.irs-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.irs-info-card .card-icon {
  font-size: 2.2rem;
  color: var(--logo-blue);
  margin-bottom: 20px;
}

.irs-info-card h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.irs-info-card p {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin: 0;
}

/* Checklist Items */
.irs-checklist {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.irs-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.irs-checklist-item i {
  font-size: 1.5rem;
  color: #16a34a;
  margin-top: 4px;
}

.irs-checklist-item h5 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.irs-checklist-item p {
  color: #64748b;
  margin: 0;
  font-size: 0.95rem;
}

/* FAQ Accordion */
.irs-faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.irs-faq-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.irs-faq-toggle {
  display: none;
}

.irs-faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  background: #fff;
  transition: background 0.3s ease;
}

.irs-faq-header:hover {
  background: #fafafa;
}

.irs-faq-header .faq-icon {
  transition: transform 0.3s ease;
  color: var(--logo-blue);
}

.irs-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fff;
}

.irs-faq-content p {
  padding: 0 25px 25px 25px;
  color: #555;
  margin: 0;
}

.irs-faq-toggle:checked~.irs-faq-content {
  max-height: 300px;
}

.irs-faq-toggle:checked~.irs-faq-header .faq-icon {
  transform: rotate(180deg);
}

/* HR Specifics */
.director-name {
  color: var(--logo-blue);
  margin-bottom: 25px;
}

.director-quote {
  font-size: 1.15rem;
  color: #475569;
  font-style: italic;
  padding-left: 20px;
  border-left: 4px solid var(--logo-blue);
  margin-bottom: 25px;
  line-height: 1.8;
}

.director-signature {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.director-signature i {
  font-size: 2.5rem;
  color: #cbd5e1;
}

.director-signature span {
  font-size: 0.85rem;
  color: var(--text-gray);
}

/* Job Card */
.irs-job-wrapper {
  max-width: 850px;
  margin: 0 auto;
}

.irs-job-card {
  background: #fff;
  border-radius: 12px;
  border-left: 6px solid #16a34a;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.job-badge {
  display: inline-block;
  background: #dcfce7;
  color: #166534;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.job-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.job-location {
  color: var(--text-gray);
  margin: 0;
}

.job-location i {
  color: #cbd5e1;
}

.job-compensation {
  text-align: right;
}

.job-salary {
  font-size: 1.8rem;
  color: var(--logo-blue);
  margin-bottom: 8px;
}

.job-salary span {
  font-size: 1rem;
  color: var(--text-gray);
  font-weight: 400;
}

.job-timing {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8fafc;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 600;
  color: #334155;
  border: 1px solid #e2e8f0;
}

.job-details h5 {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.job-details p {
  color: var(--text-gray);
  margin-bottom: 25px;
}

.job-details ul {
  list-style-type: disc;
  padding-left: 20px;
  color: var(--text-gray);
}

.job-details ul li {
  margin-bottom: 10px;
}

.job-apply-section {
  background: #f8fafc;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  margin-top: 40px;
}

.job-apply-section h5 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.job-apply-section p {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.job-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.job-actions a {
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-whatsapp {
  background: #16a34a;
  color: white;
}

.btn-whatsapp:hover {
  background: #15803d;
  color: white;
}

.btn-outlined {
  border: 2px solid var(--logo-blue);
  color: var(--logo-blue);
}

.btn-outlined:hover {
  background: var(--logo-blue);
  color: white;
}

/* Responsiveness */
@media (max-width: 991px) {
  .irs-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .irs-cards-grid-4,
  .irs-cards-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .irs-split-grid.reverse-mobile {
    display: flex;
    flex-direction: column-reverse;
  }

  .mb-mobile-only {
    margin-bottom: 30px;
  }

  .mt-mobile-only {
    margin-top: 15px;
    text-align: left;
  }

  .irs-cards-grid-4,
  .irs-cards-grid-3 {
    grid-template-columns: 1fr;
  }

  .irs-job-card {
    padding: 25px;
  }

  .job-actions {
    flex-direction: column;
    gap: 15px;
  }

  .job-actions a {
    justify-content: center;
    width: 100%;
  }
}