*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#F8F5F0;
  color:#1A1A1A;
  padding-top:85px;
}

.container{
  width:90%;
  max-width:1300px;
  margin:auto;
}

.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  background:rgba(17,17,17,0.85);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.nav{
  height:85px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  color:white;
  font-size:2rem;
  font-weight:800;
  font-family:'Poppins',sans-serif;
  display:flex;
  align-items:center;
  text-decoration:none;
}

.logo img{
  height:50px;
  width:auto;
}

.navbar{
  display:flex;
  gap:35px;
}

.navbar a{
  color:white;
  text-decoration:none;
  font-weight:500;
  transition:.3s;
}

.navbar a:hover{
  color:#D62828;
}

.nav-right{
  display:flex;
  align-items:center;
  gap:20px;
}

.lang-switcher{
  display:flex;
  gap:5px;
  background:rgba(255,255,255,0.1);
  padding:4px;
  border-radius:20px;
}

.lang-btn{
  background:none;
  border:none;
  color:white;
  padding:5px 10px;
  font-size:0.8rem;
  font-weight:600;
  cursor:pointer;
  border-radius:15px;
  transition:0.3s;
}

.lang-btn.active, .lang-btn:hover{
  background:#D62828;
  color:white;
}

.phone{
  color:white;
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:500;
}

.menu-btn{
  display:none;
  background:none;
  border:none;
  color:white;
  font-size:1.4rem;
  cursor:pointer;
}

.hero{
  height:calc(100vh - 85px);
  min-height:600px;
  background:url('https://images.unsplash.com/photo-1509440159596-0249088772ff?q=80&w=1600&auto=format&fit=crop') center/cover;
  display:flex;
  align-items:center;
  position:relative;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}

.hero-content{
  position:relative;
  z-index:2;
  width:90%;
  max-width:1300px;
  margin:auto;
  color:white;
}

.hero-subtitle{
  color:#C89B3C;
  letter-spacing:2px;
  font-size:.9rem;
  display:block;
}

.hero h1{
  font-size:5rem;
  line-height:1.1;
  margin:20px 0;
  max-width:700px;
  font-family:'Poppins',sans-serif;
}

.hero p{
  max-width:600px;
  line-height:1.8;
  font-size:1.1rem;
  opacity:.9;
}

.hero-buttons{
  display:flex;
  gap:20px;
  margin-top:40px;
}

.btn{
  padding:16px 34px;
  border-radius:999px;
  text-decoration:none;
  font-weight:600;
  display:inline-block;
  transition:.3s;
}

.btn i {
  margin-right: 8px;
}

.primary{
  background:#D62828;
  color:white;
  border:none;
  cursor:pointer;
}

.primary:hover{
  transform:translateY(-3px);
  background:#b52020;
}

.secondary{
  border:1px solid rgba(255,255,255,0.4);
  color:white;
}

.secondary:hover{
  background:white;
  color:#111;
}

section{
  padding:120px 0;
}

.section-heading{
  text-align:center;
  margin-bottom:60px;
}

.section-subtitle{
  color:#D62828;
  font-size:.8rem;
  font-weight:700;
  letter-spacing:2px;
  display:block;
}

.section-heading h2{
  font-size:3rem;
  margin-top:10px;
  font-family:'Poppins',sans-serif;
}

