/* ========================================
   FOSTER - LUXURY MAIN STYLES
   Enhanced Luxury Design - Inspired by Premium Standards
   ======================================== */

/* Reset for full-width sections */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

/* ========================================
   1. HEADER & NAVIGATION - DARK LUXURY
   ======================================== */
.navbar-luxury {
    /* background: var(--color-primary); */
    /* backdrop-filter: blur(10px); */
    padding: 12px 0;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-slow);
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.08); */
}

.navbar-luxury.scrolled {
  padding: 1rem 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  background: rgba(72, 89, 89, 0.98);
}

.navbar-luxury.scrolled .navbar-brand-luxury svg {
  fill: white;
}

.navbar-luxury.scrolled .nav-link-luxury {
  color: rgba(255, 255, 255, 0.9);
}

.navbar-luxury.scrolled .nav-link-luxury:hover,
.navbar-luxury.scrolled .nav-link-luxury.active {
  color: white;
}

/* Navbar with solid background for other pages */
.navbar-luxury.navbar-solid {
  background: #485959;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-luxury.navbar-solid .navbar-brand-luxury svg {
  fill: white;
}

.navbar-luxury.navbar-solid .nav-link-luxury {
  color: rgba(255, 255, 255, 0.9);
}

.navbar-luxury.navbar-solid .nav-link-luxury:hover,
.navbar-luxury.navbar-solid .nav-link-luxury.active {
  color: white;
}

.navbar-luxury.navbar-solid .nav-link-luxury::after {
  background: white;
}

.navbar-luxury.navbar-solid .nav-link-luxury:hover::after,
.navbar-luxury.navbar-solid .nav-link-luxury.active::after {
  width: 100%;
}

.navbar-brand-luxury {
  display: flex;
  align-items: center;
  transition: var(--transition-base);
}

.navbar-brand-luxury svg {
  height: 36px;
  width: auto;
  fill: #485959 /*var(--color-white)*/;
}

.navbar-nav-luxury {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 0 auto;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.navbar-nav-luxury > li {
  list-style: none;
}

.nav-link-luxury {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  /*color: rgba(255, 255, 255, 0.85);*/
  color: #485959;
  position: relative;
  padding: 0.75rem 0;
  transition: all var(--transition-base);
}

.nav-link-luxury::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: #485959;
  transition: width var(--transition-base);
}

.nav-link-luxury:hover,
.nav-link-luxury.active {
 /*color: var(--color-white);*/
 color: #485959;
}

.nav-link-luxury:hover::after,
.nav-link-luxury.active::after {
  width: 100%;
}

/* Dropdown Menu */
.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-menu-luxury {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 12px 0;
  margin: 8px 0 0 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
}

.nav-item-dropdown:hover .dropdown-menu-luxury {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
  pointer-events: auto;
}

.dropdown-menu-luxury li {
  padding: 0;
  margin: 0;
}

.dropdown-menu-luxury a {
  display: block;
  padding: 10px 20px;
  color: var(--color-primary);
  font-size: 17px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}

.dropdown-menu-luxury a::after {
  display: none;
}

.dropdown-menu-luxury a:hover {
  background: rgba(72, 89, 89, 0.05);
  color: var(--color-secondary);
  padding-left: 24px;
}

.navbar-cta {
  margin-left: auto;
}

/* Navbar Container Layout */
.navbar-luxury .container-custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Desktop Navigation - Center Aligned */
.navbar-nav-wrapper {
  position: absolute;
  left: 25%;
  /*transform: translateX(-50%);*/
  pointer-events: auto;
}

/* Hide mobile collapse on desktop */
@media (min-width: 992px) {
  .navbar-luxury .navbar-collapse {
    display: none !important;
  }
}

/* Large Desktop */
@media (min-width: 1400px) {
  .container-custom {
    width: 1380px;
    max-width: 1380px;
  }

  .navbar-brand-luxury svg {
    height: 40px;
  }

  .hero-headline {
    font-size: 4rem;
  }

  .hero-subheadline {
    font-size: 1.5rem;
  }
}

/* Extra Large Desktop */
@media (min-width: 1920px) {
  .hero-headline {
    font-size: 5rem;
  }

  .hero-subheadline {
    font-size: 1.75rem;
  }
}

/* Navbar CTA Button */
.navbar-cta .btn-luxury {
  display: inline-block;
  padding: 1.125rem 3rem;
  font-family: var(--font-body);
  font-size: 17px;
  text-align: center;
  border: 1.5px solid var(--color-secondary);
  background: var(--color-secondary);
  color: var(--color-secondary);
  cursor: pointer;
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  z-index: 1;
  text-decoration: none;
}

.navbar-cta .btn-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: -1;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-cta .btn-luxury:hover::before {
  left: 100%;
}

.navbar-cta .btn-luxury:hover {
  color: #ffffff;
}

/* btn-luxury-filled - Hero Section Buttons */
.btn-luxury-filled {
  display: inline-block;
  padding: 1.125rem 3rem;
  font-family: var(--font-body);
  font-size: 17px;
  text-align: center;
  border: 1.5px solid var(--color-secondary);
  background: var(--color-secondary);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 40px;
  text-decoration: none;
}

.btn-luxury-filled:hover {
  background: #485959a3;
  color: #ffffff;
}

/* Mobile Menu Toggle */
.navbar-toggler-luxury {
  border: none;
  background: transparent;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 1001;
}

.navbar-toggler-luxury span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-white);
  margin: 5px 0;
  transition: all var(--transition-base);
  border-radius: 2px;
}

/* Mobile Collapse Menu Styling */
.navbar-luxury .navbar-collapse {
  background: var(--color-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: var(--spacing-md);
  padding: var(--spacing-md) 0;
}

.navbar-luxury .navbar-collapse.show {
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   2. HERO SECTION - FULL IMPACT
   ======================================== */
.hero-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 750px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
  padding: 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  /*object-fit: cover;*/
  object-position: 100% 50%;
  z-index: 0;
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.05);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: #485959;
  max-width: 950px;
  width: 100%;
  padding: 0 var(--spacing-lg);
}

.hero-headline {
  font-family: 'Archivo', sans-serif;
  font-size: 60px;
  font-weight: 600;
  line-height: 1.15;
  color: #485959;
  margin: 0 auto var(--spacing-lg);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.hero-subheadline {
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.6;
  color: #485959;
  margin: 0 auto var(--spacing-2xl);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.hero-cta-group {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.7s;
  opacity: 0;
}

/* ========================================
   3. SECTION HEADING - GENEROUS SPACING
   ======================================== */
.section-heading {
  text-align: center;
  margin-bottom: 10px 10px 10px 10px;
  padding: 0 var(--spacing-md);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 300;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: var(--color-text-secondary);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-accent {
  width: 100px;
  height: 2.5px;
  background: var(--color-secondary);
  margin: var(--spacing-sm) auto 0;
  border-radius: 2px;
}

/* ========================================
   4. PRODUCT GRID - BREATHING ROOM
   ======================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-2xl);
}

.product-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(72, 89, 89, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid rgba(72, 89, 89, 0.06);
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 40px rgba(72, 89, 89, 0.12);
  border-color: rgba(201, 162, 77, 0.2);
}

.product-card-image-wrapper {
  position: relative;
  width: 100%;
  /*height: 320px;*/
  overflow: hidden;
  background: var(--color-background);
}

.product-card-image {
  width: 100%;
  /*height: 100%;
  object-fit: cover;*/
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card-image {
  transform: scale(1.06);
}

.product-card-badge {
  position: absolute;
  top: 10px;
  right: var(--spacing-lg);
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 0.625rem 1.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(201, 162, 77, 0.3);
}

.product-card-body {
  padding: 20px;
}

.product-card-category {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-sm);
}

.product-card-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 400;
  color: var(--color-text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-card-description {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.product-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(72, 89, 89, 0.08);
}

.product-card-link {
  font-size: 16px;
  color: var(--color-secondary);
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.product-card-link:hover {
  color: var(--color-gold-hover);
  transform: translateX(6px);
}

/* ========================================
   5. FEATURE SECTION - CLEAN & SPACIOUS
   ======================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.feature-item {
  text-align: center;
  padding: 43px 43px 28px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

section .feature-grid .feature-item.feature-item-dark {
  background-color: #485959c2 !important;
  color: #ffffff !important;
}

section .feature-grid .feature-item.feature-item-light {
  background-color: #D9E8E8 !important;
  color: #485959 !important;
}

.feature-icon {
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
}

.feature-icon i {
  font-size: 40px !important;
}

section .feature-grid .feature-item-dark .feature-icon i {
  color: #ffffff !important;
}

section .feature-grid .feature-item-light .feature-icon i {
  color: #485959 !important;
}

.feature-item:hover .feature-icon {
  transform: translateY(-40px);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.3;
  position: relative;
  transition: transform 0.5s ease;
}

section .feature-grid .feature-item-dark .feature-title {
  color: #ffffff !important;
}

section .feature-grid .feature-item-light .feature-title {
  color: #485959 !important;
}

.feature-item:hover .feature-title {
  transform: translateY(-60px);
}

.feature-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80px;
  height: 3px;
  transition: transform 0.55s ease;
}

section .feature-grid .feature-item-dark .feature-title::after {
  background: #ffffff !important;
}

section .feature-grid .feature-item-light .feature-title::after {
  background: #485959 !important;
}

.feature-item:hover .feature-title::after {
  transform: translateX(-50%) scaleX(1);
}

.feature-description {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.6;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

section .feature-grid .feature-item-dark .feature-description {
  color: rgba(255, 255, 255, 0.95) !important;
}

section .feature-grid .feature-item-light .feature-description {
  color: rgba(72, 89, 89, 0.9) !important;
}

.feature-item:hover .feature-description {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   6. SERVICE CARDS - PREMIUM FEEL
   ======================================== */
.service-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 4px 24px rgba(72, 89, 89, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  border: 1px solid rgba(72, 89, 89, 0.05);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 48px rgba(72, 89, 89, 0.12);
  border-color: rgba(201, 162, 77, 0.2);
}

.service-card-icon {
  width: 88px;
  height: 88px;
  background: var(--color-secondary);
  color: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
  transition: all 0.4s ease;
}

.service-card:hover .service-card-icon {
  background: #ffffff;
  border: 2px solid #485959;
  transform: scale(1.1);

}

.service-card-icon i {
  transition: all 0.4s ease;
}

.service-card:hover .service-card-icon i {
  color: #485959;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card-description {
  line-height: 1.7;
}

/* SERVICE CATEGORIES SECTION (services.html only) */
.service-categories .service-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-categories .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(72, 89, 89, 0.15);
}

.service-categories .service-card-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.service-categories .service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-categories .service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-categories .service-card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-categories .service-card-title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.service-categories .service-card-subtitle {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 20px;
  font-weight: 300;
}

.service-categories .service-card-btn {
  background-color: #485959;
  color: #fff;
  border: 2px solid #485959;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  margin-top: auto;
  align-self: center;
}

.service-categories .service-card-btn:hover {
  background-color: #3a4747;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

/* ========================================
   7. BLOG CARDS - ELEGANT LAYOUT
   ======================================== */
.blog-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(72, 89, 89, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(72, 89, 89, 0.06);
}

.blog-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 40px rgba(72, 89, 89, 0.12);
  border-color: rgba(201, 162, 77, 0.2);
}

.blog-card-image-wrapper {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.blog-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card-image {
  transform: scale(1.06);
}

.blog-card-date {
  position: absolute;
  bottom: var(--spacing-lg);
  left: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.625rem 1.25rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-primary);
  box-shadow: 0 4px 12px rgba(72, 89, 89, 0.1);
}

.blog-card-body {
  padding: var(--spacing-xl);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-category {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-sm);
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-lg);
  flex: 1;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(72, 89, 89, 0.08);
}

.blog-card-link {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-secondary);
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-card-link:hover {
  color: var(--color-gold-hover);
  transform: translateX(6px);
}

/* ========================================
   8. FOOTER - SOPHISTICATED
   ======================================== */
.footer-luxury {
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-lg);
}

.footer-description {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-xl);
  max-width: 360px;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: var(--spacing-lg);
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--spacing-md);
}

.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-base);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--color-secondary);
  transform: translateX(4px);
}

.footer-social {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.footer-social a {
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social a:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-white);
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 8px 20px rgba(201, 162, 77, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: var(--spacing-2xl);
  padding-top: var(--spacing-xl);
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   9. BREADCRUMB - REFINED
   ======================================== */
.breadcrumb-luxury {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-lg) 0;
  font-size: 0.875rem;
}

.breadcrumb-luxury a {
  color: var(--color-white);
  transition: var(--transition-base);
}

.breadcrumb-luxury a:hover {
  color: var(--color-secondary);
}

.breadcrumb-luxury .separator {
  color: var(--color-white);
}

.breadcrumb-luxury .active {
  color: var(--color-white);
  font-weight: 500;
}

/* ========================================
   10. CERTIFICATIONS / PARTNERS - PROMINENT
   ======================================== */
.partners-section {
  background: var(--color-white);
  padding: 80px 0;
  border-top: 1px solid rgba(72, 89, 89, 0.08);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-2xl);
  align-items: center;
  margin-top: var(--spacing-xl);
}

.partner-logo {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-background);
  border-radius: 12px;
  padding: var(--spacing-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(72, 89, 89, 0.06);
  box-shadow: 0 2px 8px rgba(72, 89, 89, 0.03);
}

.partner-logo:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(72, 89, 89, 0.1);
  border-color: var(--color-secondary);
  background: var(--color-white);
}

/* ========================================
   11. RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 991px) {
  .navbar-luxury {
    padding: 1.25rem 0;
  }

  .navbar-brand-luxury svg {
    height: 30px;
  }

  .navbar-nav-wrapper {
    position: static;
    transform: none;
    width: 100%;
  }

  .navbar-nav-luxury {
    flex-direction: column;
    gap: var(--spacing-md);
    padding: var(--spacing-lg) 0;
    margin: 0;
    justify-content: flex-start;
  }

  .nav-link-luxury {
    padding: 0.625rem 0;
    width: 100%;
    text-align: center;
  }

  .navbar-cta {
    margin-left: 0;
    margin-top: var(--spacing-md);
    width: 100%;
    text-align: center;
  }

  .navbar-cta .btn-luxury {
    width: 90%;
    max-width: 300px;
    font-size: 17px !important;
    padding: 1rem 2.5rem !important;
  }

  .hero-section {
    height: 90vh;
    min-height: 700px;
  }

  .hero-headline {
    font-size: 3rem;
  }

  .hero-subheadline {
    font-size: 1.125rem;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-xl);
  }

  .section-heading {
    margin-bottom: var(--spacing-2xl);
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .feature-item {
    min-height: 240px;
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 767px) {
  .navbar-luxury {
    padding: 1rem 0;
  }

  .navbar-brand-luxury svg {
    height: 28px;
  }

  .hero-section {
    min-height: 650px;
  }

  .hero-content {
    padding: 0 var(--spacing-md);
  }

  .hero-headline {
    font-size: 2.25rem;
    margin-bottom: var(--spacing-md);
  }

  .hero-subheadline {
    font-size: 17px;
    margin-bottom: var(--spacing-xl);
  }

  .hero-cta-group {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .feature-item {
    min-height: 220px;
    padding: 2rem 1.5rem;
  }

  .feature-icon i {
    font-size: 55px !important;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }

  .service-categories .service-card-image {
    height: 240px;
  }

  .service-categories .service-card-content {
    padding: 25px;
  }

  .service-categories .service-card-title {
    font-size: 1.3rem;
  }

  .service-card {
    padding: var(--spacing-xl);
  }

  .section-heading {
    margin-bottom: var(--spacing-xl);
  }

  .navbar-cta .btn-luxury {
    font-size: 17px !important;
    padding: 1rem 2.5rem !important;
  }
}

@media (max-width: 575px) {
  .navbar-luxury {
    padding: 1rem 0;
  }

  .navbar-brand-luxury svg {
    height: 24px;
  }

  .hero-section {
    min-height: 600px;
  }

  .hero-content {
    padding: 0 var(--spacing-sm);
  }

  .hero-headline {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
  }

  .hero-subheadline {
     font-size: 17px;
    margin-bottom: var(--spacing-lg);
  }

  .hero-cta-group {
    gap: var(--spacing-sm);
    width: 100%;
  }

  .hero-cta-group a {
    width: 100%;
    max-width: 280px;
  }

  .product-card-body,
  .blog-card-body {
    padding: var(--spacing-lg);
  }

  .navbar-cta .btn-luxury {
    width: 100%;
    font-size: 17px !important;
    padding: 1rem 2.5rem !important;
  }
}

/* ========================================
   12. PROJECTS SECTION
   ======================================== */
.projects-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.projects-detail-section {
    padding-top: 80px;
    background-color: #ffffff;
}

.project-card {
    display: block;
    text-decoration: none;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(72, 89, 89, 0.1);
    transition: all 0.4s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(72, 89, 89, 0.15);
}

