@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;700&family=Sora:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #ea4e25;
  --primary-hover: #d23a13;
  --secondary: #1c1c1c;
  --dark-bg: #0c0c0c;
  --dark-panel: #161616;
  --light-bg: #fdfdfd;
  --light-gray: #f5f5f7;
  --text-dark: #111111;
  --text-light: #666666;
  --text-muted: #999999;
  --white: #ffffff;
  --border: rgba(0, 0, 0, 0.08);
  --border-dark: rgba(255, 255, 255, 0.08);
  --font-title: 'Sora', sans-serif;
  --font-body: 'Heebo', sans-serif;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
  --header-height: 90px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-body);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--light-bg);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.2;
}

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

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

/* Common Layout Containers */
.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

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

.section-title-wrap {
  margin-bottom: 60px;
}

.subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--secondary);
}

.section-title span {
  color: var(--primary);
}

/* Premium Header styling */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.92);
  height: 80px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

header.scrolled .nav-link {
  color: var(--text-dark);
}

header.scrolled .logo-text {
  color: var(--text-dark);
}

header.scrolled .logo-subtext {
  color: var(--text-light);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 70px;
  width: auto;
  border-radius: 6px;
  background-color: #fcfcfc;
  padding: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

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

.logo-icon {
  width: 42px;
  height: 42px;
  background-color: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(234, 78, 37, 0.3);
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.5px;
  color: var(--white);
  line-height: 1.1;
  text-transform: uppercase;
}

.logo-subtext {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 35px;
}

.nav-link {
  font-weight: 500;
  font-size: 15px;
  color: var(--white);
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.5px;
}

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

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

.nav-link.active {
  color: var(--primary) !important;
}

.nav-cta {
  background-color: var(--primary);
  color: var(--white) !important;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(234, 78, 37, 0.25);
  border: 1px solid transparent;
}

.nav-cta:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 78, 37, 0.35);
}

.nav-cta::after {
  display: none;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
}

.mobile-nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--white);
  margin-bottom: 6px;
  transition: var(--transition);
}

header.scrolled .mobile-nav-toggle span {
  background-color: var(--text-dark);
}

.mobile-nav-toggle span:last-child {
  margin-bottom: 0;
}

/* Floating contact buttons (WhatsApp & Call) */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  font-size: 24px;
  transition: var(--transition);
}

.floating-btn:hover {
  transform: translateY(-5px) scale(1.05);
}

.floating-whatsapp {
  background-color: #25d366;
}

.floating-call {
  background-color: #0076ff;
}

/* Hero Slider Area */
.hero-slider-container {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: var(--dark-bg);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.2s ease-in-out;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
  transform: scale(1.08);
  transition: transform 8s ease-out;
}

.hero-slide.active .hero-bg-img {
  transform: scale(1);
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  max-width: 800px;
  transform: translateY(40px);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s ease;
  transition-delay: 0.3s;
}

.hero-slide.active .hero-content {
  transform: translateY(0);
  opacity: 1;
}

.hero-content h1 {
  font-size: 68px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-content h1 span {
  color: var(--primary);
  display: block;
}

.hero-content p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 650px;
  font-weight: 300;
}

.btn-group {
  display: flex;
  gap: 20px;
}

.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(234, 78, 37, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(234, 78, 37, 0.4);
}

.btn-secondary {
  border-color: var(--white);
  color: var(--white);
}

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

/* Slider Controls */
.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 10;
  display: flex;
  gap: 12px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background-color: var(--primary);
  transform: scale(1.4);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.slider-arrow:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(234, 78, 37, 0.3);
}

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

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

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background-color: rgba(234, 78, 37, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 26px;
  margin-bottom: 25px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--secondary);
}

.feature-card p {
  font-size: 15px;
  color: var(--text-light);
}

