*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, sans-serif;
  background:#f6f7f9;
  color:#253041;
  line-height:1.6;
}

.navbar{
  width:100%;
  min-height:78px;
  padding:0 6%;
  background:white;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  position:fixed;
  top:0;
  left:0;
  z-index:999;
  box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.logo{
  font-size:23px;
  font-weight:900;
  color:#b32025;
}

.logo span{
  color:#253041;
}

.navbar nav{
  display:flex;
  gap:22px;
  align-items:center;
}

.navbar nav a{
  text-decoration:none;
  color:#253041;
  font-size:14px;
  font-weight:700;
}

.navbar nav a:hover{
  color:#b32025;
}

.quote-btn,
.main-btn,
.category-title a,
.category-card a{
  text-decoration:none;
  background:#b32025;
  color:#fff;
  padding:13px 25px;
  display:inline-block;
  font-weight:700;
  border-radius:0;
  transition:.3s;
}

.quote-btn:hover,
.main-btn:hover,
.category-title a:hover,
.category-card a:hover{
  background:#82171b;
}

.menu-icon{
  display:none;
  font-size:28px;
  cursor:pointer;
}

/* Image Sliders */
.image-slider{
  position:relative;
  overflow:hidden;
  background:#111;
}

.slider-track{
  position:relative;
  width:100%;
  height:100%;
}

.image-slider .slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity .8s ease;
}

.image-slider .slide.active{
  opacity:1;
  z-index:1;
}

.image-slider .slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.hero-wrap{
  margin-top:78px;
  display:flex;
  flex-direction:column;
}

.hero-slider{
  margin-top:0;
  height:calc(100vh - 78px - 130px);
  min-height:380px;
}

.hero-slider .slider-dots{
  bottom:20px;
}

.hero-features{
  width:100%;
  background:#fff;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-top:1px solid #ececec;
  position:relative;
  z-index:4;
}

.hero-features .feature{
  padding:28px 20px;
  text-align:center;
  border-right:1px solid #ececec;
}

.hero-features .feature:last-child{
  border-right:none;
}

.hero-features .feature img{
  width:34px;
  height:34px;
  margin-bottom:12px;
}

.hero-features .feature h3{
  font-size:18px;
  color:#b32025;
  font-weight:700;
  margin-bottom:8px;
}

.hero-features .feature p{
  font-size:14px;
  color:#666;
  line-height:22px;
}

.page-slider{
  margin-top:78px;
  height:360px;
}

.showroom-slider,
.trust-slider{
  height:420px;
}

.slider-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:3;
  width:48px;
  height:48px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.85);
  color:#253041;
  font-size:22px;
  line-height:1;
  cursor:pointer;
  transition:.3s;
}

.slider-btn:hover{
  background:#b32025;
  color:#fff;
}

.slider-btn.prev{ left:20px; }
.slider-btn.next{ right:20px; }

.slider-dots{
  position:absolute;
  bottom:24px;
  left:50%;
  transform:translateX(-50%);
  z-index:3;
  display:flex;
  gap:10px;
}

.slider-dots button{
  width:12px;
  height:12px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.55);
  cursor:pointer;
  padding:0;
  transition:.3s;
}

.slider-dots button.active{
  background:#b32025;
  transform:scale(1.15);
}

/* Legacy hero - kept for reference, replaced by slider */
.hero{
    min-height:100vh;
    padding:140px 7% 80px;
    background:
        linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
        url("../images/hero.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    display:flex;
    align-items:center;
}

.hero-content{
  max-width:850px;
  color:#fff;
}

.hero-content h1{
  font-size:66px;
  line-height:1.1;
  text-transform:uppercase;
  margin-bottom:22px;
  font-weight:900;
}

.hero-content p{
  font-size:20px;
  max-width:650px;
  margin-bottom:32px;
  color:#eee;
}

/* About */
.about{
  padding:100px 7%;
  display:grid;
  grid-template-columns:1.2fr .9fr;
  gap:60px;
  align-items:center;
  background:#f6f7f9;
}

.about-img img{
  width:100%;
  height:430px;
  object-fit:cover;
}

.about-text h5{
  font-size:15px;
  color:#b32025;
  letter-spacing:2px;
  margin-bottom:15px;
}

.about-text h2{
  font-size:42px;
  line-height:1.25;
  text-transform:uppercase;
  margin-bottom:22px;
  color:#1f2937;
}

.about-text p{
  font-size:18px;
  color:#334155;
}

.features{
    width:100%;
    background:#fff;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border:1px solid #ececec;
    margin:40px auto;
}

.feature{
    padding:30px 20px;
    text-align:center;
    border-right:1px solid #ececec;
}

.feature:last-child{
    border-right:none;
}

.feature img{
    width:34px;
    height:34px;
    margin-bottom:12px;
}

.feature h3{
    font-size:20px;
    color:#b32025;
    font-weight:700;
    margin-bottom:10px;
}

.feature p{
    font-size:14px;
    color:#666;
    line-height:22px;
}
/* Categories */
.categories{
  padding:100px 4%;
  background:#f6f7f9;
  display:grid;
  grid-template-columns:1.1fr 1.25fr 1.25fr;
  gap:22px;
}

.category-title{
  background:white;
  min-height:280px;
  padding:55px 45px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  grid-row:span 2;
}

.category-title h2{
  font-size:38px;
  line-height:1.25;
  margin-bottom:25px;
  color:#253041;
}

.category-card{
  position:relative;
  min-height:280px;
  overflow:hidden;
}

.category-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:brightness(.65);
  transition:.5s;
}

