/* Hero Slider */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-color: #000;
  padding:0;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out; /* Smooth fade-in fade-out transition */
  z-index: 1;
}
.slide.active-slide { opacity: 1; 
z-index: 2;}
.scroll-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.9rem 2.5rem;
  border-radius: 0px;
  font-weight: 700;
  margin-top: 1.2rem;
  cursor: pointer;
  transition: 0.2s;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.scroll-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.02);
}

.hero-content-fixed {
   position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  height: 100%;
  width: 50%; /* Covers the left half of the banner */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 8%;
  box-sizing: border-box;
  
  /* Creates a smooth black block that fades out to the right */
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 60%, rgba(0, 0, 0, 0) 100%);
}
.hero-content-fixed .hero-pretitle {
  display: block;
  font-size: 13px;
  letter-spacing: 2px;
  color: #d4af37; /* Premium Gold Accent color */
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
}
.hero-content-fixed h1 span {
  color: #d4af37; /* Highlights 'with Premium LED Mirrors' in gold */
}
.hero-content-fixed h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
  color: white;
  text-shadow: 0 4px 15px rgba(0,0,0,0.35);
}
.hero-content-fixed p {
font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 40px
}
.hero-actions-row {
  display: flex;
  gap: 1.25rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  width:100%;
}
.hero-primary-btn {
  background: transparent;
  color: #d4af37;
  border: 1.5px solid #d4af37;
  padding: 12px 30px;
  font-size: 14px;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-primary-btn:hover {
  background: #d4af37;
  color: #000000;
}
.hero-secondary-btn {
  background: transparent;
  color: white;
  border: 2px solid white;
  margin: 0 !important;
}
.hero-secondary-btn:hover {
  background: white;
  color: var(--dark-charcoal);
  border-color: white;
}

/* --- Mobile Optimization (Smartphones and Tablets) --- */
@media (max-width: 768px) {
  .hero-slider {
    height: 70vh; /* Slightly taller to prevent text text overflows */
    min-height: 480px;
  }

  .hero-content-fixed {
    width: 100%; /* Spans full screen width instead of 50% */
    padding: 0 24px; /* Centers text safely away from glass screen edges */
    align-items: center; /* Aligns pretitle, text, and buttons to the middle */
    text-align: center; /* Centers all typographic content */
    
    /* Changes side-gradient to a dark bottom shadow for ideal background image contrast */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.2) 100%);
  }

  .hero-content-fixed .hero-pretitle {
    font-size: 11px;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
  }

  .hero-content-fixed h1 {
    font-size: 2.1rem; /* Compact, readable title size for mobile viewport width */
    line-height: 1.3;
    margin-bottom: 12px;
  }

  /* Removes hardcoded <br> breaks on mobile to let text flow naturally */
  .hero-content-fixed h1 br, 
  .hero-content-fixed p br {
    display: none;
  }

  .hero-content-fixed p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 28px;
    color: #e0e0e0;
    max-width: 90%; /* Stops text from hugging screen edges */
  }

  .hero-actions-row {
    width: 100%;
    justify-content: center;
  }

  /* Creates a large, easily clickable touch target for thumbs */
  .hero-primary-btn {
    width: 100%;
    max-width: 280px; /* Limits size on small tablets */
    padding: 14px 20px; /* Thicker top/bottom padding for easier tapping */
    font-size: 13px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
}


/* Category Catalog */
.catalog-section {
  padding: 5rem 2rem;
}
.section-title {
  text-align: center;
  font: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;

}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 2.2rem;
  row-gap: 1.6rem;
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}
@media (max-width: 480px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
}
.catalog-card {
  background: var(--pure-white);
  border-radius: 0px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
}
.catalog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.catalog-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}
@media (max-width: 768px) {
  .catalog-card img {
    aspect-ratio: auto;
    height: 200px;
  }
}
.catalog-card:hover img { transform: scale(1.02);}
.card-label {
  padding: 1rem;
  font-weight: 700;
  background: var(--pure-white);
  color: var(--dark-charcoal);
  font-size: 1rem;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Quality section */
.quality-section {
  background: linear-gradient(120deg, #F4EFE6 0%, #FDFBF7 100%);
  padding: 5rem 2rem;
  text-align: center;
  border-radius: 0px;
  margin-top: 0 ;
}
.badge-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}
.badge-item {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: var(--dark-charcoal);
}
.badge-item i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-right: 8px;
}
.view-products-btn {
  background: var(--dark-charcoal);
  color: white;
  border: none;
  padding: 1rem 2.8rem;
  border-radius: 0px;
  font-weight: 700;
  margin: 1rem 0;
  cursor: pointer;
  transition: all 0.2s;
}
.view-products-btn:hover {
  background: var(--primary);
  transform: scale(1.02);
}

