/* ============================================================
   PREMIUM.CSS — Krishna Scientific Suppliers
   Complete visual override for premium ecommerce look
   ============================================================ */

/* ---------- Google Fonts ---------- */
@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');

/* ---------- Design Tokens ---------- */
:root {
  /* Primary Palette */
  --p-navy:        #0a1628;
  --p-navy-light:  #121e33;
  --p-navy-mid:    #1a2744;
  --p-blue:        #2563eb;
  --p-blue-light:  #3b82f6;
  --p-teal:        #0891b2;
  --p-teal-light:  #22d3ee;
  --p-gold:        #f59e0b;
  --p-gold-light:  #fbbf24;

  /* Surfaces */
  --p-bg:          #f0f4f8;
  --p-white:       #ffffff;
  --p-surface:     rgba(255,255,255,0.85);
  --p-glass:       rgba(255,255,255,0.12);
  --p-glass-border:rgba(255,255,255,0.18);

  /* Text */
  --p-text:        #1e293b;
  --p-text-muted:  #64748b;
  --p-text-light:  #94a3b8;
  --p-text-white:  #f1f5f9;

  /* Gradients */
  --g-hero:        linear-gradient(135deg, #0a1628 0%, #1a2744 40%, #0c2341 100%);
  --g-accent:      linear-gradient(135deg, #2563eb, #0891b2);
  --g-accent-h:    linear-gradient(135deg, #3b82f6, #22d3ee);
  --g-gold:        linear-gradient(135deg, #f59e0b, #fbbf24);
  --g-footer:      linear-gradient(180deg, #0a1628 0%, #070e1a 100%);
  --g-breadcrumb:  linear-gradient(135deg, rgba(10,22,40,0.92), rgba(37,99,235,0.85));

  /* Shadows */
  --s-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --s-md:  0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --s-lg:  0 10px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --s-xl:  0 20px 40px -10px rgba(0,0,0,0.12);
  --s-glow:0 0 20px rgba(37,99,235,0.15);

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 50px;

  /* Transitions */
  --t-fast:   0.2s cubic-bezier(0.4,0,0.2,1);
  --t-normal: 0.3s cubic-bezier(0.4,0,0.2,1);
  --t-slow:   0.5s cubic-bezier(0.4,0,0.2,1);

  /* Font */
  --f-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-heading: 'Outfit', 'Inter', sans-serif;
}

/* ---------- Global Reset Overrides ---------- */
body {
  font-family: var(--f-body) !important;
  color: var(--p-text) !important;
  background: var(--p-bg) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-heading) !important;
  font-weight: 700 !important;
  color: var(--p-text) !important;
  letter-spacing: -0.02em;
}

a {
  transition: var(--t-fast);
}

img {
  max-width: 100%;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.premium-topbar {
  background: var(--p-navy);
  padding: 8px 0;
  font-size: 13px;
  color: var(--p-text-light);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1001;
}
.premium-topbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--g-accent);
}
.premium-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.premium-topbar .topbar-left {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.premium-topbar .topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--p-text-light);
  font-weight: 400;
  white-space: nowrap;
}
.premium-topbar .topbar-item i {
  color: var(--p-teal-light);
  font-size: 11px;
}
.premium-topbar .topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.premium-topbar .topbar-badge {
  background: rgba(37,99,235,0.15);
  color: var(--p-teal-light);
  padding: 3px 12px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(34,211,238,0.2);
}
.premium-topbar .social-icons a {
  color: var(--p-text-light);
  margin-left: 10px;
  font-size: 13px;
  transition: var(--t-fast);
}
.premium-topbar .social-icons a:hover {
  color: var(--p-teal-light);
  transform: translateY(-1px);
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.header-top.theme-bg {
  display: none !important;
}

.premium-header {
  background: var(--p-white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--t-normal);
  box-shadow: none;
}
.premium-header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.premium-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.premium-header .logo img {
  max-height: 48px;
  transition: var(--t-fast);
}
.premium-header.scrolled .logo img {
  max-height: 40px;
}
.premium-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}
.premium-nav li a {
  display: block;
  padding: 10px 18px;
  font-family: var(--f-body);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--p-text) !important;
  text-decoration: none !important;
  border-radius: var(--r-sm);
  position: relative;
  transition: var(--t-fast);
  letter-spacing: 0.01em;
  text-transform: capitalize;
}
.premium-nav li a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--g-accent);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--t-normal);
  transform-origin: center;
}
.premium-nav li a:hover {
  color: var(--p-blue) !important;
  background: rgba(37,99,235,0.04);
}
.premium-nav li a:hover::after,
.premium-nav li.active a::after {
  transform: scaleX(1);
}
.premium-nav li.active a {
  color: var(--p-blue) !important;
  font-weight: 600;
}
.header-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--g-accent);
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--r-pill);
  text-decoration: none !important;
  transition: var(--t-normal);
  box-shadow: 0 4px 15px rgba(37,99,235,0.25);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.header-cta-btn:hover {
  background: var(--g-accent-h);
  box-shadow: 0 6px 20px rgba(37,99,235,0.35);
  transform: translateY(-1px);
  color: #fff !important;
}

