/* Global CSS variables, basic resets, and common styling */
html {
  scroll-behavior: smooth;
}

/* Global Font Override */
body,
p,
a,
li,
blockquote,
.service-card-content p,
.service-card-link {
  font-family: 'IBM Plex Sans', sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.service-card-content h4 {
  font-family: 'Playfair Display', serif !important;
}

:root {
  /* Brand Colors */
  --color-primary: #111;
  /* Dark Brown */
  --color-primary-dark: #583316;
  /* Very Dark Brown */
  --color-accent: #c16f24;
  /* Gold */
  --color-accent-light: #8c7659;
  /* Light Gold */
  --color-gray: #666;

  /* 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: 'IBM Plex Sans', 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: 45px;
  height: 45px;
  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: 16px;
  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) !important;
  padding-left: 26px;
  box-shadow: inset 4px 0 0 0 var(--color-accent);
}

/* 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: 650px;
  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: #332012;
  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: #332012;
  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-dark);
  color: var(--color-white) !important;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  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;
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

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

.splide__arrow:focus,
.splide__arrow:active,
.splide__arrow:focus-visible {
  background-color: rgba(255, 255, 255, 0.7) !important;
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.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) {
  .header-top-row .header-container {
    padding: 5px 15px !important;
  }

  .header-logo img {
    max-width: 160px;
  }

  .mobile-menu-toggle {
    padding: 2px 4px !important;
  }

  .mobile-menu-toggle svg {
    width: 20px;
    height: 20px;
  }

  .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: 30px 0;
  }

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

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

  @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%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #333;
  padding: 20px 0;
}

.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: 40px 0 50px 0;
  /* Increased padding to accommodate absolute badge */
  background-color: #fcfbfa;
  /* Slightly off-white/warm background if needed */
}

.about-grid {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: center;
}

.about-image-col,
.about-content-col {
  flex: 1 1 50%;
}

.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: -40px;
  left: 50px;
  background: transparent;
  width: 400px;
  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: 16px;
  font-weight: 600;
  color: var(--color-accent, #c09440);
  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: var(--color-accent);
  /* 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);
  }
}



@media (max-width: 991px) {
  .about-grid {
    flex-direction: column-reverse;
    gap: 40px;
  }

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

  .google-reviews-badge {
    left: 20px;
    right: auto;
    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;
  }
}

/* Custom styling for About Us button ONLY */
.home-about-section .hero-btn {
  background-color: var(--color-primary-dark) !important;
  border: 1px solid var(--color-accent) !important;
  color: var(--color-white) !important;
}

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



@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 10px 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: 16px;
  margin-bottom: 15px;
}



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

/* User can add span tag in ACF for gold text */
.explore-header-text .section-title span {
  color: var(--color-accent);
}

.decorative-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px 0 15px 0;
  /* Pulls the divider up closer to the title globally */
}

.decorative-divider::before,
.decorative-divider::after {
  content: "";
  display: inline-block;
  width: 80px;
  height: 1px;
  background-color: var(--color-accent);
}

.decorative-divider span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: var(--color-accent);
  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: 'Playfair Display', 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: 30px 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: 30px;
  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: var(--color-accent);
}

.decorative-divider--left {
  justify-content: flex-start !important;
  margin: 0 0 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;
  }

  .lampshade-content-col {
    text-align: center;
  }

  .lampshade-section-icon {
    display: block;
    margin: 0 auto 20px auto;
  }

  .decorative-divider--left {
    justify-content: center !important;
  }

  .decorative-divider--left::before {
    width: 80px !important;
  }

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

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

@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-top: 30px;
}

.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-dark);
  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;
  }
}


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

.shq-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #f2e2c4;
  border-radius: 12px;
  padding: 15px 50px;
  background-color: #faf1ea;
  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);
}

/* ================================================
   ABOUT US PAGE CTA BUTTONS
   ================================================ */

.shq-btn--link,
.shq-btn--link:link,
.shq-btn--link:visited,
.shq-btn--link:focus,
.shq-btn--link:active {
  background-color: #c76d22 !important;
  color: #ffffff !important;
  border: 1px solid #c76d22 !important;
  padding: 15px 30px !important;
  text-decoration: none !important;
  box-shadow: none !important;
  outline: none !important;
  text-transform: uppercase !important;
}

.shq-btn--link:hover {
  background-color: #a65a1c !important;
  border-color: #a65a1c !important;
  color: #ffffff !important;
}

