/* BKS Industries - Ultra-Modern Glassmorphism Commercial Kitchen Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg-main: #080c14;
  --bg-card: rgba(15, 23, 42, 0.65);
  --bg-card-hover: rgba(30, 41, 59, 0.75);
  --bg-dark: #090d16;
  --bg-dark-secondary: #0f172a;
  
  --primary: #0284c7;
  --primary-hover: #0369a1;
  --primary-light: rgba(2, 132, 199, 0.18);
  
  --accent: #f59e0b;
  --accent-hover: #fbbf24;
  --accent-light: rgba(245, 158, 11, 0.18);
  
  --steel: #94a3b8;
  --steel-light: rgba(255, 255, 255, 0.05);
  --steel-border: rgba(255, 255, 255, 0.12);
  
  --text-dark: #f8fafc;
  --text-muted: #94a3b8;
  --text-light: #ffffff;
  
  --success: #10b981;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 30px -5px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 45px -10px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 30px rgba(245, 158, 11, 0.3);
  --glass-glow: inset 0 1px 0 0 rgba(255, 255, 255, 0.18);
  
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(2, 132, 199, 0.15) 0%, transparent 45%),
    radial-gradient(circle at 90% 40%, rgba(245, 158, 11, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 20% 85%, rgba(16, 185, 129, 0.1) 0%, transparent 45%);
  background-attachment: fixed;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

.badge-new-pill {
  background: var(--accent);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.1rem 0.4rem;
  border-radius: 99px;
  margin-right: 0.2rem;
  vertical-align: middle;
}

/* Top Announcement Bar Glass */
.top-bar {
  background: rgba(8, 12, 20, 0.85);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  color: #94a3b8;
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 101;
}

.top-bar-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-item i {
  color: var(--accent);
}

.badge-gold {
  background: rgba(245, 158, 11, 0.18);
  color: var(--accent);
  border: 1px solid rgba(245, 158, 11, 0.4);
  padding: 0.18rem 0.7rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.25);
}

/* Glassmorphism Header Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 12, 20, 0.82);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5), inset 0 1px 0 0 rgba(255, 255, 255, 0.15);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.navbar-scrolled {
  background: rgba(6, 9, 15, 0.94);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid rgba(245, 158, 11, 0.4);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.7), inset 0 1px 0 0 rgba(245, 158, 11, 0.25);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
  background: #ffffff;
  padding: 3px 6px;
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.3), 0 4px 12px rgba(0,0,0,0.5);
  border: 1.5px solid rgba(245, 158, 11, 0.5);
  transition: var(--transition);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 0 22px rgba(245, 158, 11, 0.5);
}

.brand-text-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  background: linear-gradient(135deg, #ffffff 40%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.brand-text-sub {
  font-size: 0.62rem;
  color: #38bdf8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.82rem;
  color: #cbd5e1;
  transition: var(--transition);
  position: relative;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.nav-link.active {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.16);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.25);
}

.nav-link.active::after {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-actions .btn {
  padding: 0.42rem 0.85rem;
  font-size: 0.8rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

/* Button Styles */
.btn {
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #d97706 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(245, 158, 11, 0.55);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(2, 132, 199, 0.15);
  box-shadow: 0 0 15px rgba(2, 132, 199, 0.3);
}