/* Mobile menu toggle */
.premium-menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--p-blue);
  border-radius: var(--r-sm);
  padding: 8px 10px;
  cursor: pointer;
  color: var(--p-blue);
  font-size: 18px;
}

/* Hide old nav elements */
#sticky-header,
.main-menu-area,
.mobile-menu {
  display: none !important;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.premium-hero {
  background: var(--g-hero);
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
}
.premium-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(37,99,235,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.premium-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(8,145,178,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.premium-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.25);
  border-radius: var(--r-pill);
  color: var(--p-teal-light);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
}
.premium-hero .hero-badge i {
  color: var(--p-gold);
}
.premium-hero h1 {
  font-family: var(--f-heading) !important;
  font-size: 52px;
  font-weight: 800 !important;
  color: var(--p-text-white) !important;
  line-height: 1.15;
  margin-bottom: 20px;
}
.premium-hero h1 .highlight {
  background: var(--g-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.premium-hero .hero-desc {
  color: var(--p-text-light);
  font-size: 17px;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}
.premium-hero .hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.premium-hero .btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--g-accent);
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--r-pill);
  text-decoration: none !important;
  transition: var(--t-normal);
  box-shadow: 0 4px 20px rgba(37,99,235,0.3);
}
.premium-hero .btn-primary-hero:hover {
  box-shadow: 0 8px 30px rgba(37,99,235,0.45);
  transform: translateY(-2px);
}
.premium-hero .btn-outline-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--p-text-white) !important;
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(255,255,255,0.2);
  text-decoration: none !important;
  transition: var(--t-normal);
}
.premium-hero .btn-outline-hero:hover {
  border-color: var(--p-teal-light);
  background: rgba(34,211,238,0.08);
  color: var(--p-teal-light) !important;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-stat-item {
  text-align: left;
}
.hero-stat-item .stat-number {
  font-family: var(--f-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--p-text-white) !important;
  line-height: 1;
}
.hero-stat-item .stat-number em {
  font-style: normal;
  color: var(--p-teal-light);
  font-size: 24px;
}
.hero-stat-item .stat-label {
  font-size: 13px;
  color: var(--p-text-light);
  margin-top: 4px;
}
.hero-stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.12);
  align-self: stretch;
}

/* Hero slider visual area */
.hero-slider-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slider-visual .hero-glow-circle {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
  animation: heroGlowPulse 4s ease-in-out infinite;
}
@keyframes heroGlowPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
}
.hero-slider-visual .slider-active {
  position: relative;
  z-index: 2;
}

/* Floating info cards */
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  animation: floatBounce 3s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.hero-float-card .fc-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.hero-float-card .fc-icon.blue { background: rgba(37,99,235,0.2); color: var(--p-blue-light); }
.hero-float-card .fc-icon.teal { background: rgba(8,145,178,0.2); color: var(--p-teal-light); }
.hero-float-card .fc-icon.gold { background: rgba(245,158,11,0.2); color: var(--p-gold-light); }
.hero-float-card .fc-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.hero-float-card .fc-sub {
  font-size: 12px;
  color: var(--p-text-light);
}
.hero-float-card.card-1 { top: 15%; right: 5%; animation-delay: 0s; }
.hero-float-card.card-2 { bottom: 25%; right: 0; animation-delay: 1s; }
.hero-float-card.card-3 { bottom: 10%; left: 5%; animation-delay: 2s; }

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

/* Hide old hero */
.hero-area {
  display: none !important;
}

/* ============================================================
   MARQUEE TICKER
   ============================================================ */
