/* ===================================
   PURESTEP — Premium Corporate Styles
   Phase 3: Deep Design Polish, Mega Menu, SVG Icons
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --primary: #2B8C96;
  --primary-dark: #1B3A5C;
  --primary-light: #5FBFC9;
  --accent: #E8F6F8;
  --neutral: #F8FAFB;
  --text: #2D3142;
  --text-light: #6B7280;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(27, 58, 92, 0.04);
  --shadow-md: 0 8px 24px rgba(27, 58, 92, 0.08);
  --shadow-lg: 0 16px 48px rgba(27, 58, 92, 0.12);
  --shadow-xl: 0 24px 64px rgba(27, 58, 92, 0.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --max-width: 1280px;
  --topbar-height: 44px;
  --header-height: 85px;
  --total-header: 124px;
}

/* ── Reset & Globals ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--neutral);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-subtitle::before,
.section-subtitle.center::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.section-subtitle.center {
  justify-content: center;
}

.section-title {
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  margin-bottom: 24px;
}

.section-text {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto 56px;
  line-height: 1.8;
}

.text-center {
  text-align: center;
}

/* ── SVG Icons ── */
.icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.icon-sm {
  width: 18px;
  height: 18px;
}

.icon-lg {
  width: 40px;
  height: 40px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  border: none;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn:hover::after {
  transform: translateX(100%);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 8px 20px rgba(43, 140, 150, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(43, 140, 150, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary-dark);
  border: 1.5px solid rgba(27, 58, 92, 0.2);
}

.btn-outline-dark:hover {
  background: var(--primary-dark);
  color: var(--white);
  border-color: var(--primary-dark);
}

/* ══════════════════════════════
   TOP BAR
   ══════════════════════════════ */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.9);
  height: var(--topbar-height);
  font-size: 0.82rem;
  font-family: var(--font-heading);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  display: flex;
  align-items: center;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.top-bar-left a,
.top-bar-left span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}

.top-bar-left a:hover {
  color: var(--primary-light);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-heading);
}

.lang-btn:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.lang-btn.active {
  color: var(--white);
  background: var(--primary);
}

/* ══════════════════════════════
   HEADER / NAVBAR
   ══════════════════════════════ */
.header {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition);
  background: var(--white);
  border-bottom: 1px solid rgba(27, 58, 92, 0.05);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  height: 70px;
  border-bottom: none;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo img {
  height: 75px;
  width: auto;
  transition: height var(--transition);
}

.header.scrolled .logo img {
  height: 60px;
}

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
}

.main-nav>li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.main-nav>li>a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  height: 100%;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}

.main-nav>li>a:hover,
.main-nav>li:hover>a {
  color: var(--primary);
}

.main-nav>li>a.active {
  color: var(--primary);
}

/* Dropdown Arrow */
.has-mega-menu>a::after,
.has-dropdown>a::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D3142' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-size: cover;
  transition: transform var(--transition);
}

.has-mega-menu:hover>a::after,
.has-dropdown:hover>a::after {
  transform: rotate(180deg);
}

/* ── MEGA MENU ── */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: 800px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 1001;
  padding: 32px;
  border: 1px solid rgba(27, 58, 92, 0.06);
  pointer-events: none;
}

.has-mega-menu:hover>.mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mega-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  background: var(--white);
  border: 1px solid transparent;
}

.mega-item:hover {
  background: var(--neutral);
  border-color: rgba(43, 140, 150, 0.1);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.mega-img {
  width: 100%;
  height: 120px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: #f0f4f8;
}

.mega-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mega-title svg {
  stroke: var(--primary);
  transition: transform var(--transition);
}

.mega-item:hover .mega-title svg {
  transform: translateX(4px);
}

.mega-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Nav CTA */
.nav-cta {
  padding: 12px 28px !important;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
  color: var(--white) !important;
  border-radius: 50px;
  margin-left: 12px;
  box-shadow: 0 4px 12px rgba(43, 140, 150, 0.2);
  height: auto !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(43, 140, 150, 0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ══════════════════════════════
   HERO SLIDER (Splide)
   ══════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
  padding-top: 0;
  overflow: hidden;
}

.splide-hero {
  height: 100%;
}

.splide__track {
  height: 100%;
}

.hero-slide {
  position: relative;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(27, 58, 92, 0.9) 0%, rgba(27, 58, 92, 0.4) 50%, rgba(27, 58, 92, 0.1) 100%);
}

.hero-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 8px 24px;
  margin-bottom: 32px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
  max-width: 800px;
}