.btn-dark {
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-dark:hover {
  background: rgba(30, 41, 59, 0.95);
}

.cart-btn {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #ffffff;
  transition: var(--transition);
}

.cart-btn:hover {
  background: rgba(2, 132, 199, 0.2);
  color: var(--primary);
  border-color: var(--primary);
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.4rem;
  background: none;
  color: #ffffff;
  padding: 0.4rem;
}

/* Mobile Nav Drawer */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 20, 0.8);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 250;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-nav-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100vh;
  background: rgba(15, 23, 42, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  color: #ffffff;
  z-index: 251;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 10px 0 40px rgba(0,0,0,0.5);
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.mobile-nav-drawer.active {
  left: 0;
}

.mobile-nav-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav-list {
  list-style: none;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.5rem;
  color: #cbd5e1;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.mobile-nav-link:hover {
  background: rgba(255,255,255,0.08);
  color: var(--accent);
}

/* Hero Section Glass Theme */
.hero-section {
  position: relative;
  background: transparent;
  color: #ffffff;
  padding: 5rem 1.5rem 6rem;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(2, 132, 199, 0.18) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: var(--glass-glow);
}

.hero-badge-pill i {
  color: var(--accent);
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero-title span {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: #94a3b8;
  margin-bottom: 2.2rem;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
}

.stat-label {
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 500;
}

/* Hero Media Stack */
.hero-media-wrapper {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-image-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero-image-card:hover img {
  transform: scale(1.03);
}

.floating-glass-card {
  position: absolute;
  background: rgba(15, 23, 42, 0.75);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4), var(--glass-glow);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 5;
}

.float-rating {
  bottom: -20px;
  left: -20px;
}

.float-spec {
  top: 20px;
  right: -20px;
}

.rating-stars {
  color: var(--accent);
  font-size: 0.9rem;
}

/* Section Styling Glass */
.section {
  padding: 5rem 1.5rem;
  position: relative;
}

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

.section-subtitle {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.4rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Catalog Filter Bar Glass */
.catalog-controls {
  max-width: 1280px;
  margin: 0 auto 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.search-box {
  position: relative;
  min-width: 300px;
}

.search-box input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.6rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  background: rgba(15, 23, 42, 0.7);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: #ffffff;
  transition: var(--transition);
}

.search-box input::placeholder {
  color: #64748b;
}

.search-box input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.25);
}

.search-box i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--steel);
}

.category-tabs {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.category-tab {
  padding: 0.6rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.88rem;
  color: #cbd5e1;
  white-space: nowrap;
  transition: var(--transition);
}

.category-tab:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(245, 158, 11, 0.15);
}

.category-tab.active {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  box-shadow: 0 0 18px rgba(245, 158, 11, 0.4);
}

/* Equipment Catalog Grid Glass Cards */
.catalog-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.equipment-card {
  background: rgba(15, 23, 42, 0.65);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), var(--glass-glow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.equipment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(245, 158, 11, 0.25), var(--glass-glow);
  border-color: rgba(245, 158, 11, 0.4);
}

.card-image-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #0f172a;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.equipment-card:hover .card-image-wrap img {
  transform: scale(1.05);
}

.category-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(15, 23, 42, 0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--accent);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-title {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.card-specs-list {
  list-style: none;
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.card-specs-list li {
  font-size: 0.85rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-specs-list li i {
  color: var(--success);
  font-size: 0.8rem;
}

.card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-estimate {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 600;
}

.price-value {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--accent);
}

/* Commercial Kitchen Blog Glass Cards */
.blogs-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: rgba(15, 23, 42, 0.65);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), var(--glass-glow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(245, 158, 11, 0.25);
  border-color: rgba(245, 158, 11, 0.4);
}

.blog-image-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image-wrap img {
  transform: scale(1.05);
}

.blog-category-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  color: #ffffff;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.blog-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--steel);
  margin-bottom: 0.6rem;
}

.blog-title {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.blog-summary {
  font-size: 0.88rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-article-content h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin: 1.2rem 0 0.6rem;
}

.blog-article-content h4 {
  font-size: 1.05rem;
  color: #ffffff;
  margin: 1rem 0 0.4rem;
}

.blog-article-content ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.blog-article-content li {
  margin-bottom: 0.4rem;
}

/* 2D Visual Kitchen Layout Planner Glass */
.planner-section {
  padding: 5rem 1.5rem;
}

.planner-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.planner-control-bar {
  background: rgba(15, 23, 42, 0.75);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.planner-presets-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.preset-btn {
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
}

.preset-btn:hover {
  background: rgba(245, 158, 11, 0.2);
  border-color: var(--accent);
}

.preset-btn.active {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.4);
}

.planner-dimensions-inputs {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: #cbd5e1;
}

.planner-dimensions-inputs input {
  width: 65px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255,255,255,0.25);
  color: #ffffff;
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  font-weight: 700;
  font-family: inherit;
}