.premium-marquee {
  background: var(--p-white);
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 40px;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--p-text);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.marquee-item i {
  color: var(--p-blue);
  font-size: 8px;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SECTION TITLES
   ============================================================ */
.premium-section-title {
  text-align: center;
  margin-bottom: 50px;
}
.premium-section-title .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  background: rgba(37,99,235,0.06);
  border: 1px solid rgba(37,99,235,0.12);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--p-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.premium-section-title h2 {
  font-size: 36px;
  font-weight: 700 !important;
  color: var(--p-text) !important;
  margin-bottom: 8px;
}
.premium-section-title h2 span {
  background: var(--g-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.premium-section-title .section-line {
  width: 60px;
  height: 3px;
  background: var(--g-accent);
  border-radius: 3px;
  margin: 12px auto;
}
.premium-section-title p {
  color: var(--p-text-muted);
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto;
}

/* ============================================================
   CATEGORY BANNER CARDS
   ============================================================ */
.premium-categories {
  padding: 80px 0 60px;
  background: var(--p-white);
}
.category-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 260px;
  cursor: pointer;
  transition: var(--t-normal);
  box-shadow: var(--s-md);
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--s-xl);
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.category-card:hover img {
  transform: scale(1.08);
}
.category-card .cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,22,40,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: var(--t-normal);
}
.category-card:hover .cat-overlay {
  background: linear-gradient(180deg, transparent 10%, rgba(10,22,40,0.9) 100%);
}
.category-card .cat-overlay span {
  font-size: 13px;
  color: var(--p-teal-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.category-card .cat-overlay h3 {
  font-size: 22px;
  color: #fff !important;
  margin: 4px 0 0;
  font-weight: 700 !important;
}
.category-card .cat-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: var(--t-normal);
  opacity: 0;
  transform: translateY(8px);
}
.category-card:hover .cat-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   PRODUCT CARDS (MODERN)
   ============================================================ */
.premium-products {
  padding: 80px 0;
  background: var(--p-bg);
}
.premium-product-card {
  background: var(--p-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t-normal);
  box-shadow: var(--s-sm);
  border: 1px solid rgba(0,0,0,0.04);
  margin-bottom: 30px;
  height: calc(100% - 30px);
  display: flex;
  flex-direction: column;
}
.premium-product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--s-xl), var(--s-glow);
}
.premium-product-card .product-img-wrap {
  position: relative;
  overflow: hidden;
  background: #f8fafc;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.premium-product-card .product-img-wrap img {
  max-height: 200px;
  object-fit: contain;
  transition: transform var(--t-slow);
}
.premium-product-card:hover .product-img-wrap img {
  transform: scale(1.08);
}
.premium-product-card .product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 2;
}
.premium-product-card .product-badge.hot {
  background: linear-gradient(135deg, #ef4444, #f97316);
  color: #fff;
}
.premium-product-card .product-badge.new {
  background: var(--g-accent);
  color: #fff;
}
.premium-product-card .product-badge.sell {
  background: var(--g-gold);
  color: var(--p-navy);
}
.premium-product-card .product-hover-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
  transform: translateY(100%);
  transition: transform var(--t-normal);
  background: linear-gradient(0deg, rgba(255,255,255,0.9) 0%, transparent 100%);
}
.premium-product-card:hover .product-hover-actions {
  transform: translateY(0);
}
.premium-product-card .hover-action-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--p-white);
  color: var(--p-text);
  box-shadow: var(--s-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--t-fast);
  font-size: 15px;
  text-decoration: none !important;
}
.premium-product-card .hover-action-btn:hover {
  background: var(--p-blue);
  color: #fff;
  transform: scale(1.1);
}
.premium-product-card .product-info {
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.premium-product-card .product-info .product-model {
  font-size: 12px;
  color: var(--p-blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.premium-product-card .product-info h4 {
  font-size: 16px;
  font-weight: 600 !important;
  color: var(--p-text) !important;
  margin-bottom: 4px;
  line-height: 1.3;
}
.premium-product-card .product-info h4 a {
  color: inherit !important;
  text-decoration: none !important;
}
.premium-product-card .product-info h4 a:hover {
  color: var(--p-blue) !important;
}
.premium-product-card .product-info .product-code {
  font-size: 13px;
  color: var(--p-text-muted);
  margin-top: auto;
}
.premium-product-card .product-info .view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 20px;
  margin-top: auto;
  align-self: center;
  background: transparent;
  border: 1.5px solid var(--p-blue);
  color: var(--p-blue) !important;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--r-pill);
  text-decoration: none !important;
  transition: var(--t-fast);
}
.premium-product-card .product-info .view-btn:hover {
  background: var(--p-blue);
  color: #fff !important;
}

/* Hide old product/banner containers */
.banner-area.banner-pb,
.banner-02-area,
.product-area {
  display: none !important;
}

/* ============================================================
   STATS COUNTER SECTION
   ============================================================ */
.premium-stats {
  padding: 60px 0;
  background: var(--p-navy);
  position: relative;
  overflow: hidden;
}
.premium-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(37,99,235,0.1) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 50%, rgba(8,145,178,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.stat-card {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}
.stat-card .stat-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: var(--r-md);
  background: rgba(37,99,235,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--p-teal-light);
}
.stat-card .stat-num {
  font-family: var(--f-heading);
  font-size: 40px;
  font-weight: 800;
  color: #fff !important;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card .stat-num span {
  color: var(--p-teal-light);
}
.stat-card .stat-text {
  font-size: 14px;
  color: var(--p-text-light);
  font-weight: 500;
}

/* ============================================================
   FEATURED PRODUCTS SLIDER (on product detail page)
   ============================================================ */

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.premium-testimonials {
  padding: 80px 0;
  background: var(--p-bg);
}
/* Hide old testimonial */
.testimonial-area {
  display: none !important;
}
.testimonial-card {
  background: var(--p-white);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  box-shadow: var(--s-sm);
  border: 1px solid rgba(0,0,0,0.04);
  margin-bottom: 30px;
  transition: var(--t-normal);
}
.testimonial-card:hover {
  box-shadow: var(--s-lg);
  transform: translateY(-3px);
}
.testimonial-card .quote-icon {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 48px;
  color: rgba(37,99,235,0.08);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card .tc-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.testimonial-card .tc-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(37,99,235,0.15);
}
.testimonial-card .tc-name {
  font-size: 16px;
  font-weight: 600 !important;
  color: var(--p-text) !important;
  margin: 0;
}
.testimonial-card .tc-role {
  font-size: 13px;
  color: var(--p-text-muted);
}
.testimonial-card .tc-stars {
  color: var(--p-gold);
  font-size: 13px;
  margin-bottom: 12px;
}
.testimonial-card .tc-text {
  font-size: 15px;
  color: var(--p-text-muted);
  line-height: 1.7;
}

/* ============================================================
   BRAND / PARTNER SECTION
   ============================================================ */
.premium-brands {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}
.premium-brands::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
/* Hide old brand area */
.brand-area {
  display: none !important;
}

/* Section header for brands */
.premium-brands .premium-section-title h2 {
  color: #fff !important;
}
.premium-brands .premium-section-title h2 span {
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.premium-brands .premium-section-title p {
  color: rgba(255, 255, 255, 0.6);
}
.premium-brands .premium-section-title .section-label {
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: #60a5fa;
}
.premium-brands .premium-section-title .section-line {
  background: linear-gradient(90deg, #2563eb, #60a5fa);
}

.brand-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  height: 100px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.95);
  transition: var(--t-normal);
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}
.brand-logo-card img {
  max-height: 50px;
  max-width: 100%;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: var(--t-normal);
}
.brand-logo-card:hover {
  background: #fff;
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.3);
  transform: translateY(-5px);
}
.brand-logo-card:hover img {
  transform: scale(1.05);
}

