/* Global CSS variables, basic resets, and common styling */
:root {
  /* Brand Colors */
  --color-primary: #3b2c17;
  /* Dark Brown */
  --color-primary-dark: #2c2011;
  /* Very Dark Brown */
  --color-accent: #c09440;
  /* Gold */
  --color-accent-light: #8c7659;
  /* Light Gold */

  /* Text & Backgrounds */
  --color-text-main: #333333;
  --color-text-muted: #666666;
  --color-bg-main: #ffffff;
  --color-bg-light: #f6f5f3;

  /* UI Elements */
  --color-border: #eaeaea;
  --color-hover: #e9e8e6;

  /* Standard Colors */
  --color-black: #000000;
  --color-white: #ffffff;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--color-text-main);
  background-color: var(--color-bg-main);
  margin: 0;
  padding: 0;
  overflow-x: clip;
  /* Fix horizontal scroll issues without breaking sticky */
  width: 100%;
}

html {
  overflow-x: clip;
}

/* Custom Header Styling */
.custom-header {
  border-bottom: 1px solid var(--color-border);
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
  background-color: var(--color-bg-main);
}

.header-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 10px 50px;
  box-sizing: border-box;
}

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

.header-logo img {
  max-width: 250px;
  height: auto;
}

.header-search {
  flex: 1;
  max-width: 400px;
  margin: 0 40px;
}

.header-search .search-form {
  position: relative;
  display: flex;
}

.header-search .search-field {
  width: 100%;
  padding: 10px 45px 10px 15px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
  text-overflow: ellipsis;
}

.header-search .search-submit {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted);
}

.header-contact-info {
  display: flex;
  gap: 30px;
  align-items: center;
}

.contact-block {
  display: flex;
  align-items: center;
  gap: 15px;
}

.location-block {
  border-left: 1px solid var(--color-border);
  padding-left: 30px;
}

.contact-icon svg {
  display: block;
}

.contact-icon img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.contact-text {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

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

.contact-text strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-black);
}

.contact-text span {
  color: var(--color-text-muted);
  font-size: 13px;
}

.header-bottom-row {
  background-color: var(--color-bg-light);
  border-top: 1px solid var(--color-border);
}

.header-bottom-row .header-container {
  padding: 0;
}

.primary-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Only the top-level UL is flex */
.primary-navigation>ul {
  display: flex;
  justify-content: center;
}

.primary-navigation li {
  position: relative;
}

.primary-navigation a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: var(--color-black);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.primary-navigation>ul>li>a:hover {
  background-color: var(--color-hover);
}

/* --- Dropdown Sub-menu Styling --- */
.primary-navigation .sub-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 130%;
  left: 0;
  background-color: var(--color-white);
  min-width: 240px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 999;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

/* Show dropdown on hover */
.primary-navigation li:hover>.sub-menu {
  visibility: visible;
  opacity: 1;
  top: 100%;
}

/* Sub-menu links styling */
.primary-navigation .sub-menu a {
  padding: 14px 20px;
  border-bottom: 1px solid var(--color-border);
  text-transform: capitalize;
  font-weight: 500;
  font-size: 15px;
  /* Increased text size */
  color: var(--color-text-main);
  transition: all 0.3s ease;
}

.primary-navigation .sub-menu li:last-child a {
  border-bottom: none;
}

.primary-navigation .sub-menu a:hover {
  background-color: var(--color-bg-light);
  color: var(--color-accent);
  padding-left: 26px;
  /* Sleek hover indent effect */
}

/* Add dropdown arrow icon to parent links */
.primary-navigation .menu-item-has-children>a::after {
  content: " \25BC";
  font-size: 18px;
  vertical-align: middle;
  margin-left: 8px;
  opacity: 0.8;
  display: inline-block;
  transition: transform 0.3s ease;
}

.primary-navigation li.mobile-dropdown-active>a::after {
  transform: rotate(180deg);
}

/* --- Hero Banner Slider --- */
.hero-slider-desktop {
  display: block;
}

.hero-slider-mobile {
  display: none;
}

.hero-slide-item {
  height: 720px;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  width: 100%;
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 1;
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  color: var(--color-primary-dark);
  max-width: 800px;
  padding: 0 20px;
}

.hero-slide-content h4 {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 15px 0;
  color: var(--color-accent-light);
  font-weight: 600;
  opacity: 0;
}

.hero-slide-content h2 {
  font-size: 64px;
  font-weight: 400;
  margin: 0 0 20px 0;
  font-family: 'Playfair Display', serif;
  /* Premium elegant font from design */
  color: var(--color-primary-dark);
  line-height: 1.1;
  opacity: 0;
}

/* Background Zoom Animation (Ken Burns Effect) */
@keyframes bgZoom {
  from {
    background-size: 100% 100%;
  }

  to {
    background-size: 110% 110%;
  }
}

.splide__slide.is-active .hero-slide-item {
  animation: bgZoom 8s ease-in-out forwards;
}

.hero-slide-content h2 i,
.hero-slide-content h2 em {
  color: var(--color-accent);
  font-style: italic;
}

