@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Playfair+Display:wght@400..900&family=Poppins:wght@400;500;600;700;900&display=swap");

/* --- ROOT VARIABLES & RESET --- */
:root {
  --main-color: #fac105;
  --secondary-color: #ffd700;
  --third-color: #f05b2e;
  --ex-color: #f5f5f5;
  --dark-color: #3a3a3a;
  --text-color: #555555;
  --light-color: #ffffff;
  --border-color: #eaeaea;
  --font-heading: "Playfair Display", serif;
  --font-body: "Lato", sans-serif;
  --ex-font: "Poppins", sans-serif;
  --shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  --header-height: 80px;
  --top-bar-height: 40px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--dark-color);
  background-color: var(--light-color);
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--dark-color);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: var(--main-color);
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.btn-primary {
  background-color: var(--main-color);
  color: var(--light-color);
  border-color: var(--main-color);
  font-weight: 900;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-secondary {
  background-color: transparent;
  color: var(--main-color);
  border-color: var(--main-color);
}

.btn-secondary:hover {
  background-color: var(--main-color);
  color: var(--light-color);
  border-color: var(--main-color);
}

.btn-third {
  background-color: transparent;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
  font-weight: 900;
}

.btn-third:hover {
  background-color: var(--main-color);
  color: var(--light-color);
  border-color: var(--main-color);
}

/* --- SECTION 1: TOP BAR --- */

.top-bar {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 10px 0;
  font-size: 0.85rem;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar p {
  font-weight: 700;
  font-size: 16px;
}
.top-bar-contact span {
  margin-left: 20px;
  color: var(--light-color);
  font-weight: 700;
  font-size: 16px;
}
.top-bar-contact i {
  color: var(--secondary-color);
  margin-right: 5px;
}

/* --- SECTION 2: HEADER --- */

#header {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 100%;
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--light-color);
  transition: box-shadow 0.3s ease;
}
#header.scrolled {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.logo svg {
  height: 40px;
  width: auto;
}
.logo .logo-text {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  fill: var(--dark-color); /* Change logo color here */
  transition: fill 0.3s ease;
}
.logo .logo-text-2 {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  fill: var(--main-color); /* Change logo color here */
  transition: fill 0.3s ease;
}
.logo:hover .logo-text {
  fill: var(--main-color);
}
.nav-list {
  display: flex;
}
.nav-list li {
  margin: 0 20px;
}
.nav-list a {
  color: var(--dark-color);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  position: relative;
  padding: 10px 0;
}
.nav-list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--third-color);
  transition: width 0.3s ease;
}
.nav-list a.active {
  color: var(--third-color);
}
.nav-list a:hover::after {
  width: 100%;
}
.hamburger-menu {
  display: none;
  font-size: 2rem;
  color: var(--dark-color);
  background: none;
  border: none;
  cursor: pointer;
}

/* --- SECTION 3: HERO SECTION --- */

#hero {
  position: relative;
  height: calc(100vh - var(--header-height));
  min-height: 500px;
  max-height: 700px;
  overflow: hidden;
}
#hero .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}
#hero .slide.active {
  opacity: 1;
  z-index: 2;
}
#hero .slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 20px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: 4.6rem;
  color: var(--light-color);
  margin-bottom: 0;
  font-weight: normal;
}
.hero-title-2 {
  font-family: var(--font-heading);
  font-size: 4.6rem;
  color: var(--light-color);
  margin-bottom: 1rem;
  font-weight: normal;
}
.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 500;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--light-color);
}
.slider-nav {
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 5;
}
.slider-nav button {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--light-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.slider-nav button:hover {
  background: rgba(255, 255, 255, 0.5);
}
.hero-title,
.hero-title-2,
.hero-subtitle,
#hero .btn {
  opacity: 0;
}
.slide.active .hero-title {
  animation: fadeInDown 1s ease-out 0.7s forwards;
}
.slide.active .hero-title-2 {
  animation: fadeInDown 1s ease-out 0.4s forwards;
}
.slide.active .hero-subtitle {
  animation: fadeInUp 1s ease-out 0.9s forwards;
}
.slide.active .btn {
  animation: fadeInUp 1s ease-out 1.2s forwards;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- SECTION 4: CATEGORIES --- */

#categories {
  padding-top: 100px;
  padding-bottom: 100px;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
#categories .hidden-categories {
  display: none;
}
.category-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  aspect-ratio: 4 / 5;
}
.category-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-item:hover img {
  transform: scale(1.1);
}