/* Trust Bar */
/* Trust Bar */
.trust-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 2rem 1.5rem;
  background: #FAF9F5;
  border-bottom: 1px solid #EAE6DF;
}

.trust-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: #8C877D;
}

/* 1. Wrapper to hide overflowing logos */
.trust-slider {
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  position: relative;
  /* Visual fade effect on sides */
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

/* 2. Moving container holding both logo sets */
.trust-track {
  display: flex;
  align-items: center;
  gap: 4rem; /* Adjusted gap for spacing */
  width: max-content;
  animation: scrollLogos 25s linear infinite;
}

/* Pause animation on hover for user control */
.trust-track:hover {
  animation-play-state: paused;
}

.trust-track span {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #7E7970;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.75;
  transition: all 0.3s ease;
  white-space: nowrap; /* Prevents text wrapping */
}

.trust-track span i {
  font-size: 1rem;
  color: var(--primary);
  opacity: 0.65;
}

.trust-track span:hover {
  opacity: 1;
  color: var(--dark-charcoal);
  transform: translateY(-1px);
}

/* 3. Infinite loop logic (moves exactly half the track width) */
@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* Curated Bestsellers */
.featured-section {
  padding: 5rem 2.5rem;
  background: #FDFBF7;
  max-width: 1320px;
  margin: 0 auto;
}
.section-subtitle {
  text-align: center;
  color: #6E695F;
  font-size: 1.05rem;
  margin-top: -1.5rem;
  margin-bottom: 3rem;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.2rem;
}
@media (max-width: 768px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.95rem !important;
  }
}
@media (max-width: 480px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.8rem !important;
  }
}
.featured-card {
  background: var(--pure-white);
  border-radius: 0px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.featured-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
@media (max-width: 900px) {
  .featured-card img { height: 175px !important; }
}
@media (max-width: 768px) {
  .featured-card img { height: 160px !important; }
}
@media (max-width: 480px) {
  .featured-card img { height: 150px !important; }
}
.featured-card:hover img {
  transform: scale(1.03);
}
.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 0.4rem 0.9rem;
  border-radius: 0px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.bestseller-badge {
  background: var(--primary);
  color: white;
}
.new-badge {
  background: var(--secondary);
  color: white;
}
.trending-badge {
  background: var(--warning);
  color: white;
}
.featured-card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.featured-card-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-charcoal);
  margin-bottom: 0.5rem;
}
.featured-card-desc {
  font-size: 0.85rem;
  color: #7E7970;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.featured-card-content .price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
}
.featured-card-content .btn-group {
  display: flex;
  gap: 0.7rem;
  margin-top: auto;
}

/* Brand Philosophy */
.brand-story-section {
  padding: 3rem 2.5rem;
  background: #FAF7F2;
  border-radius: 0px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;

}
.story-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.story-image {
  position: relative;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.06);
}
.story-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.story-image:hover img {
  transform: scale(1.02);
}
.story-floating-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 0px;
  box-shadow: var(--shadow-hover);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.4);
}
.badge-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.badge-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--secondary);
  margin-top: 4px;
}
.story-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.story-pretitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 800;
  color: var(--primary);
}
.story-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--dark-charcoal);
}
.story-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #5A554C;
  font-weight: 500;
}
.story-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #706B60;
}
.story-features {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 0.5rem;
}
.story-feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.story-feature-item i {
  font-size: 1.2rem;
  color: white;
  background: var(--secondary);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.story-feature-item h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-charcoal);
  margin-bottom: 2px;
}
.story-feature-item p {
  font-size: 0.85rem;
  color: #706B60;
  margin: 0;
}