/* ============================================================
   BREADCRUMB (All inner pages)
   ============================================================ */
.premium-breadcrumb {
  background: var(--g-hero);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.premium-breadcrumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.premium-breadcrumb::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(37,99,235,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.premium-breadcrumb h2 {
  font-family: var(--f-heading) !important;
  font-size: 40px;
  font-weight: 800 !important;
  color: #fff !important;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}
.premium-breadcrumb .bc-trail {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}
.premium-breadcrumb .bc-trail li a {
  color: var(--p-text-light) !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 500;
  transition: var(--t-fast);
}
.premium-breadcrumb .bc-trail li a:hover {
  color: var(--p-teal-light) !important;
}
.premium-breadcrumb .bc-trail li span {
  color: var(--p-teal-light);
  font-size: 14px;
  font-weight: 500;
}
.premium-breadcrumb .bc-trail li .bc-sep {
  color: var(--p-text-light);
  font-size: 11px;
}
/* Hide old breadcrumb */
.breadcrumb-area {
  display: none !important;
}

/* ============================================================
   SHOP PAGE
   ============================================================ */
.premium-shop {
  padding: 60px 0 80px;
  background: var(--p-bg);
}
.shop-results-bar {
  background: var(--p-white);
  border-radius: var(--r-md);
  padding: 16px 24px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--s-sm);
  border: 1px solid rgba(0,0,0,0.04);
}
.shop-results-bar h4 {
  font-size: 15px;
  font-weight: 600 !important;
  color: var(--p-text) !important;
  margin: 0;
}
.shop-results-bar h4 span {
  color: var(--p-blue);
}
/* Hide old shop wrapper */
.shhop-full-area {
  display: none !important;
}

/* Modern Pagination */
.premium-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
  padding: 0;
  list-style: none;
}
.premium-pagination li a,
.premium-pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  color: var(--p-text) !important;
  text-decoration: none !important;
  transition: var(--t-fast);
  background: var(--p-white);
  border: 1px solid rgba(0,0,0,0.06);
}
.premium-pagination li a:hover {
  background: var(--p-blue);
  color: #fff !important;
  border-color: var(--p-blue);
}
.premium-pagination li.active a,
.premium-pagination li.active span {
  background: var(--g-accent);
  color: #fff !important;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}
.premium-pagination li.disabled a {
  opacity: 0.4;
  pointer-events: none;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.premium-about {
  padding: 80px 0;
  background: var(--p-white);
}
.about-content-card {
  background: var(--p-bg);
  border-radius: var(--r-lg);
  padding: 40px;
  margin-bottom: 30px;
  border: 1px solid rgba(0,0,0,0.04);
}
.about-content-card h2 {
  font-size: 30px;
  margin-bottom: 20px;
}
.about-content-card p {
  color: var(--p-text-muted);
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 16px;
}
.about-years-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--g-accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--r-pill);
  margin-bottom: 24px;
}
.about-years-badge .years-num {
  font-family: var(--f-heading);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}
