/* 
   Envision Medical - Global Design System & Stylesheet
   Premium, Modern, and Luxurious aesthetic for medical & aesthetic solutions
*/

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- Core Design System Variables --- */
:root {
  /* Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  
  --color-primary: #0a4b9b;       /* Pure Medical Blue */
  --color-primary-rgb: 10, 75, 155;
  --color-primary-dark: #07346d;  /* Deep Navy Blue */
  --color-primary-light: #1e70d4; /* Vivid Medical Blue */
  
  --color-accent: #06b6d4;        /* Sky Blue Accent */
  --color-accent-rgb: 6, 182, 212;
  --color-accent-hover: #0891b2;
  
  --text-main: #0f172a;           /* Deep slate/navy for text */
  --text-muted: #475569;          /* Medium slate */
  --text-light: #64748b;          /* Light slate */
  --text-white: #ffffff;
  
  --border-color: rgba(226, 232, 240, 0.8);
  --border-glass: rgba(255, 255, 255, 0.6);
  --bg-glass: rgba(255, 255, 255, 0.75);
  
  /* Gradients */
  --gradient-medical: linear-gradient(135deg, #ffffff 0%, #edf4fe 100%);
  --gradient-blue: linear-gradient(135deg, #0a4b9b 0%, #06b6d4 100%);
  --gradient-blue-dark: linear-gradient(135deg, #07346d 0%, #0a4b9b 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.3) 100%);
  --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f3e5ab 100%);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px -1px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(10, 75, 155, 0.08), 0 8px 16px -6px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 20px 40px -15px rgba(10, 75, 155, 0.12), 0 15px 25px -10px rgba(0, 0, 0, 0.04);
  --shadow-glass: 0 8px 32px 0 rgba(10, 75, 155, 0.06);
  --shadow-premium: 0 30px 60px -15px rgba(7, 52, 109, 0.15);
  
  /* Borders & Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  /* Typography */
  --font-headings: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout */
  --container-max-width: 1280px;
  --header-height: 80px;
  --header-shrink-height: 70px;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-primary-dark);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section Spacing */
section {
  padding: 8rem 0;
  position: relative;
}

/* --- Premium Utilities & Glassmorphism --- */
.glass-panel {
  background: var(--bg-glass);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-glass);
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(6, 182, 212, 0.4);
}

.bg-gradient-medical {
  background: var(--gradient-medical);
}

.text-gradient {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.text-gradient-dark {
  background: var(--gradient-blue-dark);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Badge Style */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: rgba(6, 182, 212, 0.1);
  color: var(--color-accent-hover);
  border-radius: 9999px;
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(6, 182, 212, 0.25);
  margin-bottom: 1.5rem;
}

.badge-pill.new {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(10, 75, 155, 0.15) 100%);
  color: var(--color-primary);
  border-color: rgba(10, 75, 155, 0.2);
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-headings);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-blue);
  color: var(--text-white);
  box-shadow: 0 10px 20px -5px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 15px 25px -5px rgba(6, 182, 212, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--bg-tertiary);
  color: var(--color-primary-dark);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(10, 75, 155, 0.05);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--text-white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: var(--text-white);
  color: var(--color-primary-dark);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--text-white);
  box-shadow: 0 8px 16px -4px rgba(37, 211, 102, 0.3);
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

.btn-whatsapp:hover {
  background: #20ba59;
  box-shadow: 0 12px 20px -4px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
}

/* --- STICKY HEADER --- */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.header-wrapper.scrolled {
  height: var(--header-shrink-height);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-headings);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-primary-dark);
}

.logo svg {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: var(--color-primary-light);
  stroke-width: 2.5;
}

/* Desktop Navbar */
.navbar-desktop {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-headings);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-blue);
  transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-link svg {
  width: 16px;
  height: 16px;
  transition: var(--transition-fast);
}

.nav-item:hover .nav-link svg {
  transform: rotate(180deg);
}

/* Products Mega Menu Dropdown */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: 480px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  z-index: 1010;
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
  background: transparent;
}

.mega-menu-item:hover {
  background: rgba(10, 75, 155, 0.05);
  transform: translateX(4px);
}

