/* ==========================================
   Al Bait - PREMIUM CORPORATE STYLE SHEET
   Inspired by Apple, Muji, & Google Material Design
   ========================================== */

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

/* CSS Variables for Premium Design System */
:root {
  --primary-color: #0B5ED7;       /* Royal Blue */
  --primary-hover: #094db3;
  --primary-light: rgba(11, 94, 215, 0.08);
  --primary-ultra-light: rgba(11, 94, 215, 0.03);
  --accent-color: #0076FF;        /* Apple System Blue */
  --accent-hover: #005ecb;
  --accent-light: rgba(0, 118, 255, 0.1);
  --dark-color: #222222;          /* Dark Charcoal */
  --light-bg: #F5F7FA;
  --white: #FFFFFF;
  
  /* Text colors */
  --text-main: #222222;
  --text-muted: #667085;
  --text-light: #98A2B3;
  
  /* Glassmorphism & Shadows */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-shadow: 0 10px 40px -10px rgba(11, 94, 215, 0.08);
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  --card-shadow-hover: 0 20px 40px rgba(11, 94, 215, 0.08);
  --inset-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
  
  /* Border Radii */
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --radius-pill: 9999px;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  /* Max width */
  --max-width: 1280px;
}

/* Base resets & styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--white);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--dark-color);
  line-height: 1.3;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-light {
  background-color: var(--light-bg);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px auto;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 400;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  gap: 8px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(11, 94, 217, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 94, 217, 0.35);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary-color);
  border: 1px solid rgba(11, 94, 217, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.btn-secondary:hover {
  background-color: var(--light-bg);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--accent-color);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 118, 255, 0.25);
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 118, 255, 0.35);
}

.btn-text {
  color: var(--primary-color);
  padding: 8px 16px;
  font-weight: 600;
}

.btn-text:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

/* Premium Navigation Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: var(--transition-smooth);
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--glass-shadow);
  padding: 10px 0;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: var(--transition-smooth);
}

header.scrolled .container {
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.logo-img {
  height: 68px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: var(--transition-smooth);
}

header.scrolled .logo-img {
  height: 52px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-main);
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition-fast);
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Quote Cart trigger in header */
.cart-trigger {
  position: relative;
  background: var(--light-bg);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-md);
  padding: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-trigger:hover {
  background: var(--primary-light);
  color: var(--primary-color);
  transform: translateY(-1px);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: var(--accent-color);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--dark-color);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  background-color: #25D366;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

/* Hero Section Styles */
.hero {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: var(--white);
  overflow: hidden;
  position: relative;
}

.hero-slider-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  border: 1px solid rgba(0, 0, 0, 0.03);
  background-color: #F8FAFC;
}

.hero-slides-container {
  display: flex;
  width: 100%;
  position: relative;
  overflow: hidden;
  height: auto;
}

.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  position: relative;
  display: none;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
  display: block;
  opacity: 1;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-btn-overlay {
  position: absolute;
  border-radius: var(--radius-pill);
  cursor: pointer;
  z-index: 10;
  background-color: transparent;
  transition: var(--transition-fast);
}

.hero-btn-overlay:hover {
  background-color: rgba(11, 94, 215, 0.12);
  box-shadow: 0 0 15px rgba(11, 94, 215, 0.25);
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  color: var(--dark-color);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 15;
  transition: var(--transition-fast);
  outline: none;
}

.slider-arrow:hover {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(11, 94, 215, 0.2);
}

.slider-arrow.prev {
  left: 20px;
}

.slider-arrow.next {
  right: 20px;
}

.slider-dots-container {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 15;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.25);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  outline: none;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Background Animated Gradient Blobs */
.bg-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

.blob-1 {
  background-color: var(--primary-color);
  top: -10%;
  right: -10%;
  animation: floatBlob 15s infinite alternate ease-in-out;
}

.blob-2 {
  background-color: var(--accent-color);
  bottom: -10%;
  left: -10%;
  animation: floatBlob 20s infinite alternate-reverse ease-in-out;
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes floatBlob {
  0% { transform: translate(0px, 0px) scale(1); }
  50% { transform: translate(50px, -30px) scale(1.1); }
  100% { transform: translate(-20px, 40px) scale(0.95); }
}

/* About Section Styles */
.about-grid {
  display: grid;
  grid-template-columns: 1.0fr 1.0fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-card {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.about-card-stat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.stat-item {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
  text-align: center;
}

.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.about-content h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-feat-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.about-feat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(11, 94, 215, 0.1);
}

.about-feat-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.about-feat-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.about-feat-text p {
  font-size: 0.8rem;
  margin-bottom: 0;
}

/* Category Section Styles */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.category-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  height: 220px;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  opacity: 0;
  transition: var(--transition-smooth);
}

.category-icon {
  width: 52px;
  height: 52px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.category-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.category-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: auto;
}

.category-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  opacity: 0;
  transform: translateY(5px);
  transition: var(--transition-smooth);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(11, 94, 215, 0.15);
}