.about-years-badge .years-text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}
.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(37,99,235,0.06);
  border: 1px solid rgba(37,99,235,0.1);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--p-text);
  margin: 4px;
  transition: var(--t-fast);
}
.partner-badge i {
  color: var(--p-teal);
}
.partner-badge:hover {
  background: var(--p-blue);
  color: #fff;
  border-color: var(--p-blue);
}
.partner-badge:hover i {
  color: #fff;
}
.vision-mission-card {
  background: var(--p-bg);
  border-radius: var(--r-lg);
  padding: 36px;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--t-normal);
}
.vision-mission-card:hover {
  box-shadow: var(--s-lg);
  transform: translateY(-4px);
}
.vision-mission-card .vm-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--g-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
}
.vision-mission-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}
.vision-mission-card p {
  color: var(--p-text-muted);
  line-height: 1.8;
  font-size: 15px;
}

/* Hide old about */
.about-area.about-pb {
  display: none !important;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.premium-contact {
  padding: 80px 0;
  background: var(--p-white);
}
/* Hide old contact area */
.contact-area.pos-rel {
  display: none !important;
}
.contact-info-card {
  background: var(--p-bg);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--t-normal);
}
.contact-info-card:hover {
  box-shadow: var(--s-md);
  transform: translateY(-2px);
}
.contact-info-card .ci-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--g-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}
.contact-info-card .ci-label {
  font-size: 13px;
  color: var(--p-text-muted);
  font-weight: 500;
  margin-bottom: 4px;
}
.contact-info-card .ci-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--p-text);
}
.premium-form-group {
  margin-bottom: 20px;
}
.premium-form-group input,
.premium-form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: var(--r-md);
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--p-text);
  background: var(--p-bg);
  transition: var(--t-fast);
  outline: none;
}
.premium-form-group input:focus,
.premium-form-group textarea:focus {
  border-color: var(--p-blue);
  background: var(--p-white);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.08);
}
.premium-form-group textarea {
  min-height: 140px;
  resize: vertical;
}
.premium-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--g-accent);
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: var(--t-normal);
  box-shadow: 0 4px 15px rgba(37,99,235,0.25);
}
.premium-submit-btn:hover {
  box-shadow: 0 6px 25px rgba(37,99,235,0.4);
  transform: translateY(-2px);
}
.premium-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--s-lg);
  margin-top: 40px;
}
.premium-map iframe {
  width: 100%;
  height: 400px;
  border: none;
}
/* Hide old map */
.map-area {
  display: none !important;
}

