@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --primary-color: #8E735B;
  /* Warm earth tone */
  --primary-dark: #6b5643;
  --secondary-color: #2C2C2C;
  --accent-color: #D4C4B7;
  --bg-light: #F9F8F6;
  --bg-white: #FFFFFF;
  --text-main: #333333;
  --text-light: #666666;

  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --transition-fast: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 10px 30px rgba(142, 115, 91, 0.15);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: 300;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--secondary-color);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

b, strong {
  font-weight: 300;
}

.fa, .fas, .far, .fab, i.fa, i.fas, i.far, i.fab, [class*=" fa-"], [class^="fa-"] {
  font-weight: 900 !important;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

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

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 50px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.section-title p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: var(--bg-white);
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--primary-dark);
  transition: var(--transition-fast);
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline::before {
  background-color: var(--primary-color);
}

.btn-outline:hover {
  color: var(--bg-white);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition-fast);
}

header.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.98);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition-fast);
}

header.scrolled .nav-container {
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: var(--transition-fast);
}

header.scrolled .logo img {
  height: 80px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links li a {
  font-weight: 300;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 5px 0;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition-fast);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--secondary-color);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: -1;
  transform: scale(1.05);
  animation: bgZoom 20s infinite alternate;
}

.hero-content {
  max-width: 700px;
  color: var(--bg-white);
  padding-top: 80px;
}

.hero-subtitle {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
  color: var(--accent-color);
}

.hero-title {
  font-size: 4.5rem;
  color: var(--bg-white);
  margin-bottom: 25px;
  line-height: 1.1;
}

.hero-desc {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

/* Page Header */
.page-header {
  height: 40vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: var(--secondary-color);
  margin-top: 80px;
  text-align: center;
  color: var(--bg-white);
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(44, 44, 44, 0.7), rgba(44, 44, 44, 0.7)), url('../images/page-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.page-header-title {
  font-size: 3.5rem;
  color: var(--bg-white);
  margin-bottom: 10px;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}

.about-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  opacity: 0.1;
  mix-blend-mode: multiply;
}

.about-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.features-list {
  margin-top: 30px;
}

.features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-weight: 300;
}

.features-list li svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-color);
  margin-right: 15px;
}

/* Services/Products Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-white);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-slow);
  cursor: pointer;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.service-img {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  opacity: 0;
  transition: var(--transition-fast);
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-info {
  padding: 25px;
  text-align: center;
}

.service-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 280px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.gallery-item.large,
.gallery-item.tall,
.gallery-item.wide {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .gallery-item {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .gallery-item {
    height: 230px;
  }
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* Contact Section */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  background: var(--bg-white);
  padding: 50px;
  border-radius: 10px;
  box-shadow: var(--shadow-subtle);
}

.contact-info {
  background: var(--primary-color);
  color: var(--bg-white);
  padding: 40px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.contact-info h3 {
  color: var(--bg-white);
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  margin-bottom: 25px;
}

.info-icon {
  margin-right: 15px;
  margin-top: 3px;
}

.info-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--accent-color);
}

.info-text h4 {
  color: var(--accent-color);
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-weight: 300;
}

.info-text p,
.info-text a {
  color: var(--bg-white);
  font-size: 1rem;
}

.info-text a:hover {
  color: var(--accent-color);
}

.contact-form h3 {
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #ddd;
  background: var(--bg-light);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(142, 115, 91, 0.1);
}

textarea.form-control {
  height: 150px;
  resize: vertical;
}