.category-card:hover img{
  transform:scale(1.08);
}

.category-card div{
  position:absolute;
  left:40px;
  bottom:38px;
  color:white;
}

.category-card h3{
  font-size:30px;
  text-transform:uppercase;
  margin-bottom:20px;
}

.living,
.outdoor{
  min-height:330px;
}

/* Showroom - replaced by image slider */
.showroom{
  padding:110px 7%;
  background:
    linear-gradient(rgba(0,0,0,.67),rgba(0,0,0,.67)),
    url("../images/living.jpg");
  background-size:cover;
  background-position:center;
  text-align:center;
  color:white;
}

.showroom h2{
  font-size:48px;
  max-width:900px;
  margin:0 auto 20px;
  line-height:1.2;
}

.showroom p{
  max-width:700px;
  margin:0 auto 30px;
  font-size:18px;
  color:#eee;
}

/* Stats */
.stats-section{
  padding:110px 8%;
  background:#f6f7f9;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:70px;
  align-items:center;
}

.stats-left{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:25px;
}

.stat-box{
  min-height:210px;
  border:2px solid #b32025;
  padding:28px;
  background:#f6f7f9;
}

.stat-box h2{
  font-size:42px;
  line-height:1.1;
  margin-bottom:45px;
  color:#253041;
}

.stat-box p{
  font-size:18px;
  text-transform:uppercase;
  font-weight:800;
}

.stats-img img{
  width:100%;
  height:500px;
  object-fit:cover;
}

/* FAQ */
.faq{
  padding:90px 14%;
  background:#f6f7f9;
}

.faq h2{
  text-align:center;
  font-size:34px;
  margin-bottom:45px;
}

.faq h2 span{
  color:#253041;
  border:2px solid #b32025;
  border-radius:50%;
  padding:2px 14px;
  display:inline-block;
}

.faq-item{
  border-bottom:1px solid #e5e7eb;
  margin-bottom:0;
}

.faq-item button{
  width:100%;
  background:transparent;
  border:none;
  padding:20px 0;
  font-size:17px;
  font-weight:700;
  text-align:left;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  cursor:pointer;
  color:#111827;
}

.faq-icon{
  width:12px;
  height:12px;
  border-right:2px solid #111827;
  border-bottom:2px solid #111827;
  transform:rotate(-135deg);
  flex-shrink:0;
  transition:transform .3s;
}

.faq-item.active .faq-icon{
  transform:rotate(45deg);
}

.faq-item p{
  display:none;
  background:#eceff3;
  padding:18px 22px;
  font-size:15px;
  color:#334155;
  line-height:1.7;
  margin-bottom:8px;
}

.faq-item.active p{
  display:block;
}

/* Footer */
footer{
  padding:70px 5% 60px;
  background:#f6f7f9;
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1.4fr 1.5fr;
  gap:35px;
}

.footer-logo{
  width:58px;
  height:58px;
  margin-bottom:18px;
  display:block;
}

.footer-about p{
  font-size:15px;
  color:#1f2937;
  line-height:1.7;
  max-width:280px;
}

footer h3{
  font-size:18px;
  margin-bottom:16px;
  color:#111827;
  font-weight:700;
}

.footer-col p{
  font-size:15px;
  color:#1f2937;
  margin-bottom:8px;
}

footer input{
  width:100%;
  padding:12px 14px;
  border:1px solid #ddd;
  background:#fff;
  margin:10px 0 12px;
  outline:none;
  font-size:14px;
}

.newsletter-btn{
  width:100%;
  padding:12px 16px;
  border:none;
  background:#b32025;
  color:#fff;
  font-weight:700;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-size:15px;
}

.newsletter-btn svg{
  width:18px;
  height:18px;
  fill:#fff;
}

.footer-social{
  display:flex;
  gap:10px;
  margin-top:16px;
}

.footer-social a{
  width:34px;
  height:34px;
  background:#b32025;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}

.footer-social svg{
  width:16px;
  height:16px;
  fill:#fff;
}

.copyright{
  text-align:center;
  padding:22px;
  background:#f6f7f9;
  font-size:14px;
  font-weight:700;
}

.page-hero{
  margin-top:78px;
  height:260px;
  background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),url("../images/hero.jpg");
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  justify-content:center;
}

.page-hero h1{
  color:#fff;
  text-transform:uppercase;
  font-size:34px;
}

.trust-banner{
  height:360px;
  background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),url("../images/bedroom.jpg");
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
}

.trust-banner h2{
  font-size:42px;
  margin-bottom:10px;
}

.trust-banner p{
  max-width:650px;
  margin:10px auto 25px;
}

