@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto/Roboto-Regular.ttf");
  font-weight: 400;
  font-style: normal;
}

img {
  max-width: 100%;
  object-fit: cover;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  background: #0f0f0f;
  color: #e0e0e0;
  line-height: 1.8;
  font-size: 15px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.container {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 40px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(240, 245, 255, 0.95) 100%
  );
  backdrop-filter: blur(20px);
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
  background: linear-gradient(90deg, #8b4513, #d2691e, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav ul {
  display: flex;
  gap: 50px;
  list-style: none;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.4s;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 3px;
  background: #d2691e;
  transition: width 0.4s;
}

nav a:hover {
  color: #d2691e;
}
nav a:hover::after {
  width: 100%;
}

.burger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: #8b4513;
}

footer {
  background: #000;
  padding: 100px 0 50px;
  border-top: 1px solid #222;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 100px;
  margin-bottom: 80px;
}

.footer-col a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.4s;
}

.footer-col a:hover {
  color: #ff8c00;
}

.footer-col h3,
a.footer-logo {
  display: inline-block;
  color: #ff8c00;
  margin-bottom: 30px;
  font-size: 28px;
}

#hero {
    height: 100vh;
    min-height: 800px;
    max-height: 1200px;
    display: flex;
    align-items: center;
  background: url(image/banner.webp) center / cover no-repeat;
  position: relative;
  overflow: hidden;
}
#hero::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    top: 0;left: 0;
}
.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
}
.hero-text h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #ff8c00, #d2691e, #8b4513);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-text p {
  font-size: 22px;
  margin-bottom: 50px;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}
.cta-btn {
  padding: 18px 30px;
  background: linear-gradient(45deg, #d2691e, #ff8c00);
  color: white;
  border: none;
  border-radius: 60px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(210, 105, 30, 0.4);
  transition: all 0.5s;
  display: inline-block;
  margin-top: 20px;
}
.cta-btn:hover {
  transform: translateY(-5px) rotate(3deg) scale(1.05);
  box-shadow: 0 20px 40px rgba(210, 105, 30, 0.6);
}
.cta-section  .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            text-align: center;
        }
        .cta-section {
            padding: 120px 0;
        }
.slider-section {
  padding: 160px 0;
  background: #000;
}
.slider-section .container{
    max-width: 800px;
}
.slider {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.slides {
  display: flex;
  transition: transform 0.9s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.slide {
  min-width: 100%;
  position: relative;
}
.slide img{
    min-height: 400px;
    width: 100%;
}
.slide-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  max-width: 600px;
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  border-radius: 20px;
  border-left: 8px solid #ff8c00;
  backdrop-filter: blur(10px);
}

.categories-section {
  padding: 160px 0;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
}
.categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.category-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.6s;
  position: relative;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 140, 0, 0.1);
}
.category-card:hover {
  transform: translateY(-20px);
  box-shadow: 0 30px 80px rgba(255, 140, 0, 0.2);
}
.category-card img{
    width: 100%;min-height: 250px;
}
.category-info {
  padding: 40px;
  position: relative;
  z-index: 2;
}
.category-info h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #ff8c00;
}
.explore-btn {
  margin-top: 30px;
  padding: 12px 30px;
  background: transparent;
  color: #ff8c00;
  border: 2px solid #ff8c00;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s;
}
.explore-btn:hover {
  background: #ff8c00;
  color: #000;
  transform: rotate(-5deg) scale(1.1);
}

.reviews-section {
  padding: 160px 0;
  background: linear-gradient(180deg, #000 0%, #111 100%);
}
.reviews-title {
  text-align: center;
  font-size: 60px;
  margin-bottom: 100px;
  background: linear-gradient(90deg, #d2691e, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 50px;
}
.review-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 30px;
  padding: 50px 40px;
  text-align: center;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 140, 0, 0.15);
  transition: all 0.5s;
}
.review-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(255, 140, 0, 0.15);
}
.review-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 30px;
  overflow: hidden;
  border: 4px solid #ff8c00;
}
.review-photo img{
    width: 100%;
    height: 100%;
}
.review-text {
  font-size: 18px;
  margin-bottom: 30px;
  font-style: italic;
  opacity: 0.9;
}
.review-name {
  font-weight: 700;
  font-size: 20px;
  color: #ff8c00;
}
.review-role {
  font-size: 15px;
  opacity: 0.7;
  margin-top: 8px;
}