/* Map */
.map-container {
  margin-top: 50px;
  height: 450px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: #aaa;
  padding: 60px 0 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.footer-col h4 {
  color: var(--bg-white);
  margin-bottom: 25px;
  font-size: 1.2rem;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
  background-color: #fff;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: #aaa;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

/* Facebook Official Color */
.social-fb:hover {
  background: #1877F2;
  color: #FFFFFF;
  transform: translateY(-5px) scale(1.15) rotate(-6deg);
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

/* Instagram Official Gradient Color */
.social-ig:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #FFFFFF;
  transform: translateY(-5px) scale(1.15) rotate(6deg);
  box-shadow: 0 8px 20px rgba(214, 36, 159, 0.4);
}

/* WhatsApp Official Color */
.social-wa:hover {
  background: #25D366;
  color: #FFFFFF;
  transform: translateY(-5px) scale(1.15) rotate(-6deg);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* YouTube Official Color */
.social-yt:hover {
  background: #FF0000;
  color: #FFFFFF;
  transform: translateY(-5px) scale(1.15) rotate(6deg);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

.social-icon:hover svg {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations (Scroll Reveal) */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

@keyframes bgZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item.wide {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 250px;
    height: calc(100vh - 80px);
    background: var(--bg-white);
    flex-direction: column;
    padding: 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
  }

  .nav-links.active {
    right: 0;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 35px 0;
  }
}

/* ==========================================================================
   SERVICES & PRODUCT CATALOG ENHANCEMENTS
   ========================================================================== */

/* Top Category Filter Buttons */
.category-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  padding: 5px 0;
}

.cat-tab-btn {
  padding: 12px 24px;
  border-radius: 30px;
  background: var(--bg-white);
  border: 1px solid #E2D9D2;
  color: var(--secondary-color);
  font-weight: 300;
  font-size: 0.94rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.cat-tab-btn:hover {
  background: #F4EFEA;
  color: var(--primary-dark);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(142, 115, 91, 0.15);
}

.cat-tab-btn.active {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--bg-white);
  border-color: var(--primary-color);
  box-shadow: 0 6px 20px rgba(142, 115, 91, 0.35);
}

.category-section {
  margin-top: 35px;
}

.category-section:first-of-type {
  margin-top: 0;
}

/* Category Header Banner */
.category-header-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent-color);
}

.category-header-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.category-header-title h2 {
  font-size: 2rem;
  color: var(--secondary-color);
}

.category-header-badge {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Product Card Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 35px;
}

/* Modern Product Card */
.product-card {
  background: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(142, 115, 91, 0.18);
  border-color: rgba(142, 115, 91, 0.3);
}

.product-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: #F0EDE8;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.09);
}

/* Badges */
.badge-exclusive {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #B8860B, #D4AF37, #996515);
  color: #FFF;
  font-size: 0.72rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(184, 134, 11, 0.4);
  z-index: 5;
  animation: pulseShimmer 2.5s infinite alternate;
}

@keyframes pulseShimmer {
  0% {
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.4);
  }

  100% {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
  }
}

.badge-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(44, 44, 44, 0.85);
  backdrop-filter: blur(4px);
  color: #FFF;
  font-size: 0.7rem;
  font-weight: 300;
  padding: 4px 10px;
  border-radius: 12px;
  z-index: 5;
}

/* Card Body */
.product-card-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.22rem;
  font-family: var(--font-heading);
  color: var(--secondary-color);
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.5;
  flex-grow: 1;
}

/* Tags / Pills */
.product-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.pill-item {
  background: var(--bg-light);
  border: 1px solid #E5E0DC;
  color: #555;
  font-size: 0.76rem;
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 300;
  transition: all 0.2s ease;
}

.product-card:hover .pill-item {
  border-color: var(--accent-color);
  background: #F3EFEA;
}