.hero-slide-content p {
  font-size: 18px;
  margin-bottom: 35px;
  line-height: 1.6;
  color: var(--color-primary);
  opacity: 0;
}

.hero-btn {
  display: inline-block;
  padding: 16px 40px;
  background-color: var(--color-primary);
  color: var(--color-white) !important;
  text-decoration: none !important;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.3s;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 1px;
  opacity: 0;
  outline: none;
  border: none;
}

.hero-btn:visited {
  color: var(--color-white) !important;
  text-decoration: none !important;
}

.hero-btn:focus,
.hero-btn:active {
  outline: none;
  color: var(--color-white) !important;
}

.hero-btn:hover {
  background-color: var(--color-accent);
  color: var(--color-white) !important;
}

/* Splide Slider Arrow Customization */
.splide__arrow {
  background-color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.splide__arrow:hover {
  background-color: var(--color-accent) !important;
  opacity: 1;
}

.splide__arrow:hover svg {
  fill: var(--color-white);
}

.splide__arrow svg {
  fill: var(--color-primary);
}

/* Splide Pagination Customization */
.splide__pagination {
  bottom: 25px;
}

.splide__pagination__page {
  background: var(--color-border);
}

.splide__pagination__page.is-active {
  background: var(--color-accent);
  transform: scale(1.2);
}

/* --- Slide Animations --- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

.splide__slide.is-active .hero-slide-content h4 {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

.splide__slide.is-active .hero-slide-content h2 {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.4s;
}

.splide__slide.is-active .hero-slide-content p {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.6s;
}

.splide__slide.is-active .hero-slide-content .hero-btn {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.8s;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  color: var(--color-primary);
}

/* --- Mobile Responsiveness (Tablet 768px) --- */
@media (max-width: 768px) {
  .header-contact-info {
    display: none;
    /* Hide bulky contact info on mobile */
  }

  .header-top-row .header-container {
    flex-wrap: wrap;
  }

  .header-logo {
    order: 1;
    max-width: 200px;
  }

  .mobile-menu-toggle,
  .mobile-menu-toggle:focus,
  .mobile-menu-toggle:active {
    display: block;
    order: 2;
    background-color: #ffffff !important;
    /* Light Theme */
    color: #ffd700 !important;
    border: 1px solid #ffd700 !important;
    border-radius: 4px;
    padding: 3px 6px;
    -webkit-tap-highlight-color: transparent;
    /* Fixes blue highlight on tap */
  }

  .mobile-menu-toggle svg {
    width: 25px;
    height: 25px;
    display: block;
  }

  .mobile-menu-toggle:hover {
    background-color: #ffffff !important;
    color: #ffd700 !important;
    border-color: #ffd700 !important;
  }

  .header-search {
    order: 3;
    flex: 0 0 100%;
    max-width: 100%;
    margin: 15px 0 0 0;
  }

  .header-bottom-row {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #ffffff;
    /* Light Theme */
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1);
    border-top: 2px solid #ffd700;
    /* LED glowing top border */
  }

  .mobile-menu-active .header-bottom-row {
    display: block;
    animation: ledSlideDown 0.4s ease forwards;
  }

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

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

  .primary-navigation>ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .primary-navigation>ul>li {
    width: 100%;
    border-bottom: 1px solid #f1f1f1;
  }

  .primary-navigation>ul>li>a {
    color: #333333 !important;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px !important;
    padding: 12px 15px !important;
    display: block;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    /* Fixes blue highlight on tap */
  }

  /* Hover/active */
  .primary-navigation>ul>li>a:hover,
  .primary-navigation>ul>li>a:active {
    color: #000000 !important;
    background-color: rgba(255, 215, 0, 0.05);
    padding-left: 20px;
    /* Slight indent animation */
  }

  /* Reset dropdown for mobile (expand below instead of right) */
  .primary-navigation .sub-menu {
    position: static;
    visibility: visible;
    opacity: 1;
    display: none;
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.05);
    border: none;
    background-color: #fafafa;
    border-radius: 0;
    width: 100%;
    border-left: 3px solid #ffd700;
  }

  .primary-navigation .sub-menu li a {
    color: #555555 !important;
    font-size: 13px !important;
    padding: 10px 15px 10px 25px !important;
    display: block;
    border-bottom: 1px solid #f1f1f1;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    /* Fixes blue highlight on tap */
  }

  .primary-navigation .sub-menu li a:hover {
    color: #000000 !important;
    padding-left: 30px;
    /* Indent on hover */
  }

  /* When JS adds an active class to parent LI, show submenu */
  .primary-navigation li.mobile-dropdown-active>.sub-menu {
    display: block;
    animation: fadeInGlow 0.3s ease forwards;
  }

  @keyframes fadeInGlow {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }
}