.stats{
  background:white;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.stat{
  text-align:center;
  cursor:default;
}

.stat-icon {
  font-size: 2.8rem;
  color: #C89B3C;
  margin-bottom: 15px;
  display: inline-block;
  transition: 0.4s ease;
}

.stat:hover .stat-icon {
  transform: scale(1.15) translateY(-5px);
  color: #D62828;
}

.stat h2{
  font-size:4rem;
  color:#D62828;
  font-family:'Poppins',sans-serif;
}

.stat p{
  margin-top:10px;
  color:#666;
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.about-image img{
  width:100%;
  border-radius:30px;
  display:block;
}

.about-text h2{
  font-size:3rem;
  margin:20px 0;
  font-family:'Poppins',sans-serif;
}

.about-text p{
  line-height:1.9;
  color:#555;
  margin-bottom:20px;
}

.products{
  background:#EFE7DC;
}

.accordion{
  max-width:900px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr;
  gap:55px;
}

.accordion-item{
  background:white;
  border-radius:25px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  align-self:start;
}

.accordion-image{
  width:100%;
  height:240px;
  overflow:hidden;
}

.accordion-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.5s;
}

.accordion-item:hover .accordion-image img{
  transform:scale(1.05);
}

.accordion-header{
  width:100%;
  background:white;
  border:none;
  padding:28px 35px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  font-size:1.2rem;
  font-weight:600;
  color:#1A1A1A;
  font-family:'Poppins',sans-serif;
}

.accordion-header i{
  color:#D62828;
  transition:.3s;
}

.accordion-content{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease;
}

.accordion-content ul{
  list-style:none;
  padding:0 35px 35px;
}

.accordion-content li{
  padding:14px 0;
  border-bottom:1px solid #eee;
  color:#555;
}

.accordion-item.active .accordion-content{
  max-height:600px;
}

.accordion-item.active .accordion-header i{
  transform:rotate(45deg);
}

.slider-container{
  position:relative;
  max-width:1000px;
  margin:0 auto;
  overflow:hidden;
  border-radius:25px;
  box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

.slider-wrapper{
  display:flex;
  transition:transform 0.5s ease-in-out;
}

.slide{
  min-width:100%;
  height:500px;
}

.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.slider-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(255,255,255,0.8);
  border:none;
  width:50px;
  height:50px;
  border-radius:50%;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.2rem;
  color:#111;
  transition:0.3s;
  z-index:5;
}

.slider-arrow:hover{
  background:#D62828;
  color:white;
}

.slider-arrow.prev{ left:20px; }
.slider-arrow.next{ right:20px; }

.slider-dots{
  position:absolute;
  bottom:20px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:5;
}

.dot{
  width:12px;
  height:12px;
  background:rgba(255,255,255,0.5);
  border-radius:50%;
  cursor:pointer;
  transition:0.3s;
}

.dot.active{
  background:#D62828;
  width:30px;
  border-radius:10px;
}

.gallery-cta{
  text-align:center;
  margin-top:40px;
}

.gallery-page{
  padding:60px 0 120px;
}

.grid-gallery{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(350px, 1fr));
  gap:30px;
}

.gallery-item{
  overflow:hidden;
  border-radius:25px;
  height:350px;
  cursor:pointer;
  box-shadow:0 15px 35px rgba(0,0,0,0.06);
  transition: 0.4s ease;
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.5s ease;
}

.gallery-item:hover{
  transform: translateY(-5px);
  box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.gallery-item:hover img{
  transform:scale(1.04);
}

.gallery-back-container{
  text-align:center;
  margin-top:60px;
}

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.92);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:2000;
  padding:20px;
}

.lightbox.active{
  display:flex;
}

.lightbox-img{
  max-width:95%;
  max-height:85vh;
  object-fit:contain;
  border-radius:14px;
}

.lightbox-close{
  position:absolute;
  top:30px;
  right:40px;
  color:white;
  font-size:3rem;
  cursor:pointer;
  z-index:2200;
}

.lightbox-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(255,255,255,0.15);
  border:none;
  color:white;
  font-size:1.8rem;
  width:60px;
  height:60px;
  border-radius:50%;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:0.3s;
  z-index:2100;
}

.lightbox-arrow:hover{
  background:#D62828;
}

.lightbox-arrow.prev{ left:40px; }
.lightbox-arrow.next{ right:40px; }

.locations{
  background:#111;
  color:white;
}

.locations .section-heading h2{
  color:white;
}

.locations-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

.location-card{
  background:#1E1E1E;
  padding:40px;
  border-radius:25px;
  display:flex;
  flex-direction:column;
}

.location-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px;
}

.location-top span{
  color:#C89B3C;
  font-weight:700;
}

.location-card p{
  color:#aaa;
  margin-bottom:25px;
}

.map-container{
  width:100%;
  height:250px;
  border-radius:15px;
  overflow:hidden;
  margin-bottom:25px;
}

.map-container iframe{
  width:100%;
  height:100%;
  border:0;
}