/* Category Grid Display */
.products-overview {
  background-color: var(--light-gray);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.prod-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

.prod-img-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.prod-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.prod-card:hover .prod-img-wrap img {
  transform: scale(1.08);
}

.prod-info {
  padding: 40px;
}

.prod-info h3 {
  font-size: 26px;
  margin-bottom: 15px;
  color: var(--secondary);
}

.prod-info p {
  color: var(--text-light);
  margin-bottom: 25px;
  font-size: 15px;
}

.text-btn {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--primary);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.text-btn:hover {
  gap: 12px;
}

/* Solutions by Spaces Carousel */
.spaces-section {
  background-color: var(--secondary);
  color: var(--white);
  overflow: hidden;
}

.spaces-section .section-title {
  color: var(--white);
}

.spaces-carousel {
  display: flex;
  gap: 30px;
  transition: var(--transition);
}

.space-slide {
  min-width: 320px;
  flex: 1;
  position: relative;
  height: 480px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.space-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.space-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 35px;
  transition: var(--transition);
}

.space-slide:hover img {
  transform: scale(1.1);
}

.space-slide:hover .space-overlay {
  background: linear-gradient(to top, rgba(234, 78, 37, 0.9) 0%, rgba(0,0,0,0.4) 70%);
}

.space-overlay h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.space-overlay p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.space-slide:hover .space-overlay p {
  opacity: 1;
  max-height: 80px;
  margin-top: 10px;
}

/* Visualizer Teaser styling */
.visualizer-teaser {
  background: radial-gradient(circle at top right, #ffecd2 0%, #fcb69f 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 100px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  margin-top: 50px;
}

.viz-text {
  max-width: 550px;
}

.viz-text h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--secondary);
}

.viz-text p {
  font-size: 17px;
  color: #4a4a4a;
  margin-bottom: 30px;
}

.viz-btn {
  background-color: var(--secondary);
  color: var(--white);
  border: none;
}

.viz-btn:hover {
  background-color: #000;
  color: var(--white);
}

.viz-mockup {
  width: 40%;
  position: relative;
  display: flex;
  justify-content: center;
}

.viz-mockup-frame {
  width: 280px;
  height: 480px;
  background-color: #000;
  border: 12px solid #222;
  border-radius: 36px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.viz-mockup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.5s ease;
}

.viz-swatches-anim {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.85);
  padding: 10px 15px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.viz-swatch-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  animation: pulse-swatch 3s infinite ease-in-out;
}

.viz-swatch-dot:nth-child(1) { background-color: #8B4513; animation-delay: 0s; }
.viz-swatch-dot:nth-child(2) { background-color: #CD853F; animation-delay: 0.8s; }
.viz-swatch-dot:nth-child(3) { background-color: #DEB887; animation-delay: 1.6s; }

@keyframes pulse-swatch {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); box-shadow: 0 0 10px rgba(0,0,0,0.4); }
}

/* About Us Section */
.about-section {
  background-color: var(--white);
}

.about-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-col-text {
  flex: 1;
}

.about-col-img {
  flex: 1;
  position: relative;
}

.about-image-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background-color: var(--primary);
  color: var(--white);
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(234, 78, 37, 0.4);
  text-align: center;
}

.experience-badge h4 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.experience-badge p {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 5px;
  font-weight: 600;
}

.about-features {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.about-feature-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.about-feature-item i {
  color: var(--primary);
  font-size: 18px;
  margin-top: 3px;
}

.about-feature-item h5 {
  font-size: 16px;
  color: var(--secondary);
  margin-bottom: 5px;
}

.about-feature-item p {
  font-size: 14px;
  color: var(--text-light);
}

/* Contact Area Styles */
.contact-section {
  background-color: var(--light-gray);
}

.contact-row {
  display: flex;
  gap: 60px;
}

.contact-info-card {
  flex: 1.2;
  background-color: var(--secondary);
  color: var(--white);
  padding: 60px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-card h3 {
  font-size: 36px;
  margin-bottom: 20px;
}

.contact-info-card p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  margin-bottom: 40px;
}

.info-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

.info-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.info-text p, .info-text a {
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
}

.contact-form-card {
  flex: 1.8;
  background-color: var(--white);
  padding: 60px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.contact-form-card h3 {
  font-size: 32px;
  margin-bottom: 35px;
  color: var(--secondary);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 30px;
}

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

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 16px 20px;
  background-color: var(--light-gray);
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background-color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(234, 78, 37, 0.1);
}

.form-group textarea {
  height: 130px;
  resize: none;
}

/* Footer Styling */
footer {
  background-color: var(--secondary);
  color: var(--white);
  padding-top: 80px;
  padding-bottom: 40px;
  border-top: 1px solid var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

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

.footer-desc {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  margin-top: 20px;
  margin-bottom: 25px;
}

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

.social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
}

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

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

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
}

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

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--primary);
  margin-top: 4px;
}

.footer-contact-item p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
}

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

.footer-bottom p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}

/* Products Catalog Page styles */
.inner-hero {
  height: 400px;
  background-color: var(--secondary);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.inner-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(12,12,12,0.95) 0%, rgba(28,28,28,0.7) 100%);
  z-index: 1;
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.inner-hero-content h1 {
  font-size: 52px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

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

.breadcrumbs span {
  color: var(--primary);
}

/* Category Filter Tabs */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  background-color: var(--light-gray);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-light);
}