/* --- Mobile Banner (520px) --- */
@media (max-width: 520px) {
  .hero-slider-desktop {
    display: none;
  }

  .hero-slider-mobile {
    display: block;
  }

  .hero-slide-item {
    height: 400px;
    /* Fixed mobile height as requested */
    background-size: 100% 100%;
    /* Shows full image without cropping */
    background-position: center;
    background-repeat: no-repeat;
    /* Prevents repeating */
    padding: 60px 0;
  }

  .hero-slide-content h2 {
    font-size: 32px;
  }

  .hero-slide-content h4 {
    font-size: 14px;
  }

  @keyframes bgZoomMobile {
    from {
      background-size: 100% 100%;
    }

    to {
      background-size: 110% 110%;
    }
  }

  .splide__slide.is-active .hero-slide-item {
    animation: bgZoomMobile 8s ease-in-out forwards;
  }
}

/* Custom Page Banner */
.custom-page-banner {
  position: relative;
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #333;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.banner-content h1 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: 'Playfair Display', serif;
}

.custom-breadcrumb {
  font-size: 14px;
}

.custom-breadcrumb a {
  color: #ffd700;
  text-decoration: none;
}

.custom-breadcrumb a:hover {
  text-decoration: underline;
}

.custom-breadcrumb span {
  color: #fff;
}

/* --- Home About Section --- */
.home-about-section {
  padding: 80px 0;
  background-color: #fcfbfa;
  /* Slightly off-white/warm background if needed */
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image-col {
  position: relative;
  display: inline-block;
}

.about-main-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

.google-reviews-badge {
  position: absolute;
  bottom: -60px;
  right: 100px;
  background: transparent;
  width: 380px;
  max-width: 90%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  z-index: 2;
}

.google-reviews-badge img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.about-content-col {
  padding-left: 20px;
}

.section-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: 46px;
  font-family: 'Playfair Display', serif;
  color: #222;
  line-height: 1.2;
  margin-bottom: 25px;
}

.section-title span {
  color: #a87b32;
  /* Golden/Bronze color */
}

.about-desc,
.about-desc-bottom {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: #e9e7e0;
  /* Light background */
  padding: 30px 25px;
  border-radius: 20px;
  border-left: 6px solid #4a3623;
  /* Dark brown thick left border */
}

.feature-icon {
  flex-shrink: 0;
  width: 75px;
  height: 75px;
  background-color: #533e22;
  /* Dark brown for icon background */
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.feature-text h4 {
  font-size: 18px;
  color: #222;
  margin-bottom: 8px;
  font-weight: 700;
}

.feature-text p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Added animations as requested */
.home-about-section .hero-btn {
  opacity: 1 !important;
  transform: none !important;
  margin-top: 15px;
}

@keyframes fadeUpSection {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.about-image-col {
  animation: fadeUpSection 1s ease-out forwards;
}

.about-content-col {
  opacity: 0;
  animation: fadeUpSection 1s ease-out 0.3s forwards;
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content-col {
    padding-left: 0;
  }

  .google-reviews-badge {
    left: auto;
    right: -20px;
    bottom: -30px;
    width: 280px;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 10px 20px;
  }

  .home-about-section {
    padding: 30px 20px !important;
  }

  .home-about-section .header-container {
    padding: 0 !important;
  }

  .about-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-left: none;
    border-top: 6px solid #4a3623;
  }

  .about-desc,
  .about-desc-bottom,
  .feature-text p {
    text-align: justify;
  }

  .home-about-section .hero-btn {
    display: table;
    margin: 20px auto !important;
  }

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

  .section-title {
    font-size: 32px;
    text-align: center;
  }

  .google-reviews-badge {
    right: -10px;
    bottom: -20px;
    width: 250px;
  }
}

@media (max-width: 520px) {
  .home-about-section {
    padding: 20px 20px !important;
  }
}

/* --- Explore Collection Section --- */
.explore-collection-section {
  padding: 50px 0 30px 0;
  background-color: #fbfbf9;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.explore-header-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.explore-header-text .section-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c09440;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 15px;
}

.explore-header-text .section-subtitle::before,
.explore-header-text .section-subtitle::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: #c09440;
  margin: 0 15px;
}

.explore-header-text .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.2;
}

/* User can add span tag in ACF for gold text */
.explore-header-text .section-title span {
  color: #c09440;
}

.decorative-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25px 0 15px 0;
}

.decorative-divider::before,
.decorative-divider::after {
  content: "";
  display: inline-block;
  width: 80px;
  height: 1px;
  background-color: #f2e2c4;
}

.decorative-divider span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #c09440;
  transform: rotate(45deg);
  margin: 0 10px;
}