.shq-btn--outline,
.shq-btn--outline:link,
.shq-btn--outline:visited,
.shq-btn--outline:focus,
.shq-btn--outline:active {
  background: transparent !important;
  color: #c76d22 !important;
  border: 1px solid #c76d22 !important;
  padding: 15px 30px !important;
  text-decoration: none !important;
  box-shadow: none !important;
  outline: none !important;
  text-transform: uppercase !important;
}

.shq-btn--outline:hover {
  background-color: #c76d22 !important;
  color: #ffffff !important;
  border-color: #c76d22 !important;
}

/* 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: 40px 0;
}

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

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

.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: 10px;
}

.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 25px 0 !important;
  }

  .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 25px 0 !important;
}

.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;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-excerpt p {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.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: 30px 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: #161A1D;
  /* Deep warm dark-brown background matching screenshot */
  color: #e5dfd3;
  padding: 65px 0 0 0;
  font-family: 'Playfair Display', 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;
  flex-wrap: wrap;
  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);
}

.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: 30px;
  height: 30px;
  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;
  }


}

/* ================================================
   FAQ SECTION
   ================================================ */

.faq-section {
  background: #ffffff;
  padding: 40px 0;
  width: 100%;
}

.faq-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 100px;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* ── Left Image ──────────────────────────────── */
.faq-image-wrap {
  flex: 0 0 30%;
  max-width: 30%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}



/* ── Right Content ───────────────────────────── */
.faq-content {
  flex: 1;
  min-width: 0;
}

/* ── Header ──────────────────────────────────── */
.faq-header {
  margin-bottom: 30px;
  text-align: center;
}

.faq-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent, #c09440);
  margin-bottom: 12px;
}