.mega-menu-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(6, 182, 212, 0.1);
  font-size: 1.2rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.mega-menu-item:hover .mega-menu-icon {
  background: var(--gradient-blue);
  color: var(--text-white);
}

.mega-menu-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
  color: var(--color-primary-dark);
}

.mega-menu-content p {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Header Right Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-trigger {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.search-trigger:hover {
  background: rgba(10, 75, 155, 0.05);
  color: var(--color-primary);
  border-color: rgba(10, 75, 155, 0.2);
}

.search-trigger svg {
  width: 20px;
  height: 20px;
}

/* Hamburger Menu button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--color-primary-dark);
  transition: var(--transition-fast);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navbar overlay */
.navbar-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1090;
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
  padding: 6rem 2rem 2rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-mobile.active {
  right: 0;
}

.navbar-mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.navbar-mobile-links .nav-link {
  font-size: 1.15rem;
  font-weight: 600;
  justify-content: space-between;
}

.mobile-submenu {
  list-style: none;
  padding-left: 1rem;
  margin-top: 0.5rem;
  display: none;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-submenu.active {
  display: flex;
}

.mobile-submenu-link {
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: auto;
}

/* --- HERO SECTION --- */
.hero-section {
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 6rem;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.1) 0%, rgba(255, 255, 255, 0) 60%),
              radial-gradient(circle at 10% 80%, rgba(10, 75, 155, 0.05) 0%, rgba(255, 255, 255, 0) 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 650px;
}

.hero-title {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.hero-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-bullet-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--text-main);
  font-size: 0.95rem;
}

.hero-bullet-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Hero Right Side Composition */
.hero-visual {
  position: relative;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-main-img-wrapper {
  width: 85%;
  height: 85%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  position: relative;
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-main-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating 3D Badge on Hero Visual */
.hero-badge-floating {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite alternate;
  z-index: 10;
}

.hero-badge-icon {
  width: 10px;
  height: 10px;
  background-color: var(--color-accent);
  border-radius: 50%;
  position: relative;
}

.hero-badge-icon::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

.hero-badge-text {
  font-family: var(--font-headings);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  letter-spacing: 0.5px;
}

.hero-badge-text span {
  display: block;
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Floating Mini-cards */
.floating-element {
  position: absolute;
  padding: 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 15;
  animation: float 6s ease-in-out infinite alternate;
}

.floating-element.fillers {
  bottom: 40px;
  left: -20px;
  animation-delay: 0.5s;
}

.floating-element.devices {
  top: 120px;
  left: -40px;
  animation-delay: 1.5s;
}

.floating-element.cosmetics {
  bottom: 120px;
  right: -20px;
  animation-delay: 1s;
}

.floating-icon-box {
  width: 40px;
  height: 40px;
  background: var(--gradient-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.floating-element.fillers .floating-icon-box {
  background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
}

.floating-element.cosmetics .floating-icon-box {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.floating-text-box h5 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
}

.floating-text-box p {
  font-size: 0.7rem;
  color: var(--text-light);
}

/* --- STATISTICS SECTION --- */
.stats-section {
  padding: 4rem 0;
  position: relative;
  z-index: 10;
  margin-top: -2rem;
}

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

.stat-card {
  padding: 2.5rem 2rem;
  text-align: center;
  border-radius: var(--radius-lg);
}

.stat-number {
  font-family: var(--font-headings);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- WHY CHOOSE US --- */
.why-section {
  background-color: var(--bg-secondary);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.section-header h2 {
  margin-bottom: 1.2rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.why-card {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(10, 75, 155, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: var(--transition-smooth);
}

.why-card:hover .why-card-icon {
  background: var(--gradient-blue);
  color: white;
  transform: rotateY(180deg);
}

.why-card-icon svg {
  width: 28px;
  height: 28px;
}

.why-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

/* --- FEATURED CATEGORIES (Bento Grid) --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 300px;
  gap: 2rem;
}

.bento-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border-color);
}

/* Overlay for text legibility */
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 75, 155, 0.9) 0%, rgba(10, 75, 155, 0.4) 40%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
  transition: var(--transition-smooth);
}

.bento-card:hover::before {
  background: linear-gradient(to top, rgba(10, 75, 155, 0.95) 0%, rgba(6, 182, 212, 0.7) 100%);
}

/* Bento Card specific grids */
.bento-1 {
  grid-column: span 8;
  grid-row: span 1;
  background-size: 100% 100%;
}
.bento-1:hover {
  background-size: 105% 105%;
}

.bento-2 {
  grid-column: span 4;
  grid-row: span 1;
}

.bento-3 {
  grid-column: span 4;
  grid-row: span 1;
}

.bento-4 {
  grid-column: span 4;
  grid-row: span 1;
}

.bento-5 {
  grid-column: span 4;
  grid-row: span 1;
}

.bento-content {
  position: relative;
  z-index: 2;
  color: var(--text-white);
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

.bento-card:hover .bento-content {
  transform: translateY(0);
}

.bento-content h3 {
  color: var(--text-white);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.bento-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  max-height: 0;
  transition: var(--transition-smooth);
  overflow: hidden;
}

.bento-card:hover .bento-content p {
  opacity: 1;
  max-height: 80px;
}

.bento-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-accent);
}

.bento-card:hover .bento-link {
  color: white;
}

.bento-link svg {
  width: 16px;
  height: 16px;
  transition: var(--transition-fast);
}

.bento-card:hover .bento-link svg {
  transform: translateX(4px);
}

/* Image zoom effect */
.bento-card:hover {
  background-size: 105%;
}

/* --- NEW PRODUCTS SLIDER --- */
.products-slider-section {
  background-color: var(--bg-secondary);
}

.slider-container {
  overflow: hidden;
  position: relative;
  padding: 1rem 0 3rem;
}

.slider-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.slider-card {
  width: calc(33.333% - 1.33rem);
  flex-shrink: 0;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.slider-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-premium);
  border-color: rgba(10, 75, 155, 0.2);
}

.product-img-box {
  height: 250px;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.product-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.slider-card:hover .product-img-box img {
  transform: scale(1.08);
}

.product-brand {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  font-family: var(--font-headings);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.product-body {
  padding: 2rem;
}

.product-category-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-accent-hover);
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  display: block;
}

.product-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-primary-dark);
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--bg-secondary);
}

.product-link-btn {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.product-link-btn svg {
  width: 16px;
  height: 16px;
  transition: var(--transition-fast);
}

.product-link-btn:hover svg {
  transform: translateX(3px);
}

/* Slider Controls */
.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.slider-btn:hover {
  background: var(--gradient-blue);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.slider-btn svg {
  width: 20px;
  height: 20px;
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--color-primary);
}

/* --- AUTO SCROLLING BRANDS --- */
.brands-section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  position: relative;
  background: white;
}

.brands-container {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marquee 25s linear infinite;
}

.brands-section:hover .brands-container {
  animation-play-state: paused;
}

.brand-logo-card {
  padding: 1.5rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #cbd5e1;
  transition: var(--transition-smooth);
  user-select: none;
}

.brand-logo-card:hover {
  color: var(--color-primary);
  transform: scale(1.05);
}

.brand-logo-card svg {
  height: 35px;
  fill: currentColor;
  margin-right: 0.5rem;
}

/* --- WHY CLIENTS TRUST US (Timeline) --- */
.trust-timeline-section {
  position: relative;
}

.timeline-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: rgba(10, 75, 155, 0.1);
  top: 0;
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  width: 50%;
  padding: 0 3rem;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 4px solid var(--color-primary);
  z-index: 5;
  box-shadow: 0 0 0 5px rgba(10, 75, 155, 0.15);
  transition: var(--transition-smooth);
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -10px;
}

.timeline-item:hover .timeline-dot {
  background: var(--color-accent);
  box-shadow: 0 0 0 8px rgba(6, 182, 212, 0.25);
  transform: scale(1.25);
}

.timeline-card {
  padding: 2rem;
}

.timeline-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-primary-dark);
}