.explore-desc {
  font-size: 17px;
  color: #555;
  margin-top: 20px;
  line-height: 1.6;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.explore-card {
  display: block;
  text-decoration: none !important;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.explore-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.explore-card-img {
  width: 100%;
  height: 280px;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

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

.explore-card:hover .explore-card-img img {
  transform: scale(1.05);
}

.explore-card-content {
  position: relative;
  padding: 15px 20px 15px 95px;
  /* Space for the absolute icon */
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 0 0 12px 12px;
}

.explore-card-icon {
  position: absolute;
  top: -35px;
  left: 15px;
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f2e2c4;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  z-index: 2;
}

.explore-card-icon img {
  width: 100%;
  height: 100%;
  /* padding: 10px; */
  object-fit: contain;
}

.explore-card-content h3 {
  position: relative;
  font-size: 20px;
  color: #333;
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.3;
  padding-bottom: 8px;
}

.explore-card-content h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: #c09440;
}

.explore-card-arrow {
  color: #c09440;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
}

.explore-card:hover .explore-card-arrow {
  transform: translateX(5px);
}

.explore-bottom-action {
  text-align: center;
  margin-top: 50px;
  width: 100%;
}

.explore-collection-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 16px 50px;
  background: linear-gradient(to bottom, #4f361d, #2a180b);
  color: #f5d796;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none !important;
  border-radius: 6px;
  border: 1px solid #c09440;
  transition: all 0.3s ease;
  position: relative;
}

.explore-collection-btn::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  border: 1px solid #c09440;
  border-radius: 3px;
  pointer-events: none;
  opacity: 0.8;
}

.explore-collection-btn:hover {
  background: linear-gradient(to bottom, #5a3d21, #362010);
  color: #ffffff;
}

.explore-collection-btn svg {
  transition: transform 0.3s ease;
}

.explore-collection-btn:hover svg {
  transform: translateX(5px);
}

/* Explore Grid Responsive */
@media (max-width: 991px) {
  .explore-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .explore-collection-section {
    padding: 50px 0 0 0;
  }

  .explore-header-text .section-title {
    font-size: 32px;
  }

  .explore-desc {
    font-size: 15px;
  }
}

@media (max-width: 520px) {
  .explore-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ================================================
   REUSABLE: Section Side Padding (use on all sections)
   ================================================ */
.section-pad {
  width: 100%;
  padding: 0 50px;
  box-sizing: border-box;
}

/* ================================================
   LAMPSHADE FEATURE SECTION
   ================================================ */
.lampshade-section {
  width: 100%;
  background-color: var(--color-bg-main);
  padding: 50px 0 0 0;
}

.lampshade-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #faf8f5;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  align-items: stretch;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.lampshade-content-col {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lampshade-section-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  display: inline-block;
}

.lampshade-section-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lampshade-content-col .section-title {
  margin-bottom: 15px;
}

.lampshade-content-col .section-title span {
  color: #c76d22;
}

.decorative-divider--left {
  justify-content: flex-start !important;
  margin: 20px 0 !important;
}

.decorative-divider--left::before {
  width: 120px !important;
  background-color: var(--color-accent) !important;
  content: "";
  display: inline-block;
  height: 1px;
}

.decorative-divider--left::after {
  display: none !important;
}

.decorative-divider--left span {
  margin-right: 0 !important;
}

.lampshade-desc {
  margin-bottom: 20px;
}

.lampshade-desc p {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  margin: 0 0 20px 0;
}

.lampshade-desc p:last-child {
  margin-bottom: 0;
}

.lampshade-btn-wrap {
  margin-top: 25px;
}

.lampshade-image-col {
  display: flex;
  padding: 30px;
  box-sizing: border-box;
}

.lampshade-image-wrap {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 16px;
  overflow: hidden;
}

.lampshade-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 991px) {
  .lampshade-section {
    padding: 40px 0 0 0;
  }

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

  .lampshade-content-col {
    padding: 40px;
  }

  .lampshade-image-col {
    padding: 20px;
  }

  .lampshade-image-wrap {
    height: 400px;
  }

  .lampshade-content-col .section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .lampshade-section {
    padding: 30px 0 0 0;
  }
}

@media (max-width: 520px) {
  .lampshade-section {
    padding: 20px 0 0 0;
  }
}

@media (max-width: 600px) {
  .lampshade-content-col {
    padding: 30px 20px;
  }

  .lampshade-image-col {
    padding: 15px;
  }

  .lampshade-image-wrap {
    height: 300px;
  }

  .lampshade-content-col .section-title {
    font-size: 28px;
  }
}

/* ================================================
   CTA STRIP SECTION
   ================================================ */
.cta-strip-section {
  width: 100%;
  background-color: var(--color-bg-main);
  padding: 50px 0 0 0;
}

.cta-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.3fr;
  background-color: #faf8f5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--color-border);
}

/* Each feature item */
.cta-strip-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  border-right: 1px solid var(--color-border);
}

.cta-strip-item:last-child {
  border-right: none;
}

/* Icon */
.cta-strip-icon {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
}

.cta-strip-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Text */
.cta-strip-text {
  flex: 1;
}

.cta-strip-text h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.cta-strip-text p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Phone block (dark brown - last item) */
.cta-strip-item--phone {
  background-color: var(--color-primary);
  border-right: none;
  padding: 28px 32px;
  gap: 20px;
}

.cta-phone-icon-link {
  text-decoration: none;
  display: inline-block;
  flex-shrink: 0;
}

.cta-strip-item--phone .cta-strip-icon {
  width: 68px;
  height: 68px;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 16px;
  transition: all 0.3s ease;
}