/* Enquire Button */
.btn-enquire {
  width: 100%;
  padding: 12px 18px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 300;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.btn-enquire:hover {
  background: linear-gradient(135deg, #20BA5A, #0E7266);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

.btn-enquire svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* No Search Results */
.no-results {
  text-align: center;
  padding: 60px 20px;
  background: var(--bg-white);
  border-radius: 16px;
  box-shadow: var(--shadow-subtle);
  grid-column: 1 / -1;
  display: none;
}

.no-results.show {
  display: block;
}

.no-results h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.no-results p {
  color: var(--text-light);
}

/* Quick Inquiry Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--bg-white);
  border-radius: 20px;
  max-width: 540px;
  width: 100%;
  padding: 35px 30px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #F0ECE9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: var(--primary-color);
  color: white;
}

.modal-title {
  font-size: 1.6rem;
  font-family: var(--font-heading);
  margin-bottom: 8px;
  color: var(--secondary-color);
}

.modal-subtitle {
  color: var(--primary-color);
  font-weight: 300;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.modal-options-group {
  margin-bottom: 20px;
}

.modal-options-label {
  font-weight: 300;
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: block;
}

.modal-size-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal-size-pill {
  padding: 8px 16px;
  border: 2px solid #E2D9D2;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-size-pill.selected,
.modal-size-pill:hover {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: white;
}

.modal-notes-field {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #DDD;
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-bottom: 25px;
  resize: vertical;
  min-height: 80px;
}

.modal-whatsapp-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 300;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.modal-whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.5);
}

/* Animations & Transitions */
.card-filter-animate {
  animation: cardFadeIn 0.5s ease forwards;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(15px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Responsive adjust */
@media (max-width: 991px) {
  .catalog-controls {
    padding: 20px;
  }

  .cat-tab-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
  }
}

/* ==========================================================================
   FLOATING QUICK CONTACT WIDGET (CALL & WHATSAPP)
   ========================================================================== */
.floating-contact-buttons {
  position: fixed;
  bottom: 30px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1500;
}

@media (max-width: 576px) {
  .floating-contact-buttons {
    bottom: 20px;
    right: 15px;
    gap: 10px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
  }

  .float-btn svg {
    width: 23px;
    height: 23px;
  }
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  position: relative;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.float-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.float-btn-call {
  background: linear-gradient(135deg, #8E735B, #6b5643);
  animation: callPulse 2.5s infinite;
}

.float-btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  animation: waPulse 2.5s infinite 1.25s;
}

.float-btn:hover {
  transform: scale(1.15) translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  color: #FFFFFF;
}

.float-tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%) translateX(10px) scale(0.95);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: #1A1613;
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 100;
}

.float-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #1A1613;
}

.float-btn:hover .float-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0) scale(1);
}

@keyframes callPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(142, 115, 91, 0.6);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(142, 115, 91, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(142, 115, 91, 0);
  }
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.why-card {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  border: 1px solid #EAE4DE;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  background: var(--bg-white);
  box-shadow: 0 15px 35px rgba(142, 115, 91, 0.12);
  border-color: rgba(142, 115, 91, 0.3);
}

.why-card:hover::before {
  opacity: 1;
}

.why-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(142, 115, 91, 0.12), rgba(142, 115, 91, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--primary-color);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-card:hover .why-icon-box {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #FFFFFF;
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 8px 20px rgba(142, 115, 91, 0.3);
}

.why-icon-box svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.why-title {
  font-size: 1.2rem;
  font-family: var(--font-heading);
  color: var(--secondary-color);
  margin-bottom: 12px;
  font-weight: 300;
}

.why-desc {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 991px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 650px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 35px;
  }

  .why-card {
    padding: 28px 20px;
  }

  .why-icon-box {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }

  .why-icon-box svg {
    width: 28px;
    height: 28px;
  }

  .why-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
  }

  .why-desc {
    font-size: 0.9rem;
    line-height: 1.55;
  }
}

/* ==========================================================================
   OUR WORKS & LIGHTBOX GALLERY SECTION (AUTO-SCROLLING)
   ========================================================================== */
.works-slider-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 30px;
  padding: 15px 0 25px;
}

.works-slider-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: scrollGallery 28s linear infinite;
}

.works-slider-container:hover .works-slider-track {
  animation-play-state: paused;
}

@keyframes scrollGallery {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 12.5px));
  }
}

.work-card {
  width: 340px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  position: relative;
  background: var(--bg-white);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.work-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 18px 36px rgba(142, 115, 91, 0.22);
}

.work-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.work-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.work-card:hover .work-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.35);
}

.work-zoom-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transform: scale(0.7) rotate(-15deg);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.work-card:hover .work-zoom-icon {
  transform: scale(1) rotate(0deg);
}

.work-zoom-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(12, 10, 8, 0.94);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrapper {
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  cursor: zoom-in;
  position: relative;
  max-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-img-wrapper.zoomed {
  cursor: zoom-out;
  overflow: auto;
}

.lightbox-img-wrapper img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 14px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
  user-select: none;
}

.lightbox-img-wrapper.zoomed img {
  transform: scale(1.85) !important;
}