/* --- TESTIMONIALS --- */
.testimonials-section {
  background-color: var(--bg-secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stars-rating {
  color: #fbbf24;
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.author-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e2e8f0;
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  border: 2px solid white;
  box-shadow: var(--shadow-sm);
}

.author-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
}

.author-info p {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* --- CALL TO ACTION (CTA) --- */
.cta-section {
  padding: 6rem 0;
  background: var(--gradient-blue-dark);
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

.cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  position: relative;
  z-index: 5;
}

.cta-content {
  max-width: 700px;
}

.cta-title {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* --- FOOTER --- */
footer {
  background-color: #031429;
  color: #94a3b8;
  padding: 6rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-info .logo {
  color: white;
}

.footer-info p {
  color: #64748b;
  font-size: 0.9rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background: var(--gradient-blue);
  color: white;
  transform: translateY(-3px);
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.footer-column h3 {
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.newsletter-form {
  display: flex;
  margin-top: 1rem;
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.25rem;
  border-radius: 9999px;
}

.newsletter-input {
  background: transparent;
  border: none;
  padding: 0.65rem 1.2rem;
  color: white;
  font-family: var(--font-body);
  font-size: 0.85rem;
  width: 100%;
}

.newsletter-input:focus {
  outline: none;
}

.newsletter-btn {
  background: var(--gradient-blue);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.newsletter-btn:hover {
  transform: scale(1.05);
}

.newsletter-btn svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #64748b;
}

/* --- HERO BANNERS (INTERNAL PAGES) --- */
.internal-hero {
  padding-top: calc(var(--header-height) + 5rem);
  padding-bottom: 6rem;
  background: radial-gradient(circle at 90% 10%, rgba(6, 182, 212, 0.08) 0%, rgba(255, 255, 255, 0) 50%),
              radial-gradient(circle at 10% 90%, rgba(10, 75, 155, 0.04) 0%, rgba(255, 255, 255, 0) 50%);
  text-align: center;
}

.internal-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.internal-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.internal-hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
}

/* --- ABOUT US DETAILS --- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.intro-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border-color);
  height: 480px;
}

.intro-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-content h2 {
  font-size: 2.2rem;
  color: var(--color-primary-dark);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}

.mission-vision-card {
  padding: 3rem 2.5rem;
}

.mission-vision-card .icon-box {
  width: 50px;
  height: 50px;
  background: rgba(10, 75, 155, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.mission-vision-card .icon-box svg {
  width: 24px;
  height: 24px;
}

.mission-vision-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

/* Core Values Layout */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.value-card {
  padding: 2.5rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.value-icon {
  width: 54px;
  height: 54px;
  background: rgba(6, 182, 212, 0.08);
  color: var(--color-accent-hover);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.value-icon svg {
  width: 24px;
  height: 24px;
}

.value-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

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

/* Timeline 2003-2025 (About) */
.history-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1000px;
  margin: 3rem auto 0;
  padding: 2rem 0;
}

.history-timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--border-color);
  transform: translateY(-50%);
  z-index: 1;
}

.history-node {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 15%;
}

.history-year {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: 4px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.history-node:hover .history-year {
  background: var(--gradient-blue);
  color: white;
  border-color: transparent;
  transform: scale(1.15);
}

.history-node h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.history-node p {
  font-size: 0.75rem;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-card {
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gradient-blue);
  padding: 4px;
  margin-bottom: 1.5rem;
}

.team-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #cbd5e1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 700;
  color: white;
  font-size: 2rem;
}

.team-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent-hover);
  margin-bottom: 1rem;
}

/* --- PRODUCTS HUB & CATEGORIES --- */
.products-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  padding: 4rem 0;
}

/* Sidebar filter */
.filter-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.filter-widget {
  padding: 2rem;
}

.widget-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--bg-tertiary);
  color: var(--color-primary-dark);
}