/* Interactive Room Style Planner */
.style-planner-section {
  padding: 5rem 2.5rem;
  background: #FAF7F2;
  max-width: 1280px;
  margin: 0 auto;
}
.planner-container {
  background: #FAF7F2;
  border-radius: 0px;
  padding: 1.5rem;
  /* box-shadow: var(--shadow-soft); */
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.planner-controls {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1.5px dashed #EAE6DF;
}
.control-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.control-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8C877D;
  display: flex;
  align-items: center;
  gap: 8px;
}
.control-label i {
  color: var(--primary);
}
.planner-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.planner-btn {
  background: white;
  border: 1.5px solid #EAE6DF;
  color: #5A554C;
  padding: 0.65rem 1.25rem;
  border-radius: 0px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}
.planner-btn:hover {
  border-color: var(--primary-light);
  color: var(--primary-dark);
}
.planner-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(193,122,90,0.2);
}
.planner-visualizer {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  background: white;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.visualizer-image-side {
  background-size: cover;
  background-position: center;
  min-height: 380px;
  position: relative;
  transition: background-image 0.5s ease-in-out;
}
.visualizer-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0) 100%);
  padding: 2.5rem 2rem 2rem;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.visualizer-overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
}
.visualizer-overlay p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #E2DFD8;
  max-width: 500px;
}
.visualizer-overlay strong {
  color: var(--primary-light);
}
.visualizer-content-side {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}
.visualizer-content-side h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-charcoal);
  margin: 0;
}
.visualizer-content-side p {
  font-size: 0.85rem;
  color: #7E7970;
  margin-top: -0.5rem;
}
.recommendations-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  flex-grow: 1;
}
.rec-pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #FAF8F5;
  border: 1px solid #ECE7DF;
  border-radius: 0px;
  padding: 0.6rem 0.8rem;
  transition: all 0.25s ease;
}
.rec-pill:hover {
  transform: translateX(4px);
  border-color: var(--primary-light);
  background: #FFF;
}
.rec-pill img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 0px;
  flex-shrink: 0;
}
.rec-info {
  flex-grow: 1;
}
.rec-info h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-charcoal);
  margin-bottom: 2px;
}
.rec-info p {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary) !important;
  margin: 0 !important;
}
.rec-action {
  font-size: 0.85rem;
  color: var(--secondary);
  cursor: pointer;
  background: none;
  border: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 0px;
  background: #EBF0EC;
  transition: all 0.2s ease;
}
.rec-action:hover {
  background: var(--secondary);
  color: white;
}
.planner-explore-btn {
  background: var(--dark-charcoal);
  color: white;
  border: none;
  padding: 0.9rem 1.8rem;
  border-radius: 0px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
  text-align: center;
  display: inline-block;
  font-family: inherit;
}
.planner-explore-btn:hover {
  background: var(--primary);
  box-shadow: 0 4px 15px rgba(193,122,90,0.25);
  transform: translateY(-1px);
}

/* Customer Testimonials */
.testimonials-section {
  padding: 5rem 2.5rem;
  background: #FAF7F2;
  border-radius: 0px;
 /* margin-top: 3rem;*/
}
.testimonials-slider-container {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.testimonials-track {
  display: flex;
  gap: 1.75rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0.25rem;
  scrollbar-width: none;
  width: 100%;
}
.testimonials-track::-webkit-scrollbar {
  display: none;
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 1.2rem);
  min-width: 300px;
  background: white;
  border-radius: 0px;
  padding: 2.2rem;
  box-shadow: 0 10px 30px rgba(193,122,90,0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  transition: var(--transition);
  border: 1px solid #ECE7DF;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-gold);
}
.stars {
  display: flex;
  gap: 4px;
}
.stars i {
  color: #D4A373;
  font-size: 0.9rem;
}
.review-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #5A554C;
  font-style: italic;
  margin: 0;
  min-height: 4.8em;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.client-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.client-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-charcoal);
  margin-bottom: 2px;
}
.client-info span {
  font-size: 0.78rem;
  color: #8C877D;
}
.slider-nav-btn {
  background: var(--pure-white);
  border: 1.5px solid #ECE7DF;
  color: var(--dark-charcoal);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-soft);
  flex-shrink: 0;
  outline: none;
}
.slider-nav-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: scale(1.08);
}

