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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

header {
  display: flex;
  justify-content: space-between; /* Space between logo and nav */
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  white-space: nowrap;
  margin-right: auto;
  letter-spacing: 1px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem; /* Adds breathing room */
}

nav .logo {
  font-size: 2rem; /* Increased */
  font-weight: bold;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px; /* More spacing in logo letters */
}

nav ul {
  display: flex;
  gap: 2.5rem; /* More spacing between links */
  list-style: none;
}

nav ul li {
  position: relative;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.15rem; /* Increased link font size */
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: orange;
}

/* Underline hover effect */
nav ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px; /* Thicker underline */
  background: orange;
  left: 0;
  bottom: -6px;
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}


.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 0;
  margin-top: -80px;
  background-color: #000; /* fallback background */
}

.hero::before {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: -2; 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 1.5s ease-in-out;
  filter: brightness(1) contrast(1.05) saturate(1.1); 
  animation: slideshow 15s infinite;
}

.hero-content {
  text-align: center;
  padding: 2rem;
  color: #fff;
  margin-top: 0;
  padding-top: 0;
}

.hero h1 {
  font-size: 2.8rem;
  margin-top: 12rem;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6); /* make text pop */
}

.hero .btn {
  display: inline-block;
  background-color: #ffd166;
  color: #000;
  padding: 0.75rem 1.5rem;
  margin-top: 1rem;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.hero .btn:hover {
  background-color: green;
  color: white;
}

/* Standard section layout for home, services, about, contact */
.section {
  padding: 4rem 2rem;
  min-height: 100vh; /* Ensure full screen height */
  display: block;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#home {
  background: transparent; /* or a slideshow already set */
}
#services {
  background-color: #f1f1f1;
}
#about {
  background-color: #fff;
}
#contact {
  background-color: #fefae0;
}

.services {
  padding: 4rem 2rem;
  text-align: center;
  background: #f7f9fc;
}

.services h2 {
  font-size: 2.5rem;
  color: black;
  margin-bottom: 1rem;
  text-transform: uppercase;
  position: relative;
}

.services h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: black;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* was 240px */
  gap: 2rem;
  margin-top: 2rem;
  max-width: 1100px; 
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background-color: #fff;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  color: inherit;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.8s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
  font-size: 1.2rem;
  margin: 0.5rem 0 0.8rem;
  color: #2e7d32;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.service-img {
  width: 130px; 
  height: 130px; 
  margin-bottom: 1rem;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.service-card:hover .service-img {
  transform: scale(1.1);
}

.card-notice {
  background-color: #fff8e1;
  color: #333;
  border-left: 5px solid #ffd166;
  padding: 1rem;
  margin: 1rem auto 3rem auto;
  max-width: 1100px;
  font-size: 1rem;
  line-height: 1.7;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  font-weight: 500;
  animation: fadeDown 1s ease-out;
}

.card-notice strong {
  color: #000;
  font-weight: 600;
}

.card-notice .delivery-note {
  color: #2e7d32;
  font-weight: 600;
}

/* Fade animations */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-subtitle {
  font-size: 1.5rem;
  margin: 40px 0 20px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
}

.service-card i {
  color: #4CAF50;
  margin-right: 6px;
}

.purchase-btn {
  background-color: #2e7d32;
  color: white;
  padding: 8px 20px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
  margin-top: 1rem;
}

.purchase-btn:hover {
  background-color: #1b5e20;
}

.gallery-section {
  padding: 4rem 2rem;
  background: #f5f7fa;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2b2b2b;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #ffd166;
  margin: 0.5rem auto;
  border-radius: 2px;
}

.subsection {
  margin-top: 3rem;
}

.subsection h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #444;
}

.subsection h3 i {
  color: #00a86b;
  margin-right: 0.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  justify-content: center;
}

.gallery-card {
  background: #fff;
  padding: 1rem;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: fadeInUp 1s forwards;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.gallery-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.gallery-card p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
}

.gallery-card strong {
  display: block;
  color: #000;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.gallery-card i {
  color: #009879;
}