.cta-phone-icon-link:hover .cta-strip-icon {
  background-color: rgba(192, 148, 64, 0.15);
  transform: scale(1.08);
}

.cta-strip-item--phone .cta-strip-icon img {
  filter: brightness(0) saturate(100%) invert(67%) sepia(50%) saturate(600%) hue-rotate(355deg) brightness(90%) contrast(90%);
}

.cta-strip-item--phone .cta-strip-text h4 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 6px;
}

.cta-strip-item--phone .cta-strip-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.5;
}

/* Clickable phone number */
.cta-strip-phone-number,
.cta-strip-phone-number:visited,
.cta-strip-phone-number:focus,
.cta-strip-phone-number:active {
  color: #ffffff;
  text-decoration: none;
}

.cta-strip-phone-number {
  display: inline-block;
  margin-top: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.cta-strip-phone-number:hover {
  color: var(--color-accent) !important;
  transform: translateX(2px);
}

/* Responsive */
@media (max-width: 1199px) {
  .cta-strip-item {
    padding: 24px 18px;
    gap: 12px;
  }

  .cta-strip-item--phone {
    padding: 24px 24px;
    gap: 16px;
  }
}

@media (max-width: 1024px) {
  .cta-strip-section .header-container {
    padding: 0 30px;
  }

  .cta-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-strip-item {
    border-bottom: 1px solid var(--color-border);
  }

  .cta-strip-item:nth-child(even) {
    border-right: none;
  }

  .cta-strip-item--phone {
    grid-column: span 2;
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .cta-strip-section {
    padding: 30px 0 0 0;
  }
}

@media (max-width: 520px) {
  .cta-strip-section {
    padding: 20px 0 0 0;
  }
}

@media (max-width: 600px) {
  .cta-strip-section .header-container {
    padding: 0 20px;
  }

  .cta-strip-inner {
    grid-template-columns: 1fr;
  }

  .cta-strip-item {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

  .cta-strip-item--phone {
    grid-column: span 1;
    border-bottom: none;
  }

  .cta-strip-phone-number {
    font-size: 18px;
  }
}

/* ================================================
   FAQ SECTION
   ================================================ */
.faq-section {
  width: 100%;
  background-color: #faf8f5;
  padding: 50px 0 0 0;
}

.faq-header-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.faq-subtitle-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.faq-subtitle-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: #f2e2c4;
}

.faq-desc-intro {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  margin-top: 20px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.faq-item-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

.faq-q-col {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 40px;
  height: 100%;
  box-sizing: border-box;
  background-color: #ffffff;
  position: relative;
}

.faq-q-col::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background-color: #f2e2c4;
}

.faq-number-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  color: var(--color-accent);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  box-sizing: border-box;
}

.faq-q-col h3 {
  font-size: 22px;
  font-family: 'Inter', sans-serif;
  color: var(--color-primary);
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

.faq-a-col {
  padding: 30px 50px;
  box-sizing: border-box;
  background-color: #ffffff;
}

.faq-a-col p {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .faq-section {
    padding: 40px 0 0 0;
  }

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

  .faq-q-col {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding: 24px 30px;
  }

  .faq-q-col::after {
    display: none !important;
  }

  .faq-a-col {
    padding: 24px 30px;
  }

  .faq-q-col h3 {
    font-size: 18px;
  }

  .faq-a-col p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 30px 0 0 0;
  }
}

@media (max-width: 520px) {
  .faq-section {
    padding: 20px 0 0 0;
  }
}

@media (max-width: 600px) {
  .faq-section {
    padding: 30px 0 0 0;
  }

  .faq-header-text {
    margin-bottom: 30px;
  }

  .faq-desc-intro {
    font-size: 16px;
  }

  .faq-q-col {
    padding: 20px;
    gap: 15px;
  }

  .faq-a-col {
    padding: 20px;
  }
}

/* ================================================
   STILL HAVE QUESTIONS SECTION
   ================================================ */
.shq-section {
  width: 100%;
  background-color: #faf8f5;
  /* padding: 50px 0 0 0; */
}

.shq-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #f2e2c4;
  border-radius: 12px;
  padding: 40px 50px;
  background-color: #fdfbf9;
  box-sizing: border-box;
}

.shq-content-block {
  display: flex;
  align-items: center;
  gap: 30px;
}

.shq-icon {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
}

.shq-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shq-text h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.shq-text p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin: 0;
  max-width: 580px;
}

.shq-action-block {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  padding-left: 40px;
}

.shq-action-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background-color: #f2e2c4;
}

.shq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.25s ease;
  box-sizing: border-box;
  white-space: nowrap;
}

.shq-btn svg {
  flex-shrink: 0;
}

.shq-btn--phone,
.shq-btn--phone:visited,
.shq-btn--phone:focus,
.shq-btn--phone:active {
  background-color: #ffffff;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
}

.shq-btn--phone:hover {
  background-color: rgba(192, 148, 64, 0.05);
  color: var(--color-accent) !important;
  border-color: var(--color-accent);
  transform: translateY(-1px);
}