.hero h1 span {
  background: linear-gradient(90deg, var(--primary-light), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Splide Overrides */
.splide__pagination {
  bottom: 40px;
}

.splide__pagination__page {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  transition: all var(--transition);
  margin: 0 6px;
}

.splide__pagination__page.is-active {
  background: var(--white);
  transform: scale(1.4);
}

.splide__arrow {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  width: 60px;
  height: 60px;
  opacity: 0;
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero:hover .splide__arrow {
  opacity: 1;
}

.splide__arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.splide__arrow svg {
  fill: var(--white);
  width: 20px;
  height: 20px;
}

/* ══════════════════════════════
   ABOUT PREVIEW
   ══════════════════════════════ */
.about-preview {
  background: var(--white);
  position: relative;
}

.about-preview::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: var(--neutral);
  border-radius: 0 0 0 var(--radius-xl);
  z-index: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image-wrapper img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.about-image-badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: var(--white);
  padding: 24px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--primary);
}

.about-image-badge .stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
}

.about-image-badge .stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
  font-family: var(--font-heading);
  margin-top: 4px;
  display: block;
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  margin-bottom: 40px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary-dark);
}

.about-feature .icon {
  color: var(--primary);
}

/* ══════════════════════════════
   PRODUCTS GRID
   ══════════════════════════════ */