/* --- SECTION 5: CTA 1 --- */

#cta1 {
  background: linear-gradient(rgba(64, 39, 10, 0.8), rgba(64, 39, 10, 0.8)),
    url("./images/cta1-img.webp") center/cover no-repeat;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.cta1-content h3 {
  color: var(--light-color);
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.cta1-content h2 {
  font-size: 6rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--secondary-color);
  font-weight: 500;
}
.cta1-content .cta1-button {
  font-weight: 900;
  font-size: 1rem;
  background-color: transparent;
  color: var(--light-color);
  border-color: var(--light-color);
}
.cta1-content .cta1-button:hover {
  background-color: transparent;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* --- SECTION 6: ABOUT US --- */

.about-section {
  padding-top: 100px;
}
.about-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}
.about-image img {
  border-radius: 10px;
}
.about-content .section-title,
.about-content .section-subtitle {
  text-align: left;
  margin-left: 0;
}
.about-content p {
  margin-bottom: 1.5rem;
}

/* --- SECTION 7: PRODUCTS --- */

#products {
  padding-top: 100px;
  padding-bottom: 100px;
}
.product-ct h2 {
  margin-bottom: 3rem;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.product-card {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  will-change: transform, box-shadow;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.product-grid .hidden-product {
  display: none;
}
.product-card .card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.product-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card .card-content {
  padding: 25px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card-category {
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--third-color);
  font-weight: 700;
}
.card-title {
  font-size: 1.4rem;
  margin: 0.5rem 0;
}
.card-description {
  margin-bottom: 1rem;
  font-size: 1rem;
  flex-grow: 1;
}
.price-wrapper {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 1.5rem;
}
.original-price {
  font-size: 1rem;
  color: #999;
  text-decoration: line-through;
}
.sale-price {
  font-size: 1.3rem;
  font-weight: 700;
}

/* --- SECTION 8: TESTIMONIALS --- */

.testimonial-section {
  padding: 100px 0;
  background-color: var(--ex-color);
  position: relative;
}
#scrolling-leaf {
  position: absolute;
  width: 270px;
  height: auto;
  top: 0%;
  left: -2%;
  z-index: 1;
  transition: transform 0.5s ease-out;
  opacity: 1;
}
.testimonial-section .testi-ct {
  margin-bottom: 3rem;
}
.stars {
  color: var(--secondary-color);
  font-size: 1.1rem;
  margin-bottom: 15px;
  text-align: left;
}
.testimonial-card {
  padding: 30px 30px;
  border-radius: 15px;
  background-color: var(--light-color);
  display: flex !important;
  flex-direction: column;
  margin: 10px 5px;
  border-left: 4px solid var(--secondary-color);
  border-top: 1px solid var(--secondary-color);
  border-right: 1px solid var(--secondary-color);
  border-bottom: 1px solid var(--secondary-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
}
.testimonial-card:hover {
  transform: translateY(-7px);
}
.testimonial-quote {
  font-style: italic;
  color: #6c6c6c;
  margin-bottom: 25px;
  flex-grow: 1;
  font-size: 1rem;
  line-height: 1.7;
}
.testimonial-author {
  display: flex;
  align-items: center;
}
.testimonial-author img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}
.author-name {
  margin-bottom: 3px;
  font-size: 1.3rem;
}
.author-info span {
  font-size: 0.9rem;
  color: #535151;
  font-family: var(--ex-font);
}

/* --- SECTION 9: BLOG --- */

.blog-section {
  padding: 100px 0;
}
.section-intro {
  max-width: 600px;
  margin: 0 auto 50px auto;
  color: var(--text-color);
  font-size: 1.1rem;
  font-family: var(--ex-font);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  margin-top: 10px;
  margin-bottom: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: rgb(250, 250, 200);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-7px);
}
.blog-card-image {
  height: 220px;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.blog-meta {
  font-size: 0.8rem;
  margin-bottom: 10px;
}
.blog-meta .blog-name {
  color: #424242;
}
.blog-meta .blog-category {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid #c7c5c5;
  color: var(--third-color);
}
.blog-title {
  font-size: 1.2rem;
  line-height: 1.4;
  margin-bottom: 10px;
}
.blog-title a {
  color: var(--dark-color);
}
.blog-title a:hover {
  color: var(--main-color);
}
.blog-excerpt {
  color: #424242;
  margin-bottom: 20px;
  flex-grow: 1;
}
.read-more {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark-color);
}
.read-more i {
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}
.read-more:hover i {
  margin-left: 10px;
}
.hidden-blog {
  display: none;
}