.filter-categories-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-category-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-category-btn:hover, .filter-category-btn.active {
  background: rgba(10, 75, 155, 0.05);
  color: var(--color-primary);
}

.filter-category-btn span:last-child {
  font-size: 0.75rem;
  background: var(--bg-tertiary);
  color: var(--text-light);
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
  font-weight: 600;
}

.filter-category-btn.active span:last-child {
  background: var(--color-primary);
  color: white;
}

.search-box-widget {
  position: relative;
}

.search-input-field {
  width: 100%;
  padding: 0.85rem 1.2rem 0.85rem 2.8rem;
  border-radius: 9999px;
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.search-input-field:focus {
  outline: none;
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px rgba(10, 75, 155, 0.08);
}

.search-widget-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  width: 18px;
  height: 18px;
}

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.products-grid .slider-card {
  width: 100% !important;
}

.products-grid-empty {
  grid-column: span 3;
  text-align: center;
  padding: 5rem 0;
  color: var(--text-light);
}

.products-grid-empty svg {
  width: 50px;
  height: 50px;
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* --- FAQ ACCORDION --- */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-header {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: white;
  transition: var(--transition-fast);
}

.faq-header:hover {
  background: var(--bg-secondary);
}

.faq-question {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.faq-icon-box {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(10, 75, 155, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: var(--transition-smooth);
}

.faq-icon-box svg {
  width: 16px;
  height: 16px;
  transition: var(--transition-smooth);
}

.faq-item.active {
  border-color: rgba(10, 75, 155, 0.2);
  box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-icon-box {
  background: var(--gradient-blue);
  color: white;
}

.faq-item.active .faq-icon-box svg {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: white;
}

.faq-content-inner {
  padding: 0 2rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-top: 1px solid transparent;
}

.faq-item.active .faq-content-inner {
  border-top-color: var(--bg-tertiary);
}

/* --- CONTACT US PAGE --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card-item {
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(10, 75, 155, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
}

.contact-card-details h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-card-details p {
  font-size: 0.9rem;
}

.contact-card-details a:hover {
  color: var(--color-primary);
}

.contact-form-panel {
  padding: 3rem;
}

.contact-form-panel h3 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.form-control {
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px rgba(10, 75, 155, 0.08);
}

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

.map-section {
  padding: 0;
  height: 450px;
  overflow: hidden;
  position: relative;
}

.map-container {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --- BLOG PAGE --- */
.blog-layout {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 4rem;
}

.featured-blog-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.featured-blog-img {
  height: 100%;
  min-height: 350px;
  background-size: cover;
  background-position: center;
}

.featured-blog-body {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  background: white;
}

.blog-tag {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-accent-hover);
  letter-spacing: 0.5px;
}

.featured-blog-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.blog-meta {
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  gap: 1.5rem;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.blog-meta svg {
  width: 14px;
  height: 14px;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

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

.blog-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.blog-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.blog-card-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pagination {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.page-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition-fast);
}

.page-num:hover, .page-num.active {
  background: var(--gradient-blue);
  color: white;
  border-color: transparent;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.blog-sidebar-widget {
  padding: 2rem;
}

.sidebar-post-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.sidebar-post-item:last-child {
  margin-bottom: 0;
}

.sidebar-post-img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.sidebar-post-info h5 {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.sidebar-post-info p {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* --- PREMIUM QUOTE MODAL --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 20, 41, 0.4);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.quote-modal-box {
  width: 100%;
  max-width: 550px;
  padding: 3rem;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: var(--transition-smooth);
}

.modal-overlay.active .quote-modal-box {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: white;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--bg-tertiary);
  color: var(--color-primary-dark);
}

.modal-close-btn svg {
  width: 18px;
  height: 18px;
}

.modal-header h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.modal-header p {
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

/* --- INTERACTIVE SEARCH MODAL --- */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 20, 41, 0.4);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10vh;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-modal-box {
  width: 100%;
  max-width: 700px;
  padding: 2.5rem;
  transform: translateY(-20px);
  transition: var(--transition-smooth);
}

.search-overlay.active .search-modal-box {
  transform: translateY(0);
}

.search-bar-inner {
  position: relative;
  margin-bottom: 2rem;
}

.search-bar-inner input {
  width: 100%;
  padding: 1rem 1.5rem 1rem 3.2rem;
  border-radius: 9999px;
  border: 1.5px solid var(--border-color);
  font-family: var(--font-body);
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.search-bar-inner input:focus {
  outline: none;
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 4px rgba(10, 75, 155, 0.08);
}

.search-bar-inner svg {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  width: 20px;
  height: 20px;
}

.search-results-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: 350px;
  overflow-y: auto;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.search-result-item:hover {
  background: var(--bg-tertiary);
}

.search-result-img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: #e2e8f0;
}

.search-result-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
}

.search-result-info p {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Toast Message */
.toast-msg {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 1rem 2rem;
  background: white;
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.toast-msg.active {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  color: var(--color-accent-hover);
}

.toast-text {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary-dark);
}

/* --- KEYFRAMES & ANIMATIONS --- */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-12px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Fade-in scroll animations utility */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate.animated {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVENESS & BREAKPOINTS --- */
@media (max-width: 1200px) {
  :root {
    --header-height: 70px;
  }
  section {
    padding: 6rem 0;
  }
  .bento-grid {
    grid-auto-rows: 260px;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .slider-card {
    width: calc(50% - 1rem);
  }
}

@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }
  .navbar-desktop {
    display: none;
  }
  .header-actions .btn {
    display: none;
  }
  
  /* Hero */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-bullets {
    justify-content: center;
    max-width: 500px;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-visual {
    height: 450px;
  }
  .hero-main-img-wrapper {
    width: 75%;
    height: 100%;
  }
  
  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  /* Bento */
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .bento-1, .bento-2, .bento-3, .bento-4, .bento-5 {
    grid-column: span 2;
    height: 250px;
  }
  
  /* Testimonials & Footer */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .cta-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  /* Internal pages */
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .intro-image-wrapper {
    height: 350px;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-layout {
    grid-template-columns: 1fr;
  }
  .filter-sidebar {
    position: static;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .blog-layout {
    grid-template-columns: 1fr;
  }
  .featured-blog-card {
    grid-template-columns: 1fr;
  }
  .featured-blog-img {
    height: 250px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 5rem 0;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .slider-card {
    width: 100%;
  }
  .history-timeline {
    flex-direction: column;
    gap: 2rem;
    padding-left: 2rem;
  }
  .history-timeline::before {
    left: 25px;
    width: 4px;
    height: 100%;
  }
  .history-node {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .history-year {
    margin: 0;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 2.5rem;
    padding-right: 0;
  }
  .timeline-item:nth-child(odd) {
    text-align: left;
  }
  .timeline-item:nth-child(odd) .timeline-dot {
    left: -10px;
  }
  .timeline-item:nth-child(even) {
    left: 0;
  }
  .timeline-line {
    left: 10px;
  }
}

@media (max-width: 576px) {
  :root {
    --radius-lg: 16px;
    --radius-xl: 20px;
  }
  .container {
    padding: 0 1.25rem;
  }
  .hero-bullets {
    grid-template-columns: 1fr;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* --- ABOUT US TAB WIDGET SYSTEM --- */
.about-tabs-container {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3.5rem;
  margin-top: 3.5rem;
  margin-bottom: 5rem;
  align-items: start;
}

.about-tabs-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-tab-btn {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  text-align: left;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.about-tab-btn .tab-btn-icon {
  width: 36px;
  height: 36px;
  background: rgba(10, 75, 155, 0.05);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.about-tab-btn.active, .about-tab-btn:hover {
  background: white;
  color: var(--color-primary-dark);
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}

.about-tab-btn.active .tab-btn-icon {
  background: var(--gradient-blue);
  color: white;
  transform: rotate(360deg);
}

.about-tab-content-panel {
  position: relative;
}

.about-tab-content {
  display: none;
}

.about-tab-content.active {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  animation: aboutTabFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.about-tab-item {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  height: 100%;
  box-sizing: border-box;
}

.about-tab-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(6, 182, 212, 0.45);
  background: white;
}

.about-tab-item-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(10, 75, 155, 0.1) 100%);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.about-tab-item:hover .about-tab-item-icon {
  background: var(--gradient-blue);
  color: white;
  transform: scale(1.05);
}

.about-tab-item-icon svg {
  width: 22px;
  height: 22px;
}

.about-tab-item-text h4 {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 0.5rem;
}

.about-tab-item-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@keyframes aboutTabFade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
  .about-tabs-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* --- LEGACY TIMELINE --- */
.legacy-timeline {
  position: relative;
  max-width: 900px;
  margin: 4rem auto 1rem;
  padding: 2rem 0;
}

.legacy-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-primary) 100%);
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-node {
  position: relative;
  width: 50%;
  padding: 1.5rem 3rem;
  box-sizing: border-box;
}

.timeline-node:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-node:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 2.25rem;
  width: 20px;
  height: 20px;
  background: white;
  border: 4px solid var(--color-accent);
  border-radius: 50%;
  z-index: 5;
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.4);
  transition: var(--transition-fast);
}

.timeline-node:nth-child(odd) .timeline-dot {
  right: -10px;
}

.timeline-node:nth-child(even) .timeline-dot {
  left: -10px;
}

.timeline-node:hover .timeline-dot {
  background: var(--color-primary-light);
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.7);
}

.timeline-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  display: inline-block;
  text-align: left;
  width: 100%;
}

.timeline-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(6, 182, 212, 0.45);
  background: white;
}

.timeline-year {
  font-family: var(--font-headings);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-accent-hover);
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-size: 1.2rem;
  font-weight: 750;
  color: var(--color-primary-dark);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .legacy-timeline::before {
    left: 20px;
  }
  .timeline-node {
    width: 100%;
    padding: 1.5rem 1.5rem 1.5rem 3.5rem;
    text-align: left !important;
  }
  .timeline-node:nth-child(even) {
    left: 0;
  }
  .timeline-node:nth-child(odd) .timeline-dot,
  .timeline-node:nth-child(even) .timeline-dot {
    left: 10px;
  }
}

/* --- LEADERSHIP TEAM --- */
.team-section {
  padding: 7rem 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.team-member-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  text-align: center;
}

.team-member-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(6, 182, 212, 0.45);
}

.team-member-img-box {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  background-color: var(--bg-tertiary);
}

.team-member-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.team-member-card:hover .team-member-img {
  transform: scale(1.06);
}

.team-member-info {
  padding: 2rem;
}

.team-member-info h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 0.25rem;
}

.team-member-info h4 {
  font-size: 0.95rem;
  color: var(--color-accent-hover);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-member-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.team-member-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.team-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.team-social-icon:hover {
  background: var(--gradient-blue);
  color: white;
  transform: scale(1.1);
}

.team-social-icon svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
  .team-member-img-box {
    height: 320px;
  }
}

/* --- ACCREDITATIONS MARQUEE --- */
.accreditations-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 3rem;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 2rem;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.marquee-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(6, 182, 212, 0.4);
}

.marquee-icon-wrapper {
  color: var(--color-accent-hover);
  display: flex;
  align-items: center;
  justify-content: center;
}

.marquee-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.marquee-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 0.15rem;
}

.marquee-text p {
  font-size: 0.75rem;
  color: var(--text-light);
  margin: 0;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* --- B2B CORPORATE PARTNERSHIP CTA --- */
.b2b-cta-section {
  position: relative;
  padding: 7rem 0;
  background: radial-gradient(circle at 10% 20%, rgba(6, 182, 212, 0.04) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(10, 75, 155, 0.03) 0%, transparent 45%);
}

.b2b-cta-panel {
  padding: 5rem;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-premium);
}

.b2b-cta-content {
  position: relative;
  z-index: 2;
}

.b2b-cta-content h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 1.5rem;
}