.trust-banner a{
  background:#fff;
  color:#b32025;
  padding:14px 35px;
  text-decoration:none;
  font-weight:700;
}

.about-page-section,
.founder-section{
  padding:90px 6%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
  background:#f6f7f9;
}

.about-page-img img,
.founder-img img{
  width:100%;
  height:520px;
  object-fit:cover;
}

.about-page-content h5{
  color:#b32025;
  font-style:italic;
  margin-bottom:15px;
}

.about-page-content h2,
.founder-text h2{
  font-size:42px;
  margin-bottom:20px;
  color:#253041;
}

.about-page-content p,
.founder-text p{
  color:#334155;
  font-size:16px;
  margin-bottom:18px;
}

.timeline-row{
  display:grid;
  grid-template-columns:120px 1fr;
  border-top:1px solid #ddd;
  padding:22px 0;
}

.timeline-row h3{
  font-size:30px;
  color:#253041;
}

.founder-text h4{
  text-transform:uppercase;
  color:#253041;
  font-size:20px;
  margin-bottom:15px;
}

.founder-text h3{
  font-size:24px;
  margin:28px 0 12px;
}

.active{
  color:#b32025 !important;
}

@media(max-width:768px){
  .about-page-section,
  .founder-section{
    grid-template-columns:1fr;
    padding:60px 5%;
  }

  .about-page-content h2,
  .founder-text h2{
    font-size:30px;
  }

  .about-page-img img,
  .founder-img img{
    height:320px;
  }

  .timeline-row{
    grid-template-columns:1fr;
  }
}

.visionary-section{
  padding:90px 14%;
  display:grid;
  grid-template-columns:1fr 1.05fr;
  gap:80px;
  align-items:center;
  background:#f6f7f9;
}

.visionary-content h4{
  color:#253041;
  font-size:22px;
  font-weight:900;
  margin-bottom:18px;
}

.visionary-content h2{
  font-size:44px;
  color:#253041;
  margin-bottom:25px;
}

.visionary-content p{
  font-size:16px;
  color:#334155;
  line-height:1.8;
  margin-bottom:32px;
}

.visionary-content h3{
  font-size:23px;
  color:#253041;
  margin-bottom:14px;
}

.visionary-img img{
  width:100%;
  height:680px;
  object-fit:cover;
}

@media(max-width:768px){
  .visionary-section{
    grid-template-columns:1fr;
    padding:60px 5%;
  }

  .visionary-img img{
    height:360px;
  }

  .visionary-content h2{
    font-size:32px;
  }
}
/* Responsive */
@media(max-width:1100px){
  .navbar{
    padding:15px 5%;
  }

  .menu-icon{
    display:block;
  }

  .navbar nav{
    position:absolute;
    top:78px;
    left:0;
    width:100%;
    background:white;
    flex-direction:column;
    padding:20px;
    display:none;
  }

  .navbar nav.active{
    display:flex;
  }

  .quote-btn{
    display:none;
  }

  .hero-content h1{
    font-size:46px;
  }

  .about,
  .stats-section{
    grid-template-columns:1fr;
  }

  .hero-features,
  .features{
    grid-template-columns:repeat(2,1fr);
  }

  .hero-features .feature:nth-child(2){
    border-right:none;
  }

  .hero-features .feature:nth-child(1),
  .hero-features .feature:nth-child(2){
    border-bottom:1px solid #ececec;
  }

  .categories{
    grid-template-columns:1fr 1fr;
  }

  .category-title{
    grid-row:auto;
  }

  footer{
    grid-template-columns:1fr 1fr;
  }

  .footer-about{
    grid-column:1 / -1;
  }
}

@media(max-width:650px){
  .hero-slider{
    min-height:280px;
    height:calc(55vh - 130px);
  }

  .hero-features{
    grid-template-columns:repeat(2,1fr);
  }

  .hero-features .feature:nth-child(2){
    border-right:none;
  }

  .hero-features .feature:nth-child(1),
  .hero-features .feature:nth-child(2){
    border-bottom:1px solid #ececec;
  }

  .page-slider{
    height:240px;
  }

  .showroom-slider,
  .trust-slider{
    height:280px;
  }

  .slider-btn{
    width:38px;
    height:38px;
    font-size:18px;
  }

  .slider-btn.prev{ left:10px; }
  .slider-btn.next{ right:10px; }

  .hero{
    min-height:auto;
    padding:120px 5% 70px;
    text-align:center;
  }

  .hero-content h1{
    font-size:33px;
  }

  .hero-content p{
    font-size:16px;
  }

  .about,
  .stats-section,
  .faq{
    padding:60px 5%;
  }

  .about-text h2,
  .showroom h2,
  .category-title h2{
    font-size:28px;
  }

  .about-img img,
  .stats-img img{
    height:300px;
  }

  .categories,
  .stats-left,
  footer{
    grid-template-columns:1fr;
  }

  .footer-about p{
    max-width:none;
  }

  .category-card{
    min-height:260px;
  }

  .category-card h3{
    font-size:24px;
  }

  .faq-item button{
    font-size:15px;
  }
}