.shq-btn--contact,
.shq-btn--contact:visited,
.shq-btn--contact:focus,
.shq-btn--contact:active {
  background-color: #c76d22;
  border: 1px solid #c76d22;
  color: #ffffff;
}

.shq-btn--contact:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #ffffff !important;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 1199px) {
  .shq-card {
    padding: 35px 40px;
  }

  .shq-text h3 {
    font-size: 24px;
  }

  .shq-text p {
    font-size: 15px;
    max-width: 480px;
  }

  .shq-icon {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 991px) {
  .shq-card {
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
    text-align: center;
    padding: 30px;
  }

  .shq-content-block {
    flex-direction: column;
    gap: 15px;
  }

  .shq-text p {
    max-width: 100%;
  }

  .shq-action-block {
    flex-direction: column;
    padding-left: 0;
    justify-content: center;
    gap: 15px;
  }

  .shq-action-block::before {
    display: none;
  }

  .shq-btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .shq-section {
    padding: 30px 0 0 0;
  }
}

@media (max-width: 520px) {
  .shq-section {
    padding: 20px 0 0 0;
  }
}

@media (max-width: 600px) {
  .shq-card {
    padding: 24px 20px;
  }
}

/* ================================================
   TESTIMONIALS SECTION
   ================================================ */
.testimonials-section {
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
  background-color: #ffffff;
  padding: 50px 0 0 0;
}

.testimonials-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.testimonials-splide {
  width: 100%;
  box-sizing: border-box;
  padding-bottom: 50px;
}

.testimonials-splide .splide__pagination {
  bottom: 0px;
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.testimonials-splide .splide__pagination__page {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d1c8b8;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}

.testimonials-splide .splide__pagination__page.is-active {
  background-color: var(--color-accent);
  transform: scale(1.25);
}

.testimonial-item {
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
}

.testimonial-bubble-card {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #f1ece2 !important;
  border-left: 4px solid #c09440 !important;
  border-radius: 8px;
  padding: 35px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.testimonial-bubble-card:hover {
  box-shadow: 0 16px 40px rgba(192, 148, 64, 0.2), 0 0 0 1px rgba(192, 148, 64, 0.15);
  border-left-color: #d4a84b !important;
}

.testimonial-bubble-card::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 45px;
  width: 16px;
  height: 16px;
  background-color: #ffffff;
  border-right: 1px solid #f1ece2;
  border-bottom: 1px solid #f1ece2;
  transform: rotate(45deg);
}

.testimonial-text-content p {
  font-size: 16px;
  color: #555555;
  line-height: 1.7;
  margin: 0 0 25px 0;
}

.testimonial-meta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
}

.testimonial-platform {
  font-size: 15px;
  color: #2c3e50;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 22px;
  padding-left: 20px;
}

.testimonial-avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-avatar--placeholder {
  background-color: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.testimonial-avatar--placeholder span {
  font-size: 24px;
  font-weight: 700;
}

.testimonial-author-meta h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.testimonial-author-meta span {
  font-size: 14px;
  color: var(--color-text-muted);
  display: block;
}

/* Responsive */

@media (max-width: 768px) {
  .testimonials-section {
    padding: 30px 0 0 0;
  }

  .testimonials-header {
    margin-bottom: 35px;
  }
}

@media (max-width: 520px) {
  .testimonials-section {
    padding: 20px 0 0 0;
  }

  .testimonial-bubble-card {
    padding: 25px 20px;
  }

  .testimonial-text-content p {
    font-size: 15px;
  }
}

/* ================================================
   BLOG SECTION
   ================================================ */
.blog-section {
  width: 100%;
  background-color: #fdfbf9;
  padding: 50px 0 0 0;
}

.blog-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.blog-section-desc {
  font-size: 16px;
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 20px auto 0 auto;
  line-height: 1.6;
}

.blog-splide {
  width: 100%;
  box-sizing: border-box;
  padding: 0 60px 50px 60px;
}

/* Allow top/bottom shadow but clip sides for loop clones */
.blog-splide .splide__track {
  overflow: hidden !important;
  padding: 10px 15px !important;
  margin: 0 -60px;
  clip-path: inset(-20px 0px);
}

.blog-splide .splide__list {
  overflow: visible !important;
  padding: 0 60px;
}

.blog-splide .splide__pagination {
  bottom: 0px;
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-splide .splide__pagination__page {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d1c8b8;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}

.blog-splide .splide__pagination__page.is-active {
  background-color: var(--color-accent);
  transform: scale(1.25);
}

/* Running border angle property */
@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes borderSpin {
  to {
    --border-angle: 360deg;
  }
}

.blog-card {
  background: #ffffff;
  border: 1px solid #f1ece2;
  border-radius: 12px;
  overflow: visible;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: none;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
  position: relative;
  isolation: isolate;
}

/* Running border pseudo-element */
.blog-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: conic-gradient(from var(--border-angle),
      transparent 0%,
      transparent 25%,
      #c09440 40%,
      #ffd700 50%,
      #c09440 60%,
      transparent 75%,
      transparent 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* White inset to show just the border beam */
.blog-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 12px;
  background: #ffffff;
  z-index: -1;
}

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

.blog-card:hover::before {
  opacity: 1;
  animation: borderSpin 4s linear infinite;
}

/* Keep image top radius clean */
.blog-card .blog-card-image {
  border-radius: 11px 11px 0 0;
  overflow: hidden;
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

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

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

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.blog-card-meta svg.calendar-icon {
  stroke: var(--color-accent);
  flex-shrink: 0;
}

.blog-card-title {
  font-size: 20px;
  line-height: 1.4;
  margin: 0 0 12px 0;
  font-family: 'Playfair Display', serif;
}

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

.blog-card-title a:hover {
  color: var(--color-accent);
}

.blog-card-excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: #666666;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.2s ease;
  margin-top: auto;
  width: fit-content;
}

.blog-card-link .arrow-icon {
  transition: transform 0.2s ease;
  stroke: var(--color-accent);
}

.blog-card-link:hover {
  color: var(--color-primary);
}

.blog-card-link:hover .arrow-icon {
  transform: translateX(4px);
  stroke: var(--color-primary);
}

/* Responsive Padding Override Rules */
@media (max-width: 768px) {
  .blog-section {
    padding: 30px 0 0 0;
  }

  .blog-header {
    margin-bottom: 35px;
  }
}

@media (max-width: 520px) {
  .blog-section {
    padding: 20px 0 0 0;
  }

  .blog-card-content {
    padding: 20px;
  }

  .blog-card-title {
    font-size: 18px;
  }
}

/* ================================================
   BLOG PAGE TEMPLATE STYLES
   ================================================ */
.blog-page-wrap {
  width: 100%;
  background-color: #ffffff;
  padding: 50px 0;
}

.blog-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 50px;
}

/* Pagination Style */
.pagination-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 15px;
  margin: 50px auto 0 auto;
  width: 100%;
}