.b2b-cta-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.b2b-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .b2b-cta-panel {
    padding: 3.5rem 1.5rem;
  }
  .b2b-cta-content h2 {
    font-size: 1.8rem;
  }
  .b2b-cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .b2b-cta-buttons .btn {
    width: 100%;
  }
}

/* --- ALTERNATING PRODUCT SHOWCASE ROW SYSTEM --- */
.product-showcase-container {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  padding: 4rem 0;
}

.product-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-row.animated {
  opacity: 1;
  transform: translateY(0);
}

.product-row-content {
  flex: 1.2;
}

.product-row-image {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  border: 1px solid var(--border-color);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.product-row-image img {
  width: 100%;
  height: 380px;
  object-fit: contain;
  display: block;
  transition: var(--transition-smooth);
}

.product-row-image:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(10, 75, 155, 0.2);
}

.product-row-image:hover img {
  transform: scale(1.04);
}

.product-row:nth-child(even) {
  flex-direction: row-reverse;
}

.product-row-brand {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-accent-hover);
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.product-row-name {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-primary-dark);
}

.product-row-desc {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.product-row-specs-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.product-row-specs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1.5rem;
}

.product-row-specs li {
  font-size: 0.9rem;
  color: var(--text-light);
  position: relative;
  padding-left: 1.25rem;
}