.planner-main-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 1.5rem;
  min-height: 520px;
}

.planner-palette-sidebar {
  background: rgba(15, 23, 42, 0.75);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}

.palette-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.planner-palette-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  overflow-y: auto;
  max-height: 440px;
  padding-right: 0.3rem;
}

.planner-palette-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
}

.planner-palette-item:hover {
  background: rgba(2, 132, 199, 0.2);
  border-color: var(--primary);
  transform: translateX(4px);
}

.planner-palette-item img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 6px;
}

.planner-canvas-container {
  background: rgba(2, 6, 23, 0.85);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  overflow: auto;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.8);
}

.planner-canvas-grid {
  display: grid;
  gap: 6px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 0);
  background-size: 20px 20px;
  min-height: 450px;
  position: relative;
  border: 2px dashed rgba(2, 132, 199, 0.4);
  border-radius: 12px;
  padding: 12px;
}

.planner-grid-dimensions-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(15, 23, 42, 0.95);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  border: 1px solid rgba(245, 158, 11, 0.3);
  pointer-events: none;
  z-index: 10;
}

.planner-placed-node {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.85) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 1px solid rgba(56, 189, 248, 0.5);
  border-radius: 8px;
  padding: 0.6rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease;
  user-select: none;
}

.planner-placed-node:hover {
  border-color: var(--accent);
  transform: scale(1.02);
  z-index: 5;
}

.placed-node-cat {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.05em;
}

.placed-node-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.placed-node-delete {
  position: absolute;
  top: 4px;
  right: 4px;
  background: rgba(239, 68, 68, 0.85);
  color: #ffffff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  cursor: pointer;
  border: none;
}

.planner-analytics-bar {
  background: rgba(15, 23, 42, 0.85);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.analytic-item {
  display: flex;
  flex-direction: column;
}

.analytic-label {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 600;
}

.analytic-val {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #ffffff;
}

/* Commercial Kitchen Calculators Glass */
.calculators-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.calc-card {
  background: rgba(15, 23, 42, 0.65);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), var(--glass-glow);
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

.calc-card-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calc-card-header i {
  font-size: 1.5rem;
}

.calc-form {
  margin-bottom: 1.5rem;
}

.calc-results-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.res-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: #cbd5e1;
}

/* Interactive Spec Customizer Modal Glass */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 20, 0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.25s ease;
}

.modal-card {
  background: rgba(15, 23, 42, 0.95);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-radius: 24px;
  max-width: 760px;
  width: 100%;
  padding: 2rem;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), var(--glass-glow);
  position: relative;
}

.modal-close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  color: #ffffff;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.badge-tag {
  background: rgba(2, 132, 199, 0.2);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 0.25rem 0.6rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.75rem;
}

/* Toast Notifications Glass */
.toast-container {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  pointer-events: none;
}