.location-btn{
  display:inline-block;
  padding:14px 24px;
  border-radius:999px;
  background:#D62828;
  color:white;
  text-decoration:none;
  text-align:center;
  font-weight:600;
  margin-top:auto;
  transition:0.3s;
}

.location-btn i {
  margin-right: 8px;
}

.location-btn:hover{
  background:#b52020;
}

.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.testimonial{
  background:white;
  padding:40px;
  border-radius:25px;
  box-shadow:0 10px 25px rgba(0,0,0,0.02);
  position: relative;
}

.quote-icon {
  font-size: 2rem;
  color: #D62828;
  opacity: 0.15;
  margin-bottom: 15px;
  display: block;
}

.testimonial p{
  line-height:1.8;
  color:#555;
  margin-bottom:20px;
}

.contact{
  background:#EFE7DC;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
}

.info-box{
  display:flex;
  gap:20px;
  margin-bottom:30px;
  cursor: default;
}

.info-box i{
  width:60px;
  height:60px;
  background:#D62828;
  color:white;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.2rem;
  flex-shrink:0;
  transition: 0.3s ease;
}

.info-box:hover i{
  transform: scale(1.1);
  background: #111;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.contact-form input,
.contact-form textarea{
  padding:18px;
  border:none;
  border-radius:18px;
  font-family:'Inter',sans-serif;
  width:100%;
  outline: 2px solid transparent;
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus{
  outline: 2px solid #D62828;
}

.contact-form textarea{
  height:180px;
  resize:none;
}

.contact-form button{
  padding:18px;
  border:none;
  border-radius:999px;
  background:#D62828;
  color:white;
  font-weight:700;
  cursor:pointer;
  transition:0.3s;
}

.contact-form button:hover{
  background:#b52020;
  transform:translateY(-2px);
  box-shadow:0 5px 15px rgba(214,40,40,0.3);
}

.footer{
  background:#111;
  color:white;
  padding-top:80px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

.footer h3{
  font-size:2rem;
  font-family:'Poppins',sans-serif;
}

.footer h4{
  font-family:'Poppins',sans-serif;
  font-size:1.2rem;
  margin-bottom: 15px;
}

.footer p{
  color:#aaa;
  margin-top:10px;
}

.footer-bottom{
  margin-top:60px;
  padding:30px 0;
  text-align:center;
  border-top:1px solid rgba(255,255,255,0.08);
  color:#777;
}

.back-to-top{
  position:fixed;
  bottom:30px;
  right:30px;
  width:55px;
  height:55px;
  background:#111;
  color:white;
  border:1px solid rgba(255,255,255,0.15);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.2rem;
  cursor:pointer;
  opacity:0;
  visibility:hidden;
  z-index:999;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  transition:0.3s;
}

.back-to-top.show{
  opacity:1;
  visibility:visible;
}

.back-to-top:hover{
  background:#D62828;
  border-color:#D62828;
  transform: translateY(-2px);
}

@media(max-width:1150px){
  body{ padding-top:85px; }
  .navbar{
    position:absolute;
    top:85px;
    left:0;
    width:100%;
    background:#111;
    flex-direction:column;
    padding:30px;
    display:none;
    border-bottom:1px solid rgba(255,255,255,0.1);
  }
  .navbar.active{ display:flex; }
  .menu-btn{ display:block; }
  .phone span{ display:none; }
  .hero h1{ font-size:3.5rem; }
  .stats-grid, .about-grid, .locations-grid, .contact-grid, .footer-grid{ grid-template-columns:1fr; }
  .slide{ height:380px; }
  .testimonial-grid, .grid-gallery{ grid-template-columns:repeat(2,1fr); }
  .lightbox-arrow.prev{ left:20px; }
  .lightbox-arrow.next{ right:20px; }
}

@media(max-width:768px){
  .testimonial-grid, .grid-gallery, .accordion{ grid-template-columns:1fr; }
  .hero h1{ font-size:2.5rem; }
  .hero-buttons{ flex-direction:column; gap:10px; }
  .btn{ text-align:center; width:100%; }
  .lightbox-arrow{ width:45px; height:45px; font-size:1.3rem; }
  .lightbox-arrow.prev{ left:10px; }
  .lightbox-arrow.next{ right:10px; }
}