.product-row-specs li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

@media (max-width: 992px) {
  .product-row {
    flex-direction: column-reverse !important;
    gap: 2rem;
  }
  .product-row-image img {
    height: 300px;
  }
  .product-row-specs {
    grid-template-columns: 1fr;
  }
}

/* --- OFFICE GALLERY SLIDER --- */
.gallery-section {
  background-color: var(--bg-secondary);
  padding: 8rem 0;
  border-bottom: 1px solid var(--border-color);
}

.gallery-slider-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  background: #000;
}

.gallery-slider-container {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.gallery-slide {
  flex: 0 0 100%;
  width: 100%;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease;
}

.gallery-slide:hover img {
  transform: scale(1.04);
}

/* Glassmorphism Caption Card */
.gallery-caption {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  padding: 1.5rem 2rem;
  background: rgba(7, 52, 109, 0.85);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: white;
  transform: translateY(15px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
  max-width: 600px;
  pointer-events: none;
}

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

.gallery-caption h3 {
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.gallery-caption p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Controls */
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border-color);
  color: var(--color-primary-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  z-index: 10;
}

.gallery-btn:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-50%) scale(1.08);
}

.gallery-prev {
  left: 1.5rem;
}

.gallery-next {
  right: 1.5rem;
}

.gallery-btn svg {
  width: 24px;
  height: 24px;
}