/* ============================================================
   PRODUCT DETAILS PAGE
   ============================================================ */
.premium-product-detail {
  padding: 80px 0;
  background: var(--p-bg);
  position: relative;
  overflow: hidden;
}
.premium-product-detail::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(37,99,235,0.06) 0%, transparent 70%);
  pointer-events: none;
}
/* Hide old shop-banner */
.shop-banner-area {
  display: none !important;
}
.product-desc-area {
  display: none !important;
}
.pd-image-container {
  background: var(--p-white);
  border-radius: 24px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.02);
  position: relative;
  z-index: 1;
}
.pd-image-container img {
  max-height: 380px;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.pd-image-container:hover img {
  transform: scale(1.08);
}
.pd-info {
  padding: 20px 0 20px 40px;
  position: relative;
  z-index: 1;
}
.pd-info .pd-cert {
  display: inline-flex;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(37,99,235,0.05));
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 700;
  color: var(--p-blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.pd-info h1 {
  font-family: var(--f-heading) !important;
  font-size: 42px !important;
  font-weight: 800 !important;
  color: var(--p-text) !important;
  margin-bottom: 12px;
  line-height: 1.2;
}
.pd-info .pd-model {
  font-size: 18px;
  color: var(--p-text-muted);
  font-weight: 500;
  margin-bottom: 8px;
}
.pd-info .pd-code {
  font-size: 15px;
  color: var(--p-navy);
  font-weight: 600;
  padding: 6px 16px;
  background: var(--p-white);
  border-radius: var(--r-pill);
  display: inline-block;
  margin-bottom: 24px;
  box-shadow: var(--s-sm);
  border: 1px solid rgba(0,0,0,0.04);
}
.pd-info .pd-stars {
  color: var(--p-gold);
  font-size: 16px;
  margin-bottom: 24px;
}
.pd-info .pd-stars span {
  color: var(--p-text-muted);
  margin-left: 10px;
  font-size: 14px;
  font-weight: 500;
}
.pd-info .pd-desc {
  color: var(--p-text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.pd-buy-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 42px;
  background: linear-gradient(135deg, var(--p-blue), #1e40af);
  color: #fff !important;
  font-size: 17px;
  font-weight: 600;
  border-radius: var(--r-pill);
  text-decoration: none !important;
  transition: var(--t-normal);
  box-shadow: 0 8px 25px rgba(37,99,235,0.35);
}
.pd-buy-btn:hover {
  box-shadow: 0 12px 35px rgba(37,99,235,0.5);
  transform: translateY(-3px);
  color: #fff !important;
}

/* Product Description Tabs */
.pd-tabs {
  padding: 0 0 80px;
  background: var(--p-bg);
}
.pd-tabs .nav-tabs {
  border: none;
  gap: 8px;
  margin-bottom: 30px;
}
.pd-tabs .nav-tabs .nav-link {
  border: none;
  padding: 14px 32px;
  border-radius: var(--r-pill);
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--p-text) !important;
  background: var(--p-white);
  transition: var(--t-fast);
  box-shadow: var(--s-sm);
}
.pd-tabs .nav-tabs .nav-link:hover {
  color: var(--p-blue) !important;
  transform: translateY(-2px);
}
.pd-tabs .nav-tabs .nav-link.active {
  background: linear-gradient(135deg, var(--p-blue), #1e40af) !important;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(37,99,235,0.35);
}
.pd-tabs .tab-content {
  background: var(--p-white);
  border-radius: 20px;
  padding: 45px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.03);
}

/* Product Description Content — handles CMS-generated HTML */
.pd-description-content {
  color: var(--p-text);
  font-size: 15px;
  line-height: 1.9;
}
.pd-description-content p {
  color: var(--p-text);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 16px;
}
.pd-description-content strong,
.pd-description-content b {
  color: var(--p-navy);
  font-weight: 700;
}
.pd-description-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  margin: 24px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
}
.pd-description-content table thead tr,
.pd-description-content table tr:first-child {
  background: linear-gradient(135deg, #0f172a, #1e293b);
}
.pd-description-content table thead th,
.pd-description-content table thead td,
.pd-description-content table tr:first-child td,
.pd-description-content table tr:first-child th {
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 14px 18px;
  border: none;
}
.pd-description-content table tbody td,
.pd-description-content table td {
  padding: 13px 18px;
  font-size: 14px;
  color: var(--p-text);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  vertical-align: top;
}
.pd-description-content table tbody tr:nth-child(even),
.pd-description-content table tr:nth-child(even) {
  background: rgba(37,99,235,0.02);
}
.pd-description-content table tbody tr:hover,
.pd-description-content table tr:hover {
  background: rgba(37,99,235,0.05);
}
.pd-description-content table tbody tr:last-child td {
  border-bottom: none;
}
.pd-description-content ul,
.pd-description-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.pd-description-content li {
  color: var(--p-text);
  margin-bottom: 8px;
  line-height: 1.7;
}
.pd-description-content h2,
.pd-description-content h3,
.pd-description-content h4,
.pd-description-content h5 {
  color: var(--p-navy) !important;
  font-weight: 700 !important;
  margin: 24px 0 12px;
}

/* Styled bullet list (converted from <> separators) */
.pd-bullet-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pd-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 16px;
  background: var(--p-bg);
  border-radius: var(--r-md);
  border: 1px solid rgba(0,0,0,0.04);
  font-size: 14px;
  color: var(--p-text);
  line-height: 1.6;
  transition: var(--t-fast);
  margin-bottom: 0;
}
.pd-bullet-list li:hover {
  background: rgba(37,99,235,0.04);
  border-color: rgba(37,99,235,0.1);
}
.pd-bullet-list li i {
  color: var(--p-blue);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}
.pd-bullet-list li span {
  flex: 1;
}
/* Product Actions Row */
.pd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}
.pd-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #25d366;
  color: #fff !important;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--r-pill);
  text-decoration: none !important;
  transition: var(--t-normal);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}