.faq-main-title,
.testimonials-title {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-weight: 700;
  color: var(--color-primary, #3b2c17);
  line-height: 1.15;
  margin: 0 0 10px 0;
}

.faq-main-title span,
.testimonials-title span {
  color: var(--color-accent, #c09440);
}

.faq-divider {
  margin: 12px auto 16px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.faq-divider-line {
  height: 1px;
  width: 60px;
  background: var(--color-accent);
}

.faq-divider svg {
  opacity: 0.9;
}

.faq-desc {
  font-size: 15px;
  color: var(--color-text-muted, #666);
  line-height: 1.75;
  margin: 0 auto 30px auto;
  text-align: center;
  max-width: 580px;
}


/* ── FAQ List ────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid #e8e0d0;
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(192, 148, 64, 0.12);
  border-color: #d4b870;
}

/* Dark brown numbered box */
.faq-num-box {
  flex: 0 0 85px;
  background: var(--color-primary-dark);
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
  min-height: 80px;
  font-family: 'Playfair Display', serif;
}

/* Gold vertical divider line */
.faq-item-divider {
  width: 2px;
  background: #d4b870;
  flex-shrink: 0;
  margin: 22px 0 22px 28px;
}

/* Question & Answer */
.faq-item-body {
  padding: 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-question {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary, #3b2c17);
  margin: 0 0 8px 0;
  line-height: 1.4;
}


.faq-answer {
  font-size: 15px;
  color: var(--color-text-muted, #666);
  line-height: 1.65;
  margin: 0;
}


/* ── Responsive ──────────────────────────────── */
@media (max-width: 900px) {
  .faq-container {
    flex-direction: column;
    gap: 40px;
    padding: 0 24px;
  }

  .faq-image-wrap {
    flex: none;
    max-width: 260px;
    margin: 0 auto;
  }

  .faq-main-title,
  .testimonials-title {
    font-size: 30px;
  }
}

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

  .faq-main-title,
  .testimonials-title {
    font-size: 26px;
  }

  .faq-num-box {
    flex: 0 0 44px;
    font-size: 13px;
  }

  .faq-item-body {
    padding: 14px 16px;
  }

  .faq-question {
    font-size: 14px;
  }
}

/* ================================================
   ELEGANT GLASSMORPHISM DROPDOWN (CUSTOM HEADER)
   ================================================ */

.primary-navigation .sub-menu {
  /* Glassmorphism Background */
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;

  /* Borders and Shadow */
  border: 1px solid rgba(192, 148, 64, 0.3) !important;
  border-top: 3px solid var(--color-accent, #c09440) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 4px 15px rgba(192, 148, 64, 0.15) !important;
  border-radius: 0 0 8px 8px !important;

  /* Layout */
  padding: 10px 0 !important;
  min-width: 250px !important;

  /* Smooth Fade In */
  transform-origin: top;
  animation: dropdownFadeIn 0.3s ease-out forwards;
}

@keyframes dropdownFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Submenu Items */
.primary-navigation .sub-menu li a {
  color: var(--color-primary, #3b2c17) !important;
  font-family: 'Playfair Display', serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  padding: 14px 24px !important;
  transition: all 0.3s ease !important;
  position: relative;
  background: transparent !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
  display: block;
}

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

/* Hover Glowing Text & Underline */
.primary-navigation .sub-menu li a:hover {
  color: var(--color-accent, #c09440) !important;
  background: rgba(192, 148, 64, 0.05) !important;
  padding-left: 32px !important;
  /* Slight shift to right */
  text-shadow: 0 0 10px rgba(192, 148, 64, 0.3) !important;
}

/* Custom glowing left line on hover */
.primary-navigation .sub-menu li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: var(--color-accent, #c09440);
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(192, 148, 64, 0.8);
}

.primary-navigation .sub-menu li a:hover::before {
  height: 60%;
}

/* ================================================
   ELEGANT DROPDOWN ARROW ICON
   ================================================ */

.primary-navigation .menu-item-has-children>a {
  display: inline-flex;
  align-items: center;
}

/* Add custom glowing chevron arrow */
.primary-navigation .menu-item-has-children>a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: all 0.3s ease;
}

/* Rotate and glow on hover */
.primary-navigation .menu-item-has-children:hover>a::after {
  transform: translateY(2px) rotate(225deg);
  border-color: var(--color-accent, #c09440);
  filter: drop-shadow(0 0 5px rgba(192, 148, 64, 0.6));
}

/* ================================================
   SHARED SUBTITLE STYLES (FAQ, BLOG, TESTIMONIALS, EXPLORE)
   Matches the diamond subtitle style
   ================================================ */

.faq-eyebrow,
.blog-header .faq-subtitle-wrap,
.testimonials-header .faq-subtitle-wrap,
.explore-header-text .section-subtitle {
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: var(--color-accent, #c09440) !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 2px !important;
  font-size: 16px !important;
  margin-bottom: 15px !important;
}

.faq-eyebrow::before,
.blog-header .faq-subtitle-wrap::before,
.testimonials-header .faq-subtitle-wrap::before,
.explore-header-text .section-subtitle::before {
  content: "";
  display: inline-block;
  width: 60px;
  height: 10px;
  margin: 0 15px;
  /* Diamond on the right, line on the left */
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10"><rect width="5" height="5" x="2.5" y="2.5" fill="%23c09440" transform="rotate(45 5 5)"/></svg>') right center no-repeat,
    linear-gradient(to right, var(--color-accent, #c09440), var(--color-accent, #c09440)) left center / calc(100% - 10px) 1px no-repeat;
}

.faq-eyebrow::after,
.blog-header .faq-subtitle-wrap::after,
.testimonials-header .faq-subtitle-wrap::after,
.explore-header-text .section-subtitle::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 10px;
  margin: 0 15px;
  /* Diamond on the left, line on the right */
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10"><rect width="5" height="5" x="2.5" y="2.5" fill="%23c09440" transform="rotate(45 5 5)"/></svg>') left center no-repeat,
    linear-gradient(to right, var(--color-accent, #c09440), var(--color-accent, #c09440)) right center / calc(100% - 10px) 1px no-repeat;
}

/* Hide the old empty spans used in the HTML */
.faq-subtitle-line {
  display: none !important;
}

/* ================================================
   WHY TRUST US SECTION (ABOUT US PAGE)
   ================================================ */

.why-trust-section {
  padding: 50px 0 30px 0;
  background-color: #faf9f6;
  /* Very light off-white background as per image */
}

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



/* Grid Layout */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

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

/* Card Styling */
.trust-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

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

.trust-icon-wrap {
  width: 80px;
  height: 80px;
  background-color: #271a0c;
  /* Dark brown background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  position: relative;
}

/* Subtle glow around the icon circle */
.trust-icon-wrap::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 1px solid rgba(192, 148, 64, 0.3);
}

.trust-icon-wrap img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.trust-card h4 {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.trust-card p {
  font-size: 16px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ================================================
   OUR SERVICES SECTION (ABOUT US PAGE)
   ================================================ */

.our-services-section {
  padding: 30px 0 30px 0;
  background-color: #ffffff;
}

.our-services-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 10px auto;
}

.our-services-header .section-title span {
  color: var(--color-accent, #c09440);
  font-style: italic;
  font-family: "Playfair Display", serif;
}

/* Services Grid - 3 columns */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  /* Increased gap slightly for 3 columns */
}

.premium-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
  height: 100%;
  text-align: center;
  border-bottom: 4px solid var(--color-accent);
}

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

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

/* Service Card Design */
.service-card {
  background: #ffffff;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.service-card-img-wrap {
  position: relative;
  height: 280px;
  width: 100%;
  overflow: hidden;
  background-color: #f8f8f8;
}

.service-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  /* Smooth transition for zoom */
}

.service-card:hover .service-card-img-wrap img {
  transform: scale(1.1);
  /* Zoom image on hover */
}

.service-card-icon {
  width: 80px;
  /* Match Why Trust Us section */
  height: 80px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--color-accent, #c09440);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  margin: -40px auto 0 auto;
  /* Pulls it up to overlap the image */
  position: relative;
  z-index: 2;
  /* Stays above the image */
}

.service-card:hover .service-card-icon {
  box-shadow: 0 8px 20px rgba(192, 148, 64, 0.2);
}

.service-card-icon img {
  width: 55px;
  /* Match Why Trust Us section */
  height: 55px;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  /* Bouncy transition */
}

.service-card:hover .service-card-icon img {
  transform: scale(1.15) rotate(5deg);
  /* Slight pop and tilt on hover */
}

.service-card-content {
  padding: 40px 20px 25px 20px;
  /* Reduced bottom padding */
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-content h4 {
  font-size: 22px;
  /* Set to 22px as requested */
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.service-card-content p {
  font-size: 16px;
  /* Set to 16px */
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
  /* Line clamping */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card-link,
.service-card-link:link,
.service-card-link:visited,
.service-card-link:focus,
.service-card-link:active {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-accent) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  outline: none !important;
  box-shadow: none !important;
  transition: color 0.3s ease, transform 0.3s ease;
}

.service-card:hover .service-card-link {
  color: #a37c35;
  transform: translateX(5px);
  /* Slide right on hover */
}

/* ================================================
   LOCATIONS SECTION (ABOUT US PAGE)
   ================================================ */

.locations-section {
  padding: 50px 0 30px 0;
  background-color: #fffbf7;
  /* Very light pink/orange background */
}

.locations-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  /* Reduced gap to accommodate the divider */
  align-items: center;
}

.locations-divider {
  width: 2px;
  background-color: var(--color-accent, #c09440);
  align-self: stretch;
  min-height: 200px;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.locations-divider::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, transparent, #ffe7a0, transparent);
  animation: scanLine 3s infinite linear;
}

@keyframes scanLine {
  0% {
    top: -50%;
  }

  100% {
    top: 150%;
  }
}

.locations-left {
  flex: 1;
  min-width: 300px;
}

.locations-left .section-subtitle {
  font-size: 18px;
  /* Requested size */
  margin-bottom: 15px;
  display: block;
  /* Ensure it behaves like a block element */
}

.locations-left .section-title {
  margin-bottom: 20px;
  text-align: left;
}

.locations-left .section-title span {
  color: var(--color-accent, #c09440);
  font-style: italic;
  font-family: "Playfair Display", serif;
}

.locations-right {
  flex: 1.5;
  min-width: 300px;
}

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

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

@media (max-width: 991px) {
  .locations-container {
    flex-direction: column;
    gap: 40px;
  }

  .locations-divider {
    display: none;
    /* Hide on mobile/tablet to save space */
  }

  .locations-left,
  .locations-right {
    width: 100%;
    text-align: center;
  }

  .locations-left .section-title {
    text-align: center;
  }
}

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

.location-card {
  background: #ffffff;
  border-radius: 6px;
  padding: 18px 22px;
  /* Slightly increased padding for larger text */
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.06);
}

.location-card img {
  width: 26px;
  /* Slightly increased icon size to match 20px text */
  height: 26px;
  object-fit: contain;
}

.location-card span {
  font-size: 20px;
  /* Increased to 20px as requested */
  font-weight: 700;
  /* Bold for good look */
  color: #1a1a1a;
}

/* =========================================
   HOW WE WORK SECTION
   ========================================= */
.how-we-work-section {
  padding: 40px 0 30px 0;
  background-color: #ffffff;
  overflow: hidden;
}

.hww-header {
  text-align: center;
  margin-bottom: 30px;
  /* Reduced from 50px to reduce gap */
}

.hww-header .explore-header-text {
  margin-bottom: 5px;
  /* Pulls title closer */
}

.hww-header .section-title {
  margin-top: 0;
  margin-bottom: 5px !important;
  /* Pulls title closer to the divider */
}

.hww-header .section-title span {
  color: var(--color-accent, #c09440);
  font-style: italic;
  font-family: "Playfair Display", serif;
}

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

.hww-card {
  padding: 20px 15px;
  position: relative;
  background: transparent;
  border: none;
}

/* Vertical divider only for text height */
.hww-card:not(:first-child)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 120px;
  /* Start below the icon */
  height: calc(100% - 120px);
  width: 1px;
  background-color: var(--color-accent);
  opacity: 0.3;
}

.hww-card:hover::before {
  opacity: 0.3;
  /* Keep divider visible on hover */
}

.hww-icon-wrap {
  position: relative;
  margin-bottom: 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.hww-icon-circle {
  width: 100px;
  height: 100px;
  background-color: #2b1d14;
  /* Dark brown background as requested */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect on icon */
.hww-card:hover .hww-icon-circle {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(43, 29, 20, 0.4);
}

.hww-icon-wrap img {
  width: 50px !important;
  height: 50px !important;
  object-fit: contain;
  filter: brightness(0) invert(1);
  /* Make the black icon white */
}

.hww-dotted-arrow {
  position: absolute;
  top: 50px;
  /* Middle of the 100px circle */
  left: 115px;
  /* Start 15px right after the circle */
  width: calc(70% - 100px);
  /* Leave more gap before the next circle */
  height: 0;
  border-top: 2px dotted var(--color-accent);
  transform: translateY(-50%);
  z-index: 1;
}

.hww-dotted-arrow::after {
  content: '';
  position: absolute;
  right: -8px;
  top: -8px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid var(--color-accent);
}

.hww-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  gap: 15px;
  margin-bottom: 15px;
}

.hww-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  min-width: 35px;
  background: var(--color-accent);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50%;
  margin-top: -3px;
  /* slight tweak to align with text */
}

.hww-step-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
}

.hww-step-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  text-align: left;
  padding-left: 50px;
  margin: 0;
  /* 35px number + 15px gap */
}

.pull-chain-wrapper {
  position: fixed;
  top: -150vh;
  /* Hide it initially by pushing it way up */
  right: 40px;
  z-index: 99;
  /* Lowered from 9999 so it can go behind sticky headers if needed */
  /* Make the wrapper itself transparent to mouse events */
  pointer-events: none;
  /* Prevent mobile tap highlight covering the screen */
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  transition: top 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 100vh;
  /* Wrapper takes full screen height */
  width: 40px;
}

.pull-chain-wrapper.visible {
  top: 0;
}

.pull-chain-inner {
  position: relative;
  /* Handle will rest 100px from the bottom of the screen */
  height: calc(100vh - 100px);
  width: 100%;
  transform-origin: top center;
}

.pull-chain-wrapper.visible .pull-chain-inner {
  animation: gentleSway 4s ease-in-out infinite alternate;
}

@keyframes gentleSway {
  0% {
    transform: rotate(-1deg);
  }

  100% {
    transform: rotate(1deg);
  }
}

.pull-chain-beads {
  position: absolute;
  bottom: 38px;
  /* Rest just above the handle */
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  /* Extends 200vh UPWARDS from the handle */
  height: 200vh;
  background-image: repeating-radial-gradient(circle at 50% 4px,
      #fff8d6 0,
      #c09440 1.5px,
      #5a4200 2px,
      transparent 2.5px,
      transparent 8px);
  background-size: 4px 8px;
  background-position: bottom center;
}

/* A thin line connecting the beads to make it look like a real chain */
.pull-chain-beads::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: #5a4200;
  z-index: -1;
}

.pull-chain-handle {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 48px;
  cursor: pointer;
  pointer-events: auto;
  /* Make ONLY the handle clickable */
  /* Overlap with beads slightly */
  transition: filter 0.3s ease;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.bulb-glass {
  transition: fill 0.3s ease;
}

.bulb-filament {
  transition: opacity 0.3s ease, stroke 0.3s ease;
  opacity: 0.3;
}

/* Glow effect when hovering over the LED bulb itself */
.pull-chain-handle:hover {
  filter: drop-shadow(0 8px 16px rgba(255, 234, 0, 0.6)) brightness(1.1);
}

.pull-chain-handle:hover .bulb-glass {
  fill: url(#glowGradient);
}

.pull-chain-handle:hover .bulb-filament {
  opacity: 1;
  stroke: #ffffff;
}

/* Pull Animation */
.pull-chain-wrapper.pulled {
  animation: pullSnap 0.4s ease forwards;
}

@keyframes pullSnap {
  0% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(12px);
  }

  60% {
    transform: translateY(-3px);
  }

  80% {
    transform: translateY(1px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .pull-chain-wrapper {
    right: 5px;
    /* Push to the very edge so it doesn't overlap the hamburger menu */
  }
}

/* Hide default Astra scroll to top button */
#ast-scroll-top {
  display: none !important;
}

/* --- Premium LED Products & Services Section --- */
.premium-products-section {
  padding: 30px 0;
  background-color: #fbfbfb;
}

.premium-desc {
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.premium-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

/* Top row: 5 cards */
.premium-grid .premium-card {
  width: calc(20% - 16px);
}

/* Bottom row: 4 cards */
.premium-grid .premium-card:nth-child(n+6) {
  width: calc(25% - 30px);
}

.premium-grid .premium-card:nth-child(6) {
  margin-left: 30px;
}

.premium-grid .premium-card:nth-child(9) {
  margin-right: 30px;
}

/* Premium Card specific styling (Typography inherited from service-card-content) */
.premium-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
  height: 100%;
  text-align: center;
}

.premium-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.premium-card-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

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

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

.premium-card-icon {
  width: 50px;
  height: 50px;
  background: #5c3817;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 155px;
  /* Half overlapping (180 - 25) */
  left: 50%;
  transform: translateX(-50%);
  border: 3px solid #fff;
  z-index: 2;
}

.premium-card-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {

  .premium-grid .premium-card,
  .premium-grid .premium-card:nth-child(n+6) {
    width: calc(33.333% - 14px);
  }

  .premium-grid .premium-card:nth-child(6),
  .premium-grid .premium-card:nth-child(9) {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 768px) {

  .premium-grid .premium-card,
  .premium-grid .premium-card:nth-child(n+6) {
    width: calc(50% - 10px);
  }
}

@media (max-width: 480px) {

  .premium-grid .premium-card,
  .premium-grid .premium-card:nth-child(n+6) {
    width: 100%;
  }
}

/* ==========================================================================
   MAIN GLOBAL RESPONSIVENESS (TYPOGRAPHY, ALIGNMENT & PADDING)
   ========================================================================== */
@media (max-width: 768px) {

  /* Fix content bleeding on specific homepage sections */
  section.testimonials-section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  section.blog-section {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }

  /* Fix blog slider excessive side spacing on mobile */
  .blog-splide {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .blog-splide .splide__track {
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    clip-path: none !important;
  }

  .blog-splide .splide__list {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
  }

  .ast-breadcrumbs,
  .ast-breadcrumbs-inner,
  .ast-breadcrumbs * {
    font-size: 14px !important;
  }

  /* Section Title & Subtitle Alignment and Size */
  .section-title,
  .faq-main-title,
  h2.section-title {
    font-size: 32px !important;
    text-align: center !important;
    line-height: 1.3 !important;
  }

  /* Make sure span in title has the same font size and doesn't get shrunk */
  .section-title span,
  .explore-header-text .section-title span {
    font-size: inherit !important;
  }

  .section-subtitle,
  .faq-eyebrow,
  .explore-header-text span {
    font-size: 14px !important;
    text-align: center !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Center Dividers */
  .decorative-divider,
  .faq-divider {
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center !important;
  }

  /* Center Buttons */
  .hero-btn,
  .button-gold,
  .ba-button-wrap a,
  .btn-wrap a {
    display: table !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .ba-button-wrap,
  .faq-header,
  .explore-header-text,
  .section-header {
    text-align: center !important;
  }
}

@media (max-width: 520px) {

  /* Smaller screens */
  .ast-breadcrumbs,
  .ast-breadcrumbs-inner,
  .ast-breadcrumbs * {
    font-size: 12px !important;
  }

  .section-title,
  .faq-main-title,
  h2.section-title {
    font-size: 26px !important;
  }

  .banner-content h1 {
    font-size: 25px !important;
  }

  .custom-page-banner {
    height: auto !important;
    padding: 15px 0 !important;
  }

  /* Remove side lines from subtitles on small screens */
  .faq-eyebrow::before,
  .faq-eyebrow::after,
  .blog-header .faq-subtitle-wrap::before,
  .blog-header .faq-subtitle-wrap::after,
  .testimonials-header .faq-subtitle-wrap::before,
  .testimonials-header .faq-subtitle-wrap::after,
  .explore-header-text .section-subtitle::before,
  .explore-header-text .section-subtitle::after {
    display: none !important;
  }

  /* Make sure span in title has the same font size */
  .section-title span {
    font-size: inherit !important;
  }
}


/* ============================================ Contact Us Page Started ====================================== */

/*==================================================
                CONTACT SECTION
==================================================*/

.contact-us-section {
  position: relative;
  overflow: hidden;
  padding: 50px 0px;
  /*  background: #FFFFFF; */
}


/*==================================================
                    GRID
==================================================*/

.contact-info-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

/*==================================================
                    CARD
==================================================*/

.contact-info-box {
  position: relative;
  overflow: hidden;
  padding: 45px 35px;
  text-align: center;
  border-radius: 18px;

  /* Changed to Light Cream background */
  background: #FDFBF7;
  backdrop-filter: blur(8px);

  /* Subtle rust-orange border */
  border: 1px solid rgba(184, 107, 62, 0.15);
  transition: .45s;

  /* Softer shadow for the light theme */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

/* Rust-Orange Top Border */
.contact-info-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #D48B5D, #B86B3E, #D48B5D);
  transform: scaleX(0);
  transition: .4s;
  transform-origin: left;
}

.contact-info-box:hover::before {
  transform: scaleX(1);
}

.contact-info-box:hover {
  transform: translateY(-10px);
  border-color: #B86B3E;
  box-shadow:
    0 25px 55px rgba(0, 0, 0, 0.08),
    0 0 25px rgba(184, 107, 62, 0.12);
}

/*==================================================
                    ICON
==================================================*/

.contact-info-box .contact-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 25px auto;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: rgba(184, 107, 62, 0.1);
  /* Light rust background */
  transition: .4s;
  position: relative;
}

/* Subtle ring that appears on hover */
.contact-info-box .contact-icon::after {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(184, 107, 62, 0.4);
  opacity: 0;
  transform: scale(0.8) rotate(0deg);
  transition: .5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-box:hover .contact-icon::after {
  opacity: 1;
  transform: scale(1) rotate(45deg);
}

.contact-info-box .contact-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  transition: .4s;
  /* Lighter shadow matching the rust accent */
  filter: drop-shadow(0 5px 8px rgba(184, 107, 62, 0.15));
}

.contact-info-box:hover .contact-icon {
  background: rgba(184, 107, 62, 0.2);
  transform: translateY(-5px);
}

.contact-info-box:hover .contact-icon img {
  transform: scale(1.15);
}

/*==================================================
                    TITLE
==================================================*/

.contact-info-box h4 {
  /* Dark brown color from the 2nd image */
  color: #3B2C21;
  font-size: 30px;
  margin-bottom: 15px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}

/*==================================================
                    LINK
==================================================*/

.contact-link {
  display: inline-block;
  /* Soft medium-brown for normal text */
  color: #5A4F46;
  text-decoration: none;
  font-size: 20px;
  line-height: 1.8;
  transition: .3s;
  word-break: break-word;
  /* Prevents long email from overflowing */
}

.contact-link:hover {
  /* Rust-Orange color on hover */
  color: #B86B3E;
}

/*==================================================
                RESPONSIVE
==================================================*/

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

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

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .contact-info-box {
    padding: 35px 25px;
  }



  .contact-info-box h4 {
    font-size: 26px;
  }
}

/*==================================================
                CONTACT FORM SECTION
==================================================*/

.contact-form-area {
  padding: 40px 0;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  max-width: 1500px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 50px 60px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(184, 107, 62, 0.1);
}

.contact-form-content {
  padding-right: 40px;
  border-right: 1px solid rgba(184, 107, 62, 0.3);
  /* The divider */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-content .section-title {
  margin-bottom: 10px;
}

.contact-form-content .section-title span {
  color: var(--color-accent);
}

.form-description {
  margin-top: 15px;
  font-size: 18px;
  color: #5A4F46;
  line-height: 1.8;
}

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

/* Form Styles */
.custom-contact-form .form-row {
  display: block;
}

.custom-contact-form .form-group {
  width: 100%;
  margin-bottom: 15px;
}

.custom-contact-form label {
  display: block;
  font-size: 18px;
  color: #3B2C21;
  font-weight: 700;
  margin-bottom: 8px;
  /* Slight margin looks good */
  font-family: "Cormorant Garamond", serif;
}

/* Hide auto-inserted <br> tags from Contact Form 7 */
.custom-contact-form .form-group br {
  display: none;
}

.custom-contact-form .wpcf7-form-control-wrap {
  display: block;
}

.custom-contact-form input[type="text"],
.custom-contact-form input[type="email"],
.custom-contact-form input[type="tel"],
.custom-contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(184, 107, 62, 0.2);
  border-radius: 8px;
  background: #FDFBF7;
  font-size: 16px;
  color: #333;
  outline: none;
  transition: all 0.3s ease;
}

.custom-contact-form textarea {
  height: 120px;
  resize: vertical;
}

.custom-contact-form input:focus,
.custom-contact-form textarea:focus {
  outline: none !important;
  border-color: #B86B3E !important;
  box-shadow: 0 0 10px rgba(184, 107, 62, 0.15) !important;
}

.custom-contact-form input[type="submit"] {
  background: #B86B3E;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

.custom-contact-form input[type="submit"]:hover {
  background: #3B2C21;
}

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

  .contact-form-content {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid rgba(184, 107, 62, 0.3);
    padding-bottom: 40px;
  }

  .contact-form-wrapper {
    padding-left: 0;
  }
}

@media(max-width: 767px) {
  .contact-form-grid {
    padding: 30px 20px;
  }
}

/* 1333px Breakpoint Layout Fixes */
@media (max-width: 1333px) {

  /* About Us Section - Reverse column order */
  .about-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px;
  }

  .about-content-col {
    order: -1;
    margin-bottom: 40px;
  }

  .about-image-col {
    order: 1;
  }

  /* CTA Strip Section (Features) - Wrap to 2 columns */
  .cta-strip-inner {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .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;
    border-right: none;
  }

  .cta-strip-item:nth-last-child(2) {
    border-bottom: none;
  }
}

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

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

}

/* Mobile adjustments for CTA Strip */
@media (max-width: 767px) {
  .cta-strip-inner {
    grid-template-columns: 1fr !important;
  }

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

  .cta-strip-item {
    border-right: none !important;
  }

  .cta-strip-item:nth-last-child(2) {
    border-bottom: 1px solid var(--color-border) !important;
  }
}

/* Testimonials Spacing Fix */
.testimonials-splide {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

@media (max-width: 767px) {
  .testimonials-splide {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

/* Testimonial Read More */
.testimonial-text-content {
  min-height: 134px;
  /* Ensure 4 lines always fit precisely (4 * 27.2px + 25px margin) */
}

.testimonial-text-content.is-truncated {
  overflow: hidden;
}

.testimonial-text-content.is-truncated p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 25px;
}

/* Position the button at the bottom right, masking the text behind it */
.testimonial-text-content.is-truncated+.read-more-btn {
  position: absolute;
  bottom: 30px;
  /* Offset to align with text due to p margin-bottom */
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 15%, rgba(255, 255, 255, 1) 100%) !important;
  padding-left: 20px !important;
  margin-bottom: 0;
}

.read-more-btn {
  display: inline-block;
  background: none !important;
  border: none !important;
  color: var(--color-accent) !important;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  padding: 0 !important;
  margin-bottom: 0px;
  text-decoration: underline;
}

.read-more-btn:hover,
.read-more-btn:focus,
.read-more-btn:active {
  background-color: transparent !important;
  color: var(--color-accent) !important;
  outline: none !important;
  box-shadow: none !important;
}

@media (max-width: 768px) {
  .testimonial-text-content {
    min-height: 125px;
  }
}

/* --- Mobile Responsiveness for How We Work --- */
@media (max-width: 991px) {
  .hww-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hww-dotted-arrow {
    display: none;
  }

  .hww-card:not(:first-child)::before {
    display: none;
  }

  .hww-icon-wrap {
    justify-content: center;
  }

  .hww-card-header {
    justify-content: center;
    text-align: center;
  }

  .hww-step-desc {
    text-align: center;
  }
}

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

  .our-services-section {
    padding: 20px 0;
  }
}

@media (max-width: 1600px) {
  .cta-strip-item {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}