.filter-tab:hover {
  background-color: var(--white);
  color: var(--primary);
  border-color: var(--primary);
}

.filter-tab.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(234, 78, 37, 0.25);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

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

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

.catalog-img-wrap {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.catalog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.catalog-card:hover .catalog-img-wrap img {
  transform: scale(1.08);
}

.catalog-details {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.catalog-details h3 {
  font-size: 20px;
  color: var(--secondary);
  margin-bottom: 10px;
}

.catalog-details p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
  flex-grow: 1;
}

.catalog-meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 20px;
}

.meta-spec {
  display: flex;
  flex-direction: column;
}

.meta-spec span:first-child {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.meta-spec span:last-child {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
}

/* Interactive Visualizer Page styles */
.visualizer-container {
  display: flex;
  gap: 40px;
  background-color: var(--white);
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  margin-top: -60px;
  position: relative;
  z-index: 10;
  border: 1px solid var(--border);
}

.visualizer-preview-panel {
  flex: 1.8;
  position: relative;
  background-color: var(--light-gray);
  border-radius: 16px;
  overflow: hidden;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.05);
}

/* Dynamic Texture Overlay Layer using CSS Masking and Blend modes */
.viz-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 500px;
  max-height: 550px;
}

.viz-base-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.viz-overlay-texture {
  position: absolute;
  top: 5.5%; /* Custom aligned percentages to match the white door panel within our mockup */
  left: 20%;
  width: 60%;
  height: 89%;
  z-index: 1;
  background-color: #f5f5f5;
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply; /* Blends textures perfectly over shadows in base mockup */
  transition: all 0.5s ease;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}

.kitchen-cabinet-mode .viz-overlay-texture {
  /* Aligns overlay perfectly with cabinet doors in kitchen base render */
  top: 40%;
  left: 10%;
  width: 80%;
  height: 50%;
}

.visualizer-control-panel {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.viz-control-section {
  margin-bottom: 30px;
}

.viz-control-section h3 {
  font-size: 20px;
  color: var(--secondary);
  margin-bottom: 15px;
  font-weight: 700;
}

.viz-type-toggle {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.viz-toggle-btn {
  flex: 1;
  padding: 16px 20px;
  border-radius: 12px;
  background-color: var(--light-gray);
  border: 1px solid var(--border);
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
}

.viz-toggle-btn.active {
  background-color: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.swatch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.swatch-card {
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  overflow: hidden;
  text-align: center;
}

.swatch-card:hover {
  transform: scale(1.05);
}

.swatch-card.active {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(234, 78, 37, 0.2);
}

.swatch-preview {
  height: 60px;
  width: 100%;
  background-size: cover;
  background-position: center;
}

.swatch-name {
  font-size: 11px;
  font-weight: 600;
  padding: 6px 2px;
  color: var(--text-light);
  display: block;
}

.viz-spec-card {
  background-color: var(--light-gray);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.viz-spec-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--secondary);
}

.viz-spec-card p {
  font-size: 13px;
  color: var(--text-light);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 9999;
}

.toast {
  background-color: var(--secondary);
  color: var(--white);
  padding: 16px 28px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(20px);
  opacity: 0;
  animation: toast-fade-in 0.5s forwards, toast-fade-out 0.5s 3.5s forwards;
  border-left: 4px solid var(--primary);
}

@keyframes toast-fade-in {
  to { transform: translateY(0); opacity: 1; }
}

@keyframes toast-fade-out {
  to { transform: translateY(-20px); opacity: 0; }
}

/* Mobile Menu overlays */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background-color: var(--dark-bg);
  z-index: 99;
  padding: 120px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  box-shadow: -10px 0 30px rgba(0,0,0,0.25);
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav .nav-link {
  font-size: 20px;
  display: block;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  :root {
    --header-height: 80px;
  }
  .container {
    padding: 0 30px;
  }
  section {
    padding: 70px 0;
  }
  .section-title {
    font-size: 34px;
  }
  .hero-content h1 {
    font-size: 48px;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .about-row {
    flex-direction: column;
  }
  .about-col-img {
    margin-top: 50px;
  }
  .contact-row {
    flex-direction: column;
  }
  .visualizer-container {
    flex-direction: column;
  }
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .visualizer-preview-panel {
    height: 450px;
  }
  .viz-text h2 {
    font-size: 30px;
  }
  .visualizer-teaser {
    flex-direction: column;
    gap: 40px;
    padding: 50px;
  }
  .viz-text {
    max-width: 100%;
    text-align: center;
  }
  .viz-mockup {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .catalog-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 38px;
  }
  .btn-group {
    flex-direction: column;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