.pd-whatsapp-btn:hover {
  background: #1fb855;
  box-shadow: 0 10px 30px rgba(37,211,102,0.45);
  transform: translateY(-3px);
  color: #fff !important;
}

/* Trust Badges */
.pd-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.pd-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--p-white);
  border-radius: var(--r-md);
  box-shadow: var(--s-sm);
  border: 1px solid rgba(0,0,0,0.04);
  font-size: 13px;
  font-weight: 600;
  color: var(--p-text);
  transition: var(--t-fast);
}
.pd-trust-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--s-md);
}
.pd-trust-item i {
  color: var(--p-blue);
  font-size: 16px;
}

/* Related products */
.premium-related {
  padding: 60px 0 80px;
  background: var(--p-white);
}

/* Responsive for product details */
@media (max-width: 991px) {
  .pd-info {
    padding: 30px 0 0 0 !important;
  }
  .pd-info h1 {
    font-size: 30px !important;
  }
  .pd-actions {
    flex-direction: column;
  }
  .pd-trust-badges {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .pd-image-container {
    min-height: 320px !important;
    padding: 30px !important;
  }
  .pd-info h1 {
    font-size: 26px !important;
  }
  .pd-tabs .tab-content {
    padding: 24px;
  }
  .pd-description-content table {
    display: block;
    overflow-x: auto;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.premium-footer {
  background: var(--g-footer);
  position: relative;
  overflow: hidden;
}
.premium-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--g-accent);
}
.premium-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, rgba(37,99,235,0.04) 0%, transparent 100%);
  pointer-events: none;
}
.footer-main {
  padding: 70px 0 40px;
  position: relative;
  z-index: 2;
}
.footer-col h4 {
  font-family: var(--f-heading) !important;
  font-size: 18px;
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--g-accent);
  border-radius: 2px;
}
.footer-col .footer-about-text {
  color: var(--p-text-light);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-col .footer-logo {
  max-height: 42px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links li a {
  color: var(--p-text-light) !important;
  text-decoration: none !important;
  font-size: 14px;
  transition: var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-links li a::before {
  content: '→';
  font-size: 12px;
  color: var(--p-blue);
  transition: var(--t-fast);
}
.footer-links li a:hover {
  color: var(--p-teal-light) !important;
  padding-left: 4px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item .fci-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(37,99,235,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--p-teal-light);
  flex-shrink: 0;
}
.footer-contact-item .fci-text {
  font-size: 14px;
  color: var(--p-text-light);
  line-height: 1.5;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--p-text-light) !important;
  font-size: 14px;
  transition: var(--t-fast);
  text-decoration: none !important;
}
.footer-social a:hover {
  background: var(--p-blue);
  border-color: var(--p-blue);
  color: #fff !important;
  transform: translateY(-2px);
}
.footer-payment {
  margin-top: 16px;
  background: #fff;
  border-radius: 8px;
  padding: 10px 14px;
  display: inline-block;
}
.footer-payment img {
  max-height: 40px;
  opacity: 1;
  filter: none;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  position: relative;
  z-index: 2;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: var(--p-text-light);
  font-size: 13px;
  margin: 0;
}
.footer-bottom p a {
  color: var(--p-teal-light) !important;
  text-decoration: none !important;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-bottom-links li a {
  color: var(--p-text-light) !important;
  text-decoration: none !important;
  font-size: 13px;
  transition: var(--t-fast);
}
.footer-bottom-links li a:hover {
  color: var(--p-teal-light) !important;
}

/* Hide old footer */
footer .footer-area,
footer .footer-bottom-area {
  display: none !important;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.5s; }
.stagger-children > *:nth-child(7) { transition-delay: 0.6s; }
.stagger-children > *:nth-child(8) { transition-delay: 0.7s; }

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--g-accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,99,235,0.3);
  transition: var(--t-normal);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  z-index: 999;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  box-shadow: 0 6px 28px rgba(37,99,235,0.5);
  transform: translateY(-3px);
}

/* ============================================================
   UTILITY BUTTONS
   ============================================================ */
.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--g-accent);
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--r-pill);
  text-decoration: none !important;
  transition: var(--t-normal);
  box-shadow: 0 4px 15px rgba(37,99,235,0.25);
  border: none;
  cursor: pointer;
}
.btn-accent:hover {
  box-shadow: 0 6px 25px rgba(37,99,235,0.4);
  transform: translateY(-2px);
  color: #fff !important;
}
.btn-outline-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--p-blue) !important;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--p-blue);
  text-decoration: none !important;
  transition: var(--t-normal);
  cursor: pointer;
}
.btn-outline-accent:hover {
  background: var(--p-blue);
  color: #fff !important;
}