/* Arrow buttons (circular beige buttons) */
.pagination-wrap .page-numbers.prev,
.pagination-wrap .page-numbers.next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 2px solid #f1ece2;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  box-sizing: border-box;
  align-self: center;
}

.pagination-wrap .page-numbers.prev:hover,
.pagination-wrap .page-numbers.next:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(192, 148, 64, 0.15);
}

/* Disabled Arrow State */
.pagination-wrap .page-numbers.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
  border-color: #f1ece2 !important;
  color: #a8a8a8 !important;
  background-color: #fafaf9 !important;
}

.pagination-wrap .page-numbers svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  transition: transform 0.2s ease;
}

.pagination-wrap .page-numbers.prev:hover svg {
  transform: translateX(-2px);
}

.pagination-wrap .page-numbers.next:hover svg {
  transform: translateX(2px);
}

/* Number buttons (LED Bulb Shape via background images) */
.pagination-wrap a.page-numbers:not(.prev):not(.next),
.pagination-wrap span.page-numbers.current {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 90px;
  background-image: url('../images/bulb-off.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  border: none !important;
  background-color: transparent !important;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-sizing: border-box;
  margin: 0 6px;
  padding-bottom: 27px;
  /* Push the text number up into the glass bulb center */
}

/* Inactive bulb hover state */
.pagination-wrap a.page-numbers:not(.prev):not(.next):hover {
  background-image: url('../images/bulb-off.png');
  color: #b45309;
  filter: drop-shadow(0 0 12px rgba(245, 158, 11, 0.85)) sepia(0.3) saturate(2) brightness(1.1);
  transform: translateY(-2px);
}

/* Active Glowing Bulb */
.pagination-wrap span.page-numbers.current {
  background-image: url('../images/bulb-off.png') !important;
  color: #b45309 !important;
  filter: drop-shadow(0 0 15px rgba(245, 158, 11, 0.9)) drop-shadow(0 0 25px rgba(245, 158, 11, 0.5)) sepia(0.4) saturate(2.5) brightness(1.1) !important;
  transform: translateY(-2px) scale(1.05);
}

/* Responsive Grid */
@media (max-width: 991px) {
  .blog-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .blog-page-wrap {
    padding: 30px 0;
  }
}

@media (max-width: 600px) {
  .blog-page-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pagination-wrap .page-numbers {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

/* ================================================
   CUSTOM FOOTER AREA & 4-COLUMN WIDGETS
   ================================================ */
.custom-footer {
  background-color: #191410;
  /* Deep warm dark-brown background matching screenshot */
  color: #e5dfd3;
  padding: 65px 0 0 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  position: relative;
  font-size: 17px;
}

.custom-footer .footer-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 100px;
  box-sizing: border-box;
}

/* 4-Column Grid for Footer Main Widgets */
.footer-main-widgets {
  display: grid;
  grid-template-columns: 1.4fr 0.95fr 1.05fr 1.35fr;
  gap: 50px;
  padding: 0 0 55px 0;
  align-items: start;
  width: 100%;
  box-sizing: border-box;
}

/* Reset default WordPress widget margins — CRITICAL: min-width:0 fixes grid overflow */
.footer-main-widgets .widget {
  margin: 0;
  padding: 0;
  min-width: 0;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

/* Also target inner widget wrappers */
.footer-main-widgets .textwidget,
.footer-main-widgets .custom-html-widget,
.footer-main-widgets .menu {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  box-sizing: border-box;
}

/* Column Headings (Quick Links, Our Services, Contact Us) */
.footer-main-widgets .footer-widget-title,
.footer-col-4 .footer-col-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--color-accent, #d49b5e);
  margin: 0 0 24px 0;
  padding: 0;
}

/* Remove default underline or before/after styles */
.footer-main-widgets .footer-widget-title::after,
.footer-col-4 .footer-col-title::after {
  display: none !important;
}

/* ------------------------------------------------
   COLUMN 1: Brand Info & Socials
   ------------------------------------------------ */
.footer-col-1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-card {
  display: inline-block;
  background: #ffffff;
  border-radius: 6px;
  padding: 10px 18px;
  margin-bottom: 22px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.footer-logo-link {
  text-decoration: none;
  display: block;
}

.footer-logo-card .footer-logo-img {
  display: block;
  max-width: 220px;
  max-height: 55px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.footer-tagline {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 12px 0;
  line-height: 1.4;
  letter-spacing: 0.2px;
}

.footer-desc {
  font-size: 17px;
  line-height: 1.6;
  color: #d1cac0;
  margin: 0 0 24px 0;
  max-width: 360px;
}

/* Social Media Icons */
.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social-icons .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.footer-social-icons .social-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
  filter: invert(1) brightness(2);
  transition: transform 0.3s ease, filter 0.3s ease;
  position: relative;
  z-index: 1;
}

.footer-social-icons .social-icon:hover {
  background: var(--color-accent, #c09440);
  border-color: var(--color-accent, #c09440);
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 25px rgba(192, 148, 64, 0.45);
}

.footer-social-icons .social-icon:hover img {
  filter: invert(1) brightness(10);
  transform: scale(1.1);
}

/* ------------------------------------------------
   COLUMNS 2 & 3: Navigation Menus (Quick Links & Services)
   ------------------------------------------------ */
.footer-main-widgets .widget_nav_menu ul.menu,
.footer-main-widgets .widget_nav_menu ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-main-widgets .widget_nav_menu ul.menu li,
.footer-main-widgets .widget_nav_menu ul li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.footer-main-widgets .widget_nav_menu ul.menu li a,
.footer-main-widgets .widget_nav_menu ul li a {
  color: #d1cac0;
  font-size: 17px;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-main-widgets .widget_nav_menu ul.menu li a:hover,
.footer-main-widgets .widget_nav_menu ul li a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

/* ------------------------------------------------
   COLUMN 4: Contact Us Items
   ------------------------------------------------ */
.footer-col-4 {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
}

.footer-contact-item:first-child {
  padding-top: 0;
}

.footer-contact-item .contact-icon {
  flex-shrink: 0;
  margin-top: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-contact-item .contact-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.footer-contact-item .contact-text {
  font-size: 17px;
  line-height: 1.5;
  color: #d1cac0;
}

.footer-contact-item .contact-text p {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  color: #d1cac0;
}

.footer-contact-item .contact-text a {
  color: #d1cac0;
  text-decoration: none;
  font-size: 17px;
  transition: color 0.2s ease;
}

.footer-contact-item .contact-text a:hover {
  color: #ffffff;
}

.footer-contact-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.12);
  display: block;
  max-width: 100%;
  align-self: stretch;
  flex-shrink: 0;
}

/* ------------------------------------------------
   BOTTOM BAR (Copyright & Links)
   ------------------------------------------------ */
.footer-bottom-row {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px 0 28px 0;
}

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

.footer-bottom-row .copyright {
  margin: 0;
  font-size: 15px;
  color: #a8a196;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-bottom-links a {
  color: #a8a196;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

.footer-bottom-links .sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 14px;
}

/* Large Tablet */
@media (max-width: 1200px) {
  .custom-footer .footer-container {
    padding: 0 40px;
  }

  .footer-main-widgets {
    gap: 35px;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .custom-footer .footer-container {
    padding: 0 30px;
  }

  .footer-main-widgets {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding-bottom: 45px;
  }
}

/* Small Tablet */
@media (max-width: 768px) {
  .custom-footer {
    padding: 55px 0 0 0;
  }

  .custom-footer .footer-container {
    padding: 0 24px;
  }

  .footer-main-widgets {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    padding-bottom: 40px;
  }

  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* Mobile */
@media (max-width: 550px) {
  .custom-footer {
    padding: 45px 0 0 0;
  }

  .custom-footer .footer-container {
    padding: 0 18px;
  }

  .footer-main-widgets {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 35px;
  }

  .footer-col-1,
  .footer-col-4 {
    width: 100%;
  }

  .footer-social-icons {
    gap: 12px;
  }

  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer-bottom-row {
    padding: 20px 0 24px 0;
  }
}