.products-section {
  background: var(--neutral);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(27, 58, 92, 0.05);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.product-card-image {
  position: relative;
  overflow: hidden;
  background: #f0f4f8;
  height: 320px;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card-image img {
  transform: scale(1.1);
}

.product-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  color: var(--primary-dark);
  padding: 8px 16px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.product-card-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.product-card-body p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  transition: gap var(--transition);
  margin-top: auto;
}

.product-card-link:hover {
  gap: 14px;
  color: var(--primary-dark);
}

.product-card-link .icon {
  width: 18px;
  height: 18px;
}

/* Category Tabs */
.category-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.category-tab {
  padding: 14px 36px;
  background: var(--white);
  color: var(--text-light);
  border: 2px solid transparent;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.category-tab:hover {
  color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.category-tab.active,
.cat-tab.active {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(27, 58, 92, 0.2);
}

/* Products Full Grid (products listing page) */
.products-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.cat-tab {
  padding: 14px 36px;
  background: var(--white);
  color: var(--text-light);
  border: 2px solid transparent;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.cat-tab:hover {
  color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* ══════════════════════════════
   FEATURES (Why Choose Us)
   ══════════════════════════════ */
.features {
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--neutral);
  padding: 48px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(27, 58, 92, 0.03);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  color: var(--primary);
  transition: all var(--transition);
}

.feature-card:hover .feature-icon-wrap {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(5px);
  transform: scale(1.1);
  box-shadow: none;
}

.feature-card:hover h3,
.feature-card:hover p {
  color: var(--white);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  transition: color var(--transition);
}

.feature-card p {
  font-size: 1rem;
  color: var(--text-light);
  transition: color var(--transition);
}

/* ══════════════════════════════
   CTA BANNER
   ══════════════════════════════ */
.cta-section {
  background: var(--primary-dark);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.83-1.66 1.66-.83-.83.83-.83zM27.284 0l1.66 1.66-3.32 3.32-1.66-1.66 3.32-3.32zM0 27.284l1.66 1.66-1.66 1.66V27.284zm0 18.254l1.66 1.66-1.66 1.66v-3.32zm54.627 14.462l.83.83-1.66 1.66-.83-.83.83-.83z' fill='%235FBFC9' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 24px;
}

.cta-section p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* ══════════════════════════════
   PAGE BANNER
   ══════════════════════════════ */
.page-banner {
  background: var(--primary-dark);
  padding: 180px 0 100px;
  padding-top: calc(var(--total-header) + 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.83-1.66 1.66-.83-.83.83-.83z' fill='%235FBFC9' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.page-banner h1 {
  font-size: clamp(3rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
}

.page-banner p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a:hover {
  color: var(--primary-light);
}

/* ══════════════════════════════
   ABOUT PAGE
   ══════════════════════════════ */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.about-story-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.about-story-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mv-card {
  background: var(--white);
  padding: 56px 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--primary);
  transition: all var(--transition);
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.mv-card .mv-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 24px;
}

.mv-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.mv-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* ══════════════════════════════
   GALLERY
   ══════════════════════════════ */
.gallery-grid {
  columns: 3;
  column-gap: 32px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 32px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 58, 92, 0.8), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 32px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 30, 0.95);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.lightbox.active {
  display: flex;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

.lightbox-close:hover {
  background: var(--white);
  color: var(--primary-dark);
  transform: rotate(90deg);
}

/* ══════════════════════════════
   CONTACT
   ══════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(27, 58, 92, 0.04);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(8px);
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 1rem;
  color: var(--text-light);
}

.contact-info-card a:hover {
  color: var(--primary);
}

.contact-form-wrapper {
  background: var(--white);
  padding: 56px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(27, 58, 92, 0.05);
}

.contact-form-wrapper h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.contact-form-wrapper>p {
  color: var(--text-light);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1.5px solid rgba(27, 58, 92, 0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--neutral);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(43, 140, 150, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 160px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.map-wrapper {
  margin-top: 80px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.map-wrapper iframe {
  width: 100%;
  height: 500px;
  border: none;
}

/* ══════════════════════════════
   BLOG
   ══════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 40px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(27, 58, 92, 0.05);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.blog-image {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.blog-content {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta,
.blog-date {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 16px;
  font-family: var(--font-heading);
  font-weight: 500;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-content h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  line-height: 1.4;
  transition: color var(--transition);
}

.blog-card:hover .blog-content h3 {
  color: var(--primary);
}

.blog-content p {
  color: var(--text-light);
  margin-bottom: 24px;
  flex: 1;
}

.blog-link {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition);
}

.blog-link:hover {
  gap: 12px;
}

/* ══════════════════════════════
   BLOG DETAIL
   ══════════════════════════════ */
.blog-detail-section { padding-top: 60px; }

.blog-detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.blog-detail-hero {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow-md);
}

.blog-detail-hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.blog-detail-body {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text);
}

.blog-detail-category {
  background: var(--primary);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-detail-sidebar h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
}

.blog-sidebar-card {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
}

.blog-sidebar-card:hover { opacity: 0.8; }

.blog-sidebar-card img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.blog-sidebar-card strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 4px;
  color: var(--primary-dark);
}

.blog-sidebar-card time {
  font-size: 0.78rem;
  color: var(--text-light);
}

.blog-detail-back {
  margin-top: 48px;
  text-align: center;
}

@media (max-width: 768px) {
  .blog-detail-layout {
    grid-template-columns: 1fr;
  }
  .blog-detail-hero img {
    height: 240px;
  }
}

/* ══════════════════════════════
   PRODUCT DETAILS
   ══════════════════════════════ */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.product-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: sticky;
  top: 120px;
}

.product-detail-image img,
.main-product-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.product-detail-images {
  position: sticky;
  top: 120px;
}

.main-product-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  margin-bottom: 16px;
}

.product-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: all 0.2s;
}

.product-thumb:hover,
.product-thumb.active {
  opacity: 1;
  border-color: var(--primary);
}

.product-detail-info h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.product-detail-category {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.product-detail-desc {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 40px;
}

.spec-list {
  margin-bottom: 48px;
  border-top: 1px solid rgba(27, 58, 92, 0.1);
}

.spec-item {
  display: flex;
  padding: 16px 0;
  border-bottom: 1px solid rgba(27, 58, 92, 0.1);
}

.spec-label {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-dark);
  width: 140px;
  flex-shrink: 0;
}