.faq-section {
  padding: 160px 0;
  background: #000;
}
.tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 80px;
  flex-wrap: wrap;
  padding-bottom: 10px;
  justify-content: center;
}
.tab-btn {
  padding: 16px 40px;
  background: rgba(255, 140, 0, 0.1);
  border: none;
  border-radius: 60px;
  color: #ff8c00;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.4s;
}
.tab-btn.active,
.tab-btn:hover {
  background: #ff8c00;
  color: #000;
  transform: scale(1.05);
}
.tab-content {
  display: none;
  background: rgba(255, 255, 255, 0.03);
  padding: 60px;
  border-radius: 30px;
  border-left: 8px solid #ff8c00;
  backdrop-filter: blur(10px);
}
.tab-content.active {
  display: block;
  animation: fadeIn 0.8s;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-section {
  padding: 160px 0;
  background: linear-gradient(135deg, #111 0%, #000 100%);
}
.form-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  padding: 80px;
  border-radius: 40px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 140, 0, 0.2);
}
.form-group {
  margin-bottom: 40px;
  position: relative;
}
.form-group label {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #aaa;
  transition: all 0.3s;
  pointer-events: none;
  font-size: 18px;
}
.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -10px;
  font-size: 14px;
  color: #ff8c00;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 20px 0 10px;
  border: none;
  border-bottom: 4px solid #ff8c00;
  border-left: 4px solid #ff8c00;
  background: transparent;
  color: #fff;
  font-size: 18px;
  outline: none;
  padding-left: 20px;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: transparent;
}
.form-group textarea {
  min-height: 180px;
  resize: vertical;
}
.form-group .label{
    display:flex; align-items:center; gap:8px; color:#aaa; font-size:15px; position: sticky;
}
.form-group .label{
    pointer-events:stroke;
}
.label input{
    width:auto;
    margin: 0;
}
.form-group a{
    color:#ff8c00;
}
.form-btn{
    margin-top: 50px;
}
.page-title-section {
  padding: 180px 0 100px;
  text-align: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}
.page-title-section h1 {
  font-size: 80px;
  background: linear-gradient(90deg, #ff8c00, #d2691e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-title-section p {
  font-size: 22px;
  max-width: 800px;
  margin: 30px auto 0;
  opacity: 0.9;
}
.delivery-bg{
    position: relative;
    background: url(image/van.jpeg) center /cover no-repeat;
}
.delivery-bg::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;left: 0;
}
.delivery-bg .container{
    position: relative;
    z-index: 5;
}
.types-section {
  padding: 120px 0;
  background: #000;
}
.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 40px;
}
.type-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.6s;
  border: 1px solid rgba(255, 140, 0, 0.1);
  backdrop-filter: blur(10px);
}
.type-card:hover {
  transform: translateY(-20px);
  box-shadow: 0 30px 80px rgba(255, 140, 0, 0.2);
}
.type-icon {
  font-size: 60px;
  color: #ff8c00;
  margin-bottom: 30px;
}
.type-card h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #ff8c00;
}

.split-section {
  padding: 160px 0;
  background: linear-gradient(135deg, #111 0%, #000 100%);
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-grid.reverse {
  direction: rtl;
}
.split-grid.reverse > div {
  direction: ltr;
}
.split-grid img{
    min-height: 250px;
}
.split-text ul {
  list-style: none;
  margin-top: 30px;
}
.split-text li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 20px;
  font-size: 18px;
}
.split-text li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #ff8c00;
}

.comparison-section {
  padding: 160px 0;
  background: #000;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  overflow: hidden;
}
.comparison-table th,
.comparison-table td {
  padding: 25px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 140, 0, 0.1);
}
.comparison-table th {
  background: rgba(255, 140, 0, 0.1);
  color: #ff8c00;
  font-size: 20px;
}

.tips-section {
  padding: 160px 0;
  background: linear-gradient(180deg, #000 0%, #111 100%);
}
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 40px;
}
.tip-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(10px);
}
.tip-card h3 {
  font-size: 26px;
  color: #ff8c00;
  margin-bottom: 20px;
}
.intro-section {
  padding: 120px 0;
  background: #000;
  text-align: center;
}
.intro-section p {
  font-size: 20px;
  max-width: 1000px;
  margin: 0 auto;
  opacity: 0.9;
}