.project-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.project-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(72, 89, 89, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.project-card-overlay i {
    font-size: 2rem;
    color: #ffffff;
}

.project-card-title {
    font-size: 20px;
    font-weight: 500;
    margin-top: 15px;
    padding: 0 15px 15px;
    color: var(--color-text-primary);
    text-decoration: none;
    text-align: center;
}

a:has(.project-card-title) {
    text-decoration: none;
}

a .project-card-title {
    color: var(--color-text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover .project-card-title {
    color: var(--color-primary);
}

.btn-luxury-outline {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-luxury-outline:hover {
    background: var(--color-primary);
    color: #ffffff;
}

/* ========================================
   Page: products.html
   ======================================== */
        /* Category Intro Section */
        .category-intro-wrapper {
            background: #ffffff;
            padding: 100px 0 0;
            border-bottom: 1px solid #e5e5e5;
        }

        .category-breadcrumb {
            font-size: 16px;
            color: #7a9a9a;
			margin-top: 15px;
            margin-bottom: 20px;
        }

        .category-breadcrumb a {
            color: #485959;
            text-decoration: none;
            transition: color 0.3s;
        }

        .category-breadcrumb a:hover {
            color: #485959;
        }

        .category-intro {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .category-intro-info h1 {
            font-size: 2.3rem;
            font-weight: 400;
            color: #485959;
            margin-bottom: 10px;
        }

        .category-intro-info h2 {
            font-size: 16px;
        }

        /* Mobile Title Row */
        .category-title-row-mobile {
            display: none;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            margin-bottom: 10px;
        }

        .category-title-row-mobile h1 {
            font-size: 1.75rem;
            font-weight: 600;
            color: #485959;
            margin: 0;
            font-family: 'Archivo', sans-serif;
        }

        .category-intro-info .find-out-more {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #485959;
            font-size: 0.95rem;
            text-decoration: none;
            transition: color 0.3s;
        }

        .category-intro-info .find-out-more:hover {
            color: #485959;
        }

        .category-intro-info .find-out-more .circle-icon {
            width: 22px;
            height: 22px;
            border: 2px solid #485959;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }

        .category-intro-btn-filters {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 20px;
            border: 1px solid #ccc;
            border-radius: 40px;
            cursor: pointer;
            color: #485959;
            font-size: 0.9rem;
            transition: all 0.3s;
            background: #E9E9E9;
        }

        .category-intro-btn-filters:hover {
            border-color: #485959;
            color: #485959;
        }

        .category-intro-btn-filters svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .category-intro-btn-filters .category-intro-show-text {
            display: none;
        }

        .category-intro-btn-filters.collapsed .category-intro-hide-text {
            display: none;
        }

        .category-intro-btn-filters.collapsed .category-intro-show-text {
            display: inline;
        }

        /* Collections Navigation */
        .collections-nav-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .collections-nav-scroll {
            display: flex;
            align-items: center;
            gap: 5px;
            overflow-x: auto;
            scroll-behavior: smooth;
            -ms-overflow-style: none;
            scrollbar-width: none;
            flex: 1;
            padding: 10px 0;
        }

        .collections-nav-scroll::-webkit-scrollbar {
            display: none;
        }

        .collections-nav-label {
            font-size: 0.9rem;
            color: #485959;
            white-space: nowrap;
            padding-right: 15px;
            margin-right: 10px;
        }

        .collections-nav-item {
            padding: 10px 20px;
            white-space: nowrap;
            color: #485959;
            text-decoration: none;
            font-size: 0.9rem;
            border-bottom: 2px solid transparent;
            transition: all 0.3s;
			
        }

        .collections-nav-item:hover {
            color: #485959;
            border-bottom-color: #485959;
        }

        .collections-nav-item.active {
            color: #485959;
            border-bottom-color: #485959;
            font-weight: 600;
        }

        .collections-nav-btn {
            width: 36px;
            height: 36px;
            border: 1px solid #485959;
            border-radius: 50%;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #485959;
            transition: all 0.3s;
            flex-shrink: 0;
        }

        .collections-nav-btn:hover {
            border-color: #485959;
            color: #485959;
        }

        .collections-nav-btn svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        /* Main Content */
        .sinks-section {
            padding: 40px 0 60px;
            background-color: #f8f9fa;
        }

        /* Filter Sidebar */
        .filter-sidebar {
            background: #ffffff;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 100px;
        }

        .filter-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #485959;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #485959;
        }

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

        .filter-group-title {
            font-size: 0.95rem;
            font-weight: 600;
            color: #485959;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
        }

        .filter-group-title i {
            transition: transform 0.3s;
        }

        .filter-group-title.collapsed i {
            transform: rotate(-90deg);
        }

        .filter-options {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .filter-option {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            padding: 8px 0 8px 12px;
            border-radius: 6px;
            transition: background-color 0.3s;
        }

        .filter-option:hover {
            background-color: #f0f0f0;
        }

        .filter-option input[type="checkbox"],
        .filter-option input[type="radio"] {
            width: 18px;
            height: 18px;
            accent-color: #C9A24D;
        }

        .filter-option label {
            font-size: 0.9rem;
            color: #666;
            cursor: pointer;
            margin: 0;
        }

        .filter-option span {
            flex: 1;
        }

        .color-options {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .color-option-row {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            padding: 5px 0;
            transition: all 0.3s;
        }

        .color-option-row:hover {
            opacity: 0.8;
        }

        .color-swatch {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            flex-shrink: 0;
            border: 2px solid transparent;
            transition: all 0.3s;
        }

        .color-option-row:hover .color-swatch,
        .color-option-row.active .color-swatch {
            border-color: #485959;
        }

        .color-name {
            flex: 1;
            font-size: 0.9rem;
            color: #666;
        }

        .color-info-btn {
            color: #969696;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .color-info-btn:hover {
            color: #485959;
        }

        .color-swatch.gun-metal { background: #6b6b6b; }
        .color-swatch.black { background: #1a1a1a; }
        .color-swatch.gold { background: #d4b896; }
        .color-swatch.brandy { background: #c4a67c; }
        .color-swatch.copper { background: #d4a574; }

        /* Products Grid */
        .products-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .products-count {
            font-size: 1rem;
            color: #666;
            margin: 0;
        }

        .products-count strong {
            color: #485959;
        }

        .sort-dropdown .form-select {
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 10px 40px 10px 15px;
            font-size: 0.9rem;
            color: #485959;
        }

        .btn-filter-mobile {
            border: 1px solid #ccc;
            color: #485959;
            padding: 10px 80px;
            border-radius: 25px;
            transition: all 0.3s;
        }

        .btn-filter-mobile:hover {
            background: #485959;
            color: #fff;
            border-color: #485959;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

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

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

        /* Product Card */
        .sink-card {
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .sink-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(72, 89, 89, 0.15);
        }

        .sink-card-image {
            position: relative;
            aspect-ratio: 4/3;
            overflow: hidden;
            background: #f5f5f5;
        }

        .sink-card-slider {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            transition: transform 0.4s ease;
        }

        .sink-card-slider img {
            min-width: 100%;
            width: 100%;
            height: 100%;
            object-fit: cover;
            flex-shrink: 0;
        }

        .sink-card-dots {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 6px;
            z-index: 5;
        }

        .sink-card-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s;
        }

        .sink-card-dot.active {
            background: #fff;
        }

        .sink-card-dot:hover {
            background: rgba(255,255,255,0.8);
        }

        .sink-card-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 32px;
            height: 32px;
            background: rgba(255,255,255,0.9);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 5;
        }

        .sink-card:hover .sink-card-nav {
            opacity: 1;
        }

        .sink-card-nav.prev {
            left: 10px;
        }

        .sink-card-nav.next {
            right: 10px;
        }

        .sink-card-nav:hover {
            background: #fff;
        }

        /* Lightbox Styles */
        .lightbox-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .lightbox-overlay.active {
            display: flex;
            opacity: 1;
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 40px;
            color: #fff;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 10001;
            transition: color 0.3s;
        }

        .lightbox-close:hover {
            color: #C9A24D;
        }

        .lightbox-content {
            max-width: 90%;
            max-height: 85vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-content img {
            max-width: 100%;
            max-height: 85vh;
            object-fit: contain;
            border-radius: 4px;
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: 50%;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            z-index: 10001;
        }

        .lightbox-nav:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .lightbox-prev {
            left: 30px;
        }

        .lightbox-next {
            right: 30px;
        }

        .lightbox-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10001;
        }

        .lightbox-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s;
        }

        .lightbox-dot.active {
            background: #fff;
        }

        .lightbox-dot:hover {
            background: rgba(255, 255, 255, 0.7);
        }

        @media (max-width: 768px) {
            .lightbox-nav {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
            .lightbox-prev {
                left: 10px;
            }
            .lightbox-next {
                right: 10px;
            }
            .lightbox-close {
                top: 10px;
                right: 15px;
                font-size: 32px;
            }
        }

        .sink-card-badge {
            position: absolute;
            top: 10px;
            left: 15px;
            background: #C9A24D;
            color: #ffffff;
            padding: 3px 14px;
            border-radius: 6px;
            font-size: 12px;
            text-transform: uppercase;
        }

        .sink-card-badge.new {
            background: #485959;
        }

        .sink-card-badge.pvd {
            background: linear-gradient(135deg, #C9A24D, #B87333);
        }

        .sink-card-badge.collection {
			background: #465957;
			border: 1px solid #465957;
			color: #ffffff;
            left: auto;
            right: 70px;
        }

        .sink-card-badge.finish {
            background: #465957;
            color: #fff;
            left: auto;
            right: 15px;
        }

        .sink-card-actions {
            position: absolute;
            top: 15px;
            right: 15px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            opacity: 0;
            transform: translateX(10px);
            transition: all 0.3s ease;
        }

        .sink-card:hover .sink-card-actions {
            opacity: 1;
            transform: translateX(0);
        }

        .sink-card-action-btn {
            width: 40px;
            height: 40px;
            background: #ffffff;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .sink-card-action-btn:hover {
            background: #C9A24D;
            color: #ffffff;
        }

        .sink-card-body {
            padding: 20px;
        }

        .sink-card-collection {
            font-size: 0.8rem;
            color: #C9A24D;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .sink-card-title {
            font-size: 1.35em;
            font-weight: 600;
            color: #485959;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .sink-card-title a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s;
        }

        .sink-card-title a:hover {
            color: #C9A24D;
        }

        .sink-card-colors {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
        }

        .sink-card-colors .label {
            font-size: 16px;
            color: #485959;
        }

        .sink-card-colors .swatches {
            display: flex;
            gap: 4px;
        }

        .sink-card-colors .swatches span {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            border: 1px solid #ddd;
        }

        .sink-card-edge {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            margin-bottom: 10px;
        }

        .sink-card-edge .label {
            font-size: 16px;
            color: #485959;
            white-space: nowrap;
        }

        .sink-card-edge .values {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
        }

        .sink-card-edge .values span {
            background: #f0f0f0;
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 0.8rem;
            color: #666;
        }

        .sink-card-specs {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 15px;
        }

        .sink-spec-tag {
            background: #f0f0f0;
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 0.75rem;
            color: #666;
        }

        .sink-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        .sink-card-link {
            color: #485959;
            font-weight: 500;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s;
        }

        .sink-card-link:hover {
            color: #C9A24D;
        }

        .sink-card-link i {
            transition: transform 0.3s;
        }

        .sink-card-link:hover i {
            transform: translateX(5px);
        }

        /* Load More */
        .load-more-wrapper {
            text-align: center;
            margin-top: 50px;
        }

        .btn-load-more {
            background: transparent;
            border: 2px solid #485959;
            color: #485959;
            padding: 15px 50px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s;
        }

        .btn-load-more:hover {
            background: #485959;
            color: #ffffff;
        }

        /* Sink Card image link wrapper */
        .sink-card-slide-link {
            flex: 0 0 100%;
            display: block;
            width: 100%;
            height: 100%;
            line-height: 0;
        }

        .sink-card-slide-link img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Luxury Pagination */
        .pagination-luxury {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .page-item-luxury {
            display: inline-block;
        }

        .page-link-luxury {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 45px;
            height: 45px;
            padding: 0.5rem 1rem;
            font-family: var(--font-body, inherit);
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--color-primary, #485959);
            background-color: #ffffff;
            border: 1px solid var(--color-primary, #485959);
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .page-link-luxury:hover {
            background-color: var(--color-primary, #485959);
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(72, 89, 89, 0.3);
        }

        .page-item-luxury.active .page-link-luxury {
            background-color: var(--color-secondary, #7a9a9a);
            border-color: var(--color-secondary, #7a9a9a);
            color: #ffffff;
        }

        .page-item-luxury.disabled .page-link-luxury {
            color: #adb5bd;
            background-color: #f8f9fa;
            border-color: #dee2e6;
            cursor: not-allowed;
            pointer-events: none;
        }

        .page-item-luxury.disabled .page-link-luxury:hover {
            transform: none;
            box-shadow: none;
        }

        @media (max-width: 576px) {
            .pagination-luxury {
                gap: 0.25rem;
            }

            .page-link-luxury {
                min-width: 40px;
                height: 40px;
                padding: 0.4rem 0.6rem;
                font-size: 0.875rem;
            }

            .page-link-luxury-text {
                display: none;
            }

            .page-link-luxury .bi {
                margin: 0 !important;
            }
        }

        /* Mobile Filter Toggle */
        .filter-toggle-mobile {
            background: transparent;
            color: #7a9a9a;
            border: none;
            padding: 5px;
            cursor: pointer;
        }

        .filter-toggle-mobile svg {
            width: 28px;
            height: 28px;
            fill: #485959;
        }

        .filter-toggle-mobile:hover {
            color: #485959;
        }

        @media (max-width: 991px) {
            .products-header {
                margin-bottom: 30px;
            }

            .filter-sidebar {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                z-index: 1050;
                border-radius: 0;
                overflow-y: auto;
                padding-top: 60px;
            }

            .filter-sidebar.show {
                display: block;
            }

            .filter-close {
                position: absolute;
                top: 15px;
                right: 15px;
                background: none;
                border: none;
                font-size: 1.5rem;
                color: #485959;
            }
        }

        /* Footer Styles */
        .foster-footer {
            background-color: #485959;
            color: #ffffff;
            padding: 30px 0 0;
        }

        .footer-top {
            padding-bottom: 0;
        }

        .footer-title {
            color: #ffffff;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-list li {
            margin-bottom: 6px;
        }

        .footer-list a {
            color: rgba(255, 255, 255, 0.8);
            font-size: 18px;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-list a:hover {
            color: #C9A24D;
        }

        .footer-center {
            background-color: #3a4848;
            padding: 30px 20px 80px 30px;
            text-align: center;
            margin-top: -30px;
            margin-bottom: 0;
        }

        .footer-quick-link-wrapper {
            padding-left: 100px;
        }

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

        .footer-logo svg {
            max-width: 200px;
            height: auto;
            fill: #ffffff;
        }

        .footer-address-list {
            margin-bottom: 20px;
        }

        .footer-address-list li {
            margin-bottom: 0;
        }

        .footer-address-list a {
            color: rgba(255, 255, 255, 0.8);
            font-size: 17px;
            line-height: 1.6;
            text-align: center;
        }

        .footer-phone-btn {
            background-color: rgba(0, 0, 0, 0.2);
            border: none;
            color: #ffffff;
            font-size: 16px;
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 30px;
            border-radius: 30px;
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }

        .footer-phone-btn svg {
            fill: #ffffff;
        }

        .footer-phone-btn:hover {
            background-color: #C9A24D;
            color: #ffffff;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        .footer-social a {
            width: 44px;
            height: 44px;
            background-color: #ffffff;
            color: #485959;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 20px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .footer-social a:hover {
            background-color: #C9A24D;
            color: #ffffff;
            transform: scale(1.1);
        }

        .footer-bottom {
            background-color: #2d3838;
            padding: 30px 0;
            width: 100%;
            margin-top: 0;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.7);
            font-size: 17px;
        }

        .footer-menu {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .footer-menu a {
            color: rgba(255, 255, 255, 0.8);
            font-size: 17px;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-menu a:hover {
            color: #C9A24D;
        }

        @media (max-width: 991px) {
            .footer-center {
                margin-top: 0;
                padding: 40px 30px;
            }

            .footer-quick-link-wrapper {
                padding-left: 0;
                margin-top: 30px;
            }
        }

        @media (max-width: 991px) {
            .category-intro-btn-filters {
                display: none;
            }

            .category-title-row-mobile {
                display: flex;
            }

            .desktop-title {
                display: none;
            }

            .collections-nav-wrapper {
                margin-bottom: 10px;
            }
        }

        @media (max-width: 767px) {
            .collections-nav-btn {
                display: none;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-menu {
                justify-content: center;
            }
        }

        /* Base Grid Filter */
        .base-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            overflow: hidden;
        }

        .base-grid-item {
            padding: 12px 8px;
            text-align: center;
            font-size: 0.85rem;
            color: #666;
            border-right: 1px solid #e0e0e0;
            border-bottom: 1px solid #e0e0e0;
            cursor: pointer;
            transition: all 0.3s;
            background: #fff;
        }

        .base-grid-item:nth-child(3n) {
            border-right: none;
        }

        .base-grid-item:nth-last-child(-n+3) {
            border-bottom: none;
        }

        .base-grid-item:hover {
            background-color: #f5f5f5;
        }

        .base-grid-item.active {
            background-color: #485959;
            color: #fff;
        }


/* ========================================
   Page: sinks.html
   ======================================== */
        /* Category Intro Section */
        .category-intro-wrapper {
            background: #ffffff;
            padding: 100px 0 0;
            border-bottom: 1px solid #e5e5e5;
			font-size: 22px;
        }

        .category-breadcrumb {
            font-size: 16px;
            color: #7a9a9a;
            margin-top: 15px;
            margin-bottom: 20px;
        }

        .category-breadcrumb a {
            color: #485959;
            text-decoration: none;
            transition: color 0.3s;
        }

        .category-breadcrumb a:hover {
            color: #485959;
        }

        .category-intro {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .category-intro-info h1 {
            font-size: 2.3rem;
            font-weight: 400;
            color: #485959;
            margin-bottom: 10px;
        }

        /* Mobile Title Row */
        .category-title-row-mobile {
            display: none;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            margin-bottom: 10px;
        }

        .category-title-row-mobile h1 {
            font-size: 1.75rem;
            font-weight: 600;
            color: #485959;
            margin: 0;
            font-family: 'Archivo', sans-serif;
        }

        .category-intro-info .find-out-more {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #485959;
            font-size: 0.95rem;
            text-decoration: none;
            transition: color 0.3s;
        }

        .category-intro-info .find-out-more:hover {
            color: #485959;
        }

        .category-intro-info .find-out-more .circle-icon {
            width: 22px;
            height: 22px;
            border: 2px solid #485959;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }

        .category-intro-btn-filters {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 20px;
            border: 1px solid #ccc;
            border-radius: 40px;
            cursor: pointer;
            color: #485959;
            font-size: 0.9rem;
            transition: all 0.3s;
            background: #E9E9E9;
        }

        .category-intro-btn-filters:hover {
            border-color: #485959;
            color: #485959;
        }

        .category-intro-btn-filters svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .category-intro-btn-filters .category-intro-show-text {
            display: none;
        }

        .category-intro-btn-filters.collapsed .category-intro-hide-text {
            display: none;
        }

        .category-intro-btn-filters.collapsed .category-intro-show-text {
            display: inline;
        }

        /* Collections Navigation */
        .collections-nav-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .collections-nav-scroll {
            display: flex;
            align-items: center;
            gap: 5px;
            overflow-x: auto;
            scroll-behavior: smooth;
            -ms-overflow-style: none;
            scrollbar-width: none;
            flex: 1;
            padding: 10px 0;
        }

        .collections-nav-scroll::-webkit-scrollbar {
            display: none;
        }

        .collections-nav-label {
            font-size: 0.9rem;
            color: #485959;
            white-space: nowrap;
            padding-right: 15px;
            margin-right: 10px;
        }

        .collections-nav-item {
            padding: 10px 20px;
            white-space: nowrap;
            color: #485959;
            text-decoration: none;
            font-size: 0.9rem;
            border-bottom: 2px solid transparent;
            transition: all 0.3s;
			
        }

        .collections-nav-item:hover {
            color: #485959;
            border-bottom-color: #485959;
        }

        .collections-nav-item.active {
            color: #485959;
            border-bottom-color: #485959;
            font-weight: 600;
        }

        .collections-nav-btn {
            width: 36px;
            height: 36px;
            border: 1px solid #485959;
            border-radius: 50%;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #485959;
            transition: all 0.3s;
            flex-shrink: 0;
        }

        .collections-nav-btn:hover {
            border-color: #485959;
            color: #485959;
        }

        .collections-nav-btn svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        /* Main Content */
        .sinks-section {
            padding: 40px 0 60px;
            background-color: #f8f9fa;
        }

        /* Filter Sidebar */
        .filter-sidebar {
            background: #ffffff;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 100px;
        }

        .filter-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #485959;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #485959;
        }

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

        .filter-group-title {
            font-size: 0.95rem;
            font-weight: 600;
            color: #485959;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
        }

        .filter-group-title i {
            transition: transform 0.3s;
        }

        .filter-group-title.collapsed i {
            transform: rotate(-90deg);
        }

        .filter-options {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .filter-option {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            padding: 8px 0 8px 12px;
            border-radius: 6px;
            transition: background-color 0.3s;
        }

        .filter-option:hover {
            background-color: #f0f0f0;
        }

        .filter-option input[type="checkbox"],
        .filter-option input[type="radio"] {
            width: 18px;
            height: 18px;
            accent-color: #C9A24D;
        }

        .filter-option label {
            font-size: 0.9rem;
            color: #666;
            cursor: pointer;
            margin: 0;
        }

        .filter-option span {
            flex: 1;
        }

        .color-options {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .color-option-row {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            padding: 5px 0;
            transition: all 0.3s;
        }

        .color-option-row:hover {
            opacity: 0.8;
        }

        .color-swatch {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            flex-shrink: 0;
            border: 2px solid transparent;
            transition: all 0.3s;
        }

        .color-option-row:hover .color-swatch,
        .color-option-row.active .color-swatch {
            border-color: #485959;
        }

        .color-name {
            flex: 1;
            font-size: 0.9rem;
            color: #666;
        }

        .color-info-btn {
            color: #969696;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .color-info-btn:hover {
            color: #485959;
        }

        .color-swatch.gun-metal { background: #6b6b6b; }
        .color-swatch.black { background: #1a1a1a; }
        .color-swatch.gold { background: #d4b896; }
        .color-swatch.brandy { background: #c4a67c; }
        .color-swatch.copper { background: #d4a574; }

        /* Products Grid */
        .products-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .products-count {
            font-size: 1rem;
            color: #666;
            margin: 0;
        }

        .products-count strong {
            color: #485959;
        }

        .sort-dropdown .form-select {
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 10px 40px 10px 15px;
            font-size: 0.9rem;
            color: #485959;
        }

        .btn-filter-mobile {
            border: 1px solid #ccc;
            color: #485959;
            padding: 10px 80px;
            border-radius: 25px;
            transition: all 0.3s;
        }

        .btn-filter-mobile:hover {
            background: #485959;
            color: #fff;
            border-color: #485959;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

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

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

        /* Product Card */
        .sink-card {
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .sink-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(72, 89, 89, 0.15);
        }

        .sink-card-image {
            position: relative;
            aspect-ratio: 4/3;
            overflow: hidden;
            background: #f5f5f5;
        }

        .sink-card-slider {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            transition: transform 0.4s ease;
        }

        .sink-card-slider img {
            min-width: 100%;
            width: 100%;
            height: 100%;
            object-fit: cover;
            flex-shrink: 0;
        }

        .sink-card-dots {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 6px;
            z-index: 5;
        }

        .sink-card-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s;
        }

        .sink-card-dot.active {
            background: #fff;
        }

        .sink-card-dot:hover {
            background: rgba(255,255,255,0.8);
        }

        .sink-card-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 32px;
            height: 32px;
            background: rgba(255,255,255,0.9);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 5;
        }

        .sink-card:hover .sink-card-nav {
            opacity: 1;
        }

        .sink-card-nav.prev {
            left: 10px;
        }

        .sink-card-nav.next {
            right: 10px;
        }

        .sink-card-nav:hover {
            background: #fff;
        }

        /* Lightbox Styles */
        .lightbox-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .lightbox-overlay.active {
            display: flex;
            opacity: 1;
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 40px;
            color: #fff;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 10001;
            transition: color 0.3s;
        }

        .lightbox-close:hover {
            color: #C9A24D;
        }

        .lightbox-content {
            max-width: 90%;
            max-height: 85vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-content img {
            max-width: 100%;
            max-height: 85vh;
            object-fit: contain;
            border-radius: 4px;
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: 50%;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            z-index: 10001;
        }

        .lightbox-nav:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .lightbox-prev {
            left: 30px;
        }

        .lightbox-next {
            right: 30px;
        }

        .lightbox-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10001;
        }

        .lightbox-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s;
        }

        .lightbox-dot.active {
            background: #fff;
        }

        .lightbox-dot:hover {
            background: rgba(255, 255, 255, 0.7);
        }

        @media (max-width: 768px) {
            .lightbox-nav {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
            .lightbox-prev {
                left: 10px;
            }
            .lightbox-next {
                right: 10px;
            }
            .lightbox-close {
                top: 10px;
                right: 15px;
                font-size: 32px;
            }
        }

        .sink-card-badge {
            position: absolute;
            top: 10px;
            left: 15px;
            background: #C9A24D;
            color: #ffffff;
            padding: 3px 14px;
            border-radius: 6px;
            font-size: 12px;
            text-transform: uppercase;
        }

        .sink-card-badge.new {
            background: #485959;
        }

        .sink-card-badge.pvd {
            background: linear-gradient(135deg, #C9A24D, #B87333);
        }

        .sink-card-badge.collection {
			background: #465957;
			border: 1px solid #465957;
			color: #ffffff;
            left: auto;
            right: 70px;
        }

        .sink-card-badge.finish {
            background: #465957;
            color: #fff;
            left: auto;
            right: 15px;
        }

        .sink-card-actions {
            position: absolute;
            top: 15px;
            right: 15px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            opacity: 0;
            transform: translateX(10px);
            transition: all 0.3s ease;
        }

        .sink-card:hover .sink-card-actions {
            opacity: 1;
            transform: translateX(0);
        }

        .sink-card-action-btn {
            width: 40px;
            height: 40px;
            background: #ffffff;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .sink-card-action-btn:hover {
            background: #C9A24D;
            color: #ffffff;
        }

        .sink-card-body {
            padding: 20px;
        }

        .sink-card-collection {
            font-size: 0.8rem;
            color: #C9A24D;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .sink-card-title {
            font-size: 1.35em;
            font-weight: 600;
            color: #485959;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .sink-card-title a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s;
        }

        .sink-card-title a:hover {
            color: #C9A24D;
        }

        .sink-card-colors {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
        }

        .sink-card-colors .label {
            font-size: 16px;
            color: #485959;
        }

        .sink-card-colors .swatches {
            display: flex;
            gap: 4px;
        }

        .sink-card-colors .swatches span {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            border: 1px solid #ddd;
        }

        .sink-card-edge {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            margin-bottom: 10px;
        }

        .sink-card-edge .label {
            font-size: 16px;
            color: #485959;
            white-space: nowrap;
        }

        .sink-card-edge .values {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
        }

        .sink-card-edge .values span {
            background: #f0f0f0;
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 0.8rem;
            color: #666;
        }

        .sink-card-specs {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 15px;
        }

        .sink-spec-tag {
            background: #f0f0f0;
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 0.75rem;
            color: #666;
        }

        .sink-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        .sink-card-link {
            color: #485959;
            font-weight: 500;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s;
        }

        .sink-card-link:hover {
            color: #C9A24D;
        }

        .sink-card-link i {
            transition: transform 0.3s;
        }

        .sink-card-link:hover i {
            transform: translateX(5px);
        }

        /* Load More */
        .load-more-wrapper {
            text-align: center;
            margin-top: 50px;
        }

        .btn-load-more {
            background: transparent;
            border: 2px solid #485959;
            color: #485959;
            padding: 15px 50px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s;
        }

        .btn-load-more:hover {
            background: #485959;
            color: #ffffff;
        }

        /* Sink Card image link wrapper */
        .sink-card-slide-link {
            flex: 0 0 100%;
            display: block;
            width: 100%;
            height: 100%;
            line-height: 0;
        }

        .sink-card-slide-link img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Luxury Pagination */
        .pagination-luxury {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .page-item-luxury {
            display: inline-block;
        }

        .page-link-luxury {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 45px;
            height: 45px;
            padding: 0.5rem 1rem;
            font-family: var(--font-body, inherit);
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--color-primary, #485959);
            background-color: #ffffff;
            border: 1px solid var(--color-primary, #485959);
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .page-link-luxury:hover {
            background-color: var(--color-primary, #485959);
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(72, 89, 89, 0.3);
        }

        .page-item-luxury.active .page-link-luxury {
            background-color: var(--color-secondary, #7a9a9a);
            border-color: var(--color-secondary, #7a9a9a);
            color: #ffffff;
        }

        .page-item-luxury.disabled .page-link-luxury {
            color: #adb5bd;
            background-color: #f8f9fa;
            border-color: #dee2e6;
            cursor: not-allowed;
            pointer-events: none;
        }

        .page-item-luxury.disabled .page-link-luxury:hover {
            transform: none;
            box-shadow: none;
        }

        @media (max-width: 576px) {
            .pagination-luxury {
                gap: 0.25rem;
            }

            .page-link-luxury {
                min-width: 40px;
                height: 40px;
                padding: 0.4rem 0.6rem;
                font-size: 0.875rem;
            }

            .page-link-luxury-text {
                display: none;
            }

            .page-link-luxury .bi {
                margin: 0 !important;
            }
        }

        /* Mobile Filter Toggle */
        .filter-toggle-mobile {
            background: transparent;
            color: #7a9a9a;
            border: none;
            padding: 5px;
            cursor: pointer;
        }

        .filter-toggle-mobile svg {
            width: 28px;
            height: 28px;
            fill: #485959;
        }

        .filter-toggle-mobile:hover {
            color: #485959;
        }

        @media (max-width: 991px) {
            .products-header {
                margin-bottom: 30px;
            }

            .filter-sidebar {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                z-index: 1050;
                border-radius: 0;
                overflow-y: auto;
                padding-top: 60px;
            }

            .filter-sidebar.show {
                display: block;
            }

            .filter-close {
                position: absolute;
                top: 15px;
                right: 15px;
                background: none;
                border: none;
                font-size: 1.5rem;
                color: #485959;
            }
        }

        /* Footer Styles */
        .foster-footer {
            background-color: #485959;
            color: #ffffff;
            padding: 30px 0 0;
        }

        .footer-top {
            padding-bottom: 0;
        }

        .footer-title {
            color: #ffffff;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-list li {
            margin-bottom: 6px;
        }

        .footer-list a {
            color: rgba(255, 255, 255, 0.8);
            font-size: 18px;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-list a:hover {
            color: #C9A24D;
        }

        .footer-center {
            background-color: #3a4848;
            padding: 30px 20px 80px 30px;
            text-align: center;
            margin-top: -30px;
            margin-bottom: 0;
        }

        .footer-quick-link-wrapper {
            padding-left: 100px;
        }

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

        .footer-logo svg {
            max-width: 200px;
            height: auto;
            fill: #ffffff;
        }

        .footer-address-list {
            margin-bottom: 20px;
        }

        .footer-address-list li {
            margin-bottom: 0;
        }

        .footer-address-list a {
            color: rgba(255, 255, 255, 0.8);
            font-size: 17px;
            line-height: 1.6;
            text-align: center;
        }

        .footer-phone-btn {
            background-color: rgba(0, 0, 0, 0.2);
            border: none;
            color: #ffffff;
            font-size: 16px;
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 30px;
            border-radius: 30px;
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }

        .footer-phone-btn svg {
            fill: #ffffff;
        }

        .footer-phone-btn:hover {
            background-color: #C9A24D;
            color: #ffffff;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        .footer-social a {
            width: 44px;
            height: 44px;
            background-color: #ffffff;
            color: #485959;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 20px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .footer-social a:hover {
            background-color: #C9A24D;
            color: #ffffff;
            transform: scale(1.1);
        }

        .footer-bottom {
            background-color: #2d3838;
            padding: 30px 0;
            width: 100%;
            margin-top: 0;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.7);
            font-size: 17px;
        }

        .footer-menu {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .footer-menu a {
            color: rgba(255, 255, 255, 0.8);
            font-size: 17px;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-menu a:hover {
            color: #C9A24D;
        }

        @media (max-width: 991px) {
            .footer-center {
                margin-top: 0;
                padding: 40px 30px;
            }

            .footer-quick-link-wrapper {
                padding-left: 0;
                margin-top: 30px;
            }
        }

        @media (max-width: 991px) {
            .category-intro-btn-filters {
                display: none;
            }

            .category-title-row-mobile {
                display: flex;
            }

            .desktop-title {
                display: none;
            }

            .collections-nav-wrapper {
                margin-bottom: 10px;
            }
        }

        @media (max-width: 767px) {
            .collections-nav-btn {
                display: none;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-menu {
                justify-content: center;
            }
        }

        /* Base Grid Filter */
        .base-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            overflow: hidden;
        }

        .base-grid-item {
            padding: 12px 8px;
            text-align: center;
            font-size: 0.85rem;
            color: #666;
            border-right: 1px solid #e0e0e0;
            border-bottom: 1px solid #e0e0e0;
            cursor: pointer;
            transition: all 0.3s;
            background: #fff;
        }

        .base-grid-item:nth-child(3n) {
            border-right: none;
        }

        .base-grid-item:nth-last-child(-n+3) {
            border-bottom: none;
        }

        .base-grid-item:hover {
            background-color: #f5f5f5;
        }

        .base-grid-item.active {
            background-color: #485959;
            color: #fff;
        }


/* ========================================
   Page: gun-metal.html
   ======================================== */
        /* Breadcrumb */
        .page-breadcrumb {
            background: #fff;
            padding: 120px 0 20px;
            border-bottom: 1px solid #e5e5e5;
        }

        .page-breadcrumb a {
            color: #485959;
            text-decoration: none;
            font-size: 0.9rem;
        }

        .page-breadcrumb span {
            color: #7a9a9a;
            margin: 0 8px;
        }

        /* Page Title */
        .page-title-section {
            background: #fff;
            padding: 40px 0 20px;
        }

        .page-title-section h1 {
            font-size: 2.5rem;
            font-weight: 600;
            color: #485959;
            font-family: 'Archivo', sans-serif;
            margin: 0;
            text-transform: uppercase;
            text-align: center;
        }

        /* Main Content */
        .paragraph-section {
            padding: 40px 0 80px;
            background: #fff;
        }

        .paragraph-image-wrapper {
            margin-top: 20px;
        }

        .paragraph-image {
            position: relative;
            width: 100%;
            max-width: 1500px;
            margin: 0 auto;
            overflow: hidden;
        }

        .paragraph-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .paragraph-text {
            /*max-width: 1000px;*/
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .paragraph-abstract,
        .paragraph-abstract p {
            font-size: 18px !important;
            color: #555;
            line-height: 1.9;
            text-align: center;
        }

        .paragraph-abstract strong {
            color: #485959;
        }

        .paragraph-abstract a {
            color: #485959;
            text-decoration: none;
            transition: color 0.3s;
        }

        .paragraph-abstract a:hover {
            color: #ffffff;
        }

        .paragraph-btn {
            display: inline-block;
            position: relative;
            margin-top: 30px;
            margin-bottom: 40px;
            padding: 12px 50px 12px 20px;
            background: #fff;
            color: #485959;
            text-decoration: none;
            border: 1px solid #485959;
            border-radius: 4px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s;
        }

        .paragraph-btn::after {
            content: "";
            display: inline-block;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 93.9 41.7'%3E%3Cpath fill='%23465957' d='M12.7,0H38c0.5,0,0.9,0.5,0.7,1l-3.8,13.4c-0.1,0.5-0.7,1-1.3,1H8.3c-0.5,0-0.8-0.5-0.7-1L11.4,1C11.7,0.5,12.2,0,12.7,0 M7.1,19.6h25.3c0.5,0,1,0.5,0.7,1l-5.8,20c-0.1,0.5-0.7,1-1.3,1H0.8c-0.5,0-0.9-0.5-0.7-1l5.8-20C5.9,20.1,6.5,19.6,7.1,19.6 M44.8,0.2h48.4c0.5,0,0.8,0.4,0.7,1L90,14.7c-0.2,0.5-0.7,1-1.3,1H40.4c-0.5,0-0.8-0.5-0.7-1l3.8-13.6C43.7,0.6,44.3,0.2,44.8,0.2 M39.4,19.8h48c0.5,0,1,0.5,0.7,1l-3.7,13c-0.1,0.5-0.7,1-1.3,1h-48c-0.5,0-0.8-0.5-0.7-1l3.8-13C38.3,20.3,38.9,19.8,39.4,19.8'/%3E%3C/svg%3E") no-repeat center;
            width: 30px;
            height: 30px;
            background-size: 100%;
            position: absolute;
            transform: translateY(-50%);
            top: 50%;
            right: 12px;
        }

        .paragraph-btn:hover {
            background: #485959;
            color: #fff;
        }

        .paragraph-btn:hover::after {
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 93.9 41.7'%3E%3Cpath fill='%23ffffff' d='M12.7,0H38c0.5,0,0.9,0.5,0.7,1l-3.8,13.4c-0.1,0.5-0.7,1-1.3,1H8.3c-0.5,0-0.8-0.5-0.7-1L11.4,1C11.7,0.5,12.2,0,12.7,0 M7.1,19.6h25.3c0.5,0,1,0.5,0.7,1l-5.8,20c-0.1,0.5-0.7,1-1.3,1H0.8c-0.5,0-0.9-0.5-0.7-1l5.8-20C5.9,20.1,6.5,19.6,7.1,19.6 M44.8,0.2h48.4c0.5,0,0.8,0.4,0.7,1L90,14.7c-0.2,0.5-0.7,1-1.3,1H40.4c-0.5,0-0.8-0.5-0.7-1l3.8-13.6C43.7,0.6,44.3,0.2,44.8,0.2 M39.4,19.8h48c0.5,0,1,0.5,0.7,1l-3.7,13c-0.1,0.5-0.7,1-1.3,1h-48c-0.5,0-0.8-0.5-0.7-1l3.8-13C38.3,20.3,38.9,19.8,39.4,19.8'/%3E%3C/svg%3E") no-repeat center;
            background-size: 100%;
        }

        /* Footer Styles */
        .foster-footer {
            background-color: #485959;
            color: #ffffff;
            padding: 30px 0 0;
        }

        .footer-top {
            padding-bottom: 0;
        }

        .footer-title {
            color: #ffffff;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-list li {
            margin-bottom: 6px;
        }

        .footer-list a {
            color: rgba(255, 255, 255, 0.8);
            font-size: 18px;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-list a:hover {
            color: #C9A24D;
        }

        .footer-center {
            background-color: #3a4848;
            padding: 30px 20px 80px 30px;
            text-align: center;
            margin-top: -30px;
            margin-bottom: 0;
        }

        .footer-quick-link-wrapper {
            padding-left: 100px;
        }

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

        .footer-logo svg {
            max-width: 200px;
            height: auto;
            fill: #ffffff;
        }

        .footer-address-list {
            margin-bottom: 20px;
        }

        .footer-address-list li {
            margin-bottom: 0;
        }

        .footer-address-list a {
            color: rgba(255, 255, 255, 0.8);
            font-size: 17px;
            line-height: 1.6;
            text-align: center;
        }

        .footer-phone-btn {
            background-color: rgba(0, 0, 0, 0.2);
            border: none;
            color: #ffffff;
            font-size: 16px;
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 30px;
            border-radius: 30px;
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }

        .footer-phone-btn svg {
            fill: #ffffff;
        }

        .footer-phone-btn:hover {
            background-color: #C9A24D;
            color: #ffffff;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        .footer-social a {
            width: 44px;
            height: 44px;
            background-color: #ffffff;
            color: #485959;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 20px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .footer-social a:hover {
            background-color: #C9A24D;
            color: #ffffff;
            transform: scale(1.1);
        }

        .footer-bottom {
            background-color: #2d3838;
            padding: 30px 0;
            width: 100%;
            margin-top: 0;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.7);
            font-size: 17px;
        }

        .footer-menu {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .footer-menu a {
            color: rgba(255, 255, 255, 0.8);
            font-size: 17px;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-menu a:hover {
            color: #C9A24D;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .page-title-section h1 {
                font-size: 2rem;
            }

            .paragraph-abstract {
                font-size: 1rem;
            }

            .footer-center {
                margin-top: 0;
                padding: 40px 30px;
            }

            .footer-quick-link-wrapper {
                padding-left: 0;
                margin-top: 30px;
            }
        }

        @media (max-width: 767px) {
            .page-breadcrumb {
                padding: 100px 0 15px;
            }

            .page-title-section h1 {
                font-size: 1.75rem;
            }

            .paragraph-text {
                padding: 0 15px;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-menu {
                justify-content: center;
            }
        }


/* ========================================
   Page: sinks-foster.html
   ======================================== */
        /* Breadcrumb */
        .page-breadcrumb {
            background: #fff;
            padding: 120px 0 20px;
            border-bottom: 1px solid #e5e5e5;
        }

        .page-breadcrumb a {
            color: #485959;
            text-decoration: none;
            font-size: 0.9rem;
        }

        .page-breadcrumb span {
            color: #7a9a9a;
            margin: 0 8px;
        }

        /* Page Title */
        .page-title-section {
            background: #fff;
            padding: 40px 0 20px;
        }

        .page-title-section h1 {
            font-size: 2.5rem;
            font-weight: 600;
            color: #485959;
            font-family: 'Archivo', sans-serif;
            margin: 0;
            text-transform: uppercase;
            text-align: center;
        }

        /* Main Content */
        .paragraph-section {
            padding: 40px 0 80px;
            background: #fff;
        }

        .paragraph-image-wrapper {
            margin-top: 20px;
        }

        .paragraph-image {
            position: relative;
            width: 100%;
            max-width: 1500px;
            margin: 0 auto;
            overflow: hidden;
        }

        .paragraph-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .paragraph-text {
            /*max-width: 1000px;*/
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .paragraph-abstract,
        .paragraph-abstract p {
            font-size: 18px !important;
            color: #555;
            line-height: 1.9;
            text-align: center;
        }

        .paragraph-abstract strong {
            color: #485959;
        }

        .paragraph-abstract a {
            color: #485959;
            text-decoration: none;
            transition: color 0.3s;
        }

        .paragraph-abstract a:hover {
            color: #ffffff;
        }

        .paragraph-btn {
            display: inline-block;
            position: relative;
            margin-top: 30px;
            margin-bottom: 40px;
            padding: 12px 50px 12px 20px;
            background: #fff;
            color: #485959;
            text-decoration: none;
            border: 1px solid #485959;
            border-radius: 4px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s;
        }

        .paragraph-btn::after {
            content: "";
            display: inline-block;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 93.9 41.7'%3E%3Cpath fill='%23465957' d='M12.7,0H38c0.5,0,0.9,0.5,0.7,1l-3.8,13.4c-0.1,0.5-0.7,1-1.3,1H8.3c-0.5,0-0.8-0.5-0.7-1L11.4,1C11.7,0.5,12.2,0,12.7,0 M7.1,19.6h25.3c0.5,0,1,0.5,0.7,1l-5.8,20c-0.1,0.5-0.7,1-1.3,1H0.8c-0.5,0-0.9-0.5-0.7-1l5.8-20C5.9,20.1,6.5,19.6,7.1,19.6 M44.8,0.2h48.4c0.5,0,0.8,0.4,0.7,1L90,14.7c-0.2,0.5-0.7,1-1.3,1H40.4c-0.5,0-0.8-0.5-0.7-1l3.8-13.6C43.7,0.6,44.3,0.2,44.8,0.2 M39.4,19.8h48c0.5,0,1,0.5,0.7,1l-3.7,13c-0.1,0.5-0.7,1-1.3,1h-48c-0.5,0-0.8-0.5-0.7-1l3.8-13C38.3,20.3,38.9,19.8,39.4,19.8'/%3E%3C/svg%3E") no-repeat center;
            width: 30px;
            height: 30px;
            background-size: 100%;
            position: absolute;
            transform: translateY(-50%);
            top: 50%;
            right: 12px;
        }

        .paragraph-btn:hover {
            background: #485959;
            color: #fff;
        }

        .paragraph-btn:hover::after {
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 93.9 41.7'%3E%3Cpath fill='%23ffffff' d='M12.7,0H38c0.5,0,0.9,0.5,0.7,1l-3.8,13.4c-0.1,0.5-0.7,1-1.3,1H8.3c-0.5,0-0.8-0.5-0.7-1L11.4,1C11.7,0.5,12.2,0,12.7,0 M7.1,19.6h25.3c0.5,0,1,0.5,0.7,1l-5.8,20c-0.1,0.5-0.7,1-1.3,1H0.8c-0.5,0-0.9-0.5-0.7-1l5.8-20C5.9,20.1,6.5,19.6,7.1,19.6 M44.8,0.2h48.4c0.5,0,0.8,0.4,0.7,1L90,14.7c-0.2,0.5-0.7,1-1.3,1H40.4c-0.5,0-0.8-0.5-0.7-1l3.8-13.6C43.7,0.6,44.3,0.2,44.8,0.2 M39.4,19.8h48c0.5,0,1,0.5,0.7,1l-3.7,13c-0.1,0.5-0.7,1-1.3,1h-48c-0.5,0-0.8-0.5-0.7-1l3.8-13C38.3,20.3,38.9,19.8,39.4,19.8'/%3E%3C/svg%3E") no-repeat center;
            background-size: 100%;
        }

        /* Footer Styles */
        .foster-footer {
            background-color: #485959;
            color: #ffffff;
            padding: 30px 0 0;
        }

        .footer-top {
            padding-bottom: 0;
        }

        .footer-title {
            color: #ffffff;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-list li {
            margin-bottom: 6px;
        }

        .footer-list a {
            color: rgba(255, 255, 255, 0.8);
            font-size: 18px;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-list a:hover {
            color: #C9A24D;
        }

        .footer-center {
            background-color: #3a4848;
            padding: 30px 20px 80px 30px;
            text-align: center;
            margin-top: -30px;
            margin-bottom: 0;
        }

        .footer-quick-link-wrapper {
            padding-left: 100px;
        }

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

        .footer-logo svg {
            max-width: 200px;
            height: auto;
            fill: #ffffff;
        }

        .footer-address-list {
            margin-bottom: 20px;
        }

        .footer-address-list li {
            margin-bottom: 0;
        }

        .footer-address-list a {
            color: rgba(255, 255, 255, 0.8);
            font-size: 17px;
            line-height: 1.6;
            text-align: center;
        }

        .footer-phone-btn {
            background-color: rgba(0, 0, 0, 0.2);
            border: none;
            color: #ffffff;
            font-size: 16px;
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 30px;
            border-radius: 30px;
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }

        .footer-phone-btn svg {
            fill: #ffffff;
        }

        .footer-phone-btn:hover {
            background-color: #C9A24D;
            color: #ffffff;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        .footer-social a {
            width: 44px;
            height: 44px;
            background-color: #ffffff;
            color: #485959;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 20px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .footer-social a:hover {
            background-color: #C9A24D;
            color: #ffffff;
            transform: scale(1.1);
        }

        .footer-bottom {
            background-color: #2d3838;
            padding: 30px 0;
            width: 100%;
            margin-top: 0;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.7);
            font-size: 17px;
        }

        .footer-menu {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .footer-menu a {
            color: rgba(255, 255, 255, 0.8);
            font-size: 17px;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-menu a:hover {
            color: #C9A24D;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .page-title-section h1 {
                font-size: 2rem;
            }

            .paragraph-abstract {
                font-size: 1rem;
            }

            .footer-center {
                margin-top: 0;
                padding: 40px 30px;
            }

            .footer-quick-link-wrapper {
                padding-left: 0;
                margin-top: 30px;
            }
        }

        @media (max-width: 767px) {
            .page-breadcrumb {
                padding: 100px 0 15px;
            }

            .page-title-section h1 {
                font-size: 1.75rem;
            }

            .paragraph-text {
                padding: 0 15px;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-menu {
                justify-content: center;
            }
        }


/* ========================================
   Page: index.html
   ======================================== */
        /* Category Circle Styles */
        .categories-section {
            padding: 60px 0 20px 0;
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(10, minmax(90px, 120px));
            gap: 20px;
            margin-top: var(--spacing-xl);
            justify-content: center;
            max-width: 100%;
        }

        .category-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            text-decoration: none;
            transition: all var(--transition-base);
        }

        .category-circle {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            background: var(--color-white);
            border: 2px solid rgba(72, 89, 89, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: var(--spacing-lg);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(72, 89, 89, 0.04);
        }

        .category-circle::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--color-secondary), var(--color-gold-hover));
            transform: scale(0);
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 50%;
            z-index: 0;
        }

        .category-item:hover .category-circle {
            border-color: var(--color-secondary);
            transform: translateY(-12px);
            box-shadow: 0 12px 32px rgba(201, 162, 77, 0.2);
        }

        .category-item:hover .category-circle::before {
            transform: scale(1);
        }

        .category-icon {
            font-size: 44px;
            color: var(--color-secondary);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 1;
        }

        .category-item:hover .category-icon {
            color: var(--color-white);
            transform: scale(1.15);
        }

        .category-name {
            font-size: 17px;
            font-weight: 500;
            color: var(--color-text-primary);
            transition: all 0.4s ease;
            line-height: 1.4;
        }

        .category-item:hover .category-name {
            color: var(--color-secondary);
            font-weight: 600;
        }

        @media (max-width: 1199px) {
            .category-circle {
                width: 120px;
                height: 120px;
            }

            .category-icon {
                font-size: 48px;
            }

            .category-name {
                font-size: 0.875rem;
            }
        }

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

            .category-circle {
                width: 110px;
                height: 110px;
            }

            .category-icon {
                font-size: 44px;
            }
        }

        @media (max-width: 767px) {
            .categories-section {
                padding: var(--spacing-2xl) 0;
            }

            .category-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--spacing-lg);
            }

            .category-circle {
                width: 120px;
                height: 120px;
            }

            .category-icon {
                font-size: 48px;
            }

            .category-name {
                font-size: 0.875rem;
            }
        }

        /* Why Choose Foster Section - Dark Background */
        section[style*="background-color:#485959"] .section-heading .section-title,
        section[style*="background-color:#485959"] .section-heading .section-subtitle {
            color: var(--color-white);
        }

        section[style*="background-color:#485959"] .section-accent {
            background: rgba(255, 255, 255, 0.3);
        }

        /* Feature Items Color Override */
        .feature-item.feature-item-dark {
            background-color: rgba(72, 89, 89, 0.76) !important;
        }

        .feature-item.feature-item-light {
            background-color: #D9E8E8 !important;
        }

        .feature-item-dark * {
            color: #ffffff !important;
        }

        .feature-item-light * {
            color: #485959 !important;
        }

        .feature-item-dark .feature-icon i {
            color: #ffffff !important;
        }

        .feature-item-light .feature-icon i {
            color: #485959 !important;
        }

        /* Partnership Section Styles */
        .partnership-link {
            color: #fff !important;
            text-decoration: none !important;
            font-size: 1.25rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .partnership-link:hover {
            opacity: 0.8;
            transform: translateY(-2px);
        }

        .partnership-link:visited {
            color: #fff !important;
        }

        .elementor-inline-items {
            list-style: none;
            padding: 0;
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin: 2rem 0;
        }

        .elementor-icon-list-item {
            display: inline-flex;
        }

        .elementor-icon-list-icon {
            width: 24px;
            height: 24px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .elementor-icon-list-text {
            color: #fff;
        }

        .partnership-logo {
            position: absolute;
            bottom: 30px;
            right: 30px;
            opacity: 0.8;
            z-index: 3;
            max-width: 200px;
        }

        .partnership-logo svg {
            width: 100%;
            height: auto;
        }

        .partnership-logo svg {
            fill: #ffffff !important;
        }

        .partnership-logo svg polygon,
        .partnership-logo svg path {
            fill: #ffffff !important;
            color: #ffffff !important;
        }

        .partnership-logo svg * {
            fill: #ffffff !important;
        }

        /* Blog Cards - DoubleLiving Style */
        .blog-card-dl {
            background-color: #485959;
            border: 4px solid #ffffff;
            border-radius: 25px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .blog-card-dl:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .blog-card-dl-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .blog-card-dl-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .blog-card-dl:hover .blog-card-dl-image img {
            transform: scale(1.05);
        }

        .blog-card-dl-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.3);
            transition: opacity 0.3s ease;
        }

        .blog-card-dl:hover .blog-card-dl-overlay {
            opacity: 0.6;
        }

        .blog-card-dl-content {
            padding: 25px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .blog-card-dl-category {
            background-color: #5a6d6d;
            color: #fff;
            font-size: 13px;
            padding: 3px 10px;
            display: inline-block;
            margin-bottom: 15px;
            align-self: flex-start;
        }

        .blog-card-dl-title {
            color: #ffffff;
            font-size: 20px;
            font-weight: 500;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .blog-card-dl-title a {
            color: #ffffff;
            text-decoration: none;
        }

        .blog-card-dl-title a:hover {
            color: #ffffff;
            text-decoration: none;
        }

        .blog-card-dl-excerpt {
            color: #c6c1c1;
            font-size: 17px;
            line-height: 1.6;
            margin-bottom: 20px;
            flex: 1;
        }

        .blog-card-dl-button {
            background-color: #5a6d6d;
            color: #fff;
            border: none;
            padding: 10px 25px;
            border-radius: 30px;
            font-size: 17px;
            text-decoration: none;
            display: inline-block;
            align-self: center;
            transition: all 0.3s ease;
        }

        .blog-card-dl-button:hover {
            background-color: #5a6d6d;
            color: #fff;
            transform: translateX(5px);
        }

        @media (max-width: 991px) {
            .blog-card-dl-image {
                height: 200px;
            }
        }

.partnership-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-image: url('https://www.meemarketing.com/img/partnership-bg.webp');
    background-color: #485959;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partnership-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(72, 89, 89, 0.70);
    z-index: 1;
}

.partnership-content {
    position: relative;
    z-index: 2;
}

.partnership-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.partnership-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

        @media (max-width: 767px) {
            .elementor-inline-items {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

            .partnership-link {
                font-size: 1.125rem;
            }

            .partnership-logo {
                bottom: 15px;
                right: 15px;
                opacity: 0.6;
                max-width: 120px;
            }

            .elementor-heading-title {
                font-size: 2rem !important;
            }

            .partnership-section {
                background-position: center center;
                background-size: cover;
            }

            .partnership-overlay {
                background-color: rgba(72, 89, 89, 0.82);
            }
        }

        /* Footer - DoubleLiving Layout with Foster Colors */
        .foster-footer {
            background-color: #485959;
            color: #ffffff;
            padding: 30px 0 0;
        }

        .footer-top {
            padding-bottom: 0;
        }

        .footer-title {
            color: #ffffff;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-list li {
            margin-bottom: 6px;
        }

        .footer-list a {
            color: rgba(255, 255, 255, 0.8);
            font-size: 18px;
            text-decoration: none;
            transition: color 0.3s ease;
            display: inline-block;
        }

        .footer-list a:hover {
            color: #C9A24D;
        }

        .footer-center {
            background-color: #3a4848;
            padding: 30px 20px 80px 30px;
            text-align: center;
            margin-top: -30px;
            margin-bottom: 0;
        }

        .footer-quick-link-wrapper {
            padding-left: 100px;
        }

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

        .service-card-icon {
            margin-bottom: 20px;
        }

        .service-card-title {
            text-align: center;
        }

        .service-card-description {
            text-align: center;
        }

        .btn-luxury-dark {
            background-color: #485959;
            color: #fff;
            border: 2px solid #485959;
            padding: 12px 40px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
        }

        .btn-luxury-dark:hover {
            background-color: transparent;
            color: #485959;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(72, 89, 89, 0.3);
        }

        .product-card-link {
            background-color: #fff;
            color: #5a6d6d;
            border: 2px solid #5a6d6d;
            padding: 10px 25px;
            border-radius: 30px;
            font-size: 17px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .product-card-link:hover {
            background-color: #5a6d6d;
            color: #fff;
            transform: translateX(5px);
        }

        .product-card-footer {
            display: flex;
            justify-content: center;
            align-items: center;
        }

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

        .footer-logo svg {
            max-width: 200px;
            height: auto;
            fill: #ffffff;
        }

        .footer-address-list {
            margin-bottom: 20px;
        }

        .footer-address-list li {
            margin-bottom: 0;
        }

        .footer-address-list a {
            color: rgba(255, 255, 255, 0.8);
            font-size: 17px;
            line-height: 1.6;
            text-align: center;
        }

        .footer-phone-btn {
            background-color: rgba(0, 0, 0, 0.2);
            border: none;
            color: #ffffff;
            font-size: 16px;
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 30px;
            border-radius: 30px;
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }

        .footer-phone-btn svg {
            fill: #ffffff;
        }

        .footer-phone-btn:hover {
            background-color: #C9A24D;
            color: #ffffff;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        .footer-social a {
            width: 44px;
            height: 44px;
            background-color: #ffffff;
            color: #485959;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 20px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .footer-social a:hover {
            background-color: #C9A24D;
            color: #ffffff;
            transform: scale(1.1);
        }

        .footer-bottom {
            background-color: #2d3838;
            padding: 30px 0;
            width: 100%;
            margin-top: 0;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.7);
            font-size: 17px;
        }

        .footer-menu {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .footer-menu a {
            color: rgba(255, 255, 255, 0.8);
            font-size: 17px;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-menu a:hover {
            color: #C9A24D;
        }

        /* CONTACT FORM SECTION */
        .contact-us-section {
            padding: 80px 0;
            background-color: #ffffff;
        }

        .contact-wrapper {
            background-color: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .contact-image-wrapper {
            height: 100%;
            overflow: hidden;
        }

        .contact-main-image {
            object-fit: cover;
            min-height: 600px;
        }

        .contact-form-wrapper {
            padding: 7px 40px;
        }

        .contact-form-intro {
            font-size: 22px;
            color: #485959;
            font-weight: 500;
            line-height: 1;
        }

        .form-label {
            font-size: 15px;
            font-weight: 500;
            color: #333;
            margin-bottom: 8px;
        }

        .contact-input {
            padding: 8px 18px;
            border: 1px solid #d5d5d5;
            border-radius: 8px;
            font-size: 15px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        }

        .contact-input:focus {
            border-color: #485959;
            box-shadow: 0 3px 12px rgba(72, 89, 89, 0.15);
            outline: none;
        }

        textarea.contact-input {
            resize: vertical;
        }

        .captcha-container {
            background-color: #f5f5f5;
            border: 1px solid #d5d5d5;
            border-radius: 8px;
            padding: 1px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        }

        .captcha-container img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
        }

        .btn-contact-submit {
            background-color: #485959;
            color: #fff;
            border: 2px solid #485959;
            padding: 12px 60px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn-contact-submit:hover {
            background-color: transparent;
            color: #485959;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(72, 89, 89, 0.3);
        }

        @media (max-width: 991px) {
            .contact-main-image {
                min-height: 400px;
            }

            .contact-form-wrapper {
                padding: 40px 30px;
            }

            .btn-contact-submit {
                width: 100%;
                padding: 12px 40px;
            }

            .footer-quick-link-wrapper {
                padding-left: 0;
                padding-top: 30px;
                padding-bottom: 30px;
            }

            .foster-footer {
                padding: 30px 0 0;
            }

            .footer-center {
                margin: -40px 0 -30px 0;
                padding: 30px 20px;
            }

            .footer-top {
                padding-bottom: 0px;
            }

            .footer-title {
                margin-top: 30px;
            }

            .footer-bottom {
                padding: 25px 0;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-menu {
                justify-content: center;
            }
        }

        @media (max-width: 767px) {
            .contact-us-section {
                padding: 50px 0;
            }

            .contact-wrapper {
                border-radius: 15px;
            }

            .contact-main-image {
                min-height: 300px;
            }

            .contact-form-wrapper {
                padding: 30px 20px;
            }

            .contact-form-intro {
                font-size: 15px;
            }

            .footer-menu {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
        }


/* ========================================
   Page: blog-detail.html
   ======================================== */
        .article-header {
            padding-top: 120px;
            padding-bottom: var(--spacing-xl);
            text-align: center;
        }

        .article-category {
            display: inline-block;
            font-size: var(--font-size-xs);
            font-weight: 600;
            letter-spacing: var(--letter-spacing-widest);
            text-transform: uppercase;
            color: var(--color-secondary);
            margin-bottom: var(--spacing-sm);
        }

        .article-title {
            font-family: var(--font-heading);
            font-size: var(--font-size-5xl);
            font-weight: 400;
            color: var(--color-text-primary);
            margin-bottom: var(--spacing-md);
            line-height: var(--line-height-tight);
        }

        .article-meta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: var(--spacing-md);
            font-size: var(--font-size-sm);
            color: var(--color-text-secondary);
            margin-bottom: var(--spacing-lg);
        }

        .article-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .article-featured-image {
            width: 100%;
            max-height: 600px;
            object-fit: cover;
            border-radius: var(--radius-lg);
            margin-bottom: var(--spacing-2xl);
            box-shadow: var(--shadow-lg);
        }

        .article-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .article-content h2 {
            font-family: var(--font-heading);
            font-size: var(--font-size-3xl);
            font-weight: 400;
            color: var(--color-text-primary);
            margin-top: var(--spacing-2xl);
            margin-bottom: var(--spacing-md);
        }

        .article-content h3 {
            font-family: var(--font-heading);
            font-size: var(--font-size-2xl);
            font-weight: 400;
            color: var(--color-text-primary);
            margin-top: var(--spacing-xl);
            margin-bottom: var(--spacing-md);
        }

        .article-content p {
            font-size: var(--font-size-lg);
            line-height: var(--line-height-relaxed);
            color: var(--color-text-secondary);
            margin-bottom: var(--spacing-lg);
        }

        .article-content ul,
        .article-content ol {
            font-size: var(--font-size-lg);
            line-height: var(--line-height-relaxed);
            color: var(--color-text-secondary);
            margin-bottom: var(--spacing-lg);
            padding-left: 2rem;
        }

        .article-content li {
            margin-bottom: var(--spacing-sm);
        }

        .article-content img {
            width: 100%;
            border-radius: var(--radius-md);
            margin: var(--spacing-xl) 0;
        }

        .article-content blockquote {
            border-left: 4px solid var(--color-secondary);
            padding-left: var(--spacing-lg);
            margin: var(--spacing-xl) 0;
            font-family: var(--font-heading);
            font-size: var(--font-size-xl);
            font-style: italic;
            color: var(--color-text-primary);
        }

        .share-section {
            margin-top: var(--spacing-2xl);
            padding-top: var(--spacing-xl);
            border-top: 1px solid var(--color-accent);
            display: flex;
            align-items: center;
            gap: var(--spacing-md);
        }

        .share-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border: 1px solid var(--color-accent);
            border-radius: 50%;
            color: var(--color-text-secondary);
            transition: all var(--transition-base);
        }

        .share-button:hover {
            background: var(--color-secondary);
            border-color: var(--color-secondary);
            color: var(--color-white);
            transform: translateY(-2px);
        }

        .related-articles {
            margin-top: var(--spacing-3xl);
            padding-top: var(--spacing-3xl);
            border-top: 2px solid var(--color-accent);
        }

        @media (max-width: 767px) {
            .article-title {
                font-size: var(--font-size-3xl);
            }

            .article-meta {
                flex-direction: column;
                gap: var(--spacing-sm);
            }

            .share-section {
                flex-direction: column;
                align-items: flex-start;
            }
        }


/* ========================================
   Page: blog.html
   ======================================== */
        .page-banner {
            height: 350px;
            /*background: linear-gradient(rgba(28, 28, 28, 0.6), rgba(28, 28, 28, 0.7)),
                        url('https://images.unsplash.com/photo-1556911220-bff31c812dba?w=1920&q=80');*/
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-white);
            text-align: center;
            margin-top: 80px;
        }

        .category-filter {
            display: flex;
            gap: var(--spacing-sm);
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: var(--spacing-xl);
        }

        .blog-category-btn {
            padding: 0.75rem 1.5rem;
            background: transparent;
            border: 1px solid var(--color-accent);
            border-radius: var(--radius-sm);
            color: var(--color-text-secondary);
            font-size: var(--font-size-sm);
            font-weight: 500;
            cursor: pointer;
            transition: all var(--transition-base);
        }

        .blog-category-btn:hover,
        .blog-category-btn.active {
            background: var(--color-secondary);
            border-color: var(--color-secondary);
            color: var(--color-white);
        }

        .search-box-blog {
            max-width: 600px;
            margin: 0 auto var(--spacing-xl);
            position: relative;
        }

        .search-box-blog input {
            width: 100%;
            padding: 1rem 3rem 1rem 1rem;
            border: 1px solid var(--color-accent);
            border-radius: var(--radius-md);
            font-size: var(--font-size-base);
        }

        .search-box-blog input:focus {
            outline: none;
            border-color: var(--color-secondary);
            box-shadow: 0 0 0 3px rgba(201, 162, 77, 0.1);
        }

        .search-box-blog button {
            position: absolute;
            right: 0.5rem;
            top: 50%;
            transform: translateY(-50%);
            padding: 0.5rem 1rem;
            background: var(--color-secondary);
            color: var(--color-white);
            border: none;
            border-radius: var(--radius-sm);
            cursor: pointer;
        }


/* ========================================
   Page: services.html
   ======================================== */
        .page-banner {
            height: 350px;
            background: linear-gradient(rgba(28, 28, 28, 0.6), rgba(28, 28, 28, 0.7)),
                        url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1920&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-white);
            text-align: center;
            margin-top: 80px;
        }

        .service-detail-card {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            margin-bottom: var(--spacing-xl);
        }

        .service-detail-header {
            background: linear-gradient(135deg, var(--color-primary) 0%, #2a2a2a 100%);
            padding: var(--spacing-xl);
            color: var(--color-white);
            display: flex;
            align-items: center;
            gap: var(--spacing-lg);
        }

        .service-detail-icon {
            width: 80px;
            height: 80px;
            background: var(--color-secondary);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .service-detail-icon i {
            font-size: 40px;
            color: var(--color-white);
        }

        .service-detail-title {
            font-family: var(--font-heading);
            font-size: var(--font-size-3xl);
            font-weight: 400;
            margin-bottom: 0.5rem;
        }

        .service-detail-subtitle {
            font-size: var(--font-size-base);
            opacity: 0.9;
        }

        .service-detail-body {
            padding: var(--spacing-xl);
        }

        .service-detail-body h3 {
            font-family: var(--font-heading);
            font-size: var(--font-size-2xl);
            font-weight: 400;
            margin-bottom: var(--spacing-md);
            color: var(--color-text-primary);
        }

        .service-detail-body p {
            font-size: var(--font-size-base);
            line-height: var(--line-height-relaxed);
            color: var(--color-text-secondary);
            margin-bottom: var(--spacing-md);
        }

        .service-detail-body ul {
            list-style: none;
            padding: 0;
            margin-bottom: var(--spacing-lg);
        }

        .service-detail-body ul li {
            padding: var(--spacing-sm) 0;
            font-size: var(--font-size-base);
            color: var(--color-text-secondary);
            display: flex;
            align-items: flex-start;
            gap: var(--spacing-sm);
        }

        .service-detail-body ul li i {
            color: var(--color-secondary);
            font-size: 20px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: var(--spacing-lg);
            margin: var(--spacing-xl) 0;
        }

        .process-step {
            position: relative;
            padding: var(--spacing-lg);
            background: var(--color-background);
            border-radius: var(--radius-md);
            text-align: center;
        }

        .process-step-number {
            width: 60px;
            height: 60px;
            background: var(--color-secondary);
            color: var(--color-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-heading);
            font-size: var(--font-size-2xl);
            font-weight: 500;
            margin: 0 auto var(--spacing-md);
        }

        .process-step h4 {
            font-family: var(--font-heading);
            font-size: var(--font-size-lg);
            font-weight: 500;
            margin-bottom: var(--spacing-sm);
            color: var(--color-text-primary);
        }

        .process-step p {
            font-size: var(--font-size-sm);
            color: var(--color-text-secondary);
            margin: 0;
        }

        @media (max-width: 767px) {
            .service-detail-header {
                flex-direction: column;
                text-align: center;
            }

            .service-detail-title {
                font-size: var(--font-size-2xl);
            }

            .process-steps {
                grid-template-columns: 1fr;
            }
        }


/* ========================================
   Page: product-detail.html
   ======================================== */
        .product-detail-section {
            padding-top: 120px;
        }

        /* Gallery Styles */
        .gallery-container {
            position: sticky;
            top: 100px;
        }

        .gallery-main {
            width: 100%;
            height: 500px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            margin-bottom: var(--spacing-md);
            background: var(--color-background);
            position: relative;
            cursor: zoom-in;
        }

        .gallery-main-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-slow);
        }

        .gallery-main.zoomed {
            cursor: zoom-out;
        }

        .gallery-main.zoomed .gallery-main-image {
            transform: scale(1.5);
        }

        .gallery-badge {
            position: absolute;
            top: var(--spacing-md);
            right: var(--spacing-md);
            background: var(--color-secondary);
            color: var(--color-white);
            padding: 0.5rem 1rem;
            font-size: var(--font-size-xs);
            font-weight: 600;
            letter-spacing: var(--letter-spacing-wider);
            text-transform: uppercase;
            border-radius: var(--radius-sm);
            z-index: 10;
        }

        .gallery-thumbnails {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--spacing-sm);
        }

        .gallery-thumb {
            width: 100%;
            height: 100px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all var(--transition-base);
        }

        .gallery-thumb:hover,
        .gallery-thumb.active {
            border-color: var(--color-secondary);
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
        }

        .gallery-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Product Info */
        .product-category-badge {
            display: inline-block;
            font-size: var(--font-size-xs);
            font-weight: 600;
            letter-spacing: var(--letter-spacing-widest);
            text-transform: uppercase;
            color: var(--color-secondary);
            margin-bottom: var(--spacing-sm);
        }

        .product-title {
            font-family: var(--font-heading);
            font-size: var(--font-size-4xl);
            font-weight: 400;
            color: var(--color-text-primary);
            margin-bottom: var(--spacing-md);
            line-height: var(--line-height-tight);
        }

        .product-subtitle {
            font-size: var(--font-size-lg);
            color: var(--color-text-secondary);
            line-height: var(--line-height-relaxed);
            margin-bottom: var(--spacing-xl);
            padding-bottom: var(--spacing-xl);
            border-bottom: 1px solid var(--color-accent);
        }

        .features-list {
            list-style: none;
            padding: 0;
            margin-bottom: var(--spacing-xl);
        }

        .features-list li {
            padding: var(--spacing-sm) 0;
            font-size: var(--font-size-base);
            color: var(--color-text-secondary);
            display: flex;
            align-items: center;
            gap: var(--spacing-sm);
        }

        .features-list li i {
            color: var(--color-secondary);
            font-size: 20px;
        }

        .cta-buttons {
            display: flex;
            gap: var(--spacing-md);
            margin-bottom: var(--spacing-xl);
            flex-wrap: wrap;
        }

        .spec-table {
            width: 100%;
            margin-bottom: var(--spacing-xl);
        }

        .spec-table tr {
            border-bottom: 1px solid var(--color-accent);
        }

        .spec-table td {
            padding: var(--spacing-md) 0;
            font-size: var(--font-size-sm);
        }

        .spec-table td:first-child {
            font-weight: 600;
            color: var(--color-text-primary);
            width: 40%;
        }

        .spec-table td:last-child {
            color: var(--color-text-secondary);
        }

        .download-section {
            background: var(--color-background);
            padding: var(--spacing-lg);
            border-radius: var(--radius-md);
            margin-bottom: var(--spacing-xl);
        }

        /* Related Products */
        .related-section {
            margin-top: var(--spacing-3xl);
            padding-top: var(--spacing-3xl);
            border-top: 1px solid var(--color-accent);
        }

        @media (max-width: 991px) {
            .gallery-container {
                position: static;
                margin-bottom: var(--spacing-xl);
            }

            .gallery-main {
                height: 400px;
            }

            .product-detail-section {
                padding-top: 100px;
            }
        }

        @media (max-width: 767px) {
            .gallery-thumbnails {
                grid-template-columns: repeat(3, 1fr);
            }

            .product-title {
                font-size: var(--font-size-3xl);
            }

            .cta-buttons {
                flex-direction: column;
            }

            .cta-buttons .btn-luxury,
            .cta-buttons .btn-luxury-filled {
                width: 100%;
                text-align: center;
            }
        }


/* ========================================
   Page: contact.html
   ======================================== */
        .page-banner {
            height: 300px;
            background: linear-gradient(rgba(28, 28, 28, 0.6), rgba(28, 28, 28, 0.7)),
                        url('https://images.unsplash.com/photo-1596524430615-b46475ddff6e?w=1920&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-white);
            text-align: center;
            margin-top: 80px;
        }

        .contact-card {
            background: var(--color-white);
            padding: var(--spacing-xl);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            height: 100%;
            text-align: center;
            transition: all var(--transition-slow);
        }

        .contact-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        .contact-card-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto var(--spacing-md);
            background: var(--color-gold-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-form-section {
            background: var(--color-white);
            padding: var(--spacing-2xl);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
        }

        .form-control:focus {
            border-color: var(--color-secondary);
            box-shadow: 0 0 0 0.2rem rgba(201, 162, 77, 0.15);
        }

        .map-container {
            width: 100%;
            height: 450px;
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }


/* ========================================
   Page: products-1.html
   ======================================== */
        /* Page Specific Styles */
        .page-banner {
            height: 350px;
            background: linear-gradient(rgba(28, 28, 28, 0.6), rgba(28, 28, 28, 0.7)),
                        url('https://images.unsplash.com/photo-1556911220-bff31c812dba?w=1920&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-white);
            text-align: center;
            margin-top: 80px;
        }

        .filter-sidebar {
            position: sticky;
            top: 100px;
        }

        .filter-section {
            background: var(--color-white);
            padding: var(--spacing-lg);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            margin-bottom: var(--spacing-md);
        }

        .filter-title {
            font-family: var(--font-heading);
            font-size: var(--font-size-lg);
            font-weight: 500;
            margin-bottom: var(--spacing-md);
            color: var(--color-text-primary);
        }

        .filter-btn {
            display: block;
            width: 100%;
            padding: 0.75rem 1rem;
            margin-bottom: 0.5rem;
            background: transparent;
            border: 1px solid var(--color-accent);
            border-radius: var(--radius-sm);
            text-align: left;
            color: var(--color-text-secondary);
            font-size: var(--font-size-sm);
            font-weight: 500;
            transition: all var(--transition-base);
            cursor: pointer;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--color-secondary);
            border-color: var(--color-secondary);
            color: var(--color-white);
        }

        .search-box {
            position: relative;
            margin-bottom: var(--spacing-lg);
        }

        .search-box input {
            width: 100%;
            padding: 0.875rem 1rem 0.875rem 3rem;
            border: 1px solid var(--color-accent);
            border-radius: var(--radius-sm);
            font-size: var(--font-size-sm);
            transition: all var(--transition-base);
        }

        .search-box input:focus {
            outline: none;
            border-color: var(--color-secondary);
            box-shadow: 0 0 0 3px rgba(201, 162, 77, 0.1);
        }

        .search-box i {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--color-text-light);
        }

        .products-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: var(--spacing-lg);
            flex-wrap: wrap;
            gap: 1rem;
        }

        .sort-select {
            padding: 0.5rem 1rem;
            border: 1px solid var(--color-accent);
            border-radius: var(--radius-sm);
            font-size: var(--font-size-sm);
            color: var(--color-text-secondary);
            cursor: pointer;
        }

        @media (max-width: 991px) {
            .filter-sidebar {
                position: static;
                margin-bottom: var(--spacing-xl);
            }

            .page-banner {
                height: 250px;
            }
        }




/* ========================================
   Blog Page Styles
   ======================================== */
.blog-page-banner {
    height: 350px;
    background-image: url('../images/blog/banner-2.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-align: center;
    margin-top: 80px;
}

.page-banner-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-5xl);
    color: var(--color-white);
    margin-bottom: 1rem;
}

.page-banner-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-white);
}

.blog-listing-section {
    padding-top: 80px;
    background-color: #5a6d6d2e;
}

@media (max-width: 767px) {
    .blog-page-banner {
        height: 280px;
    }

    .page-banner-title {
        font-size: var(--font-size-3xl);
    }

    .page-banner-subtitle {
        font-size: var(--font-size-base);
    }
}

/* Luxury Pagination */
.pagination-luxury {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-item-luxury {
    display: inline-block;
}

.page-link-luxury {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0.5rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-primary);
    background-color: #ffffff;
    border: 1px solid var(--color-primary);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-link-luxury:hover {
    background-color: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(72, 89, 89, 0.3);
}

.page-item-luxury.active .page-link-luxury {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #ffffff;
}

.page-item-luxury.disabled .page-link-luxury {
    color: #adb5bd;
    background-color: #f8f9fa;
    border-color: #dee2e6;
    cursor: not-allowed;
    pointer-events: none;
}

.page-item-luxury.disabled .page-link-luxury:hover {
    transform: none;
    box-shadow: none;
}

@media (max-width: 576px) {
    .pagination-luxury {
        gap: 0.25rem;
    }

    .page-link-luxury {
        min-width: 40px;
        height: 40px;
        padding: 0.4rem 0.75rem;
        font-size: 0.875rem;
    }
}

/* ========================================
   Blog Detail Page Styles
   ======================================== */
.blog-detail-banner {
    height: 200px;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
}

.blog-detail-section {
    background-color: #f8f9fa;
    padding-top: 80px;
}

.blog-article {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.article-header {
    padding: 3rem 3rem 2rem;
    text-align: center;
}

.article-category {
    display: inline-block;
    background: var(--color-secondary);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: #6c757d;
    font-size: 0.95rem;
}

.article-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-meta .meta-item i {
    color: var(--color-secondary);
}

.article-featured-image {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 3rem;
    font-size: 1.1rem;
    line-height: 1.9;
    color: #333;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content .lead {
    font-size: 1.25rem;
    color: #555;
    font-weight: 400;
    border-left: 4px solid var(--color-secondary);
    padding-left: 1.5rem;
    margin-bottom: 2.5rem;
}

.article-content h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 2.5rem 0 1.25rem;
}

.article-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 2rem 0 1rem;
}

.article-image {
    margin: 2rem 0;
    text-align: center;
}

.article-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.article-image figcaption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
}

.article-quote {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid var(--color-secondary);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 0 12px 12px 0;
}

.article-quote p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.article-quote cite {
    font-size: 0.95rem;
    color: var(--color-secondary);
    font-style: normal;
    font-weight: 500;
}

.article-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.article-list li {
    margin-bottom: 0.75rem;
    position: relative;
}

.article-list li::marker {
    color: var(--color-secondary);
}

.article-highlight {
    background: linear-gradient(135deg, rgba(201, 162, 77, 0.1) 0%, rgba(201, 162, 77, 0.05) 100%);
    border: 1px solid rgba(201, 162, 77, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin: 2.5rem 0;
}

.article-highlight h3 {
    color: var(--color-secondary);
    font-size: 1.15rem;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-highlight p {
    margin-bottom: 0;
    color: #555;
}

.article-footer {
    padding: 2rem 3rem 3rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tags-label {
    font-weight: 500;
    color: #555;
    margin-right: 0.5rem;
}

.tag {
    display: inline-block;
    background: #f0f0f0;
    color: var(--color-primary);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--color-primary);
    color: #ffffff;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.share-label {
    font-weight: 500;
    color: #555;
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.line {
    background: #00c300;
}

.share-btn.twitter {
    background: #000000;
}

.share-btn.copy {
    background: var(--color-primary);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.article-navigation {
    margin-top: 2.5rem;
    text-align: center;
}

.btn-back-to-blog {
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 2rem;
    background: var(--color-primary);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-back-to-blog:hover {
    background: var(--color-secondary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 162, 77, 0.4);
}

.related-articles {
    margin-top: 5rem;
}

.related-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 2.5rem;
}

@media (max-width: 991px) {
    .article-header {
        padding: 2rem 2rem 1.5rem;
    }

    .article-title {
        font-size: 2rem;
    }

    .article-content {
        padding: 2rem;
    }

    .article-footer {
        padding: 1.5rem 2rem 2rem;
    }
}

@media (max-width: 767px) {
    .blog-detail-banner {
        height: 150px;
    }

    .article-header {
        padding: 1.5rem 1.25rem 1rem;
    }

    .article-title {
        font-size: 1.5rem;
    }

    .article-meta {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .article-content {
        padding: 1.5rem 1.25rem;
        font-size: 1rem;
    }

    .article-content h2 {
        font-size: 1.35rem;
    }

    .article-content .lead {
        font-size: 1.1rem;
    }

    .article-footer {
        padding: 1.25rem;
        flex-direction: column;
        align-items: stretch;
    }

    .article-tags,
    .article-share {
        justify-content: center;
    }

    .related-title {
        font-size: 1.5rem;
    }
}

/* ========================================
   FAQ Section - Index Page (Style from maxgrainta)
   ======================================== */
.faq-section {
    background: #f8f9fa42;
    padding-top: 60px;
    padding-bottom: 60px;
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-section .section-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--color-primary);
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    background: transparent;
    border: none;
    text-align: left;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-number {
    font-size: 26px;
    font-weight: 500;
    color: #485959;
    line-height: 1;
    min-width: 50px;
    flex-shrink: 0;
}

.faq-question i {
    transition: transform 0.3s ease, color 0.3s ease;
    color: #485959;
}

.faq-item.active .faq-question i {
    color: var(--color-secondary);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer > div {
    padding: 0 50px 24px 68px;
    font-size: 16px;
    color: #6b7280;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Responsive FAQ - Tablet */
@media (max-width: 991px) {
    .faq-number {
        font-size: 28px;
        min-width: 45px;
    }

    .faq-question {
        padding: 20px;
        font-size: 18px;
    }

    .faq-answer > div {
        padding: 0 40px 20px 60px;
    }
}

/* Responsive FAQ - Mobile */
@media (max-width: 576px) {
    .faq-section .section-title {
        font-size: 28px;
    }

    .faq-number {
        font-size: 24px;
        min-width: 40px;
    }

    .faq-question {
        padding: 16px;
        font-size: 17px;
    }

    .faq-answer > div {
        padding: 0 16px 16px 56px;
        font-size: 14px;
    }

    /* FAQ Section - เรียงตามลำดับ 01-08 ในมือถือ */
    .faq-section .row {
        display: grid;
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .faq-section .col-lg-6 {
        display: contents;
    }

    .faq-section .col-lg-6:nth-child(1) .faq-item:nth-child(1) { grid-row: 1; } /* 01 */
    .faq-section .col-lg-6:nth-child(2) .faq-item:nth-child(1) { grid-row: 2; } /* 02 */
    .faq-section .col-lg-6:nth-child(1) .faq-item:nth-child(2) { grid-row: 3; } /* 03 */
    .faq-section .col-lg-6:nth-child(2) .faq-item:nth-child(2) { grid-row: 4; } /* 04 */
    .faq-section .col-lg-6:nth-child(1) .faq-item:nth-child(3) { grid-row: 5; } /* 05 */
    .faq-section .col-lg-6:nth-child(2) .faq-item:nth-child(3) { grid-row: 6; } /* 06 */
    .faq-section .col-lg-6:nth-child(1) .faq-item:nth-child(4) { grid-row: 7; } /* 07 */
    .faq-section .col-lg-6:nth-child(2) .faq-item:nth-child(4) { grid-row: 8; } /* 08 */
}

/* ========================================
   Blog Detail Page - New Styles
   ======================================== */
.blog-detail-article {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    padding: 1.5rem;
}

.blog-detail-article h2 {
    font-family: var(--font-heading);
    font-size: var(--font-size-3xl);
    margin-bottom: 1.5rem;
}

.blog-detail-article p {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    color: var(--color-text-secondary);
}

/* Project Detail Article */
.project-detail-article {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    padding: 25px 15px 0px 25px;
}

.project-detail-article h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 1.5rem;
}

.project-detail-article p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

/* Project Info Styles */
.project-info-item {
    margin-bottom: 1.5rem;
}

.project-info-label {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
}

.project-info-value {
    font-size: var(--font-size-lg);
    font-weight: 500;
}

/* Project Gallery Section */
.project-gallery-section {
    padding-top: 60px;
    background-color: #ffffff;
}

.project-gallery-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    margin-bottom: 2rem;
    text-align: center;
}

/* CTA Section */
.services-cta-section {
    background: linear-gradient(135deg, #f0f3f6 0%, #e5e8eba3 100%) !important;
    padding-top: 60px;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-4xl);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
}

/* ===========================
   CONTACT PAGE STYLES
   =========================== */

/* Contact Form */
.contact-form-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-3xl);
    margin-bottom: 1rem;
}

.contact-form-description {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
}

.contact-form {
    margin-top: 1.5rem;
}

.contact-form .form-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.contact-input {
    width: 100%;
    padding: 8px 8px;
    font-size: var(--font-size-base);
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.contact-input::placeholder {
    color: #aaa;
}

/* Contact Info Sidebar */
.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-light);
    border-radius: 12px;
    color: var(--color-primary);
    font-size: 1.5rem;
}

.contact-info-content {
    flex: 1;
}

.contact-info-label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.contact-info-text {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-info-text a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Contact Social Links */
.contact-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background: var(--color-light);
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social-link:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateX(5px);
}

.contact-social-link i {
    font-size: 1.25rem;
}

.contact-social-link span {
    font-size: var(--font-size-base);
    font-weight: 500;
}

/* ===========================
   CONTACT INFO SECTION
   =========================== */

.contact-info-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #d3dae0 100%);
}

.contact-info-two {
    width: 100%;
}

.contact-office-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 10px 20px 10px;
    height: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.contact-office-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--color-light);
}

.contact-info-section .contact-office-header {
    flex-direction: row;
    justify-content: center;
    text-align: left;
}

.contact-office-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, #3a4a4a 100%);
    border-radius: 12px;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.contact-office-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    color: var(--color-text);
    margin: 0;
}

.contact-office-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-office-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    /*margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;*/
}

.contact-office-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-office-list li i {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-light);
    border-radius: 8px;
    color: var(--color-primary);
    font-size: 1.25rem;
}

.contact-office-list li div {
    flex: 1;
    font-size: var(--font-size-base);
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.contact-office-list li div strong {
    display: block;
    color: var(--color-text);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-office-list li a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-office-list li a:hover {
    color: #3a4a4a;
    text-decoration: underline;
}

/* Responsive - Contact Info */
@media (max-width: 991px) {
    .contact-office-card {
        margin-bottom: 2rem;
    }

    .contact-office-card:last-child {
        margin-bottom: 0;
    }

    .contact-office-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .contact-office-title {
        font-size: var(--font-size-xl);
    }
}

/* Contact Map Section */
.contact-map-section {
    background-color: #f8f9fa;
}

.contact-map-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    margin-bottom: 2rem;
    text-align: center;
}

.contact-map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-map-wrapper iframe {
    display: block;
    width: 100%;
}

.blog-detail-featured-image {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

.blog-detail-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 2rem 2rem 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-detail-meta i {
    color: var(--color-secondary);
}

.blog-detail-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--color-primary);
    padding: 1.5rem 2rem;
    margin: 0;
    line-height: 1.3;
}

.blog-detail-content {
    padding: 0 2rem 2rem;
    font-size: 1.05rem;
    line-height: 1.9;
    color: #333;
}

.blog-detail-content p {
    margin-bottom: 1.5rem;
}

.blog-detail-content .lead {
    font-size: 1.2rem;
    color: #555;
    font-weight: 400;
    border-left: 4px solid var(--color-secondary);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.blog-detail-content h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 2rem 0 1rem;
}

.blog-detail-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 1.5rem 0 1rem;
}

.blog-detail-figure {
    margin: 2rem 0;
    text-align: center;
}

.blog-detail-figure img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.blog-detail-figure figcaption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
}

.blog-detail-quote {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid var(--color-secondary);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
}

.blog-detail-quote p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: 0;
}

.blog-detail-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid #eee;
}

.blog-detail-tags .tags-label {
    font-weight: 500;
    color: #555;
    margin-right: 0.5rem;
}

.blog-detail-tags .tag-item {
    display: inline-block;
    background: #f0f0f0;
    color: var(--color-primary);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-detail-tags .tag-item:hover {
    background: var(--color-primary);
    color: #ffffff;
}

.blog-detail-share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 2rem 2rem;
}

.blog-detail-share .share-label {
    font-weight: 500;
    color: #555;
}

.blog-detail-share .share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-detail-share .share-btn.facebook {
    background: #1877f2;
}

.blog-detail-share .share-btn.twitter {
    background: #000000;
}

.blog-detail-share .share-btn.line {
    background: #00c300;
}

.blog-detail-share .share-btn.copy {
    background: var(--color-primary);
}

.blog-detail-share .share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-secondary);
}

/* Author Widget */
.author-widget .author-info {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.author-widget .author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-widget .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-widget .author-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0 0 0.5rem;
}

.author-widget .author-details p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Related Posts */
.related-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-post-item {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-post-item:hover {
    transform: translateX(5px);
}

.related-post-image {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post-content h4 {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-primary);
    margin: 0 0 0.25rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-post-content .related-post-date {
    font-size: 0.8rem;
    color: #999;
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 0.75rem;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    color: #555;
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.category-list a:hover {
    color: var(--color-secondary);
    padding-left: 0.5rem;
}

.category-list span {
    color: #999;
    font-size: 0.85rem;
}

/* CTA Widget */
.cta-widget {
    background: linear-gradient(135deg, var(--color-primary) 0%, #3a4a4a 100%);
    text-align: center;
}

.cta-widget h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.cta-widget p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 1.25rem;
}

.cta-widget .btn-luxury {
    background: #ffffff;
    color: var(--color-primary);
    padding: 0.7rem 2rem;
    display: inline-block;
    font-size: 17px;
}

.cta-widget .btn-luxury i {
    font-size: 1.3rem;
}

.cta-widget .btn-luxury:hover {
    background: var(--color-secondary);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .blog-sidebar {
        position: static;
        margin-top: 2rem;
    }

    .blog-detail-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .blog-detail-meta {
        padding: 1.5rem 1.25rem 0;
        gap: 1rem;
        font-size: 0.8rem;
    }

    .blog-detail-title {
        font-size: 1.5rem;
        padding: 1rem 1.25rem;
    }

    .blog-detail-content {
        padding: 0 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .blog-detail-content h2 {
        font-size: 1.35rem;
    }

    .blog-detail-tags {
        padding: 1.25rem;
    }

    .blog-detail-share {
        padding: 0 1.25rem 1.5rem;
        flex-wrap: wrap;
    }

    .footer-quick-link-wrapper {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .foster-footer {
        padding: 30px 0 0;
    }

    .footer-list {
        list-style: none;
        padding-bottom: 0px;
        margin: 0;
    }
}

/* ==========================================================================
   PRODUCT DETAIL PAGE - Foster Style (Two-Column Fixed Sidebar Layout)
   ========================================================================== */

.product-detail-section {
    padding: 0;
    background: #fff;
    position: relative;
    z-index: 1;
}

/* Ensure footer and CTA are above fixed sidebar */
.product-detail-section + section,
.foster-footer {
    position: relative;
    z-index: 200;
}

/* Two-Column Page Wrapper */
.product-page-wrapper {
    display: flex;
    position: relative;
    min-height: 100vh;
}

/* LEFT COLUMN: Scrollable Main Content */
.product-main-content {
    flex: 1;
    max-width: calc(100% - 540px);
    margin-right: 540px;
}

/* Main Product Image */
.product-hero-image {
    background: #f6f6f6;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.product-hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: multiply;
}

/* RIGHT COLUMN: Fixed Sidebar */
.product-sidebar {
    width: 540px;
    position: absolute;
    top: 0;
    right: 0;
    background: #fff;
    z-index: 100;
    padding: 40px 50px 40px 40px;
    border-left: 1px solid #f0f0f0;
}

.product-sidebar.is-fixed {
    position: fixed;
    top: 80px;
}

.product-sidebar.is-bottom {
    position: absolute;
    top: auto;
    bottom: 0;
}

.product-sidebar-inner {
    /* Content wrapper */
}

/* Product Intro */
.product-intro {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.product-intro-collection {
    display: block;
    font-size: 1.1em;
    color: #666;
    margin-bottom: 8px;
}

.product-intro h1 {
    font-family: var(--font-secondary);
    font-size: 38px;
    font-weight: 500;
    color: #485959;
    margin: 0 0 10px;
    line-height: 1.2;
}

.product-intro-code {
    font-size: 20px;
    color: #485959;
	font-weight: 500;
    display: block;
    margin-bottom: 12px;
}

.product-intro-badge {
    display: inline-block;
    padding: 6px 12px;
    background: #485959;
    color: #fff;
    font-size: 0.75rem;
	border-radius: 6px;
}

/* Gallery Section in Sidebar */
.product-gallery-section {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.gallery-label {
    display: block;
    font-size: 21px;
    color: #485959;
	font-weight: 500;
    margin-bottom: 12px;
}

.gallery-slider {
    position: relative;
}

.gallery-nav {
    position: absolute;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
	font-size: 28px;
	font-weight: 700;
    color: #333;
    transition: all 0.3s ease;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
}

.gallery-nav-prev {
    left: -40px;
}

.gallery-nav-next {
    right: -40px;
}

.gallery-nav:hover {
    color: #000;
}

.gallery-thumbs-wrapper {
    overflow: hidden;
}

.gallery-thumbs-container {
    display: flex;
    gap: 12px;
    transition: transform 0.3s ease;
}

.gallery-thumb {
    flex: 0 0 calc(33.333% - 8px);
    aspect-ratio: 4/3;
    cursor: pointer;
    border: none;
    background-color: transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
    border-radius: 0;
    overflow: hidden;
}

.gallery-thumb:first-child {
    background-color: #f6f6f6;
    border-radius: 4px;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    opacity: 1;
}

.gallery-thumb:first-child:hover,
.gallery-thumb:first-child.active {
    background-color: #e8e8e8;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumb:first-child img {
    object-fit: contain;
    padding: 8px;
    mix-blend-mode: multiply;
}

/* Find a Dealer Button */
.btn-find-dealer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 20px 20px;
    background: #fff;
    color: #485959;
    border: 2px solid #485959;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.btn-find-dealer:hover {
    background: #485959;
    color: #ffffff;
}

.btn-find-dealer svg {
    fill: currentColor;
    width: 24px;
    height: 24px;
}

/* Share Section in Sidebar */
.product-share-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-label {
    font-size: 0.85rem;
    color: #485959;
}

.share-icons {
    display: flex;
    gap: 8px;
}

.share-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #485959;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.share-icon:hover {
    background: #555;
    color: #fff;
}

/* Navigator Tabs */
.product-navigator {
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 0;
    background-color: #fff;
    position: relative;
}

.product-navigator.sticky {
    position: fixed !important;
    top: 0 !important;
    z-index: 999 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    border-top: 1px solid #e0e0e0 !important;
    border-bottom: 1px solid #e0e0e0 !important;
    background-color: #fff !important;
}

.product-navigator .nav-tabs-wrapper {
    display: flex;
    justify-content: center;
    gap: 0;
    border: none;
    padding: 0;
}

.product-navigator .nav-tab {
    background: transparent;
    border: none;
    padding: 18px 25px;
    font-size: 15px;
    /*font-weight: 500;*/
    color: #666;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.product-navigator .nav-tab:hover {
    color: #333;
}

.product-navigator .nav-tab.active {
    color: #333;
    border-bottom-color: #333;
}

/* Product Sections */
.product-sections {
    padding-top: 60px;
}

.product-section {
    display: block;
    padding-bottom: 80px;
    scroll-margin-top: 80px;
}

/* Override container-custom inside product sections */
.product-main-content .container-custom {
    max-width: 100%;
    padding: 0 40px;
}


.section-title-center {
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 36px;
    font-weight: 600;
    color: #485959;
    margin-bottom: 30px;
}

/* Details Section */
.details-specs {
    margin-bottom: 60px;
}

.spec-row {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
}

.spec-label {
    flex: 0 0 35%;
    padding: 18px 25px;
    font-size: 17px;
    color: #485959;
    font-weight: 500;
    background-color: #f5f5f5;
}

.spec-value {
    flex: 1;
    padding: 18px 25px;
   font-size: 16px;
    color: #485959;
    background-color: #ffffff;
    display: flex;
    align-items: center;
}

.spec-value i {
    color: #999;
    margin-left: 8px;
    cursor: pointer;
}

.spec-value i:hover {
    color: #333;
}

.details-technical {
    display: flex;
    gap: 40px;
    width: 100%;
}

.technical-image {
    flex: 1;
    min-width: 0;
}

.technical-image img {
    width: 100%;
    height: auto;
}

.technical-thumbs-slider {
    margin-top: 15px;
    position: relative;
}

.technical-thumbs-wrapper {
    overflow: hidden;
}

.technical-thumbs {
    display: flex;
    gap: 12px;
    transition: transform 0.3s ease;
}

.technical-thumb {
    flex: 0 0 calc(33.333% - 8px);
    aspect-ratio: 1;
    cursor: pointer;
    border: 1px solid #ddd;
    opacity: 0.7;
    transition: all 0.3s ease;
    overflow: hidden;
}

.technical-thumb:hover,
.technical-thumb.active {
    border: 2px solid #333;
    opacity: 1;
}

.technical-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.technical-nav {
    position: absolute;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 28px;
    font-weight: 700;
    color: #333;
    transition: all 0.3s ease;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
}

.technical-nav-prev {
    left: -40px;
}

.technical-nav-next {
    right: -40px;
}

.technical-nav:hover {
    color: #000;
}

.technical-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.downloads-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    min-width: 0;
    padding: 0;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    background: #f8f8f8;
    margin-bottom: 10px;
    overflow: hidden;
    width: 100%;
}

.download-icon {
    width: 80px;
    height: 80px;
    background: #4a5f5f;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.download-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.download-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 15px;
    padding-right: 10px;
    flex: 1;
}

.download-name {
    font-size: 1rem;
    font-weight: 500;
    color: #555;
}

.download-ext {
    font-size: 0.9rem;
    color: #999;
    margin-left: auto;
}

.download-btn {
    width: 40px;
    height: 40px;
    background: #4a5f5f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0;
}

.download-btn i {
    color: #ffffff;
    font-size: 0.9rem;
}

.download-btn:hover {
    background: #3a4f4f;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.feature-card {
    text-align: center;
    padding: 40px;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

/* Remove right border for last item in each row */
.feature-card:nth-child(3n) {
    border-right: none;
}

/* Remove bottom border only for the very last item if it's alone in the row */
.feature-card:last-child:nth-child(3n+1) {
    border-bottom: none;
}

.feature-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 17px;
    font-weight: 600;
    color: #485959;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 16px;
    color: #485959;
    line-height: 1.6;
    margin-bottom: 10px;
}

.feature-link {
    font-size: 0.8rem;
    color: #333;
    text-decoration: underline;
}

.feature-link:hover {
    color: #666;
}

/* Accessories & Products Slider */
.accessories-group {
    margin-bottom: 50px;
}

.group-title {
    font-size: 22px;
    font-weight: 600;
    color: #485959;
	margin-top: 30px;
    margin-bottom: 30px;
}

.equipment-group .group-title,
.optional-group .group-title {
    text-align: center;
}

/* Pairings section */
.pairings-group .products-slider {
    position: relative !important;
}

.pairings-group .slider-nav {
    position: absolute !important;
    width: 40px !important;
    height: 40px !important;
    border: none !important;
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    font-size: 28px !important;
    color: #666 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
    transition: color 0.3s ease !important;
}

.pairings-group .slider-nav:hover {
    color: #000 !important;
}

.pairings-group .slider-nav-prev {
    left: -40px !important;
}

.pairings-group .slider-nav-next {
    right: -40px !important;
}

.slider-container.pairings-slider {
    overflow-x: auto;
    overflow-y: visible;
    display: flex;
    gap: 20px;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.slider-container.pairings-slider::-webkit-scrollbar {
    display: none;
}

.pairings-group .slider-container.pairings-slider .slider-item {
    flex: 0 0 calc(33.333% - 14px) !important;
    min-width: calc(33.333% - 14px) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-decoration: none !important;
}

.pairings-group .slider-container.pairings-slider .item-image-wrapper {
    width: 100% !important;
    background-color: #f6f6f6 !important;
    border-radius: 4px !important;
    margin-bottom: 15px !important;
    padding: 10px !important;
    box-sizing: border-box !important;
}

.pairings-group .slider-container.pairings-slider .slider-item img {
    width: 100% !important;
    aspect-ratio: 10/7 !important;
    object-fit: contain !important;
    display: block !important;
    mix-blend-mode: multiply !important;
}

.pairings-group .slider-container.pairings-slider .item-name,
.pairings-group .slider-container.pairings-slider .item-code {
    flex-shrink: 0 !important;
}

/* Waste fittings section */
.waste-group .products-slider {
    position: relative !important;
}

.waste-group .slider-nav {
    position: absolute !important;
    width: 40px !important;
    height: 40px !important;
    border: none !important;
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    font-size: 28px !important;
    color: #666 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
    transition: color 0.3s ease !important;
}

.waste-group .slider-nav:hover {
    color: #000 !important;
}

.waste-group .slider-nav-prev {
    left: -40px !important;
}

.waste-group .slider-nav-next {
    right: -40px !important;
}

.slider-container.waste-slider {
    overflow-x: auto;
    overflow-y: visible;
    display: flex;
    gap: 20px;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.slider-container.waste-slider::-webkit-scrollbar {
    display: none;
}

.waste-group .slider-container.waste-slider .slider-item {
    flex: 0 0 calc(33.333% - 14px) !important;
    min-width: calc(33.333% - 14px) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-decoration: none !important;
}

.waste-group .slider-container.waste-slider .item-image-wrapper {
    width: 100% !important;
    background-color: #f6f6f6 !important;
    border-radius: 4px !important;
    margin-bottom: 15px !important;
    padding: 10px !important;
    box-sizing: border-box !important;
}

.waste-group .slider-container.waste-slider .slider-item img {
    width: 100% !important;
    aspect-ratio: 10/7 !important;
    object-fit: contain !important;
    display: block !important;
    mix-blend-mode: multiply !important;
}

.waste-group .slider-container.waste-slider .item-name,
.waste-group .slider-container.waste-slider .item-code {
    flex-shrink: 0 !important;
}

/* Alternatives section */
.alternatives-group .products-slider {
    position: relative !important;
}

.alternatives-group .slider-nav {
    position: absolute !important;
    width: 40px !important;
    height: 40px !important;
    border: none !important;
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    font-size: 28px !important;
    color: #666 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
    transition: color 0.3s ease !important;
}

.alternatives-group .slider-nav:hover {
    color: #000 !important;
}

.alternatives-group .slider-nav-prev {
    left: -40px !important;
}

.alternatives-group .slider-nav-next {
    right: -40px !important;
}

.slider-container.alternatives-slider {
    overflow-x: auto;
    overflow-y: visible;
    display: flex;
    gap: 20px;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.slider-container.alternatives-slider::-webkit-scrollbar {
    display: none;
}

.alternatives-group .slider-container.alternatives-slider .slider-item {
    flex: 0 0 calc(33.333% - 14px) !important;
    min-width: calc(33.333% - 14px) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-decoration: none !important;
}

.alternatives-group .slider-container.alternatives-slider .item-image-wrapper {
    width: 100% !important;
    background-color: #f6f6f6 !important;
    border-radius: 4px !important;
    margin-bottom: 15px !important;
    padding: 10px !important;
    box-sizing: border-box !important;
}

.alternatives-group .slider-container.alternatives-slider .slider-item img {
    width: 100% !important;
    aspect-ratio: 10/7 !important;
    object-fit: contain !important;
    display: block !important;
    mix-blend-mode: multiply !important;
}

.alternatives-group .slider-container.alternatives-slider .item-name,
.alternatives-group .slider-container.alternatives-slider .item-code {
    flex-shrink: 0 !important;
}

/* Optional section specific navigation */
.optional-group .products-slider {
    position: relative !important;
}

.optional-group .slider-nav {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
}

.optional-group .slider-nav-prev {
    left: -40px !important;
}

.optional-group .slider-nav-next {
    right: -40px !important;
}

/* Optional slider - same style as Equipment */
.slider-container.optional-slider {
    overflow-x: auto;
    overflow-y: visible;
    display: flex;
    gap: 20px;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.slider-container.optional-slider::-webkit-scrollbar {
    display: none;
}

.optional-group .slider-container.optional-slider .slider-item {
    flex: 0 0 calc(33.333% - 14px) !important;
    min-width: calc(33.333% - 14px) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-decoration: none !important;
}

.optional-group .slider-container.optional-slider .item-image-wrapper {
    width: 100% !important;
    background-color: #f6f6f6 !important;
    border-radius: 4px !important;
    margin-bottom: 15px !important;
    box-sizing: border-box !important;
}

.optional-group .slider-container.optional-slider .slider-item img {
    width: 100% !important;
    aspect-ratio: 10/7 !important;
    object-fit: contain !important;
    display: block !important;
    mix-blend-mode: multiply !important;
}

.optional-group .slider-container.optional-slider .item-name,
.optional-group .slider-container.optional-slider .item-code {
    flex-shrink: 0 !important;
}

.products-slider {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

/* Equipment items - Gallery style navigation */
.accessories-group .products-slider {
    position: relative;
    overflow: visible;
}

.accessories-group .slider-container {
    overflow-x: auto;
    overflow-y: visible;
}

.accessories-group .slider-nav {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 28px;
    color: #666;
    transition: color 0.3s ease;
}

.accessories-group .slider-nav:hover {
    color: #000;
}

/* Equipment section specific navigation */
.equipment-group .products-slider {
    position: relative !important;
}

.equipment-group .slider-nav {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
}

.equipment-group .slider-nav-prev {
    left: -40px !important;
}

.equipment-group .slider-nav-next {
    right: -40px !important;
}

.slider-container.equipment-single {
    overflow-x: auto;
    overflow-y: visible;
    display: flex;
    gap: 20px;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.slider-container.equipment-single::-webkit-scrollbar {
    display: none;
}

.equipment-group .slider-container.equipment-single .slider-item {
    flex: 0 0 calc(33.333% - 14px) !important;
    min-width: calc(33.333% - 14px) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-decoration: none !important;
}

.equipment-group .slider-container.equipment-single .item-image-wrapper {
    width: 100% !important;
    background-color: #f6f6f6 !important;
    border-radius: 4px !important;
    margin-bottom: 15px !important;
    padding: 10px !important;
    box-sizing: border-box !important;
}

.equipment-group .slider-container.equipment-single .slider-item img {
    width: 100% !important;
    aspect-ratio: 10/7 !important;
    object-fit: contain !important;
    display: block !important;
    mix-blend-mode: multiply !important;
}

.equipment-group .slider-container.equipment-single .item-name,
.equipment-group .slider-container.equipment-single .item-code {
    flex-shrink: 0 !important;
}

.slider-nav {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.slider-nav:hover {
    border-color: #333;
    color: #333;
}

.slider-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    flex: 1;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.slider-container::-webkit-scrollbar {
    display: none;
}

.slider-item {
    flex: 0 0 200px;
    text-decoration: none;
    text-align: center;
}

.slider-item img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.slider-item:hover img {
    transform: scale(1.03);
}

.item-name {
    display: block;
    font-size: 17px;
    color: #485959;
	font-weight: 500;
    margin-bottom: 4px;
}

.item-code {
    display: block;
    font-size: 16px;
    color: #485959;
}

/* Alternatives Section */
.alternatives-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.alternatives-wrapper .products-slider {
    flex: 1;
}

.alternatives-cta {
    width: 250px;
    flex-shrink: 0;
}

.alternatives-cta .btn-find-dealer {
    margin-bottom: 25px;
}

.share-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.share-buttons a {
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-buttons a:hover {
    border-color: #333;
    color: #333;
}

/* Responsive */
@media (max-width: 1200px) {
    .product-main-content {
        max-width: calc(100% - 320px);
        margin-right: 320px;
    }

    .product-sidebar {
        width: 320px;
        padding: 30px 35px 30px 30px;
    }

    .details-technical {
        width: 350px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Adjust borders for 2 columns */
    .feature-card:nth-child(3n) {
        border-right: 1px solid #e0e0e0;
    }

    .feature-card:nth-child(2n) {
        border-right: none;
    }

    .feature-card:nth-last-child(-n+3) {
        border-bottom: 1px solid #e0e0e0;
    }

    .feature-card:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 992px) {
    .product-page-wrapper {
        flex-direction: column;
    }

    .product-main-content {
        max-width: 100%;
        margin-right: 0;
    }

    .product-sidebar {
        position: static;
        width: 100%;
        height: auto;
        border-left: none;
        border-top: 1px solid #f0f0f0;
        padding: 30px 20px;
    }

    .product-hero-image {
        padding: 10px;
        min-height: 400px;
    }

    /* Fix all product sliders in mobile - same as gallery */
    .products-slider {
        padding: 0 50px !important;
        position: relative !important;
    }

    .slider-nav {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 10 !important;
        width: 40px !important;
        height: 40px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .accessories-group .slider-nav-prev,
    .optional-group .slider-nav-prev,
    .equipment-group .slider-nav-prev,
    .pairings-group .slider-nav-prev,
    .waste-group .slider-nav-prev,
    .alternatives-group .slider-nav-prev {
        left: 0 !important;
    }

    .accessories-group .slider-nav-next,
    .optional-group .slider-nav-next,
    .equipment-group .slider-nav-next,
    .pairings-group .slider-nav-next,
    .waste-group .slider-nav-next,
    .alternatives-group .slider-nav-next {
        right: 0 !important;
    }

    /* Make slider items show exactly 2 per row in mobile - same as gallery */
    .slider-container {
        gap: 12px !important;
    }

    .accessories-group .slider-item,
    .optional-group .slider-item,
    .equipment-group .slider-item,
    .pairings-group .slider-item,
    .waste-group .slider-item,
    .alternatives-group .slider-item,
    .equipment-group .slider-container.equipment-single .slider-item,
    .optional-group .slider-container.optional-slider .slider-item,
    .pairings-group .slider-container.pairings-slider .slider-item,
    .waste-group .slider-container.waste-slider .slider-item,
    .alternatives-group .slider-container.alternatives-slider .slider-item {
        flex: 0 0 calc(50% - 6px) !important;
        min-width: calc(50% - 6px) !important;
    }

    /* Mobile layout for product intro and gallery */
    .product-main-content .product-intro {
        padding: 20px;
        border-bottom: 1px solid #f0f0f0;
        margin: 0;
    }

    .product-main-content .product-intro-collection,
    .product-main-content .product-intro-code {
        display: block;
    }

    .product-main-content .product-intro-badge {
        display: inline-block;
    }

    .product-main-content .product-intro h1 {
        margin: 10px 0;
    }

    .product-main-content .product-gallery-section {
        padding: 20px;
        border-bottom: 1px solid #f0f0f0;
        margin: 0;
    }

    /* Gallery in mobile - make it larger */
    .product-main-content .gallery-slider {
        position: relative;
        padding: 0 50px; /* Space for nav buttons */
    }

    .product-main-content .gallery-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }

    .product-main-content .gallery-nav-prev {
        left: 0;
    }

    .product-main-content .gallery-nav-next {
        right: 0;
    }

    .product-main-content .gallery-thumb {
        flex: 0 0 calc(50% - 6px);
        width: auto;
        height: auto;
        aspect-ratio: 4/3;
    }

    /* Adjust sidebar when moved to main content in mobile */
    .product-main-content .product-sidebar {
        border-top: none;
        border-bottom: none;
        padding: 20px;
    }

    .details-technical {
        flex-direction: column;
        width: 100%;
    }

    .technical-image {
        width: 100%;
    }

    .downloads-box {
        width: 100%;
    }

    .alternatives-wrapper {
        flex-direction: column;
    }

    .alternatives-cta {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .category-intro-wrapper {
        padding: 80px 0 0 !important;
    }

    .product-navigator .nav-tabs-wrapper {
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }

    .product-navigator .nav-tab {
        padding: 15px 18px;
        font-size: 0.7rem;
        white-space: nowrap;
    }

    /* Ensure navigator tabs show in mobile after sidebar */
    .product-main-content .product-navigator {
        display: block !important;
        position: relative !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #fff !important;
        border-top: 1px solid #e0e0e0 !important;
        border-bottom: 1px solid #e0e0e0 !important;
        z-index: 1 !important;
    }

    .product-main-content .product-navigator .nav-tabs-wrapper {
        display: flex !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .product-main-content .product-navigator .nav-tab {
        display: block !important;
        flex-shrink: 0 !important;
    }

    /* Reduce padding-top for product-sections in mobile */
    .product-sections {
        padding-top: 10px !important;
    }

    /* Add padding-bottom to OUR PRODUCTS footer section only in mobile */
    .footer-top .col-lg-4:first-child .footer-list {
        padding-bottom: 80px !important;
    }

    .product-main-content .container-custom {
        padding: 0 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Remove all right borders for 1 column */
    .feature-card:nth-child(2n),
    .feature-card:nth-child(3n) {
        border-right: none;
    }

    /* Remove bottom border for last item only */
    .feature-card:nth-last-child(-n+2),
    .feature-card:nth-last-child(-n+3) {
        border-bottom: 1px solid #e0e0e0;
    }

    .feature-card:last-child {
        border-bottom: none;
    }

    .slider-item {
        flex: 0 0 160px;
    }

    .section-title-center {
        font-size: 1.5rem;
        margin-bottom: 35px;
    }
}

@media (max-width: 576px) {
    .product-hero-image {
        padding: 15px;
        min-height: 300px;
    }

    .product-intro h1 {
        font-size: 1.4rem;
    }

    .product-sidebar .gallery-thumb {
        width: 48px;
        height: 35px;
    }

    .spec-row {
        flex-direction: column;
    }

    .spec-label {
        flex: none;
        padding: 12px 15px;
        font-size: 0.85rem;
    }

    .spec-value {
        flex: none;
        padding: 12px 15px;
        font-size: 0.85rem;
    }

    .technical-thumb {
        flex: 0 0 calc(50% - 6px);
    }

    .technical-nav {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }

    .slider-item {
        flex: 0 0 140px;
    }

    .slider-item img {
        height: 100px;
    }
}

/* Tag Section */
.tag-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.tag-header {
    font-weight: 600;
    font-size: 14px;
    color: #485959;
    text-transform: uppercase;
    margin-right: 5px;
}

.tag-wrapper a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-element {
    display: inline-block;
    padding: 6px 14px;
    background-color: #f5f5f5;
    color: #485959;
    font-size: 13px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.tag-wrapper a:hover .tag-element {
    background-color: #485959;
    color: #fff;
    border-color: #485959;
}

.show-more-btn {
    display: inline-block;
    padding: 6px 14px;
    background-color: #333;
    color: #fff;
    font-size: 13px;
    border-radius: 20px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.show-more-btn:hover {
    background-color: #555;
}

@media (max-width: 768px) {
    .tag-wrapper {
        gap: 8px;
    }

    .tag-element {
        font-size: 12px;
        padding: 5px 12px;
    }

    .tag-header {
        font-size: 13px;
        width: 100%;
        margin-bottom: 5px;
    }
}

/* Sharing Section */
#section-sharing {
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.product-sheet-sharing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 30px 0;
}

.product-sheet-sharing > span {
    font-weight: 600;
    font-size: 14px;
    color: #485959;
    text-transform: uppercase;
    margin-right: 5px;
}

.product-sheet-sharing a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.product-sheet-sharing a:hover {
    background-color: #333;
    color: #fff;
    transform: translateY(-2px);
}

.product-sheet-sharing a i {
    font-size: 16px;
}

@media (max-width: 768px) {
    .product-sheet-sharing {
        gap: 10px;
        padding: 20px 0;
        flex-wrap: wrap;
    }

    .product-sheet-sharing > span {
        width: 100%;
        margin-bottom: 5px;
    }

    .product-sheet-sharing a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .product-sheet-sharing a i {
        font-size: 14px;
    }
}

/* ========================================
   Image Lightbox
   ======================================== */
.image-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    user-select: none;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #bbb;
}

.lightbox-counter {
    position: absolute;
    top: 20px;
    left: 35px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    z-index: 10000;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    padding: 16px;
    user-select: none;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: #bbb;
    background-color: rgba(0, 0, 0, 0.5);
}

.lightbox-prev {
    left: 0;
}

.lightbox-next {
    right: 0;
}

@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        font-size: 30px;
        padding: 12px;
    }

    .lightbox-close {
        font-size: 35px;
        top: 10px;
        right: 20px;
    }

    .lightbox-counter {
        font-size: 16px;
        top: 15px;
        left: 20px;
    }
}

/* Grid Toggle Button */
.lightbox-grid-toggle {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 4px;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-grid-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #bbb;
    color: #bbb;
}

.lightbox-grid-toggle i {
    pointer-events: none;
}

/* Grid View */
.lightbox-grid-view {
    display: none;
    width: 90%;
    max-width: 1200px;
    height: 80%;
    overflow-y: auto;
    padding: 20px;
}

.lightbox-grid-view::-webkit-scrollbar {
    width: 10px;
}

.lightbox-grid-view::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-grid-view::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
}

.lightbox-grid-view::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.lightbox-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    padding: 10px;
}

.lightbox-grid-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.lightbox-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.lightbox-grid-item:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.lightbox-grid-item:hover img {
    transform: scale(1.1);
}

.lightbox-grid-item.active {
    border-color: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .lightbox-grid-toggle {
        font-size: 20px;
        width: 45px;
        height: 45px;
        top: 15px;
    }

    .lightbox-grid-container {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }

    .lightbox-grid-view {
        width: 95%;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .lightbox-grid-container {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 8px;
    }
}

/* ========================================
   INDEX.HTML SPECIFIC STYLES
   ======================================== */

/* Section Padding Variations */
.index-section-products {
  padding-top: 80px;
  padding-bottom: 40px;
}

.index-section-features {
  background-color: #485959;
  padding-top: 80px;
}

.index-section-features .section-title {
  color: #ffffff;
}

.index-section-features .section-subtitle {
  color: #ffffff;
}

.index-section-services {
  padding-top: 80px;
}

.index-section-portfolio {
  padding-top: 80px;
  background-color: #5a6d6d2e;
}

.index-section-heading-center {
  text-align: center;
}

/* Feature Items */
.index-feature-dark-1 {
  background-color: #5a6d6d;
  color: #fff;
}

.index-feature-light {
  background-color: #D9E8E8;
  color: #485959;
}

.index-feature-dark-2 {
  background-color: #6a7d7d;
  color: #fff;
}

.index-feature-icon-dark {
  color: #fff;
}

.index-feature-icon-light {
  color: #485959;
}

.index-feature-title-dark {
  color: #fff;
  border-bottom: 3px solid #fff;
  display: inline-block;
  padding-bottom: 5px;
}

.index-feature-title-light {
  color: #485959;
  border-bottom: 3px solid #485959;
  display: inline-block;
  padding-bottom: 5px;
}

.index-feature-desc-dark {
  color: rgba(255, 255, 255, 0.95);
}

.index-feature-desc-light {
  color: rgba(72, 89, 89, 0.9);
}

/* Service Icons */
.index-service-icon {
  font-size: 36px;
}

/* SVG Fill */
.index-svg-white {
  fill: white;
}

.index-svg-white polygon,
.index-svg-white path {
  fill: #fff;
}

/* Kitchen Preview Section */
.index-kitchen-preview {
  background-color: #626e6e;
  padding: 80px 0;
  position: relative;
}

.index-kitchen-container {
  position: relative;
  z-index: 1;
}

.index-kitchen-content {
  color: white;
}

.index-kitchen-heading {
  font-size: 42px;
  font-weight: 500;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.index-kitchen-divider {
  width: 70px;
  height: 2px;
  background: white;
  margin-bottom: 30px;
}

.index-kitchen-subheading {
  font-size: 22px;
  font-weight: 400;
  color: white;
  margin-bottom: 20px;
  line-height: 1.5;
}

.index-kitchen-text {
  color: rgba(255,255,255,0.9);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.index-kitchen-btn {
  display: inline-block;
}

.index-kitchen-image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.index-kitchen-image {
  width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   CUSTOM.HTML SPECIFIC STYLES
   ======================================== */

/* Contact Gallery Section */
.custom-contact-gallery {
  padding: 40px 0 80px 0;
  background: #ffffff;
}

.custom-gallery-link {
  text-decoration: none;
  display: block;
}

/* CTA Section */
.custom-cta-section {
  padding-top: 40px;
}

/* ========================================
   SINKS.HTML SPECIFIC STYLES
   ======================================== */

/* Color Swatches */
.sinks-color-silver {
  background-color: #C0C0C0;
}

.sinks-color-gray {
  background-color: #666666;
}

.sinks-color-dark-gray {
  background-color: #4A4A4A;
}

.sinks-color-bronze {
  background-color: #AD825D;
}

.sinks-color-medium-gray {
  background-color: #5C5C5C;
}

.sinks-color-gold {
  background-color: #D4AF37;
}

/* ========================================
   PRODUCT-DETAIL.HTML SPECIFIC STYLES
   ======================================== */

.product-detail-section-white {
  background-color: #fff;
}

.product-detail-cta-heading {
  font-family: var(--font-heading);
  font-size: var(--font-size-4xl);
  margin-bottom: 1rem;
}

.product-detail-cta-description {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
}

/* ========================================
   WARRANTY.HTML SPECIFIC STYLES
   ======================================== */

.warranty-office-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 15px;
}

.warranty-office-text {
  padding: 0 1rem;
}

/* ========================================
   SERVICES.HTML SPECIFIC STYLES
   ======================================== */

/* Service Section */
.services-section-white {
  background: #ffffff;
}

.services-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.services-about-content {
  padding: 20px;
}

.services-about-heading {
  color: #485959;
  font-size: 20px;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 12px;
}

.services-about-text {
  color: #495057;
  line-height: 1.8;
  margin-bottom: 20px;
}

.services-about-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.services-about-list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2px;
  color: #495057;
  font-size: 15px;
  line-height: 1.6;
}

.services-about-icon {
  color: #485959;
  font-size: 18px;
  margin-right: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Contact Info Section */
.services-contact-section {
  background: linear-gradient(135deg, #f0f3f6 0%, #e5e8eba3 100%);
}

.services-contact-heading {
  text-align: center;
  color: #485959;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 15px;
}

.services-contact-subheading {
  text-align: center;
  color: #495057;
  font-size: 19px;
  line-height: 1.8;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.services-office-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 15px;
}

.services-office-text {
  padding: 0 1rem;
}

/* Service Categories Section */
.services-categories-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.services-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.services-card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.services-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.services-card-content {
  padding: 25px;
}

.services-card-title {
  color: #485959;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.services-card-subtitle {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 20px;
}

.services-card-btn {
  display: inline-block;
  background-color: #485959;
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* FAQ Section */
.services-faq-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f3f6 0%, #e5e8eba3 100%);
}

.services-faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.services-faq-title {
  color: #485959;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 17px;
}

.services-faq-item {
  background: white;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.services-faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 0;
}

.services-faq-number {
  color: #485959;
  font-weight: 700;
  font-size: 18px;
  min-width: 40px;
}

.services-faq-question-text {
  font-weight: 500;
  font-size: 17px;
  color: #2c3e50;
}

.services-faq-icon {
  color: #485959;
  font-size: 18px;
  transition: transform 0.3s;
}

.services-faq-answer {
  display: none;
  padding-left: 52px;
  padding-top: 15px;
  color: #495057;
  line-height: 1.8;
}

.services-categories-heading {
  text-align: center;
  color: #485959;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
  padding-top: 60px;
}

/* ========================================
   ABOUT.HTML SPECIFIC STYLES
   ======================================== */

.about-main-heading {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 30px;
  padding-top: 20px;
}

.about-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #485959;
}

.about-text {
  margin-bottom: 20px;
}

.about-strong {
  color: #485959;
}

.about-list {
  margin-bottom: 15px;
  padding-left: 0px;
  list-style: none;
}

.about-list-item {
  margin-bottom: 10px;
}

.about-icon {
  color: #a88e5a;
  margin-right: 8px;
}

/* Services page about-list styling */
.service-section .about-list li {
  display: flex;
  align-items: flex-start;
  font-size: 17px;
}

.service-section .about-list li i {
  color: #485959;
  margin-right: 15px;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-section .about-list li span {
  flex: 1;
}

/* Service detail page styling */
.service-detail-content {
  padding: 20px;
}

.service-detail-content p {
  color: #495057;
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-detail-content h3 {
  color: #485959;
  font-size: 20px;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 12px;
}

.service-detail-content .about-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.service-detail-content .about-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2px;
  color: #495057;
  font-size: 17px;
  line-height: 1.6;
}

.service-detail-content .about-list li i {
  color: #485959;
  font-size: 18px;
  margin-right: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

.service-detail-section-title {
  text-align: center;
  color: #485959;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 15px;
}

.service-detail-section-subtitle {
  text-align: center;
  color: #495057;
  font-size: 19px;
  line-height: 1.8;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-note ul li {
  font-size: 17px;
}

.installation-step-card p {
  color: #6c757d;
  font-size: 17px;
  line-height: 1.8;
  margin: 0;
}

.pricing-card-body ul li {
  font-size: 17px;
}

.about-image-wrapper {
  height: 100%;
  min-height: 400px;
}

.about-ratio {
  height: 100%;
}

.about-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #485959;
  margin-bottom: 20px;
}

.about-section-subtitle {
  font-size: 1.5rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto 40px;
  font-weight: 400;
}

.about-collection-subtitle {
  color: #666;
  margin-top: -30px;
}

.about-section-bg {
  background: #f8f6f3;
}

.about-section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #485959;
  margin-bottom: 20px;
  padding-top: 30px;
}

.about-section-text {
  font-size: 1.1rem;
  color: #666;
}

.about-office-card {
  height: 100%;
  text-align: center;
  padding: 40px 30px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-office-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.about-office-icon {
  margin: 0 auto 10px;
  width: 80px;
  height: 80px;
  background: #485959;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-office-icon i {
  font-size: 2.5rem;
  color: #fff;
}

.about-office-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #485959;
  margin-bottom: 15px;
}

.about-office-text {
  color: #666;
  line-height: 1.7;
  font-size: 0.95rem;
}

.about-text-large {
  margin-bottom: 25px;
}

/* Portfolio Section */
.index-portfolio-heading {
  text-align: center;
}

/* Captcha */
.index-captcha-container {
  cursor: pointer;
}

.contact-captcha-container {
  cursor: pointer;
}

/* ============================================
   Custom Page Styles (custom.html)
   ============================================ */
        /* Design Section Styles */
        .design-section {
            background-color: #ffffff;
            padding: 20px 0;
        }

        .design-content {
            background: white;
            border-radius: 8px;
            padding: 50px 40px;
        }

        .design-content h2 {
            font-size: 36px;
            font-weight: 500;
            color: #485959;
            margin-bottom: 40px;
            text-align: center;
        }

        .design-content h4 {
			font-size: 22px;
			font-weight: 500;
			color: #485959;
			margin-top: 40px;
			margin-bottom: 20px;
        }

        .design-content .text {
            color: #495057;
            font-size: 17px;
            line-height: 1.9;
            margin-bottom: 30px;
            text-align: justify;
        }

        .design-image-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #f0f3f6 0%, #e5e8eba3 100%);
        }

        .design-image-wrapper {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .design-image-wrapper img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Feature Cards */
        .design-features {
            padding: 80px 0;
            background: #ffffff;
        }

        .feature-card {
            background: white;
            border-radius: 12px;
            padding: 35px 30px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            border-top: 4px solid #485959;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(72, 89, 89, 0.2);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #485959 0%, #3a4747 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            box-shadow: 0 4px 15px rgba(72, 89, 89, 0.2);
        }

        .feature-icon i {
            font-size: 30px;
            color: white;
        }

        .feature-card h3 {
            color: #2c3e50;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .feature-card p {
            color: #6c757d;
            font-size: 15px;
            line-height: 1.8;
            margin: 0;
        }

        /* Surface Finish Gallery Styles */
        .surface-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f0f3f6 0%, #e5e8eba3 100%);
        }

        .sec-title {
            margin-bottom: 20px;
        }

        .sec-title h3 {
            color: #485959;
            font-size: 32px;
            font-weight: 500;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .sec-title h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: #485959;
        }

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

        .mt25 {
            margin-top: 25px;
        }

        .clearfix:after {
            content: "";
            display: table;
            clear: both;
        }

        /* Gallery Grid */
        .col-pi-5 {
            width: 20%;
            float: left;
            padding: 15px;
        }

        .gallery-block {
            position: relative;
        }

        .gallery-block .inner-box {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            background: white;
        }

        .gallery-block .image {
            position: relative;
            overflow: hidden;
        }

        .gallery-block .image img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .gallery-block:hover .image img {
            transform: scale(1.1);
        }

        /* Overlay */
        .gallery-block .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(72, 89, 89, 0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.4s ease;
        }

        .gallery-block:hover .overlay {
            opacity: 1;
        }

        .gallery-block .zoom-btn {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #485959;
            font-size: 20px;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .gallery-block .zoom-btn:hover {
            background: #485959;
            color: white;
            transform: rotate(90deg);
        }

        /* Border Animation */
        .gallery-block .border-one,
        .gallery-block .border-two {
            position: absolute;
            border: 2px solid rgba(255,255,255,0.5);
            transition: all 0.5s ease;
        }

        .gallery-block .border-one {
            top: 20px;
            left: 20px;
            right: 20px;
            bottom: 20px;
            opacity: 0;
        }

        .gallery-block .border-two {
            top: 30px;
            left: 30px;
            right: 30px;
            bottom: 30px;
            opacity: 0;
        }

        .gallery-block:hover .border-one {
            opacity: 1;
            top: 15px;
            left: 15px;
            right: 15px;
            bottom: 15px;
        }

        .gallery-block:hover .border-two {
            opacity: 1;
            top: 25px;
            left: 25px;
            right: 25px;
            bottom: 25px;
        }

        /* Text Below Image */
        .gallery-block .text-center {
            color: #485959;
            font-size: 17px;
            border-radius: 0 0 8px 8px;
        }

        /* Project Gallery Section */
        .project-gallery-section {
            padding: 80px 0 50px 0;
            background: #ffffff;
        }

        .project-gallery-section .sec-title {
            margin-bottom: 50px;
        }

        .project-gallery-section .sec-title h3 {
            color: #485959;
            font-size: 32px;
            font-weight: 500;
        }

        .project-gallery-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            width: 100%;
        }

        .project-gallery-item {
            position: relative;
            transition: all 0.4s ease;
            width: 100%;
        }

        .project-gallery-item:hover {
            transform: translateY(-10px);
        }

        .project-gallery-item figure {
            margin: 0 !important;
            position: relative;
            overflow: hidden !important;
            border-radius: 20px !important;
            -webkit-border-radius: 20px !important;
            -moz-border-radius: 20px !important;
            -webkit-mask-image: -webkit-radial-gradient(white, black);
            width: 100%;
            max-width: 100%;
        }

        .project-gallery-item img {
            width: 100%;
            max-width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
            transition: opacity 0.5s ease;
        }

        .project-gallery-item:hover img {
            opacity: 0.9;
        }

        .project-gallery-item a {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.4s ease;
            text-decoration: none;
            outline: none;
            border: none;
            border-radius: 20px;
        }

        .project-gallery-item a:focus {
            outline: none;
            border: none;
        }

        .project-gallery-item:hover a {
            opacity: 1;
        }

        .project-gallery-item a::before {
            content: '+';
            font-size: 48px;
            color: white;
            font-weight: 300;
            transition: all 0.3s ease;
        }

        .project-gallery-item:hover a::before {
            transform: rotate(90deg);
        }

        /* Contact Gallery Items */
        .contact-gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            height: 100%;
        }

        .contact-gallery-item figure {
            margin: 0;
            position: relative;
            height: 400px;
            overflow: hidden;
        }

        .contact-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .contact-gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
            padding: 40px 30px;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: center;
            text-align: center;
        }

        .contact-gallery-overlay h5 {
            font-size: 16px;
            font-weight: 400;
            margin-bottom: 10px;
            color: rgba(255,255,255,0.9);
        }

        .contact-gallery-overlay h3 {
            font-size: 28px;
            font-weight: 500;
            margin: 0;
            color: white;
            line-height: 1.3;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .contact-gallery-item figure {
                height: 300px;
            }

            .contact-gallery-overlay {
                padding: 30px 20px;
            }

            .contact-gallery-overlay h3 {
                font-size: 22px;
            }
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .project-gallery-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 1024px) {
            .project-gallery-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .project-gallery-section {
                padding: 50px 0;
            }

            .project-gallery-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .project-gallery-item img {
                height: 280px;
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .col-pi-5 {
                width: 33.333%;
            }
        }

        @media (max-width: 768px) {
            .design-content {
                padding: 30px 20px;
            }

            .design-content h2 {
                font-size: 28px;
            }

            .design-content h4 {
                font-size: 20px;
            }

            .design-content .text {
                font-size: 15px;
            }

            .col-pi-5 {
                width: 50%;
            }

            .surface-section {
                padding: 50px 0;
            }

            .sec-title h3 {
                font-size: 26px;
            }
        }

        @media (max-width: 480px) {
            .col-pi-5 {
                width: 100%;
            }

            .gallery-block .image img {
                height: 200px;
            }
        }

/* ============================================
   Services Page Styles (services.html)
   ============================================ */
        /* Service Section Styles */
        .service-section {
            background-color: #f5f5f5;
            padding: 80px 0;
        }

        /* Left Column - Service Details */
        .service-details-wrapper {
            background: white;
            border-radius: 8px;
            padding: 40px 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }

        .service-details-wrapper .sec-title h3 {
            font-size: 24px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 30px;
        }

        /* Custom Accordion */
        .service-accordion .accordion-item {
            border: none;
            background: #f8f9fa;
            margin-bottom: 12px;
            border-radius: 6px;
            overflow: hidden;
        }

        .service-accordion .accordion-button {
            background: #f8f9fa;
            color: #2c3e50;
            font-weight: 500;
            font-size: 17px;
            padding: 32px 20px;
            border: none;
            box-shadow: none;
        }

        .service-accordion .accordion-button:not(.collapsed) {
            background: #e9ecef;
            color: #1a1a1a;
        }

        .service-accordion .accordion-button:focus {
            box-shadow: none;
        }

        .service-accordion .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232c3e50'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z'/%3e%3c/svg%3e");
            transform: scale(0.8);
        }

        .service-accordion .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a1a1a'%3e%3cpath d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z'/%3e%3c/svg%3e");
        }

        .service-accordion .accordion-body {
            padding: 20px;
            font-size: 14px;
            line-height: 1.8;
            color: #495057;
        }

        .service-accordion .accordion-body p {
            margin-bottom: 12px;
        }

        .service-accordion .accordion-body strong {
            color: #2c3e50;
        }

        .service-accordion .accordion-body ul {
            margin: 10px 0;
            padding-left: 20px;
        }

        .service-accordion .accordion-body ul li {
            margin-bottom: 8px;
        }

        /* Right Column - Booking Form */
        .service-form-wrapper {
            background: white;
            border-radius: 8px;
            padding: 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            overflow: hidden;
        }

        .service-form-header {
            background: #485959;
            padding: 30px;
            text-align: center;
            color: white;
        }

        .service-form-header h3 {
            font-size: 26px;
            font-weight: 600;
            margin: 0;
            color: #f0f4f4;
            letter-spacing: 1px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .service-form-body {
            padding: 40px 30px;
        }

        .service-form-body .form-label {
            font-weight: 500;
            color: #2c3e50;
            font-size: 16px;
            margin-bottom: 8px;
        }

        .service-form-body .form-label .text-danger {
            color: #dc3545;
            margin-left: 2px;
        }

        .service-form-body .form-control,
        .service-form-body .form-select {
            border: 1px solid #dee2e6;
            border-radius: 6px;
            padding: 12px 16px;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .service-form-body .form-control:focus,
        .service-form-body .form-select:focus {
            border-color: #667eea;
            box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
        }

        .service-form-body textarea.form-control {
            min-height: 92px;
            resize: vertical;
        }

        .service-form-note {
            font-size: 13px;
            color: #6c757d;
            margin-top: 6px;
            line-height: 1.5;
        }

        .btn-submit-service {
            background-color: #485959;
            color: #fff;
            border: 2px solid #485959;
            padding: 12px 60px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            display: block;
            margin: 30px auto 0;
        }

        .btn-submit-service:hover {
            background-color: transparent;
            color: #485959;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(72, 89, 89, 0.3);
        }

        @media (max-width: 991px) {
            .service-details-wrapper,
            .service-form-wrapper {
                margin-bottom: 30px;
            }

            .btn-submit-service {
                width: 100%;
                padding: 12px 40px;
            }
        }

        /* Service Info Section - Custom Padding */
        .contact-info-section {
            padding: 80px 0;
        }

        @media (min-width: 992px) {
            .contact-info-section {
                padding: 60px 0 60px 0;
            }
        }
/* ============================================
   Service Detail Page Styles (service-detail.html)
   ============================================ */

/* Existing <style> tag content */
        /* Service Section Styles */
        .service-section {
            background-color: #f5f5f5;
            padding: 80px 0;
        }

        /* Left Column - Service Details */
        .service-details-wrapper {
            background: white;
            border-radius: 8px;
            padding: 40px 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }

        .service-details-wrapper .sec-title h3 {
            font-size: 24px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 30px;
        }

        /* Custom Accordion */
        .service-accordion .accordion-item {
            border: none;
            background: #f8f9fa;
            margin-bottom: 12px;
            border-radius: 6px;
            overflow: hidden;
        }

        .service-accordion .accordion-button {
            background: #f8f9fa;
            color: #2c3e50;
            font-weight: 500;
            font-size: 17px;
            padding: 32px 20px;
            border: none;
            box-shadow: none;
        }

        .service-accordion .accordion-button:not(.collapsed) {
            background: #e9ecef;
            color: #1a1a1a;
        }

        .service-accordion .accordion-button:focus {
            box-shadow: none;
        }

        .service-accordion .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232c3e50'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z'/%3e%3c/svg%3e");
            transform: scale(0.8);
        }

        .service-accordion .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a1a1a'%3e%3cpath d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z'/%3e%3c/svg%3e");
        }

        .service-accordion .accordion-body {
            padding: 20px;
            font-size: 14px;
            line-height: 1.8;
            color: #495057;
        }

        .service-accordion .accordion-body p {
            margin-bottom: 12px;
        }

        .service-accordion .accordion-body strong {
            color: #2c3e50;
        }

        .service-accordion .accordion-body ul {
            margin: 10px 0;
            padding-left: 20px;
        }

        .service-accordion .accordion-body ul li {
            margin-bottom: 8px;
        }

        /* Right Column - Booking Form */
        .service-form-wrapper {
            background: white;
            border-radius: 8px;
            padding: 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            overflow: hidden;
        }

        .service-form-header {
            background: #485959;
            padding: 30px;
            text-align: center;
            color: white;
        }

        .service-form-header h3 {
            font-size: 26px;
            font-weight: 600;
            margin: 0;
            color: #f0f4f4;
            letter-spacing: 1px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .service-form-body {
            padding: 40px 30px;
        }

        .service-form-body .form-label {
            font-weight: 500;
            color: #2c3e50;
            font-size: 16px;
            margin-bottom: 8px;
        }

        .service-form-body .form-label .text-danger {
            color: #dc3545;
            margin-left: 2px;
        }

        .service-form-body .form-control,
        .service-form-body .form-select {
            border: 1px solid #dee2e6;
            border-radius: 6px;
            padding: 12px 16px;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .service-form-body .form-control:focus,
        .service-form-body .form-select:focus {
            border-color: #667eea;
            box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
        }

        .service-form-body textarea.form-control {
            min-height: 92px;
            resize: vertical;
        }

        .service-form-note {
            font-size: 13px;
            color: #6c757d;
            margin-top: 6px;
            line-height: 1.5;
        }

        .btn-submit-service {
            background-color: #485959;
            color: #fff;
            border: 2px solid #485959;
            padding: 12px 60px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            display: block;
            margin: 30px auto 0;
        }

        .btn-submit-service:hover {
            background-color: transparent;
            color: #485959;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(72, 89, 89, 0.3);
        }

        @media (max-width: 991px) {
            .service-details-wrapper,
            .service-form-wrapper {
                margin-bottom: 30px;
            }

            .btn-submit-service {
                width: 100%;
                padding: 12px 40px;
            }
        }

        /* Service Info Section - Custom Padding */
        .contact-info-section {
            padding: 80px 0;
        }

        @media (min-width: 992px) {
            .contact-info-section {
                padding: 60px 0 60px 0;
            }
        }

        /* Pricing Section Styles */
        .pricing-section {
            padding: 80px 0;
            background-color: #ffffff;
        }

        .pricing-table {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .pricing-header {
            background: linear-gradient(135deg, #485959 0%, #3a4747 100%);
            padding: 30px;
            text-align: center;
        }

        .pricing-header h3 {
            color: white;
            font-size: 24px;
            font-weight: 600;
            margin: 0;
        }

        .pricing-body {
            padding: 0;
        }

        .pricing-row {
            display: flex;
            border-bottom: 1px solid #e9ecef;
            transition: all 0.3s ease;
        }

        .pricing-row:hover {
            background-color: #f8f9fa;
        }

        .pricing-row:last-child {
            border-bottom: none;
        }

        .pricing-cell {
            padding: 20px 25px;
            flex: 1;
        }

        .pricing-cell.service-name {
            font-weight: 500;
            color: #2c3e50;
            border-right: 1px solid #e9ecef;
            flex: 1.5;
        }

        .pricing-cell.service-price {
            font-weight: 600;
            color: #485959;
            text-align: right;
            font-size: 18px;
        }

        .pricing-note {
            padding: 25px;
            border-top: 2px solid #e9ecef;
        }

        .pricing-note h4 {
            color: #485959;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .pricing-note ul {
            list-style: none;
            padding-left: 0;
            margin: 0;
        }

        .pricing-note ul li {
            color: #495057;
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 8px;
            padding-left: 25px;
            position: relative;
        }

        .pricing-note ul li:before {
            content: "•";
            color: #485959;
            font-weight: bold;
            position: absolute;
            left: 0;
            font-size: 20px;
        }

        .pricing-cta {
            background: white;
            padding: 30px;
            text-align: center;
            border-top: 1px solid #e9ecef;
        }

        .pricing-cta p {
            color: #495057;
            margin-bottom: 20px;
            font-size: 15px;
        }

        @media (max-width: 768px) {
            .pricing-row {
                flex-direction: column;
            }

            .pricing-cell.service-name {
                border-right: none;
                border-bottom: 1px solid #e9ecef;
                padding-bottom: 10px;
            }

            .pricing-cell.service-price {
                text-align: left;
                padding-top: 10px;
            }
        }

        /* Additional Pricing Card */
        .pricing-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(72, 89, 89, 0.15);
        }

        .pricing-card-header {
            border-bottom: 2px solid #e9ecef;
            padding-bottom: 20px;
            margin-bottom: 20px;
        }

        .pricing-card-header h3 {
            color: #485959;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .pricing-card-header p {
            color: #6c757d;
            font-size: 14px;
            margin: 0;
        }

        .pricing-card-body ul {
            list-style: none;
            padding-left: 0;
            margin: 0;
        }

        .pricing-card-body ul li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
            color: #495057;
            font-size: 15px;
        }

        .pricing-card-body ul li i {
            color: #485959;
            font-size: 18px;
            margin-right: 12px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .installation-step-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(72, 89, 89, 0.2) !important;
        }

        .installation-step-card:hover .step-icon {
            transform: scale(1.1);
        }

        .step-icon {
            transition: transform 0.3s ease;
        }

/* Service Detail Specific Classes */
.service-detail-section-bg {
    background: #ffffff;
}

.service-detail-about-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.service-detail-info-section {
    background: linear-gradient(135deg, #f0f3f6 0%, #e5e8eba3 100%);
}

.service-detail-office-header-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.service-detail-office-card-text {
    padding: 0 1rem;
}

.service-detail-pricing-title {
    text-align: center;
    color: #485959;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-detail-pricing-subtitle {
    text-align: center;
    color: #495057;
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-detail-pricing-small {
    color: #6c757d;
    font-size: 13px;
}

.service-detail-price-strong {
    float: right;
}

.service-detail-installation-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f3f6 0%, #e5e8eba3 100%);
}

.service-detail-installation-title {
    text-align: center;
    color: #485959;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-detail-installation-subtitle {
    text-align: center;
    color: #495057;
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-detail-step-card {
    background: white;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid #485959;
}

.service-detail-step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #485959 0%, #3a4747 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 4px 15px rgba(72, 89, 89, 0.2);
}

.service-detail-step-icon i {
    font-size: 36px;
    color: white;
}

.service-detail-step-title {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-detail-cta-section {
    background: #ffffff;
}

.service-detail-faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f3f6 0%, #e5e8eba3 100%);
}

.service-detail-faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.service-detail-faq-title {
    color: #485959;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 17px;
}

.service-detail-faq-item {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.service-detail-faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 0;
}

.service-detail-faq-number {
    color: #485959;
    font-weight: 700;
    font-size: 18px;
    min-width: 40px;
}

.service-detail-faq-question-text {
    font-weight: 500;
    font-size: 17px;
    color: #2c3e50;
}

.service-detail-faq-chevron {
    color: #485959;
    font-size: 18px;
    transition: transform 0.3s;
}

.service-detail-faq-answer {
    display: none;
    padding-left: 52px;
    padding-top: 15px;
    color: #495057;
    line-height: 1.8;
}

/* ============================================
   Warranty Page Styles (warranty.html)
   ============================================ */
        /* Warranty Section Styles */
        .warranty-section {
            background-color: #f5f5f5;
            padding: 80px 0;
        }

        /* Left Column - Warranty Terms */
        .warranty-terms-wrapper {
            background: white;
            border-radius: 8px;
            padding: 40px 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }

        .warranty-terms-wrapper .sec-title h3 {
            font-size: 24px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 30px;
        }

        /* Custom Accordion */
        .warranty-accordion .accordion-item {
            border: none;
            background: #f8f9fa;
            margin-bottom: 12px;
            border-radius: 6px;
            overflow: hidden;
        }

        .warranty-accordion .accordion-button {
            background: #f8f9fa;
            color: #2c3e50;
            font-weight: 500;
            font-size: 17px;
            padding: 32px 20px;
            border: none;
            box-shadow: none;
        }

        .warranty-accordion .accordion-button:not(.collapsed) {
            background: #e9ecef;
            color: #1a1a1a;
        }

        .warranty-accordion .accordion-button:focus {
            box-shadow: none;
        }

        .warranty-accordion .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232c3e50'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z'/%3e%3c/svg%3e");
            transform: scale(0.8);
        }

        .warranty-accordion .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a1a1a'%3e%3cpath d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z'/%3e%3c/svg%3e");
        }

        .warranty-accordion .accordion-body {
            padding: 20px;
            font-size: 14px;
            line-height: 1.8;
            color: #495057;
        }

        .warranty-accordion .accordion-body p {
            margin-bottom: 12px;
        }

        .warranty-accordion .accordion-body strong {
            color: #2c3e50;
        }

        /* Right Column - Registration Form */
        .warranty-form-wrapper {
            background: white;
            border-radius: 8px;
            padding: 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            overflow: hidden;
        }

        .warranty-form-header {
            background: #485959;
            padding: 30px;
            text-align: center;
            color: white;
        }

        .warranty-form-header h3 {
            font-size: 26px;
            font-weight: 600;
            margin: 0;
            color: #f0f4f4;
            letter-spacing: 1px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .warranty-form-body {
            padding: 40px 30px;
        }

        .warranty-form-body .form-label {
            font-weight: 500;
            color: #2c3e50;
            font-size: 16px;
            margin-bottom: 8px;
        }

        .warranty-form-body .form-label .text-danger {
            color: #dc3545;
            margin-left: 2px;
        }

        .warranty-form-body .form-control,
        .warranty-form-body .form-select {
            border: 1px solid #dee2e6;
            border-radius: 6px;
            padding: 12px 16px;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .warranty-form-body .form-control:focus,
        .warranty-form-body .form-select:focus {
            border-color: #667eea;
            box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
        }

        .warranty-form-body textarea.form-control {
            min-height: 92px;
            resize: vertical;
        }

        .warranty-form-note {
            font-size: 13px;
            color: #dc3545;
            margin-top: 6px;
            line-height: 1.5;
        }

        .btn-submit-warranty {
            background-color: #485959;
            color: #fff;
            border: 2px solid #485959;
            padding: 12px 60px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            display: block;
            margin: 30px auto 0;
        }

        .btn-submit-warranty:hover {
            background-color: transparent;
            color: #485959;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(72, 89, 89, 0.3);
        }

        @media (max-width: 991px) {
            .warranty-terms-wrapper,
            .warranty-form-wrapper {
                margin-bottom: 30px;
            }

            .btn-submit-warranty {
                width: 100%;
                padding: 12px 40px;
            }
        }

        /* Warranty Info Section - Custom Padding */
        .contact-info-section {
            padding: 80px 0;
        }

        @media (min-width: 992px) {
            .contact-info-section {
                padding: 60px 0 60px 0;
            }
        }

/* ============================================
   About Page Styles (about.html)
   ============================================ */
        .award-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #f8f6f3 0%, #fff 100%);
            text-align: center;
        }

        .award-badge {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            padding: 60px;
            background: #fff;
            border: 3px solid #485959;
            border-radius: 50%;
            width: 300px;
            height: 300px;
            justify-content: center;
            margin: 40px auto;
            box-shadow: 0 20px 60px rgba(72, 89, 89, 0.2);
        }

        .award-icon {
            font-size: 4rem;
            color: #485959;
            margin-bottom: 20px;
        }

        .award-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 10px;
        }

        .award-year {
            font-size: 2rem;
            color: #485959;
            font-weight: 700;
        }

        @media (max-width: 768px) {
            .award-badge {
                width: 250px;
                height: 250px;
                padding: 40px;
            }
        }