/* Animation Classes */
.animate-fade {
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.read-more {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 6px 12px;
  background-color: #28a745;
  color: #fff;
  border-radius: 20px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.read-more:hover {
  background-color: #218838;
  transform: scale(1.05);
}

.blog-link {
  display: inline-block;
  margin-top: 0.5rem;
  background-color: #ffd166;
  color: #000;
  padding: 0.4rem 1rem;
  border-radius: 5px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.blog-link:hover {
  background-color: green;
  color: white;
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.about h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #333;
  font-weight: 700;
}

/* Content Layout */
.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

/* About Text Styling */
.about-text {
  text-align: justify; /* aligns text nicely on both sides */
  max-width: 900px;    /* limits line length for readability */
  margin: 0 auto 2rem auto; /* centers content with spacing below */
  font-size: 1.15rem;
  line-height: 1.8;
  color: #444;
}

.about-text p {
  margin-bottom: 1.5rem;
}

.about-text strong {
  color: #2e7d32; /* highlight key words in green */
}

@media screen and (max-width: 768px) {
  .about-text {
    font-size: 1rem;
    padding: 0 1rem; /* small padding on mobile */
    line-height: 1.6;
  }
}

/* Images Section */
.about-images {
  flex: 1 1 400px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.about-images img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.about-images img:hover {
  transform: scale(1.05);
}

/* Icons Section */
.about-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.icon-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  width: 220px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, background 0.3s;
}

.icon-box i {
  font-size: 2rem;
  color: #2e7d32;
  margin-bottom: 10px;
}

.icon-box p {
  font-weight: 600;
  color: #333;
}

.icon-box:hover {
  background: #2e7d32;
  color: #fff;
  transform: translateY(-8px);
}

.icon-box:hover i {
  color: #fff;
}

/* ===== RESPONSIVENESS ===== */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

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

  .about-images {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .about h2 {
    font-size: 1.8rem;
  }

  .icon-box {
    width: 100%;
    max-width: 300px;
  }

  .about-images img {
    max-width: 100%;
  }
}

/* About Stats Section with Icons */
.about-stats {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  text-align: center;
}

.about-stats .stat-box i {
  font-size: 2.5rem;
  color: #ffd166; /* gold accent */
  margin-bottom: 0.5rem;
}

.about-stats .stat-box h3 {
  font-size: 2.5rem;
  color: #2e7d32; /* green accent */
  margin-bottom: 0.3rem;
}

.about-stats .stat-box p {
  font-size: 1.1rem;
  color: #555;
  margin: 0;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .about-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .about-stats .stat-box i {
    font-size: 2rem;
  }

  .about-stats .stat-box h3 {
    font-size: 2rem;
  }
}

#contact {
  background-image: url('https://th.bing.com/th/id/R.7dc3da31beaa7bda349d0396bc9aebbc?rik=cG9T9lerpYvKVg&pid=ImgRaw&r=0');
  padding: 4rem 2rem;
  position: relative;
}

.contact-overlay {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px); /* Adds a glass effect */
}


.contact-info {
  flex: 1 1 300px;
}

.contact-info h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-info p {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info i {
  color: yellow;
  font-size: 1.2rem;
}

.contact-info a {
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #000;
  text-decoration: underline;
}

/* Map Section */
.contact-map {
  flex: 1 1 300px;
}

.contact-map h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: white;
  text-align: left;
}

.contact-map iframe {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Directions Button */
.directions-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #28a745, #218838);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}

.directions-btn:hover {
  background: linear-gradient(135deg, #218838, #1e7e34);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.directions-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.directions-btn .btn-icon {
  margin-right: 10px;
  font-size: 18px;
  display: flex;
  align-items: center;
}

/* Responsive */
@media (max-width: 600px) {
  .directions-btn {
    width: 100%;
    justify-content: center;
    font-size: 18px;
    padding: 14px 0;
  }
}

/* Social Links */
.contact-social {
  margin-top: 1.5rem;
  text-align: left;
}

.contact-social h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: white;
}

.social-icons {
  display: flex;
  justify-content: flex-start;
  gap: 1.2rem;
}

.social-icons a {
  font-size: 1.8rem;
  color: #444;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
}

.social-icons .whatsapp { color: #25D366; }
.social-icons .facebook { color: #1877F2; }
.social-icons .instagram { color: #E1306C; }
.social-icons .twitter { color: #1DA1F2; }

.weekly-schedule {
  background: #fff;
  margin-top: 20px;
  padding: 15px 20px;
  border-left: 4px solid #28a745;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
  border-radius: 8px;
}

.weekly-schedule h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 10px; 
}

.weekly-schedule ul {
  list-style: none;
  padding-left: 0;
  font-size: 1.05rem;
  color: #444;
}

.weekly-schedule ul li {
  margin-bottom: 5px;
  text-align: left;
}

footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: #f5f5f5;
}

.search-container {
  display: flex;
  align-items: center;
  gap: 5px;
}

.search-container input {
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.search-container button {
  padding: 5px 10px;
  border: none;
  background: #007bff;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}

.search-container button:hover {
  background: #0056b3;
}


.product-details {
  padding: 3rem 2rem;
  text-align: center;
}

.product-details img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 1rem 0;
}

.product-details h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.product-details p {
  font-size: 1.1rem;
  margin: 0.5rem 0;
}

.product-section {
  padding: 3rem 2rem;
  background-color: #f1f1f1;
  text-align: center;
}

.product-section h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.product-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  perspective: 1000px;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  max-width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.product-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.price {
  color:green;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.rating {
  color: #ffb703;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.buy-btn {
  background-color: green;
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.buy-btn:hover {
  background-color: orange;
}

.product-card {
  perspective: 1000px;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 320px;
  text-align: center;
  animation: flipCard 5s infinite linear; /* Auto-flip */
  transform-style: preserve-3d;
}

@keyframes flipCard {
  0%, 100% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(180deg);
  }
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  padding: 1.5rem;
  background: transparent; /* No background */
}

.card-front img {
  max-width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.card-back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.back-home-btn {
  display: inline-block;
  margin: 1rem 0 2rem;
  padding: 0.6rem 1.2rem;
  background-color: green;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.back-home-btn:hover {
  background-color: green;
}

.purchase-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background-color: green;
  color: white;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.purchase-btn:hover {
  background-color: orange;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn-wrapper {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  width: 100%;
}


/* Hamburger button styling */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.hamburger:hover {
  transform: scale(1.1);
  background-color: rgba(255, 255, 255, 0.2);
}

.hamburger span {
  display: block;
  height: 3px;
  width: 26px;
  background-color: #ffd166;
  border-radius: 10px;
  transition: transform 0.4s ease, background-color 0.3s ease;
}

.hamburger:hover span {
  background-color: #fff;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;          /* WhatsApp green */
  color: #fff;                  /* White icon */
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.2);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

  @keyframes slideInOut {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  20% {
    opacity: 1;
    transform: translateX(0);
  }
  80% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 8px black;
  }
  50% {
    box-shadow: 0 0 20px black;
  }
  100% {
    box-shadow: 0 0 8px black;
  }
}

/* Footer */
footer {
    padding: 1rem 0.5rem;
    font-size: 0.9rem;
  }

@media (max-width: 768px) {
  /* Header */
  header {
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .logo {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
    margin-top: -45px;
    cursor: pointer;
  }

  .hamburger span {
    height: 3px;
    width: 25px;
    background-color: white;
    border-radius: 5px;
    transition: 0.3s ease;
  }

  nav {
    width: 100%;
  }

  nav a {
    font-size: 1.2rem;
  }

  nav ul {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: green;
    flex-direction: column;
    width: 100%;
    display: none;
    text-align: left;
    padding: 1rem 0;
    z-index: 999;
  }

  nav ul.active {
    display: flex;
  }

  /* Hero */
  .hero {
    height: 100vh;
    padding: 2rem 1rem;
    flex-direction: column;
    text-align: center;
  }

  .hero::before {
    background-size: cover;
    background-position: center;
    animation: slideshow 15s infinite;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero .btn {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
  }

  /* Services, Products, Brands */
  .service-grid,
  .product-grid,
  .brand-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .service-card,
  .product-card,
  .brand-card {
    width: 100%;
  }

  /* About & Contact */
  .about,
  .contact {
    padding: 2rem 1rem;
  }

  .about-content {
    flex-direction: column;
  }

  .contact-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-info,
  .contact-map {
    width: 100%;
  }

  .contact-map h3 {
    text-align: center;
  }

  .contact-map iframe {
    width: 100%;
    height: 250px;
  }

  .contact-form {
    padding: 0 1rem;
  }

  /* Product Details */
  .product-details {
    padding: 2rem 1rem;
  }

  .product-details img {
    width: 100%;
    max-height: 300px;
  }

  /* Back Button */
  .back-home-btn {
    width: 100%;
    text-align: center;
  }
}