.toast-message {
  background: rgba(15, 23, 42, 0.9);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  color: #ffffff;
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.toast-message.show {
  transform: translateY(0);
  opacity: 1;
}

/* Configurator Card Glass */
.configurator-section {
  background: transparent;
  position: relative;
}

.configurator-card {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(15, 23, 42, 0.65);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 45px rgba(0,0,0,0.5), var(--glass-glow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
}

.config-options-pane {
  padding: 2.5rem;
}

.config-step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.config-step-title span {
  width: 26px;
  height: 26px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.type-select-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.type-option-btn {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  text-align: left;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.type-option-btn:hover {
  border-color: var(--accent);
  background: rgba(245, 158, 11, 0.1);
}

.type-option-btn.selected {
  border-color: var(--accent);
  background: rgba(245, 158, 11, 0.18);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.25);
}

.type-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
}

.type-sub {
  font-size: 0.78rem;
  color: #94a3b8;
}

.size-slider-wrap {
  margin-bottom: 2rem;
}

.size-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.range-slider {
  width: 100%;
  accent-color: var(--accent);
}

.modules-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.module-checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  cursor: pointer;
}

.module-checkbox input {
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
}

/* Config Summary Pane Glass */
.config-summary-pane {
  background: rgba(8, 12, 20, 0.9);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.summary-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1.2rem;
  margin-bottom: 1.5rem;
}

.summary-title {
  font-size: 1.3rem;
  color: #ffffff;
}

.summary-items-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
  flex: 1;
}

.summary-items-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.summary-total-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.total-label {
  font-size: 0.8rem;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 600;
}

.total-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}

/* Reviews Grid Glass */
.reviews-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background: rgba(15, 23, 42, 0.65);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), var(--glass-glow);
  display: flex;
  flex-direction: column;
  position: relative;
}

.google-verified-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: #38bdf8;
  font-size: 1.2rem;
}

.review-stars {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.review-text {
  font-size: 0.95rem;
  color: #cbd5e1;
  font-style: italic;
  margin-bottom: 1.5rem;
  flex: 1;
}

.reviewer-name {
  font-weight: 700;
  color: #ffffff;
  font-size: 0.95rem;
}

.reviewer-location {
  font-size: 0.78rem;
  color: #94a3b8;
}

/* Gallery Showcase Glass */
.gallery-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  height: 240px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8, 12, 20, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
}

/* Contact Section Glass */
.contact-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}

.contact-info-card {
  background: rgba(15, 23, 42, 0.75);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  box-shadow: 0 20px 45px rgba(0,0,0,0.5), var(--glass-glow);
}

.info-item {
  display: flex;
  gap: 1.2rem;
}

.info-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-details h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  color: #ffffff;
}

.info-details p {
  color: #94a3b8;
  font-size: 0.92rem;
}

.contact-form-card {
  background: rgba(15, 23, 42, 0.65);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 20px 45px rgba(0,0,0,0.5), var(--glass-glow);
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  color: #ffffff;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-family: inherit;
  background: rgba(15, 23, 42, 0.8);
  color: #ffffff;
  transition: var(--transition);
}

.form-control::placeholder {
  color: #64748b;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.25);
}

/* Footer Glass */
footer {
  background: rgba(4, 7, 13, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  padding: 4rem 1.5rem 2rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #64748b;
  max-width: 320px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

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

.footer-links a {
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

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

/* Quote Slide-Over Drawer Glass */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 20, 0.75);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.quote-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 440px;
  height: 100vh;
  background: rgba(15, 23, 42, 0.96);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 201;
  box-shadow: -10px 0 40px rgba(0,0,0,0.6);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

.quote-drawer.active {
  right: 0;
}

.drawer-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(8, 12, 20, 0.9);
  color: #ffffff;
}

.drawer-body {
  padding: 1.5rem;
  flex: 1;
  overflow-y: auto;
}

.drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 12, 20, 0.9);
}

/* Floating Quick Actions */
.quick-floating-bar {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.float-action-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.4rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.float-action-btn:hover {
  transform: scale(1.1);
}

.btn-whatsapp {
  background: #25D366;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

.btn-phone {
  background: var(--primary);
  box-shadow: 0 0 20px rgba(2, 132, 199, 0.4);
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-container, .contact-container, .configurator-card, .planner-main-grid, .calculators-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .modal-grid-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .desktop-only {
    display: none;
  }
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .catalog-controls {
    flex-direction: column;
    align-items: stretch;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  .planner-analytics-bar {
    flex-direction: column;
    align-items: stretch;
  }
}