/* --- SECTION 10: CTA BANNER --- */

#cta {
  padding: 0;
}
.cta-banner {
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--light-color);
  position: relative;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.cta-banner .container {
  position: relative;
  z-index: 2;
}
.cta-banner h2 {
  font-size: 3.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-weight: 400;
}
.cta-banner .cta-desc {
  color: var(--light-color);
  margin-bottom: 2rem;
  font-size: 1.2rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- SECTION 11: MAP LOCATION --- */

#map-location {
  padding-top: 100px;
  padding-bottom: 0;
}
.map-container {
  width: 100%;
  height: 450px;
  margin-top: 3rem;
}

/* --- SECTION 12: CONTACT FORM --- */

#contact-section {
  padding-top: 60px;
  padding-bottom: 90px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  margin-top: 4rem;
  text-align: left;
}
.contact-info-block h3,
.contact-form-block h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}
.info-item i {
  font-size: 1.5rem;
  color: var(--third-color);
  margin-right: 15px;
  margin-top: 3px;
}
.contact-form .form-group {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}
.contact-form textarea {
  resize: vertical;
}
.contact-form button {
  margin-top: 10px;
}
#form-message {
  margin-top: 20px;
  padding: 12px;
  border-radius: 5px;
  text-align: center;
  font-weight: 500;
  display: none; /* Ẩn ban đầu */
  transition: all 0.3s ease-in-out;
}

#form-message.success {
  display: block;
  background-color: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

/* --- SECTION 13: FOOTER --- */

footer {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding-top: 80px;
}
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: var(--light-color);
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
}
.footer-col ul li {
  margin-bottom: 0.8rem;
}
.footer-col ul a {
  color: var(--light-color);
  display: inline-block;
  padding-left: 0;
  transition: color 0.3s ease, transform 0.3s ease;
}
.footer-col ul a:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}
.footer-logo .logo-text {
  fill: var(--secondary-color);
}
.about-col p {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
.social-links-footer a {
  color: var(--light-color);
  font-size: 1.5rem;
  margin-right: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}
.social-links-footer a:hover {
  color: var(--secondary-color);
}
.footer-container .contact-col p {
  margin-bottom: 0.6rem;
}
.contact-col i {
  color: var(--secondary-color);
  margin-right: 10px;
  width: 20px;
}
.footer-bottom {
  border-top: 1px solid #6b6969;
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
}
.footer-bottom p {
  color: var(--light-color);
  font-weight: 700;
  font-size: 17px;
}
.footer-bottom a {
  text-decoration: underline;
  color: var(--third-color);
  transition: transform 0.3s ease, color 0.3s ease;
}
.footer-bottom a:hover {
  color: var(--secondary-color);
}
.footer-bottom .bxs-heart {
  color: var(--third-color);
  font-size: 1.2rem;
}

/* --- GO TO TOP BUTTON --- */

.go-to-top {
  position: fixed;
  bottom: 2%;
  right: 2%;
  width: 50px;
  height: 50px;
  background-color: var(--main-color);
  color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
.go-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.go-to-top:hover {
  background-color: var(--third-color);
  color: var(--light-color);
}

/* --------- RESPONSIVE DESIGN -------------
-------------------------------------------- 
-------------------------------------------- */

@media (min-width: 1600px) {
  #scrolling-leaf {
    display: none;
  }
}

@media (min-width: 1500px) and (max-width: 1599px) {
  #scrolling-leaf {
    top: 0%;
    left: 7%;
    width: 300px;
  }
}