/* Alert overrides */
.alert-success {
  background: rgba(16,185,129,0.1) !important;
  border: 1px solid rgba(16,185,129,0.2) !important;
  color: #065f46 !important;
  border-radius: var(--r-md) !important;
}
.alert-danger {
  background: rgba(239,68,68,0.1) !important;
  border: 1px solid rgba(239,68,68,0.2) !important;
  color: #991b1b !important;
  border-radius: var(--r-md) !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .premium-topbar {
    display: none;
  }
  .premium-header .header-inner {
    flex-wrap: wrap;
  }
  .premium-nav-wrap {
    display: none;
    width: 100%;
    order: 3;
    padding: 16px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
  }
  .premium-nav-wrap.show {
    display: block;
  }
  .premium-nav {
    flex-direction: column;
    gap: 2px;
  }
  .premium-nav li a {
    padding: 12px 16px;
    border-radius: var(--r-sm);
  }
  .premium-nav li a::after {
    display: none;
  }
  .header-cta-btn {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }
  .premium-menu-toggle {
    display: block;
  }
  .premium-hero h1 {
    font-size: 34px;
  }
  .premium-hero {
    min-height: auto;
    padding: 50px 0;
  }
  .hero-float-card {
    display: none;
  }
  .hero-stats {
    gap: 16px;
  }
  .hero-stat-item .stat-number {
    font-size: 24px;
  }
  .premium-section-title h2 {
    font-size: 28px;
  }
  .premium-breadcrumb h2 {
    font-size: 30px;
  }
  .pd-info {
    padding-left: 0;
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .premium-hero h1 {
    font-size: 28px;
  }
  .stat-card .stat-num {
    font-size: 30px;
  }
  .premium-section-title h2 {
    font-size: 24px;
  }
  .premium-breadcrumb {
    padding: 50px 0;
  }
  .premium-breadcrumb h2 {
    font-size: 26px;
  }
  .about-content-card {
    padding: 24px;
  }
  .footer-main {
    padding: 50px 0 30px;
  }
  .footer-bottom .container {
    justify-content: center;
    text-align: center;
  }
}

/* ============================================================
   HIDE OLD SCROLL-UP
   ============================================================ */
#scrollUp {
  display: none !important;
}