/* Dots */
.gallery-dots {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.gallery-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.gallery-dot.active {
  background: var(--color-accent);
  width: 26px;
  border-radius: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-section {
    padding: 5rem 0;
  }
  .gallery-slide {
    aspect-ratio: 4/3;
  }
  .gallery-caption {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    padding: 1rem;
    max-width: calc(100% - 2rem);
  }
  .gallery-caption h3 {
    font-size: 1.1rem;
  }
  .gallery-caption p {
    font-size: 0.8rem;
  }
  .gallery-btn {
    width: 42px;
    height: 42px;
  }
  .gallery-prev {
    left: 0.75rem;
  }
  .gallery-next {
    right: 0.75rem;
  }
  .gallery-dots {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 1rem;
    gap: 0.4rem;
  }
  .gallery-dot.active {
    width: 20px;
  }
}

/* --- CONTACT PAGE STYLES --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 4rem 0;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
}

.contact-card-details h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 0.2rem;
}

.contact-card-details p, .contact-card-details a {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: none;
}

.contact-card-details a:hover {
  color: var(--color-primary);
}

.contact-form-panel {
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.9);
}

.contact-form-panel h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 2rem;
}

.map-section iframe {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .contact-form-panel {
    padding: 1.5rem;
  }
  .contact-grid {
    padding: 2rem 0;
  }
  .map-section iframe {
    height: 300px;
  }
}

/* --- WELCOME POPUP MODAL --- */
.welcome-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 75, 155, 0.4);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.welcome-modal.show {
  opacity: 1;
  visibility: visible;
}

.welcome-modal-content {
  background: white;
  width: 90%;
  max-width: 400px;
  border-radius: 20px; /* rounded corners */
  padding: 1.5rem;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(0.9) translateY(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
}

.welcome-modal.show .welcome-modal-content {
  transform: scale(1) translateY(0);
}

.welcome-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s ease;
  z-index: 10;
}

.welcome-close-btn:hover {
  background: #e2e8f0;
  color: #ef4444;
}

.welcome-image {
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
}

.welcome-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.welcome-text h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 0.75rem;
}

.welcome-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

/* About Us Grid Responsive Fix */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4.5rem;
  align-items: center;
  margin-bottom: 5.5rem;
}
@media (max-width: 991px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(1.1rem, 4vw, 1.4rem);
    line-height: 1.2;
  }
}