@media (min-width: 1400px) and (max-width: 1499px) {
  #scrolling-leaf {
    top: 0%;
    left: 4%;
    width: 300px;
  }
}

@media (min-width: 1300px) and (max-width: 1399px) {
  #scrolling-leaf {
    top: 0%;
    left: 3%;
    width: 270px;
  }
}

@media (min-width: 1200px) and (max-width: 1299px) {
  #scrolling-leaf {
    top: 0%;
    left: 1%;
    width: 270px;
  }
}

@media (min-width: 1100px) and (max-width: 1199px) {
  #scrolling-leaf {
    top: 0%;
    left: 0%;
    width: 240px;
  }
}

@media (min-width: 992px) and (max-width: 1099px) {
  #scrolling-leaf {
    top: 0%;
    left: 0%;
    width: 200px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .footer-container .contact-col p {
    margin-bottom: 0rem;
  }
}

@media (max-width: 1399px) {
  .hero-title,
  .hero-title-2 {
    line-height: 1.4;
  }
}

@media (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
  .product-grid,
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .container {
    max-width: 720px;
  }
  html {
    font-size: 15px;
  }
  .section-title {
    font-size: 2.5rem;
  }
  /* Hamburger Menu */
  .main-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: var(--light-color);
    flex-direction: column;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-in-out;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }
  .main-nav.active {
    max-height: 70vh;
    overflow-y: auto;
  }
  .nav-list {
    flex-direction: column;
    padding: 20px;
    align-items: center;
  }
  .nav-list li {
    margin: 15px 0;
  }
  .nav-list a {
    font-size: 1.2rem;
  }
  .hamburger-menu {
    display: block;
  }
  .hero-title,
  .hero-title-2 {
    font-size: 3.8rem;
  }
  .hero-content {
    max-width: 700px;
  }
  .hero-content .custom-hero {
    padding: 12px 28px;
    font-size: 0.9rem;
  }
  .cta1-content h3 {
    font-size: 2.5rem;
  }
  .cta1-content h2 {
    font-size: 5.3rem;
    margin-bottom: 1.3rem;
  }
  .cta1-content .cta1-button {
    padding: 12px 28px;
    font-size: 0.9rem;
  }
  .about-content .custom-about {
    padding: 12px 28px;
    font-size: 0.9rem;
  }
  .product-ct h2 {
    margin-bottom: 2.5rem;
  }
  .product-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-grid .hidden-product {
    display: block;
  }
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  #categories,
  #products,
  .testimonial-section,
  .cta-banner,
  .blog-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  #scrolling-leaf {
    display: none;
  }
  .blog-section .section-intro {
    margin-bottom: 40px;
  }
  .cta-banner h2 {
    font-size: 2.7rem;
  }
  #contact-section {
    padding-bottom: 80px;
  }
  .contact-grid {
    margin-top: 3rem;
  }
  .about-section {
    padding-top: 80px;
  }
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-content .section-title,
  .about-content .section-subtitle {
    text-align: left;
  }
  .about-image {
    margin: 0;
    max-width: 500px;
  }
  .testimonial-section .testi-ct {
    margin-bottom: 2.5rem;
  }
  #map-location {
    padding-top: 80px;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  .blog-grid .hidden-blog {
    display: block;
  }
}