.lightbox-toolbar {
  position: absolute;
  top: 25px;
  right: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 100001;
}

.lightbox-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 46px;
  height: 46px;
  font-size: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.lightbox-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.lightbox-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(142, 115, 91, 0.4);
}

.lightbox-btn.active {
  background: var(--primary-color);
  border-color: #ffffff;
  box-shadow: 0 0 15px var(--primary-color);
}

.lightbox-close:hover {
  background: #ff4d4d;
  border-color: #ff4d4d;
  transform: rotate(90deg) scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 26px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  z-index: 100000;
  backdrop-filter: blur(8px);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-nav:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 8px 25px rgba(142, 115, 91, 0.5);
}

.lightbox-caption {
  margin-top: 18px;
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lightbox-caption strong {
  font-size: 1.15rem;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.lightbox-caption span {
  font-size: 0.85rem;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 300;
}

/* Gallery Grid Zoom Overlay */
.gallery-zoom-overlay {
  position: absolute;
  inset: 0;
  background: rgba(142, 115, 91, 0.35);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.35s ease;
  border-radius: 16px;
}

.gallery-zoom-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-white);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.6);
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.gallery-zoom-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.gallery-item:hover .gallery-zoom-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-zoom-icon {
  transform: scale(1);
}

@media (max-width: 991px) {
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .works-grid {
    grid-template-columns: 1fr;
  }

  .lightbox-prev {
    left: 12px;
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .lightbox-next {
    right: 12px;
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .lightbox-toolbar {
    top: 15px;
    right: 15px;
  }

  .lightbox-btn {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
}

/* ==========================================================================
   TESTIMONIALS SECTION (AUTO-SLIDING 3-COL CAROUSEL)
   ========================================================================== */
.testimonial-slider-wrapper {
  overflow: hidden;
  position: relative;
  margin-top: 35px;
  padding: 10px 5px 25px;
}

.testimonial-track {
  display: flex;
  gap: 25px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-card {
  flex: 0 0 calc((100% - 50px) / 3);
  box-sizing: border-box;
  background: var(--bg-white);
  border-radius: 16px;
  padding: 35px 28px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid #ECE7E2;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(142, 115, 91, 0.15);
  border-color: rgba(142, 115, 91, 0.3);
}

.testimonial-quote-icon {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 4rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(142, 115, 91, 0.12);
  user-select: none;
}

.testimonial-stars {
  color: #F5A623;
  font-size: 1.15rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 25px;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px dashed #EAE3DC;
  padding-top: 18px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #FFFFFF;
  font-weight: 300;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(142, 115, 91, 0.25);
}

.testimonial-author-info h4 {
  font-size: 1.02rem;
  color: var(--secondary-color);
  font-weight: 300;
  margin-bottom: 2px;
}

.testimonial-author-info span {
  font-size: 0.82rem;
  color: var(--text-light);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 35px;
}

.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 1px solid #E2D9D2;
  color: var(--secondary-color);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testi-btn:hover {
  background: var(--primary-color);
  color: #FFFFFF;
  border-color: var(--primary-color);
  transform: scale(1.1);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #DDD5CD;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testi-dot.active {
  width: 28px;
  border-radius: 10px;
  background: var(--primary-color);
}

@media (max-width: 991px) {
  .testimonial-card {
    flex: 0 0 calc((100% - 25px) / 2);
  }
}

@media (max-width: 600px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
}

/* ==========================================================================
   REVIEWS PAGE STYLES
   ========================================================================== */
.rating-summary-section {
  padding: 40px 0 20px;
  background: var(--bg-light);
}

.rating-summary-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 35px 40px;
  display: grid;
  grid-template-columns: 220px 1fr 260px;
  gap: 30px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #EAE3DC;
}

.rating-score-box {
  text-align: center;
  border-right: 1px solid #EAE3DC;
  padding-right: 20px;
}

.big-score {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: var(--secondary-color);
  line-height: 1;
}

.stars-display {
  color: #F5A623;
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin: 6px 0;
}

.total-reviews-count {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-color);
}

.rating-bar-row span:first-child {
  width: 55px;
}

.rating-bar-row span:last-child {
  width: 40px;
  text-align: right;
  color: var(--text-light);
}

.bar-container {
  flex: 1;
  height: 10px;
  background: #EFE8E1;
  border-radius: 10px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #8E735B, #B89C82);
  border-radius: 10px;
}

.rating-badges {
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-left: 1px solid #EAE3DC;
  padding-left: 30px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-icon {
  font-size: 1.8rem;
}

.badge-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--secondary-color);
}

.badge-item p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0;
}