.spec-value {
  color: var(--text-light);
}

/* ══════════════════════════════
   FOOTER
   ══════════════════════════════ */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  padding: 100px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  margin-top: 24px;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 300px;
}

.footer-brand .logo img {
  height: 64px;
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.footer-links a {
  display: block;
  padding: 8px 0;
  font-size: 1rem;
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 8px;
}

.footer-contact a,
.footer-contact p {
  font-size: 1rem;
  display: block;
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-contact a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  padding: 32px 0;
  text-align: center;
  font-size: 0.9rem;
  font-family: var(--font-heading);
  font-weight: 500;
}

/* ══════════════════════════════
   COOKIE & FLOATING BTNS
   ══════════════════════════════ */
.cookie-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  box-shadow: var(--shadow-xl);
  z-index: 10000;
  padding: 32px;
  border-radius: var(--radius-md);
  max-width: 400px;
  border: 1px solid rgba(27, 58, 92, 0.05);
  transform: translateY(150%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-popup.visible {
  transform: translateY(0);
}

.cookie-popup-text h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.cookie-popup-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.cookie-popup-actions {
  display: flex;
  gap: 12px;
}

.cookie-accept {
  flex: 1;
  padding: 14px;
  background: var(--primary-dark);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.cookie-accept:hover {
  background: var(--primary);
}

.cookie-reject {
  flex: 1;
  padding: 14px;
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid rgba(27, 58, 92, 0.2);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.cookie-reject:hover {
  border-color: var(--primary-dark);
  color: var(--primary-dark);
}

.scroll-top,
.whatsapp-btn {
  position: fixed;
  z-index: 100;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.scroll-top {
  bottom: 24px;
  right: 24px;
  background: var(--white);
  color: var(--primary-dark);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-4px);
}

.whatsapp-btn {
  bottom: 24px;
  right: auto;
  left: 24px;
  background: #25D366;
  color: var(--white);
  animation: pulse-green 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  animation: none;
}

@keyframes pulse-green {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
}

.whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.scroll-top svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ══════════════════════════════
   ANIMATIONS
   ══════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════
   RESPONSIVE
   ══════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid,
  .about-story-grid,
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gallery-grid {
    columns: 2;
  }

  .mega-menu {
    width: 90vw;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .top-bar {
    display: none;
  }

  .header {
    top: 0;
    height: 70px;
  }

  .header.scrolled {
    height: 70px;
  }

  .hero {
    min-height: 100vh;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px 32px 40px;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    gap: 0;
    align-items: stretch;
    z-index: 1000;
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav>li {
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 8px 0;
  }

  .main-nav>li>a {
    font-size: 1.1rem;
    padding: 12px 0;
  }

  .hamburger {
    display: flex;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
  }

  .nav-overlay.active {
    display: block;
  }

  /* Mobile Mega Menu */
  .mega-menu {
    position: static;
    width: 100%;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    border-radius: 0;
    pointer-events: auto;
    transition: max-height 0.4s ease;
  }

  .mega-menu.mobile-open {
    max-height: 600px;
    overflow-y: auto;
    padding: 12px 0;
  }

  .has-mega-menu>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .has-mega-menu>a::after {
    content: '▾';
    font-size: 12px;
    transition: transform 0.3s;
  }

  .mega-menu.mobile-open+a::after,
  .has-mega-menu:has(.mobile-open)>a::after {
    transform: rotate(180deg);
  }

  .mega-menu-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mega-item {
    flex-direction: row;
    align-items: center;
    padding: 8px;
    background: var(--neutral);
  }

  .mega-img {
    width: 60px;
    height: 60px;
  }

  .mega-title {
    font-size: 1rem;
  }

  .mega-desc {
    display: none;
  }

  .features-grid,
  .mv-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    columns: 1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .logo img {
    height: 50px;
  }

  .header.scrolled .logo img {
    height: 45px;
  }

  .whatsapp-btn {
    left: 24px;
  }

  .page-banner {
    padding-top: 140px;
  }
}