@media (max-width: 767px) {
  .container {
    max-width: 540px;
  }
  .nav-list li {
    margin: 14px 0;
  }
  .nav-list a {
    font-size: 1.1rem;
  }
  #hero {
    height: 70vh;
    min-height: 500px;
  }
  .hero-title,
  .hero-title-2 {
    font-size: 3.5rem;
    line-height: 1.4;
  }
  .hero-title-2 {
    margin-bottom: 1.5rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
    padding: 0 10px;
  }
  .hero-content {
    padding: 10px;
  }
  .hero-content .custom-hero {
    padding: 10px 22px;
    font-size: 0.8rem;
  }
  .slider-nav {
    display: none;
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  #categories .hidden-categories {
    display: block;
  }
  #cta1 {
    background-attachment: scroll;
  }
  .cta1-content h3 {
    font-size: 2.3rem;
  }
  .cta1-content h2 {
    font-size: 4.3rem;
    margin-bottom: 1.2rem;
  }
  .cta1-content .cta1-button {
    padding: 10px 22px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
  }
  .about-content p {
    font-size: 0.95rem;
    line-height: 1.8;
  }
  .about-content .custom-about {
    padding: 10px 22px;
    font-size: 0.8rem;
  }
  .product-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .product-grid .hidden-product {
    display: none;
  }
  #categories,
  #cta1,
  #products,
  .testimonial-section,
  .blog-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .cta-banner {
    padding: 60px 0;
    background-attachment: scroll;
  }
  .cta-banner h2 {
    font-size: 2.3rem;
  }
  .cta-banner .cta-desc {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .cta-banner .custom-cta {
    padding: 10px 22px;
    font-size: 0.8rem;
  }
  #contact-section {
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .testimonial-card {
    margin-left: 0;
    margin-right: 0;
  }
  .testimonial-quote {
    font-size: 0.95rem;
  }
  .testimonial-author img {
    width: 60px;
    height: 60px;
  }
  .author-name {
    font-size: 1.1rem;
  }
  .about-section {
    padding-top: 60px;
  }
  .section-subtitle {
    margin-bottom: 2.5rem;
  }
  .blog-grid .hidden-blog {
    display: none;
  }
  #map-location {
    padding-top: 60px;
  }
  .contact-col p {
    justify-content: center;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form input,
  .newsletter-form button {
    border-radius: 50px;
    margin-bottom: 10px;
    text-align: center;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  footer {
    padding-top: 60px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2.3rem;
  }
  .hero-title,
  .hero-title-2 {
    font-size: 3.2rem;
  }
  .cta1-content h2 {
    font-size: 3.9rem;
    margin-bottom: 1rem;
  }
  .cta1-content .cta1-button {
    padding: 8px 20px;
  }
  .testimonial-section .testi-ct {
    margin-bottom: 2rem;
  }
  .stars {
    font-size: 1rem;
  }
  .section-subtitle {
    margin-bottom: 2rem;
  }
  .cta-banner h2 {
    font-size: 2rem;
  }
  .cta-banner .cta-desc {
    max-width: 400px;
  }
  .cta-banner .custom-cta {
    padding: 8px 20px;
  }
  .contact-grid {
    gap: 20px;
  }
  .contact-info-block h3,
  .contact-form-block h3 {
    font-size: 1.7rem;
  }
  .contact-form-block .contact-submit {
    font-size: 0.8rem;
  }
}

@media (max-width: 528px) {
  .footer-container .contact-col p {
    margin-bottom: 0rem;
  }
}

@media (max-width: 479px) {
  .hero-title,
  .hero-title-2 {
    font-size: 2.8rem;
  }
  .hero-title-2 {
    margin-bottom: 1rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .cta1-content h2 {
    font-size: 3.4rem;
  }
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    margin-bottom: 35px;
  }
  .footer-container .contact-col p {
    margin-bottom: 0.7rem;
  }
}

@media (max-width: 375px) {
  .hero-title,
  .hero-title-2 {
    font-size: 2.5rem;
  }
  .about-col p {
    margin-bottom: 1rem;
  }
  .go-to-top {
    width: 40px;
    height: 40px;
    right: 5%;
    font-size: 1.2rem;
  }
}