.category-card:hover::before {
  opacity: 1;
}

.category-card:hover .category-icon {
  background-color: var(--primary-color);
  color: var(--white);
  transform: scale(1.05);
}

.category-card:hover .category-link {
  opacity: 1;
  transform: translateY(0);
}

/* Featured Products Styles */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

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

.product-img-wrapper {
  position: relative;
  background-color: var(--light-bg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 240px;
  overflow: hidden;
}

.product-img-wrapper img {
  max-height: 100%;
  object-fit: contain;
  transition: var(--transition-smooth);
}

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

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 16px;
  margin-top: auto;
}

.product-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--dark-color);
}

.product-price span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 2px;
}

.btn-add-quote {
  background-color: var(--primary-color);
  color: var(--white);
  border: 1px solid var(--primary-color);
  padding: 10px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-add-quote:hover {
  background-color: var(--primary-hover);
  color: var(--white);
  border-color: var(--primary-hover);
  box-shadow: 0 4px 12px rgba(11, 94, 215, 0.15);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(11, 94, 215, 0.12);
}

/* Why Choose Us Styles */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(360px, 100%), 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 40px;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  display: flex;
  gap: 24px;
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.feature-card-content h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-card-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(11, 94, 215, 0.12);
}

.feature-card:hover .feature-icon-wrapper {
  background-color: var(--accent-light);
  color: var(--accent-color);
  transform: rotate(5deg) scale(1.05);
}

/* Industries We Serve Styles */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.industry-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: var(--transition-smooth);
  position: relative;
  z-index: 1;
}

.industry-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 94, 215, 0.02) 0%, rgba(0, 118, 255, 0.02) 100%);
  z-index: -1;
  opacity: 0;
  transition: var(--transition-smooth);
}

.industry-card i {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.industry-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.industry-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(11, 94, 215, 0.12);
}

.industry-card:hover::after {
  opacity: 1;
}

.industry-card:hover i {
  color: var(--accent-color);
  transform: scale(1.05);
}

/* Testimonial Carousel Styles */
.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  min-height: 280px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 0 20px;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.testimonial-slide.active {
  opacity: 1;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 48px;
  box-shadow: var(--card-shadow);
  text-align: center;
  position: relative;
}

.testimonial-quote-icon {
  font-size: 3rem;
  color: rgba(11, 94, 215, 0.08);
  position: absolute;
  top: 24px;
  left: 48px;
}

.testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--dark-color);
  margin-bottom: 30px;
  line-height: 1.6;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.testimonial-author-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
}

.testimonial-author-title {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: left;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

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

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--dark-color) 0%, #151515 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cta-banner .bg-blob {
  opacity: 0.08;
  filter: blur(150px);
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.cta-banner h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-banner p {
  color: #A3A3A3;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.cta-banner .btn {
  margin: 8px;
}

/* Contact & Info Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.info-item {
  display: flex;
  gap: 20px;
}

.info-icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-details h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.info-details p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.map-placeholder {
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--light-bg);
  position: relative;
  border: 1px solid var(--border-color);
  margin-top: 10px;
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  filter: grayscale(1);
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 94, 215, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.map-overlay span {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary-color);
  background: var(--white);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Premium Form Styles */
.contact-form-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 48px;
  box-shadow: var(--card-shadow);
}

.form-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.form-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-input {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background-color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text-main);
  transition: var(--transition-fast);
  outline: none;
}

.form-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px var(--primary-light);
}

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