.products-section {
  padding: 160px 0;
  background: linear-gradient(135deg, #111 0%, #000 100%);
}
.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.product-card {
    flex: 0 0 28%;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition: all 0.6s;
  min-height: 350px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.product-card:hover {
  transform: translateY(-20px);
  box-shadow: 0 40px 80px rgba(255, 140, 0, 0.3);
}
.product-card.large {
  flex: 1 0 28%;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
  padding: 150px 20px 20px;
  color: #fff;
}
.product-overlay h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.product-overlay p {
  margin-bottom: 25px;
  opacity: 0.9;
}
.claim-btn {
  padding: 14px 32px;
  background: linear-gradient(45deg, #ff8c00, #d2691e);
  color: #000;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s;
}
.claim-btn:hover {
  transform: scale(1.1) rotate(3deg);
  box-shadow: 0 10px 30px rgba(255, 140, 0, 0.5);
}

.info-split {
  padding: 160px 0;
  background: #000;
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-grid.reverse {
  direction: rtl;
}
.split-grid.reverse > div {
  direction: ltr;
}

.features-section {
  padding: 160px 0;
  background: linear-gradient(180deg, #000 0%, #111 100%);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  text-align: center;
}
.feature-item i {
  font-size: 60px;
  color: #ff8c00;
  margin-bottom: 30px;
}
.feature-item h3 {
  font-size: 28px;
  margin-bottom: 20px;
}
.text-section {
  padding: 140px 0;
  background: #000;
  margin: 0 auto;
}
.text-section .containre{
  max-width: 1000px;
}
 h2, h1 {
  font-size: 52px;
  color: #ff8c00;
  margin-bottom: 40px;
  text-align: center;
}
.text-section ul {
  list-style: none;
  margin-top: 30px;
}
.text-section li {
  padding-left: 40px;
  position: relative;
  margin-bottom: 25px;
  font-size: 19px;
}
.text-section li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff8c00;
  font-weight: bold;
  font-size: 24px;
}

.split-section {
  padding: 160px 0;
  background: linear-gradient(135deg, #111 0%, #000 100%);
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-grid.reverse {
  direction: rtl;
}
.split-grid.reverse > div {
  direction: ltr;
}

.timeline-section {
  padding: 100px 0;
  background: #000;
}
.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.timeline-item {
    border: 1px solid #d2691e;
  margin-bottom: 50px;
  border-radius: 20px;
  align-items: center;
}


.timeline-content {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}
.timeline-content h3 {
  font-size: 32px;
  color: #ff8c00;
  margin-bottom: 20px;
}

.accordion-section {
  padding: 160px 0;
  background: linear-gradient(180deg, #000 0%, #111 100%);
  max-width: 1000px;
  margin: 0 auto;
}
.accordion-item {
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.accordion-header {
  padding: 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 22px;
  font-weight: 600;
}
.accordion-header::after {
  content: "+";
  font-size: 36px;
  color: #ff8c00;
}
.accordion-header.active::after {
  content: "−";
}
.accordion-body {
  padding: 0 30px 30px;
  display: none;
}
.accordion-body.active {
  display: block;
}
.content-section {
  padding: 80px 0 160px;
  background: #000;
  margin: 0 auto;
}
.content-section .container{
    max-width: 1000px;
}
.content-section p {
  margin-bottom: 25px;
  font-size: 18px;
}
.content-section ul {
  list-style: none;
  margin-bottom: 30px;
}
.content-section li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 15px;
}
.content-section li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #ff8c00;
}
.thanks-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 10px;
}

.thanks-container h1 {
  font-size: 3.5rem;
  margin-bottom: 40px;
  background: linear-gradient(90deg, #ff8c00, #d2691e, #8b4513);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.thanks-container p {
  margin-bottom: 60px;
  opacity: 0.9;
  line-height: 1.6;
}

.home-btn {
  padding: 15px 30px;
  background: linear-gradient(45deg, #d2691e, #ff8c00);
  color: #000;
  border: none;
  border-radius: 60px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.5s;
  box-shadow: 0 10px 30px rgba(210, 105, 30, 0.4);
}

.home-btn:hover {
  transform: translateY(-8px) rotate(3deg) scale(1.05);
  box-shadow: 0 20px 50px rgba(210, 105, 30, 0.6);
}

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .split-grid,
  .features-grid,
  .timeline-item, .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .product-card, .product-card.large{
    flex: 1 0 45%;
    min-width: 270px;
  }
}

@media (max-width: 800px) {
  .burger {
    display: block;
  }
  nav {
    position: fixed;
    top: 94px;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    transition: left 0.5s;
    padding-top: 150px;
  }
  nav.active {
    left: 0;
  }
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  nav a {
    font-size: 28px;
    color: #fff;
  }
  .close-menu {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 40px;
    color: #ff8c00;
    cursor: pointer;
  }
  body.menu-open {
    overflow: hidden;
  }
  .products-grid, .categories-grid  {
    grid-template-columns: 1fr;
  }
  .thanks-container h1 {
    font-size: 3rem;
  }
  .thanks-container {
    padding: 40px 10px;
  }
  .page-title-section h1{
    font-size: 3rem;
  }
  .content-section h2{
    font-size: 2.5rem;
  }
  .container{
    padding: 0 10px;
  }
  h1, h2{
    font-size: 42px;
  }
  .comparison-table th,
    .comparison-table td{
        padding: 10px 5px;
        font-size: 12px;
    }
    .form-wrapper, .tab-content {
        padding: 40px 20px;
    }
    .hero-text h1 {
        font-size: 3rem;
    }
}