.reviews-section {
  padding: 50px 0 70px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
  margin-top: 35px;
}

.review-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid #EAE3DC;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(142, 115, 91, 0.15);
  border-color: var(--primary-color);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8E735B, #534336);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviewer-info {
  flex: 1;
}

.reviewer-info h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 2px;
}

.reviewer-location {
  font-size: 0.8rem;
  color: var(--text-light);
}

.verified-badge {
  font-size: 0.72rem;
  background: #E8F5E9;
  color: #2E7D32;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 12px;
  white-space: nowrap;
}

.review-stars {
  color: #F5A623;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.review-product-tag {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-color);
  background: rgba(142, 115, 91, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 15px;
  flex: 1;
}

.review-date {
  font-size: 0.78rem;
  color: #999;
  text-align: right;
}

.write-review-section {
  padding: 60px 0 80px;
  background: var(--bg-light);
}

.review-form-wrapper {
  max-width: 720px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
  border: 1px solid #EAE3DC;
}

.review-form-header {
  text-align: center;
  margin-bottom: 30px;
}

.review-form-header h3 {
  font-size: 1.8rem;
  color: var(--secondary-color);
  font-family: 'Playfair Display', serif;
  margin-bottom: 8px;
}

.review-form-header p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.btn-review-submit {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-review-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
}

@media (max-width: 991px) {
  .rating-summary-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .rating-score-box,
  .rating-badges {
    border: none;
    padding: 0;
  }
}

.btn-google-review {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #4285F4;
  color: #FFFFFF !important;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-google-review:hover {
  background: #3367D6;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(66, 133, 244, 0.4);
}

.google-review-callout {
  background: linear-gradient(135deg, #F8F9FA, #EBF3FE);
  border: 1.5px solid #D2E3FC;
  border-radius: 16px;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.google-callout-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.google-callout-content h4 {
  font-size: 1.15rem;
  color: #1A73E8;
  font-weight: 700;
  margin-bottom: 3px;
}

.google-callout-content p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
}

.btn-google-direct {
  background: #1A73E8;
  color: #FFFFFF !important;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(26, 115, 232, 0.3);
  transition: all 0.3s ease;
}

.btn-google-direct:hover {
  background: #1557B0;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(26, 115, 232, 0.4);
}

/* ==========================================================================
   REVIEWS 3-COLUMN AUTO SLIDING CAROUSEL
   ========================================================================== */
.reviews-carousel-wrapper {
  position: relative;
  margin-top: 30px;
  padding: 0 50px;
}

.reviews-carousel-track-container {
  overflow: hidden;
  border-radius: 20px;
  padding: 15px 5px 25px;
}

.reviews-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.review-slide {
  flex: 0 0 calc((100% - 40px) / 3);
  box-sizing: border-box;
}

.review-slide .review-card {
  height: 100%;
  box-sizing: border-box;
}

.reviews-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #EAE3DC;
  color: var(--secondary-color);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.reviews-carousel-btn:hover {
  background: var(--primary-color);
  color: #FFFFFF;
  border-color: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

.reviews-carousel-btn.prev-btn {
  left: 0;
}

.reviews-carousel-btn.next-btn {
  right: 0;
}

.reviews-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.rev-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #DDD5CD;
  cursor: pointer;
  transition: all 0.3s ease;
}

.rev-dot.active {
  width: 30px;
  border-radius: 10px;
  background: var(--primary-color);
}

@media (max-width: 991px) {
  .reviews-carousel-wrapper {
    padding: 0 20px;
  }

  .review-slide {
    flex: 0 0 calc((100% - 20px) / 2);
  }

  .reviews-carousel-btn {
    display: none;
  }
}

@media (max-width: 600px) {
  .review-slide {
    flex: 0 0 100%;
  }
}