/* Footer Styles */
footer {
  background-color: var(--dark-color);
  color: var(--white);
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo-container {
  background-color: var(--white);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  display: inline-block;
  max-width: 140px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.footer-logo-container img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-desc {
  color: #A3A3A3;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.footer-links a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-newsletter h4 {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-newsletter p {
  color: #A3A3A3;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  flex-grow: 1;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-family: inherit;
  font-size: 0.85rem;
  outline: none;
}

.newsletter-input:focus {
  border-color: var(--primary-color);
}

.newsletter-btn {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 0 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.newsletter-btn:hover {
  background-color: var(--primary-hover);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: #737373;
  font-size: 0.8rem;
}

.footer-extra-links {
  display: flex;
  gap: 24px;
}

.footer-extra-links a {
  color: #737373;
  font-size: 0.8rem;
}

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

/* ==========================================
   B2B QUOTE SLIDE-OVER CART MODAL
   ========================================== */
.quote-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

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

.quote-modal {
  position: fixed;
  top: 0;
  right: -550px;
  width: 100%;
  max-width: 500px;
  height: 100%;
  background-color: var(--white);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.quote-modal-overlay.active .quote-modal {
  transform: translateX(-550px);
}

.quote-modal-header {
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.quote-modal-header h2 {
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.quote-modal-header h2 i {
  color: var(--primary-color);
}

.btn-close-modal {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.btn-close-modal:hover {
  color: var(--dark-color);
}

.quote-modal-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Quote items */
.cart-items-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-empty-msg {
  text-align: center;
  color: var(--text-muted);
  padding: 40px 0;
}

.cart-empty-msg i {
  font-size: 3rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: var(--light-bg);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-img img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-name {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.cart-item-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.cart-qty-ctrl {
  display: flex;
  align-items: center;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
}

.cart-qty-btn {
  background: none;
  border: none;
  padding: 4px 10px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition-fast);
}

.cart-qty-btn:hover {
  background-color: var(--light-bg);
}

.cart-qty-val {
  padding: 4px 8px;
  font-size: 0.85rem;
  font-weight: 600;
  min-width: 28px;
  text-align: center;
}

.cart-remove-btn {
  background: none;
  border: none;
  color: #F43F5E;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.cart-remove-btn:hover {
  text-decoration: underline;
}

/* B2B Quote Information Form */
.quote-form-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
}

.quote-modal-footer {
  padding: 24px;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Success notification message popup */
.success-toast {
  position: fixed;
  bottom: 32px;
  left: 32px;
  background-color: #10B981;
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.success-toast.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/* ==========================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================== */
@media (max-width: 1024px) {
  h1 { font-size: 3rem; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-subheadline {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-visual {
    height: 400px;
  }
  .hero-main-card {
    width: 75%;
    height: 95%;
  }
  .floating-p1 { left: 0%; }
  .floating-p2 { right: 0%; }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-visual {
    order: 2;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  .hero-headline {
    font-size: 2.8rem;
  }
  .nav-links {
    display: none; /* In JS we will toggle a mobile nav or standard layout */
  }
  header.mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 24px;
    box-shadow: var(--glass-shadow);
    border-bottom: 1px solid var(--border-color);
  }
  header.scrolled.mobile-open .nav-links {
    top: 64px;
  }
  .menu-toggle {
    display: block;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .about-card-stat {
    grid-template-columns: 1fr;
  }
  .cta-banner {
    padding: 50px 24px;
  }
  .cta-banner h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.2rem;
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  .hero-ctas .btn {
    width: 100%;
  }
  .hero-features {
    flex-direction: column;
    gap: 16px;
  }
  .quote-modal {
    max-width: 100%;
    right: -100%;
  }
  .quote-modal-overlay.active .quote-modal {
    transform: translateX(-100%);
  }
  .contact-form-card {
    padding: 24px;
  }
}

/* Stationery Catalog Directory Styles */
.catalog-directory {
  background-color: var(--light-bg);
  padding: 100px 0;
  position: relative;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.directory-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 28px;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}

.directory-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(11, 94, 215, 0.1);
}

.directory-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 12px;
}

.directory-card-header i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.directory-card-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.directory-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.directory-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.directory-list li::before {
  content: "•";
  color: var(--accent-color);
  font-weight: bold;
}

.directory-list li:hover {
  color: var(--primary-color);
  transform: translateX(2px);
}

/* Brands Ticker */
.brands-ticker-section {
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 60px;
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.brand-chip {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-main);
  box-shadow: var(--inset-shadow);
  transition: var(--transition-fast);
}

.brand-chip:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  box-shadow: 0 4px 10px rgba(11, 94, 215, 0.15);
  transform: translateY(-1px);
}

/* Category Explorer Layout Styles */
.explorer-container {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
  align-items: flex-start;
}

.explorer-sidebar {
  width: 280px;
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 16px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
}

/* Custom Scrollbar for Sidebar */
.explorer-sidebar::-webkit-scrollbar {
  width: 4px;
}
.explorer-sidebar::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.sidebar-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-fast);
}

.sidebar-tab i {
  font-size: 1.1rem;
  color: var(--text-muted);
  width: 20px;
  text-align: center;
  transition: var(--transition-fast);
}

.sidebar-tab:hover {
  background-color: var(--light-bg);
  color: var(--primary-color);
}

.sidebar-tab:hover i {
  color: var(--primary-color);
}

.sidebar-tab.active {
  background-color: var(--primary-light);
  color: var(--primary-color);
  font-weight: 600;
}

.sidebar-tab.active i {
  color: var(--primary-color);
}

.explorer-content {
  flex-grow: 1;
}

.explorer-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

/* Mobile responsive Explorer */
@media (max-width: 991px) {
  .explorer-container {
    flex-direction: column;
    gap: 20px;
  }
  .explorer-sidebar {
    width: 100%;
    flex-direction: row;
    position: relative;
    top: 0;
    max-height: none;
    overflow-x: auto;
    padding: 10px;
    box-shadow: none;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background-color: transparent;
    gap: 10px;
  }
  .sidebar-tab {
    white-space: nowrap;
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-pill);
    background-color: var(--white);
  }
  .sidebar-tab.active {
    border-color: var(--primary-color);
  }
}

/* Category Section Titles for Full List View */
.category-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-top: 60px;
  margin-bottom: 25px;
  padding-left: 15px;
  border-left: 4px solid var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