@media (max-width: 992px) {
  .testimonials-track .testimonial-card {
    flex: 0 0 calc(50% - 0.9rem);
  }
}
@media (max-width: 768px) {
  .testimonials-slider-container {
    gap: 0.5rem;
  }
  .testimonials-track {
    gap: 1rem;
  }
  .testimonials-track .testimonial-card {
    flex: 0 0 85%;
    padding: 1.8rem;
  }
  .slider-nav-btn {
    display: none;
  }
}

/* Free Styling Consultation Banner */
.consultation-banner-section {
  background: linear-gradient(135deg, #4A6552 0%, #1D2B20 100%);
  padding: 5rem 2.5rem;
  position: relative;
  overflow: hidden;
  color: white;
}
.consultation-banner-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,195,165,0.15) 0%, rgba(216,195,165,0) 70%);
  pointer-events: none;
}
.consultation-banner-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193,122,90,0.12) 0%, rgba(193,122,90,0) 70%);
  pointer-events: none;
}
.consultation-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.consultation-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}
.consultation-pretitle {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-gold);
}
.consultation-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.25;
  margin: 0;
}
.consultation-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #D3DDD5;
  max-width: 680px;
  margin: 0 auto 0.5rem;
}
.consultation-form {
  display: flex;
  gap: 1rem;
  width: 100%;
  max-width: 640px;
  margin-top: 1rem;
}
.consultation-form input {
  flex: 1;
  padding: 0.9rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 0.9rem;
  outline: none;
  font-family: inherit;
  transition: all 0.3s ease;
}
.consultation-form input::placeholder {
  color: #A3B5A8;
}
.consultation-form input:focus {
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 4px rgba(216,195,165,0.15);
}
.consult-submit-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.9rem 2.2rem;
  border-radius: 0px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-family: inherit;
  white-space: nowrap;
}
.consult-submit-btn:hover {
  background: var(--primary-dark);
  box-shadow: 0 8px 20px rgba(193,122,90,0.3);
  transform: translateY(-1px);
}

/* Responsive adjustments for homepage */
@media (max-width: 991px) {
  .story-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .story-image img {
    height: 380px;
  }
  .planner-visualizer {
    grid-template-columns: 1fr;
  }
  .visualizer-image-side {
    min-height: 280px;
  }
  .consultation-content h2 {
    font-size: 2rem;
  }
  .consultation-form {
    flex-direction: column;
    gap: 0.8rem;
  }
}
@media (max-width: 768px) {
  .trust-logos {
    gap: 2rem;
  }
  .featured-section, .brand-story-section, .style-planner-section, .testimonials-section, .consultation-banner-section {
    padding: 3rem 1.5rem;
  }
  .planner-controls {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .planner-container {
    padding: 0.5rem;
  }
  .visualizer-content-side {
    padding: 1.5rem;
  }
  .story-content h2 {
    font-size: 2rem;
  }
  .hero-slider {
    height: 60vh;
    border-radius: 0px;
  }
  .slide-content h2 {
    font-size: 1.8rem;
  }
}

/* Responsive overrides for images and cards at the absolute bottom of the stylesheet to ensure correct loading order */
@media (max-width: 900px) {
  .featured-card img {
    height: 175px !important;
  }
}
@media (max-width: 768px) {
  .featured-card img {
    height: 160px !important;
  }
}
@media (max-width: 480px) {
  .featured-card img {
    height: 150px !important;
  }
}

:root{
    --section-spacing: 5rem;
}
.catalog-section,
.brand-story-section,
.featured-section,
.style-planner-section,
.testimonials-section,
.consultation-banner-section,
.quality-section{
    padding:5rem 1.5rem;
    
}