/*
Theme Name: ITM
Theme URI: https://talukastents.com
Author: ITM Custom Theme
Author URI: https://talukastents.com
Description: Luxury Tent Manufacturer & Glamping WordPress Theme built for ITM / Taluka's Tents.
Version: 1.0.0
Text Domain: itm-theme
*/

/* ----------------------------------------------------
   DESIGN SYSTEM & VARIABLES
   ---------------------------------------------------- */
:root {
  --gold-primary: #CBAA6A;
  --gold-dark: #bfa27a;
  --gold-light: #dfcaa8;
  --gold-bg: rgba(197, 168, 128, 0.1);
  --navy-deep: #12142B;
  --navy-light: #161e31;
  --text-dark: #18171C;
  --text-light: #f8fafc;
  --text-muted: #18171C;
  --bg-white: #ffffff;
  --bg-cream: #F5F5F5;
  --bg-gray: #F5F5F5;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.05);
  --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.05), 0 4px 6px -4px rgb(0 0 0 / 0.05);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.05), 0 8px 10px -6px rgb(0 0 0 / 0.05);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Bricolage Grotesque', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.serif-font {
  font-family: 'Lora', serif;
  font-weight: 400 !important;
  color: #18171C;
}

.centered-h2 {
  max-width: 80%;
  margin: 0 auto;
}

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

img,
video {
  max-width: 100%;
  /* height: 100%; */
  display: block;
}

/* ----------------------------------------------------
   REUSABLE UTILITIES
   ---------------------------------------------------- */
.section {
  padding: 80px 5% 80px 5%;
  position: relative;
}

.single .guide-content>article {

  padding-top: 0 !important;

}


.section-offset {
  background-color: var(--bg-cream);
}

.section-dark {
  background-color: var(--navy-deep);
  color: var(--text-light);
}

.tagline {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-primary);
  margin-bottom: 12px;
  display: inline-block;
}

.heading-lg {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 24px;
  position: relative;
}

.heading-md {
  font-size: 2.25rem;
  line-height: 1.3;
  margin-bottom: 20px;
}

.text-desc {
  color: var(--text-dark);
  font-size: 1.03rem;
  max-width: 750px;
  margin-bottom: 30px;
}

.section-dark .text-desc {
  color: #94a3b8;
}

.crafts-container .text-desc {
  color: #fff;
}

/* Buttons */
.btn {
  font-family: 'Bricolage Grotesque', sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: capitalize;
  border-radius: 30px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gold {
  background-color: var(--gold-primary);
  color: var(--bg-white);
}

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

.btn-white {
  background-color: var(--bg-white);
  color: #404093;
  font-weight: 700;
}

.btn-dark {
  background-color: var(--navy-deep);
  color: var(--bg-white);
}

/* Chevron & Arrows */
.arrow-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.arrow-btn:hover {
  background-color: var(--gold-primary);
  color: var(--bg-white);
  border-color: var(--gold-primary);
}

/* Image Arrow Helpers */
.btn-arrow-img {
  width: 18px;
  height: auto;
  margin-left: 0px;
  vertical-align: middle;
  display: inline-block;
  transition: transform 0.3s ease;
}

a:hover .btn-arrow-img,
button:hover .btn-arrow-img {
  transform: translateX(4px);
}

/* =========================================================
   BUTTON HOVER ANIMATIONS (SAME AS TENT CATEGORY)
   ========================================================= */

/* === GOOGLE RATING CARD BUTTON === */
.google-rating-card .google-logo {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}



/* === ABOUT CUSTOM BTN === */
.about-custom-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.about-custom-btn::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease;
  border-radius: 50%;
  pointer-events: none;
}

.about-custom-btn:hover::before {
  transform: scale(1);
}

.about-custom-btn:hover {
  background: #b08b49 !important;
  box-shadow: 0 8px 30px rgba(203, 170, 106, 0.5), inset 0 2px 20px rgba(255, 255, 255, 0.2) !important;
}

/* === CUSTOM BTN NEW === */
.custom-btn-new {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.custom-btn-new::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease;
  border-radius: 50%;
  pointer-events: none;
}

.custom-btn-new:hover::before {
  transform: scale(1);
}

.custom-btn-new:hover {
  background: #b08b49 !important;
  box-shadow: 0 8px 30px rgba(203, 170, 106, 0.5), inset 0 2px 20px rgba(255, 255, 255, 0.2) !important;
}

/* === HOVER VIEW ALL (Accessories) === */
.hover-view-all {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.hover-view-all::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease;
  border-radius: 50%;
  pointer-events: none;
}

.hover-view-all:hover::before {
  transform: scale(1);
}

.hover-view-all:hover {
  background: #b08b49 !important;
  box-shadow: 0 8px 30px rgba(203, 170, 106, 0.5), inset 0 2px 20px rgba(255, 255, 255, 0.2) !important;
}

/* === INSTALLATION CTA LINK === */
.installation-cta-link {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}



/* === EXPERT CARD BTN === */
/* =========================================================
   EXPERT CARD BTN - EXACT HOVER EFFECT (AS PER REFERENCE)
   ========================================================= */
.expert-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 165px;
  height: 42px;
  padding: 0 24px;
  border: 1px solid rgba(62, 49, 40, .65);
  background: rgba(255, 255, 255, 0.08);
  color: #51422E;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .5px;
  transition: .35s;
  position: relative;
  overflow: hidden;
  font-family: 'Bricolage Grotesque', sans-serif;
  border-radius: 30px;
}

.expert-card-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .35),
      transparent);
  transition: .7s;
}

.expert-card-btn:hover::before {
  left: 120%;
}

.expert-card-btn:hover {
  background: #3E3128;
  border-color: #3E3128;
  color: #fff;
}

/* === MOBILE DRAWER BTN === */

/* === HERO BUTTONS === */
.hero-btn-contact {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.hero-btn-contact::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease;
  border-radius: 50%;
  pointer-events: none;
}

.hero-btn-contact:hover::before {
  transform: scale(1);
}

.hero-btn-contact:hover {
  background: #b08b49 !important;
  box-shadow: 0 8px 30px rgba(203, 170, 106, 0.5), inset 0 2px 20px rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
}

.hero-btn-quote {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.hero-btn-quote::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease;
  border-radius: 50%;
  pointer-events: none;
}

.hero-btn-quote:hover::before {
  transform: scale(1);
}

.hero-btn-quote:hover {
  background: #b08b49 !important;
  box-shadow: 0 8px 30px rgba(203, 170, 106, 0.5), inset 0 2px 20px rgba(255, 255, 255, 0.2) !important;
}

/* === BTN GOLD === */
.btn-gold {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.btn-gold::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease;
  border-radius: 50%;
  pointer-events: none;
}

.btn-gold:hover::before {
  transform: scale(1);
}

.btn-gold:hover {
  background: #b08b49 !important;
  box-shadow: 0 8px 30px rgba(203, 170, 106, 0.5), inset 0 2px 20px rgba(255, 255, 255, 0.2) !important;
}

/* === BTN OUTLINE === */
.btn-outline {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.btn-outline::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease;
  border-radius: 50%;
  pointer-events: none;
}

.btn-outline:hover::before {
  transform: scale(1);
}

.btn-outline:hover {
  background: #b08b49 !important;
  box-shadow: 0 8px 30px rgba(203, 170, 106, 0.5), inset 0 2px 20px rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
}

/* === BTN WHITE === */
.btn-white {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.btn-white::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease;
  border-radius: 50%;
  pointer-events: none;
}

.btn-white:hover::before {
  transform: scale(1);
}

.btn-white:hover {
  background: #b08b49 !important;
  box-shadow: 0 8px 30px rgba(203, 170, 106, 0.5), inset 0 2px 20px rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
}

/* === BTN DARK === */
.btn-dark {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.btn-dark::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease;
  border-radius: 50%;
  pointer-events: none;
}

.btn-dark:hover::before {
  transform: scale(1);
}

.btn-dark:hover {
  background: #b08b49 !important;
  box-shadow: 0 8px 30px rgba(203, 170, 106, 0.5), inset 0 2px 20px rgba(255, 255, 255, 0.2) !important;
}

/* === STORY BTN (Blog) === */
.blog-story-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.blog-story-btn::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease;
  border-radius: 50%;
  pointer-events: none;
}

.blog-story-btn:hover::before {
  transform: scale(1);
}

.blog-story-btn:hover {
  background: #b08b49 !important;
  box-shadow: 0 8px 30px rgba(203, 170, 106, 0.5), inset 0 2px 20px rgba(255, 255, 255, 0.2) !important;
}

/* ----------------------------------------------------
   HERO BANNER (SLIDER)
   ---------------------------------------------------- */
.hero-slider {
  height: calc(100vh - 76px) !important;
  position: relative;
  overflow: hidden;
  background-color: #0c1017;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-bottom-bar {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
  z-index: 10;
  color: var(--text-light);
  box-sizing: border-box;
}

.hero-bottom-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin: 0;
  width: 100%;
}

.hero-text-block {
  text-align: left;
  max-width: 60%;
}

.hero-title-main {
  font-family: 'Lora', serif;
  font-size: 2.1rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 8px;
  text-transform: uppercase;
  animation: fadeInUp 1s ease-out;
}

.hero-desc-sub {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 300;
  line-height: 1.4;
  animation: fadeInUp 1.2s ease-out;
}

.hero-buttons-block {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
  animation: fadeInUp 1.4s ease-out;
}

.hero-btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 30px;
  cursor: pointer;
}

.hero-btn-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: var(--gold-primary);
  color: #ffffff;
  border: 1px solid var(--gold-primary);
  border-radius: 30px;
  cursor: pointer;
}

/* Hero Center-Aligned Navigation Arrows */
.hero-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  opacity: 0.85;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  z-index: 25;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.hero-arrow-prev {
  left: 35px;
}

.hero-arrow-next {
  right: 35px;
}

.hero-arrow-btn:hover {
  opacity: 1;
  background: rgba(12, 16, 23, 0.8);
  border-color: rgba(203, 170, 106, 0.85);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-arrow-btn:active {
  transform: translateY(-50%) scale(0.96);
}

.hero-arrow-btn img {
  width: 20px;
  height: auto;
  display: block;
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
  transition: transform 0.25s ease;
}

@media (max-width: 991px) {
  .hero-arrow-prev {
    left: 18px;
  }

  .hero-arrow-next {
    right: 18px;
  }

  .hero-arrow-btn {
    width: 44px;
    height: 44px;
  }

  .hero-arrow-btn img {
    width: 17px;
  }
}

@media (max-width: 768px) {
  .hero-arrow-prev {
    left: 10px;
  }

  .hero-arrow-next {
    right: 10px;
  }

  .hero-arrow-btn {
    width: 38px;
    height: 38px;
  }

  .hero-arrow-btn img {
    width: 15px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.partners-section {
  background-color: var(--bg-white);
  padding: 0;
  border-bottom: 1px solid #e2e8f0;
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.partners-carousel-track {
  display: flex;
  width: max-content;
}

.partners-slide-wrapper {
  display: flex;
  flex-shrink: 0;
  animation: logoMarquee 25s linear infinite;
}

.partners-carousel-track:hover .partners-slide-wrapper {
  animation-play-state: paused;
}

.partner-panel {
  width: 250px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #e2e8f0;
  box-sizing: border-box;
  padding: 20px;
  background-color: var(--bg-white);
}

.partner-logo {
  max-height: 80px;
  max-width: 80%;
  height: auto;
  width: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: transform 0.3s ease;
}

.partner-panel:hover .partner-logo {
  transform: scale(1.08);
}

.partner-panel:hover {
  box-shadow: 0 50px 40px 0px rgba(0, 0, 0, 0.1);
}

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

  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 768px) {
  .partner-panel {
    width: 180px;
    height: 90px;
    padding: 15px;
  }

  .partner-logo {
    max-height: 38px;
  }

  .accessories-header {
    padding: 0 !important;
  }

  .centered-h2 {
    max-width: unset;
  }
}

/* ----------------------------------------------------
   ABOUT US (REDESIGNED FIGMA LAYOUT)
   ---------------------------------------------------- */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  max-width: 1440px;
  margin: auto;
}

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

.tagline-blue {
  margin-bottom: -6px;
  color: #404093 !important;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.serif-all-caps {
  font-family: 'Lora', serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.25;
  text-transform: uppercase;
  color: #18171C;
  max-width: 92%;
}

.about-img {
  width: 100%;
  max-height: 550px;
  margin-top: 10px;
  box-shadow: var(--shadow-md);
  object-fit: cover;
  max-width: 570px;
  object-position: 0 -30px;
}

.about-right {
  display: flex;
  flex-direction: column;
}

.about-p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 24px;
  margin-bottom: 30px;
}

.features-title-blue {
  font-size: 18px;
  font-weight: 700 !important;
  color: #404093;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.features-list-bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px 30px;
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 40px;
}

.features-list-bullets li {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.5;
}

.about-divider {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin-bottom: 40px;
  width: 100%;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  gap: 60px;
  margin-bottom: 40px;
  max-width: 90%;
}

.about-stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-stat-num {
  font-family: 'Lora', serif;
  font-size: 64px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 6px;
}

/* Rolling Counter styles */
.rolling-counter {
  display: inline-flex;
  align-items: flex-end;
  line-height: 1;
  height: 1.1em;
  overflow: hidden;
  vertical-align: bottom;
}

.digit-col {
  display: inline-flex;
  flex-direction: column;
  height: 1.1em;
  overflow: hidden;
  position: relative;
}

.digit-reel {
  display: flex;
  flex-direction: column;
  transition: transform 2.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(0);
}

.digit-reel span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.1em;
  width: 100%;
  font-family: 'Lora', serif;
  font-weight: 600;
}

.counter-suffix {
  font-family: 'Lora', serif;
  font-weight: 600;
  line-height: 1.1em;
  display: inline-block;
}

.about-custom-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  min-width: 150px;
  height: 56px;
  padding: 20px 30px;
  background: #CBAA6A;
  color: #FFFFFF;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  white-space: nowrap;
  box-sizing: border-box;
}

.about-custom-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.about-stat-lbl {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.3;
}

.about-btn-wrapper {
  margin-top: 10px;
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .serif-all-caps {
    font-size: 2rem;
  }

  .features-list-bullets {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }

  .about-stat-num {
    font-size: 2.2rem;
  }
}

/* ----------------------------------------------------
   TENT CATEGORIES (REDESIGNED CAROUSEL SLIDER)
   ---------------------------------------------------- */
.categories-carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 50px;
}

/* Side Masks */
.carousel-mask {
  position: absolute;
  top: 0;
  height: 100%;
  width: 14vw;
  z-index: 10;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mask-left {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 100%);
}

.mask-right {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 100%);
}

.categories-carousel-track {
  display: flex;
  gap: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  width: max-content;
  transform: translateX(14vw);
  /* Desktop offset */
}

.category-panel {
  width: 24vw;
  /* Desktop card width */
  height: 600px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
}

.category-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-panel .category-overlay {
  position: absolute;
  bottom: -300px;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0) 100%);
  padding: 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 5;
  opacity: 1;
  transition: all 0.4s ease-in-out;
}

.category-panel:hover .category-overlay,
.category-panel.active .category-overlay {
  opacity: 1;
  bottom: 0 !important;
}

.category-overlay h3 {
  font-family: 'Lora', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 12px;
  text-transform: none;
}

.category-overlay p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.4;
  font-weight: 300;
}

.carousel-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  margin-top: 30px;
}

.carousel-chevron {
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition);
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-chevron img {
  width: 26px;
  height: auto;
  transition: var(--transition);
}

.carousel-chevron:hover {
  opacity: 1;
  transform: scale(1.15);
}

@media (max-width: 992px) {
  .carousel-mask {
    display: none;
  }

  .category-panel {
    width: 100vw;
    height: 420px;
  }
}

@media (max-width: 576px) {
  .category-panel {
    width: 100vw;
    height: 380px;
  }

  .carousel-chevron {
    font-size: 1.8rem;
  }
}

/* ----------------------------------------------------
   CUSTOMIZATION SECTION (REDESIGNED FIGMA LAYOUT)
   ---------------------------------------------------- */
.customization-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  width: 100%;
  background-color: #332815;
  /* Deep chocolate golden-brown */
  padding: 0 !important;
  margin: 0;
  overflow: hidden;
}

.custom-visual-new {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
}

.custom-visual-new .base-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
}

/* Container keeping exact 900x1020 image ratio */
.umbrella-showcase {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 900 / 1020;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
  background: #000;
  margin: 0 auto;
}

/* SVG layer for smooth arrow/line drawing */
.umbrella-showcase .svg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

/* Connecting lines: hidden initially, animate on trigger */
.umbrella-showcase .anim-line {
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.7));
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.umbrella-showcase .anim-line.drawn {
  stroke-dashoffset: 0;
}

/* Interactive Dot Pins on Umbrella */
.umbrella-showcase .hotspot-pin {
  position: absolute;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 2px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: default;
  z-index: 15;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.umbrella-showcase .hotspot-pin::after {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  animation: pin-pulse 1.8s infinite;
}

@keyframes pin-pulse {
  0% {
    transform: scale(0.6);
    opacity: 1;
  }

  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

.umbrella-showcase .hotspot-pin.active {
  transform: translate(-50%, -50%) scale(1.3);
  background: #CBAA6A;
}

/* Feature Thumbnails: Hidden initially, zoom out after line is drawn */
.umbrella-showcase .feature-card {
  position: absolute;
  width: 11.5%;
  aspect-ratio: 1 / 1;
  background: #fbf5eb;
  border: 3.5px solid #CBAA6A;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  z-index: 10;
  opacity: 0;
  transform: scale(0.2);
  pointer-events: none;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.35s ease;
}

.umbrella-showcase .feature-card.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.umbrella-showcase .feature-card:hover {
  transform: scale(1.15) !important;
  border-color: #CBAA6A;
  box-shadow: 0 12px 30px rgb(204 171 108 / 36%);
  cursor: pointer;
}

.umbrella-showcase .feature-card img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

.custom-content-new {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 10%;
  color: #ffffff;
  box-sizing: border-box;
}

.custom-content-new .tagline-custom {
  color: var(--gold-primary);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.custom-content-new h2 {
  font-family: 'Lora', serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.25;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 30px;
}

.custom-content-new p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 300;
}

.custom-btn-new {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  color: #ffffff;
  font-family: 'Bricolage Grotesque', serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 1px;
  padding: 18px 36px;
  align-self: flex-start;
  cursor: pointer;
}

@media (max-width: 992px) {
  .customization-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .custom-visual-new {
    height: auto;
    min-height: auto;
    width: 100%;
  }

  .umbrella-showcase {
    max-width: 600px;
    width: 100%;
    height: auto;
  }

  .custom-content-new {
    padding: 60px 8%;
  }

  .custom-content-new h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .umbrella-showcase .feature-card {
    border-width: 2px;
    border-radius: 8px;
    padding: 3px;
  }

  .umbrella-showcase .hotspot-pin {
    width: 14px;
    height: 14px;
  }
}

/* ----------------------------------------------------
   ACCESSORIES SECTION (REDESIGNED FIGMA LAYOUT)
   ---------------------------------------------------- */
.accessories-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.accessories-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 5%;
}

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

.accessory-card {
  background: transparent;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.accessory-img-box {
  width: 100%;
  height: 320px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold-primary);
  box-sizing: border-box;
}

.accessory-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.accessory-img-box:hover img {
  transform: scale(1.2);
}

.accessory-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.accessory-img-box:hover .accessory-hover-overlay {
  opacity: 1;
}

.hover-view-all {
  background-color: #D0C09E;
  color: var(--navy-deep);
  border: none;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding: 16px 48px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  border-radius: 30px;
}

.accessory-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 15px;
  text-align: center;
}

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

  .accessory-img-box {
    height: 300px;
  }
}

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

  .accessory-img-box {
    height: 340px;
  }
}

/* ----------------------------------------------------
   CRAFTSMANSHIP
   ---------------------------------------------------- */
.crafts-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  border-radius: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  max-height: 88vh;
}

.crafts-left {
  background-color: var(--navy-deep);
  padding: 80px 10% 80px 11%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-height: 88vh;
}

.crafts-right {
  position: relative;
  height: 100%;
  width: 100%;
  max-height: 88vh;
  overflow: hidden;
}

.craftsSwiper {
  width: 100%;
  height: 100%;
  max-height: 88vh;
}

.craftsSwiper .swiper-wrapper {
  height: 100%;
}

.craftsSwiper .swiper-slide {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.crafts-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 88vh;
  display: block;
}

/* ----------------------------------------------------
   BEFORE / AFTER (INSTALLATION)
   ---------------------------------------------------- */
.installation-header {
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ba-display-area {
  position: relative;
  height: 600px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  --slider-pos: 50%;
}

.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-image-before {
  z-index: 2;
  clip-path: polygon(0 0, var(--slider-pos, 50%) 0, var(--slider-pos, 50%) 100%, 0 100%);
}

.ba-image-after {
  z-index: 1;
}

/* Range input for sliding */
.ba-slider-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
}

/* Vertical line handle */
.ba-slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--slider-pos, 50%);
  width: 3px;
  background-color: #ffffff;
  z-index: 8;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

/* Circle button */
.ba-slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
  font-size: 14px;
  pointer-events: none;
  border: 2px solid var(--gold-primary);
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  gap: 3px;
}

.ba-slider-input:hover~.ba-slider-handle .ba-slider-button,
.ba-slider-input:active~.ba-slider-handle .ba-slider-button {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: var(--gold-primary);
  color: #ffffff;
}

.ba-slider-input:hover~.ba-slider-handle .ba-slider-button img,
.ba-slider-input:active~.ba-slider-handle .ba-slider-button img {
  filter: invert(1) brightness(2);
}

/* Labels */
.ba-label {
  position: absolute;
  top: 0;
  padding: 8px 18px;
  background-color: #F8F8F8;
  color: #575757;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 7;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: opacity 0.3s ease;
  box-shadow: 0px 4px 6px -1px #0000001A;
}

.ba-label-before {
  left: 25%;
  transform: translateX(-50%);
}

.ba-label-after {
  right: 25%;
  transform: translateX(50%);
}

.ba-slider-input:active~.ba-label {
  opacity: 0.2;
}

/* Full-Width Installation CTA Banner */
.installation-cta-banner {
  width: 100%;
  background-color: var(--navy-deep);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  border-top: 1px solid rgba(197, 168, 128, 0.2);
  border-bottom: 1px solid rgba(197, 168, 128, 0.2);
}

.installation-cta-content {
  margin: 0 auto;
  width: 100%;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  background-color: #12142B;
}

.installation-cta-text {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 2;
  padding: 1rem 0;
}

.installation-cta-title {
  font-size: 26px;
  font-family: 'Lora', serif;
  font-weight: 400;
  color: var(--text-light);
  margin: 0;
}

.installation-cta-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}

.installation-cta-link {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  align-self: flex-start;
}

.installation-cta-graphic {
  position: absolute;
  right: 5%;
  bottom: 0;
  height: 100%;
  max-height: 220px;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
}

/* ----------------------------------------------------
   LOCATIONS (WORLD MAP)
   ---------------------------------------------------- */
.locations-container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-wrapper {
  background-color: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  width: 100%;
  max-width: 1246px;
  margin: 0 auto;
}

.map-img {
  width: 100%;
  height: auto;
  opacity: 1;
  display: block;
  margin: auto;
  object-fit: contain;
}

/* =========================================================
   LOCATIONS CARDS OVERLAY (NEW DESIGN)
========================================================= */
.locations-cards-overlay {
  position: absolute;
  left: -40px;
  bottom: -30px;
  width: 330px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.location-country-card {
  display: flex;
  align-items: center;
  background: #FCFAF6;
  border: 1px solid #EBE6DF;
  border-radius: 6px;
  padding: 12px 16px;
  text-decoration: none !important;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  box-sizing: border-box;
}

.location-country-card:hover {
  background: #FFFFFF;
  border-color: #CBAA6A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.location-card-flag {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.location-card-flag img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.location-card-country {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #575757;
  min-width: 76px;
  flex-shrink: 0;
  line-height: 1;
}

.location-card-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px !important;
  font-weight: 700;
  color: #18171C !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0 !important;
}

.location-card-arrow {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 10px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.location-country-card:hover .location-card-arrow {
  transform: translateX(4px);
}

.location-card-arrow svg {
  display: block;
  width: 16px;
  height: 12px;
}

/* Responsive adjustments */
@media (max-width: 1080px) {
  .locations-cards-overlay {
    bottom: 2%;
    left: 1%;
    width: 290px;
    gap: 8px;
  }

  .location-country-card {
    padding: 10px 14px;
  }

  .location-card-country {
    font-size: 13.5px;
    min-width: 65px;
  }

  .location-card-title {
    font-size: 12px;
  }
}

@media (max-width: 860px) {
  .locations-cards-overlay {
    position: static;
    margin: 30px auto 0 auto;
    width: 100%;
    max-width: 440px;
    gap: 10px;
  }

  .location-country-card {
    padding: 13px 18px;
  }

  .location-card-country {
    font-size: 14px;
    min-width: 76px;
  }

  .location-card-title {
    font-size: 13px;
  }
}

/* Location Map Markers */
.map-marker {
  position: absolute;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: translate(-50%, -10.5px);
}

.marker-dot {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #ffb300;
  border: 3px solid #ffffff;
  box-shadow: 0 0 15px rgba(255, 179, 0, 0.8), 0 0 0 6px rgba(255, 179, 0, 0.25);
  transition: var(--transition);
  position: relative;
}

.marker-dot::after {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(255 179 0) 0%, rgba(255, 179, 0, 0) 70%);
  animation: pulseHotspot 2s infinite ease-in-out;
  opacity: 1;
  pointer-events: none;
  z-index: -1;
}

@keyframes pulseHotspot {
  0% {
    transform: scale(0.8);
    opacity: 0.4;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.9;
  }

  100% {
    transform: scale(0.8);
    opacity: 0.4;
  }
}

.map-marker:hover .marker-dot {
  transform: scale(1.15);
  background-color: var(--gold-primary);
  box-shadow: 0 0 20px rgba(255, 179, 0, 1), 0 0 0 8px rgba(255, 179, 0, 0.35);
}

.marker-label {
  background-color: var(--gold-dark);
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}

.map-marker:hover .marker-label {
  background-color: var(--navy-deep);
  transform: translateY(-2px);
}

/* Geographic positions mapped precisely relative to 999px map width */
.m-canada {
  top: 30%;
  left: 15%;
}

.m-usa {
  top: 46%;
  left: 24%;
}

.m-uk {
  top: 31%;
  left: 45%;
}

.m-france {
  top: 30%;
  left: 57%;
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.m-uae {
  top: 51%;
  left: 59.5%;
}

.m-australia {
  top: 80.5%;
  left: 83.5%;
}

/* Additional Location Marker Positions */
.m-spain {
  top: 45%;
  left: 46.5%;
}

.m-portugal {
  top: 43.5%;
  left: 43.5%;
  flex-direction: row-reverse;
  transform: translate(calc(-100% + 12px), -50%);
}

.m-italy {
  top: 39.5%;
  left: 52.5%;
  flex-direction: row;
  transform: translate(-12px, -50%);
}

.m-switzerland {
  top: 35.5%;
  left: 48.5%;
}

.m-ireland {
  top: 31%;
  left: 41.5%;
  flex-direction: row-reverse;
  transform: translate(calc(-100% + 12px), -50%);
}

.m-germany {
  top: 24.5%;
  left: 48.5%;
  flex-direction: column-reverse;
  transform: translate(-50%, calc(-100% + 12px));
}

.m-sweden {
  top: 18%;
  left: 52.5%;
  flex-direction: column-reverse;
  transform: translate(-50%, calc(-100% + 12px));
}

.m-qatar {
  top: 48.5%;
  left: 58.0%;
  flex-direction: row-reverse;
  transform: translate(calc(-100% + 12px), -50%);
}

.m-kuwait {
  top: 43.5%;
  left: 57.0%;
  flex-direction: row;
  transform: translate(-12px, -50%);
}

.m-brazil {
  top: 67%;
  left: 32%;
}

@media (max-width: 768px) {
  .marker-label {
    font-size: 0.55rem;
    padding: 3px 8px;
  }

  .marker-dot {
    width: 10px;
    height: 10px;
    border-width: 2px;
  }

  .map-marker {
    gap: 4px;
    transform: translate(-50%, -7px);
  }

  .marker-dot::after {
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
  }

  .m-germany,
  .m-sweden {
    transform: translate(-50%, calc(-100% + 5px));
  }

  .m-ireland,
  .m-portugal,
  .m-qatar {
    transform: translate(calc(-100% + 5px), -5px);
  }

  .m-italy,
  .m-kuwait {
    transform: translate(-5px, -5px);
  }

  .m-spain,
  .m-switzerland,
  .m-brazil {
    transform: translate(-50%, -5px);
  }
}

/* Floating Badges (Nested Inside each Country Marker) */
.map-floating-badges {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 20;
  /* hidden by default, shown by JS */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  /* Default position: next to the marker */
  top: -10px;
  left: 100%;
  margin-left: 20px;
  align-items: flex-start;
}

.map-floating-badges.country-panel-visible {
  opacity: 1;
  pointer-events: all;
}

/* Mobile-only dynamic map badges panel styling */
.map-floating-badges-mobile-only {
  display: none;
  position: absolute;
  flex-direction: column;
  gap: 8px;
  z-index: 25;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.map-floating-badges-mobile-only.country-panel-visible {
  opacity: 1;
  pointer-events: all;
}

/* Individual country positions for the floating badges - feel free to adjust these! */
.m-canada .map-floating-badges {
  left: 0;
  top: -80px;
}

.m-usa .map-floating-badges {
  /* e.g. top: -10px; left: 100%; */
}

.m-uk .map-floating-badges {
  left: -100px;
  top: -130px;
}

.m-france .map-floating-badges {
  /* e.g. top: -10px; left: 100%; */
}

.m-uae .map-floating-badges {
  /* e.g. top: -10px; left: 100%; */
}

.m-australia .map-floating-badges {
  left: auto;
  right: -100px;
  margin-left: 0;
  margin-right: 20px;
  align-items: flex-end;
  top: -200px;
}

.loc-badge-floating {
  background-color: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 30px;
  padding: 10px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  text-align: left;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #575757;
  width: fit-content;
  text-decoration: none;
  white-space: nowrap;
}

.loc-badge-floating:hover {
  border-color: var(--gold-primary);
  background-color: var(--bg-cream);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(197, 168, 128, 0.2);
}

.loc-badge-floating i {
  color: var(--gold-primary);
  font-size: 0.75rem;
  transition: var(--transition);
}

.loc-badge-floating:hover i {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  #locations {
    padding-bottom: 150px !important;
  }

  .m-france {
    left: 65%;
  }

  .map-marker .map-floating-badges {
    display: none !important;
  }

  .map-floating-badges-mobile-only {
    display: flex !important;
    position: absolute !important;
    left: 10px !important;
    right: auto !important;
    top: auto !important;
    bottom: -110px !important;
    margin: 0 !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    width: auto !important;
    gap: 8px !important;
    z-index: 25 !important;
    transform: none !important;
  }

  .map-floating-badges-mobile-only.country-panel-visible {
    opacity: 1 !important;
    pointer-events: all !important;
  }

  .loc-badge-floating {
    align-self: flex-start !important;
    width: auto !important;
    margin: 0 !important;
  }
}

/* ----------------------------------------------------
   TESTIMONIALS (REDESIGNED)
   ---------------------------------------------------- */
.testimonials-section {
  background-color: #F5F5F5;
  padding: 100px 5%;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Cards row */
.testi-cards-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
  overflow: hidden;
  margin: 0 auto;
  height: 320px;
}

/* Google Rating Card */
.testi-google-card {
  flex: 0 0 240px;
  background: #ffffff;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  padding: 0;
  box-sizing: border-box;
}

.testi-google-top {
  padding: 40px 24px 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.testi-google-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
}

.testi-rating-num {
  font-size: 5rem;
  font-weight: 800;
  color: #1c1614;
  line-height: 1;
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: -2px;
}

.testi-stars {
  color: #F5C518;
  /* Sharp gold-yellow */
  font-size: 1.25rem;
  display: flex;
  gap: 5px;
  margin: 4px 0;
}

.testi-rating-label {
  font-size: 16px;
  color: #1c1614;
  font-weight: 500;
  line-height: 1.4;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.testi-google-logo {
  height: 35px;
  width: auto;
  filter: brightness(0);
  /* Turn the logo solid monochrome black */
  opacity: 0.95;
}

/* Active Review Card */
.testi-review-card {
  flex: 1 1 auto;
  background: #ffffff;
  border-left: none;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.testi-slide-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
}

.testi-slide-inner.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Narrow left column: counter + arrows */
.testi-slide-left {
  flex: 0 0 130px;
  padding: 40px 20px 40px 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Wide right column: review text + author */
.testi-slide-right {
  flex: 1;
  padding: 40px 44px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testi-counter {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}

.testi-counter span {
  color: var(--text-muted);
  font-weight: 400;
}

.testi-review-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
}

.testi-author-info {
  display: flex;
  flex-direction: column;
}

.testi-reviewer-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 4px;
}

.testi-reviewer-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testi-nav-btns {
  display: flex;
  gap: 10px;
}

.testi-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-dark);
  font-size: 0.85rem;
  transition: var(--transition);
}

.testi-arrow img {
  width: 14px;
  height: auto;
  transition: var(--transition);
}

/* Peek Card (next review, partially visible, faded) */
.testi-peek-card {
  flex: 0 0 150px;
  background: #ffffff;
  border-left: none;
  border-radius: 0;
  padding: 48px 20px 40px 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  justify-content: space-between;
}

.testi-peek-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(242, 241, 239, 0) 0%, rgba(242, 241, 239, 0.6) 30%, #f2f1ef 100%);
  pointer-events: none;
}

.testi-peek-counter {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.testi-peek-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-dark);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  overflow: hidden;
  width: 450px;
}

.testi-peek-name {
  margin-top: auto;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 150px;
}

.testi-peek-role {
  font-size: 0.82rem;
  color: var(--text-muted);
  width: 200px;
}

/* ----------------------------------------------------
   USP (THE DIFFERENCE BEHIND EVERY TENT)
   ---------------------------------------------------- */
.usp-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1300px;
  margin: 0 auto;
}

.usp-card {
  padding: 20px 30px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

/* Thin vertical divider between columns, not after last card in a row */
.usp-card:not(:nth-child(4n)):before {
  content: '';
  width: 1px;
  height: 30%;
  background: #ccc;
  display: block;
  position: absolute;
  right: 0;
  top: 35%;
}

/* Horizontal divider between rows */

.usp-card:hover {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 10px 25px 25px -20px;
}

.usp-icon-wrapper {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  transition: var(--transition);
}

.usp-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.usp-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-deep);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.usp-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  font-family: 'Bricolage Grotesque', sans-serif;
}

/* ----------------------------------------------------
   OUR BLOGS
   ---------------------------------------------------- */
.blog-header {
  text-align: center;
  margin-bottom: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blog-header h2 {
  font-size: 2.8rem;
  font-family: 'Lora', serif;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--navy-deep);
  line-height: 1.25;
  margin-top: 10px;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.blog-carousel-container {
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

.blog-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Flip Card Wrapper */
.blog-card-wrapper {
  flex: 0 0 calc(33.333% - 20px);
  /* 3 cards visible on desktop */
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  box-sizing: border-box;
}

/* The flip container */
.blog-card-flip {
  perspective: 1000px;
  width: 100%;
  height: 480px;
  /* Tall portrait height */
  cursor: pointer;
}

/* The inner box that rotates */
.blog-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

/* Hover flips right to left */
.blog-card-wrapper:hover .blog-card-inner {
  transform: rotateY(-180deg);
}

/* Front & Back sides */
.blog-card-front,
.blog-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
}

/* Front Side (Image) */
.blog-card-front {
  background-color: #fff;
}

.blog-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Back Side (Beige/Cream Description) */
.blog-card-back {
  background-color: #f7f3e8;
  /* Warm beige */
  transform: rotateY(-180deg);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.blog-back-text {
  font-size: 17px;
  line-height: 1.7;
  color: #555555;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.blog-story-btn {
  align-self: flex-start;
  background-color: var(--gold-primary);
  color: #ffffff;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-family: 'Bricolage Grotesque', sans-serif;
}

/* Static Title Below Card */
.blog-title-under {
  font-size: 1.25rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.45;
  margin: 0;
  text-align: left;
  transition: var(--transition);
}

.blog-card-wrapper:hover .blog-title-under {
  color: var(--gold-primary);
}

/* Arrow Controls */
.blog-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  position: absolute;
  top: 55%;
  width: 100%;
  max-width: 1440px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.blog-arrow {
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-arrow img {
  width: 18px;
  height: auto;
  transition: var(--transition);
}

.blog-arrow:hover {
  transform: scale(1.15);
}

/* ----------------------------------------------------
   GALLERY (MOSAIC GRID WITH VIDEO MODAL)
   ---------------------------------------------------- */
.gallery-header {
  padding: 0px 20px;
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-collage {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  margin: 0 auto;
  height: 100%;
  max-height: 70vh;
  background-color: #D9D9DB;
  padding-top: 20px;
  padding-bottom: 20px;
}

.gallery-col {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-height: 60vh;
}

.gallery-item {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* Clean, slightly rounded edges */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  background-color: #f7f6f3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Column 1, 3, 5 items are tall, so they take 100% height of the column */
.gallery-col-tall {
  height: 100%;
}

.gallery-col-tall .gallery-item {
  height: 100%;
}

/* Column 2 and 4 have split items */
.gallery-col-split .gallery-item {
  height: calc(50% - 2.5px);
  flex: 0 0 calc(50% - 2.5px);
}

/* Overlay inside Column 2 Top */
.gallery-overlay-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.95);
  padding: 18px 12px;
  text-align: center;
  width: 80%;
  box-sizing: border-box;
  pointer-events: none;
  border: 1px solid rgba(197, 168, 128, 0.25);
  z-index: 3;
}

.gallery-overlay-box h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy-deep);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 5px;
  line-height: 1.2;
}

.gallery-overlay-box p {
  font-size: 0.85rem;
  font-family: 'Lora', serif;
  color: var(--gold-primary);
  font-style: italic;
  margin: 0;
}

/* Play Button Overlay inside Column 3 */
.gallery-play-btn {
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  z-index: 3;
}

.gallery-play-btn:hover {
  background: var(--gold-primary);
  color: #fff;
  transform: scale(1.1);
}

/* Text banner overlay inside Column 5 */
.gallery-text-banner {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.92);
  padding: 10px 15px;
  text-align: center;
  border-radius: 4px;
  pointer-events: none;
  z-index: 3;
}

.gallery-text-banner span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy-deep);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Bricolage Grotesque', sans-serif;
}

/* Video Lightbox Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(14, 19, 31, 0.95);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.video-container {
  width: 90%;
  max-width: 900px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.close-video-modal {
  position: absolute;
  top: -45px;
  right: 0;
  color: var(--text-light);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
}

.close-video-modal:hover {
  color: var(--gold-primary);
}



/* ----------------------------------------------------
   INQUIRY FORM MODAL
   ---------------------------------------------------- */
.inquiry-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(14, 19, 31, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999999 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
}

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

.inquiry-card {
  background-color: var(--bg-white, #ffffff);
  border-radius: 12px;
  width: 100%;
  max-width: 550px;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 36px 36px 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  border: 1px solid rgba(197, 168, 128, 0.3);
  box-sizing: border-box;
  margin: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-primary, #b08b49) rgba(0, 0, 0, 0.05);
}

/* Custom Scrollbar for Modal Card */
.inquiry-card::-webkit-scrollbar {
  width: 6px;
}

.inquiry-card::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  margin: 10px 0;
}

.inquiry-card::-webkit-scrollbar-thumb {
  background: var(--gold-primary, #b08b49);
  border-radius: 10px;
}

.inquiry-card::-webkit-scrollbar-thumb:hover {
  background: #8e6c31;
}

.close-inquiry-modal {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 1.25rem;
  color: var(--text-muted, #777);
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
}

.close-inquiry-modal:hover {
  color: #ffffff;
  background: var(--gold-primary, #b08b49);
}

.inquiry-title {
  font-size: 1.65rem;
  margin-bottom: 8px;
  color: var(--navy-deep, #18171C);
  padding-right: 35px;
}

.inquiry-subtitle {
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-muted, #666);
  margin-bottom: 20px;
}

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

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-deep, #18171C);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 6px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  color: var(--navy-deep, #18171C);
  transition: var(--transition);
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: var(--gold-primary, #b08b49);
  box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.2);
}

textarea.form-input {
  resize: vertical;
  min-height: 80px;
  height: 80px;
}

.form-input.is-invalid {
  border-color: #e53e3e !important;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.15) !important;
}

.field-error-msg {
  display: none;
  font-size: 12px;
  color: #e53e3e;
  font-family: 'Bricolage Grotesque', sans-serif;
  margin-top: 5px;
  line-height: 1.3;
}

.inquiry-feedback-msg {
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-family: 'Bricolage Grotesque', sans-serif;
  line-height: 1.4;
  margin-bottom: 20px;
  align-items: center;
  gap: 10px;
}

.inquiry-feedback-msg.success {
  background: #f0fff4;
  border: 1px solid #9ae6b4;
  color: #22543d;
}

.inquiry-feedback-msg.error {
  background: #fff5f5;
  border: 1px solid #feb2b2;
  color: #9b2c2c;
}

section#blog {
  background-color: #F5F5F5;
  position: relative;
}

/* ----------------------------------------------------
   RESPONSIVE BREAKPOINTS
   ---------------------------------------------------- */

@media (max-width: 1440px) {
  .usp-card-title {
    font-size: 20px;
  }

  .hero-title-main {
    font-size: 28px;
  }

  .section {
    padding: 70px 1% 70px 1%;
  }

  .hero-bottom-bar {
    padding: 0 1%;
  }

  .testimonials-section {
    padding: 70px 1% 35px;
  }
}

@media (max-width: 1200px) {
  .about-container {
    gap: 40px;
  }

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

@media (max-width: 992px) {
  .section {
    padding: 60px 5% 60px 5%;
  }

  .header {
    padding: 15px 5%;
  }

  .nav-group {
    display: none;
    /* Hide standard nav on mobile */
  }

  .mobile-toggle {
    display: block;
  }

  .hero-bottom-bar {
    bottom: 30px;
    padding: 0 2%;
  }

  .hero-bottom-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin: 0 15px;
  }

  .hero-text-block {
    max-width: 100%;
  }

  .hero-title-main {
    font-size: 1.6rem;
  }

  .hero-desc-sub {
    font-size: 0.85rem;
  }

  .hero-buttons-block {
    width: 100%;
    gap: 12px;
  }

  .hero-btn-contact,
  .hero-btn-quote {
    flex: 1;
    padding: 10px 6px;
    font-size: 0.8rem;
  }

  .hero-arrow-btn {
    font-size: 1.6rem;
  }

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

  .about-img {
    margin: 10px auto 0 auto;
    display: block;
  }

  .about-stats-row {
    max-width: 100%;
  }

  .testi-arrow i {
    font-size: 40px;
    font-weight: 600;
  }

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

  .crafts-container {
    grid-template-columns: 1fr;
  }

  .crafts-left {
    padding: 50px 30px;
  }

  .crafts-right {
    height: 350px;
  }

  .ba-display-area {
    height: 450px;
  }

  .installation-cta-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .installation-cta-title {
    font-size: 1.8rem;
  }

  .installation-cta-graphic {
    opacity: 0.08;
    right: 0;
    bottom: 0;
    height: 140px;
  }

  .locations-container {
    grid-template-columns: 1fr;
  }

  .expert-card {
    padding: 40px 24px;
  }

  .expert-card-title {
    font-size: 3.2rem;
  }

  .expert-card-subtitle {
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin: 10px 0 30px 0;
  }

  .expert-card-btn {
    padding: 12px 24px;
    font-size: 0.75rem;
  }

  .testi-cards-row {
    flex-direction: column;
    height: auto;
    overflow: visible;
  }

  .testi-google-card {
    flex: 0 0 auto;
    padding: 0 !important;
  }

  .testi-review-card {
    border-left: 1px solid rgba(0, 0, 0, 0.07);
    height: 340px;
  }

  .testi-peek-card {
    display: none;
  }

  .testi-slide-inner {
    padding: 32px 28px;
  }

  .blog-card-wrapper {
    flex: 0 0 calc(50% - 15px);
  }

  .blog-card-flip {
    height: 440px;
  }

  .gallery-collage {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
    gap: 5px;
  }

  .gallery-col {
    height: auto;
  }

  .gallery-col-tall .gallery-item {
    height: 350px;
  }

  .gallery-col-split .gallery-item {
    height: 180px;
    flex: none;
  }

  .gallery-collage {
    max-height: unset;
  }
}

@media (max-width: 768px) {
  .usp-card:not(:nth-child(4n)):before {
    display: none;
  }

  .heading-lg,
  .heading-md,
  .serif-all-caps,
  .custom-content-new h2,
  .blog-header h2 {
    font-size: 1.85rem !important;
    font-family: 'Lora', serif !important;
    line-height: 1.3 !important;
  }

  .hero-title-main {
    font-size: 1.35rem;
  }

  .about-stats-row {
    max-width: 100% !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    justify-content: space-between !important;
  }

  .about-stat-item {
    flex: 0 0 calc(50% - 10px) !important;
    text-align: center !important;
  }

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

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

  .usp-card {
    padding: 36px 24px;
  }

  .blog-card-wrapper {
    flex: 0 0 100%;
  }

  .blog-card-flip {
    height: 400px;
  }



  .gallery-collage {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-col-tall .gallery-item {
    height: 500px;
  }

  .gallery-col-split .gallery-item {
    height: 270px;
    flex: none;
  }



  .map-marker .map-floating-badges {
    display: none !important;
  }

  .map-floating-badges-mobile-only {
    display: flex !important;
    position: absolute !important;
    left: 10px !important;
    right: auto !important;
    top: auto !important;
    bottom: -110px !important;
    margin: 0 !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    width: auto !important;
    gap: 8px !important;
    z-index: 25 !important;
    transform: none !important;
  }

  .map-floating-badges-mobile-only.country-panel-visible {
    opacity: 1 !important;
    pointer-events: all !important;
  }

  .loc-badge-floating {
    align-self: flex-start !important;
    width: auto !important;
    margin: 0 !important;
  }

  .inquiry-card {
    padding: 24px 20px !important;
    max-height: calc(100vh - 30px) !important;
  }

  .inquiry-title {
    font-size: 1.4rem !important;
  }

  .inquiry-subtitle {
    font-size: 14px !important;
    margin-bottom: 15px !important;
  }

  .form-group {
    margin-bottom: 12px !important;
  }

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

  .features-list {
    grid-template-columns: 1fr;
  }

  .ba-display-area {
    height: 380px;
  }

  /* Testimonials Stacked Mobile View */
  .testi-review-card {
    border-left: 1px solid rgba(0, 0, 0, 0.07);
    border-top: none;
    height: 480px !important;
  }

  .testi-slide-inner {
    flex-direction: column !important;
    padding: 0 !important;
  }

  .testi-slide-left {
    flex: 0 0 auto !important;
    width: 100% !important;
    padding: 24px 24px 10px 24px !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .testi-nav-btns {
    display: flex !important;
    flex-direction: row !important;
    gap: 15px !important;
  }

  .testi-slide-right {
    flex: 1 !important;
    padding: 10px 24px 24px 24px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }

  .testi-review-text {
    font-size: 18px !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
  }


}

@media (max-width: 576px) {

  .heading-lg,
  .heading-md,
  .serif-all-caps,
  .custom-content-new h2,
  .blog-header h2 {
    margin-top: 10px;
    font-size: 1.15rem !important;
  }

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

  .ba-display-area {
    height: 280px;
  }

  .about-stat-lbl {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 14px;
  }

  .hero-btn-contact,
  .hero-btn-quote {
    flex: 1;
    padding: 10px 6px;
    font-size: 10px;
  }

  .hero-title-main {
    font-size: 19px;
  }


}

@media (max-width: 374px) {

  .heading-lg,
  .heading-md,
  .serif-all-caps,
  .custom-content-new h2,
  .blog-header h2 {
    font-size: 18px !important;
    max-width: 100%;
  }

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

  .ba-display-area {
    height: 280px;
  }

  .hero-btn-contact,
  .hero-btn-quote {
    flex: 1;
    padding: 10px 0px;
    font-size: 9px;
  }

  .about-stat-num {
    font-size: 1.9rem;
  }

  .about-stat-lbl {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 14px;
  }

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

  .about-custom-btn {
    width: 135px;
    min-width: 135px;
    height: 50px;
  }

  .custom-btn-new {
    padding: 18px 27px;
  }

  .installation-cta-title {
    font-size: 18px;
  }

  .installation-cta-link {
    font-size: 11px;
  }

  .hero-slider {
    height: 65vh;
  }

  .hero-title-main {
    font-size: 15px;
  }

  .expert-card-title {
    font-size: 2.2rem !important;
  }

  .expert-card-subtitle {
    font-size: 0.8rem !important;
    letter-spacing: 3px !important;
    margin: 9px 0 16px 0 !important;
  }

  .expert-card-btn {
    font-size: 12px !important;
    padding: 12px 24px !important;
  }
}


/* =========================================================
   FOOTER
========================================================= */
.footer {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
  background-image: url("https://storeyourcode.com/demo/ITM/wp-content/uploads/2026/08/footer-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0.36deg, #040419 -8.97%, #161638 59.71%, #06064F 109.12%);
  z-index: 1;
  opacity: 0.9;
}

.footer-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1340px;
  margin: auto;
  padding: 70px 20px 45px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.25fr;
  gap: 5px;
}

.footer-left {
  margin-right: 35px;
  display: flex;
  flex-direction: column;
}

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

.footer-logo img {
  width: 100%;
  display: block;
  object-fit: contain;
  filter: grayscale(1);
}

.footer-left p {
  color: #ffffff;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 30px;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, .15);
  margin-bottom: 15px;
}

.footer-badges {
  display: flex;
  gap: 18px;
  align-items: center;
}

.badge {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

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

.footer-links .footer-heading,
.footer-contact .footer-heading {
  color: #fff;
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 28px;
  font-weight: 600;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.footer-links ul {
  list-style: none !important;
  color: #ffffff;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-links li {
  font-size: 14px;
  margin-bottom: 18px;
  font-weight: 400;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.footer-links a {
  text-decoration: none;
  color: #FFFFFF;
  transition: .3s;
  font-family: 'Bricolage Grotesque', sans-serif;
  background: transparent !important;
  padding: 0 !important;
  display: inline-block;
}

.footer-links a:hover {
  color: #CBAA6A;
  padding-left: 5px !important;
  background: transparent !important;
}

.footer-links li.active,
.footer-links li.current-menu-item,
.footer-links li:hover {
  background: transparent !important;
}

.footer-contact {
  color: #ffffff;
}

.contact-item {
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.contact-item p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.contact-item span {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.contact-item i {
  color: #fff;
  margin-right: 10px;
  width: 20px;
  margin-top: 3px;
}

.foo-contact-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.foo-contact-inner>a {
  margin: 0 !important;
}

.contact-item a {
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  margin-left: 35px;
  font-family: 'Bricolage Grotesque', sans-serif;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #CBAA6A;
}

.contact-item .contact-address-link,
.contact-item a.contact-address-link,
.contact-item p a {
  margin-left: 0;
  display: block;
  line-height: 24px;
  color: #ffffff;
}

.contact-item .contact-address-link:hover,
.contact-item a.contact-address-link:hover,
.contact-item p a:hover {
  color: #CBAA6A;
}

.footer-contact .footer-heading {
  margin-bottom: 28px;
}

.footer-contact .footer-subheading {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin: 30px 0 18px;
  font-family: 'Lora', serif;
}

.footer-social {
  justify-content: flex-start;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff !important;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  text-decoration: none;
  font-size: 15px;
  border: none !important;
}

/* Colored Social Media Buttons */
.footer-social a.social-instagram,
.footer-social a:has(.fa-instagram) {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
  color: #fff !important;
}

.footer-social a.social-facebook,
.footer-social a:has(.fa-facebook-f),
.footer-social a:has(.fa-facebook) {
  background: #1877F2 !important;
  color: #fff !important;
}

.footer-social a.social-linkedin,
.footer-social a:has(.fa-linkedin-in),
.footer-social a:has(.fa-linkedin) {
  background: #0A66C2 !important;
  color: #fff !important;
}

.footer-social a.social-whatsapp,
.footer-social a:has(.fa-whatsapp) {
  background: #25D366 !important;
  color: #fff !important;
}

.footer-social a.social-pinterest,
.footer-social a:has(.fa-pinterest-p),
.footer-social a:has(.fa-pinterest) {
  background: #E60023 !important;
  color: #fff !important;
}

.footer-social a.social-youtube,
.footer-social a:has(.fa-youtube) {
  background: #FF0000 !important;
  color: #fff !important;
}

.footer-social a:hover {
  transform: translateY(-3px) scale(1.08) !important;
  filter: brightness(1.15) !important;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.45) !important;
  color: #fff !important;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 15px 20px;
  text-align: center;
  background-color: #000000;
}

.footer-bottom p {
  font-weight: 300;
  color: #FFFFFF;
  font-size: 11px;
  font-family: 'Lora', serif;
}

@media (max-width:1024px) {
  .footer-left p {
    font-size: 12px;
    line-height: 23px;
    margin-bottom: 25px;
  }

  .footer-container {
    padding: 51px 20px 38px;
  }

  .footer-links .footer-heading,
  .footer-contact .footer-heading {
    font-size: 15px;
  }

  .footer-links li {
    font-size: 13px;
  }

  .contact-item p {
    font-size: 13px;
  }

  .contact-item span {
    font-size: 13px;
  }
}

@media (max-width:991px) {
  .footer-container {
    padding: 60px 25px 35px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 35px;
  }

  .footer-left {
    grid-column: 1/-1;
    text-align: center;
    align-items: center;
  }

  .footer-logo {
    margin: 0 auto 25px;
  }

  .footer-left p {
    font-size: 13px;
    max-width: 530px;
    text-align: center;
  }

  .footer-divider {
    max-width: 400px;
  }

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

  .footer-contact {
    grid-column: 1/-1;
    margin-top: 10px;
  }
}

@media (max-width:768px) {
  .footer-container {
    padding: 50px 20px 30px;
  }

  .footer-grid {
    grid-template-columns: 2fr 2fr 2fr;
    gap: 15px;
  }

  .footer-left {
    grid-column: 1/-1;
  }

  .footer-links {
    text-align: center;
  }

  .footer-contact {
    text-align: center;
    grid-column: 1/-1;
  }

  .footer-links .footer-heading,
  .footer-contact .footer-heading {
    font-size: 18px;
    margin-bottom: 20px;
  }

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

  .footer-links a {
    font-size: 14px;
  }
}

@media (max-width:576px) {
  .footer-container {
    padding: 40px 15px 25px;
  }

  .footer-grid {
    gap: 5px;
  }

  .footer-left {
    width: 100%;
    text-align: center;
    align-items: center;
    margin-bottom: 15px;
  }

  .footer-logo {
    margin: 0 auto 18px;
    width: 150px;
  }

  .footer-left p {
    max-width: 320px;
    margin: 0 auto 22px;
    font-size: 14px;
    line-height: 1.8;
    text-align: center;
  }

  .footer-divider {
    width: 180px;
    margin: 0 auto 22px;
  }

  .footer-badges {
    justify-content: center;
    gap: 15px;
  }

  .badge {
    width: 60px;
    height: 60px;
  }

  .footer-links {
    width: 100%;
    text-align: center;
    margin-bottom: 5px;
  }

  .footer-links .footer-heading {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .footer-links ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

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

  .footer-links a {
    font-size: 13px;
  }
}

/* =========================================================
   TESTIMONIAL SECTION (GLOBAL)
========================================================= */
.testimonial-section,
.testimonial-section * {
  box-sizing: border-box;
}

.testimonial-section {
  width: 100%;
  background: #F5F5F5;
  overflow: hidden;
  padding: 60px 0 40px;
}

.testimonial-heading {
  margin: 0 auto 35px;
  max-width: 1200px;
  text-align: center;
}

.testimonial-label {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0.1em;
  color: #404093;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.testimonial-heading h2 {
  margin: 0;
  padding: 0 20px;
  font-family: "Lora", serif;
  font-size: 36px;
  font-weight: 400;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  color: #18171C;
}

.testimonial-main {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 8px;
}

/* Google Rating Card */
.google-rating-card {
  flex: 0 0 311px;
  width: 311px;
  height: 387px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #eeeeee;
}

.google-rating-top {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.rating-number {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 76px;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  color: #18171C;
  margin-bottom: 16px;
}

.rating-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 15px;
}

.rating-stars span {
  color: #F8B800;
  font-family: Arial, sans-serif;
  font-size: 25px;
  line-height: 1;
}

.rating-text {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 23px;
  color: #18171C;
}

.google-logo {
  width: 100%;
  height: 72px;
  border-top: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -2px;
  color: #111111;
}

/* Slider Wrapper */
.testimonial-slider-wrapper {
  flex: 1;
  min-width: 0;
  height: 387px;
}

.testimonial-slider {
  position: relative;
  width: 100%;
  height: 387px;
  overflow: hidden;
  background: transparent;
}

.testimonial-track {
  height: 100%;
  display: flex;
  gap: 10px;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

.testimonial-card {
  position: relative;
  flex: 0 0 80%;
  min-width: 0;
  height: 387px;
  background: #ffffff;
  border: 1px solid #eeeeee;
}

.testimonial-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
}

.testimonial-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.testimonial-number {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 100%;
}

.testimonial-number .current-number {
  color: #18171C;
}

.testimonial-number .total-number {
  color: #AFAFAF;
  font-weight: 400;
}

.testimonial-arrows {
  display: flex;
  align-items: center;
  gap: 25px;
}

.testimonial-arrows button {
  width: 28px;
  height: 40px;
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-arrows button span {
  display: block;
  width: 17px;
  height: 17px;
  border-top: 2px solid #18171C;
  border-right: 2px solid #18171C;
  transition: transform 0.25s ease;
}

.testimonial-prev span {
  transform: rotate(-135deg);
}

.testimonial-prev:hover span {
  transform: rotate(-135deg) translate(3px, 3px);
}

.testimonial-next span {
  transform: rotate(45deg);
}

.testimonial-next:hover span {
  transform: rotate(45deg) translate(3px, 3px);
}

.testimonial-content {
  max-width: 760px;
  margin-left: 116px;
  margin-top: -28px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 22px;
  font-weight: 400;
  font-style: normal;
  line-height: 40px;
  letter-spacing: 0;
  color: #18171C;
}

.testimonial-author {
  margin-left: 116px;
  margin-top: auto;
  padding-bottom: 8px;
}

.author-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
  line-height: 100%;
  color: #18171C;
  margin-bottom: 10px;
}

.testimonial-card .testimonial-author .author-role {
  display: none;
}

.author-role {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 100%;
  color: #18171C;
}

.testimonial-preview-overlay {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  width: 20%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0.70),
      rgba(255, 255, 255, 0.96));
}

/* Desktop 1025px+ */
@media (min-width: 1025px) {
  .testimonial-card-inner {
    position: relative;
  }

  .testimonial-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
  }

  .testimonial-number {
    position: absolute;
    top: 30px;
    left: 20px;
    pointer-events: auto;
  }

  .testimonial-arrows {
    position: absolute;
    left: 20px;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 25px;
    pointer-events: auto;
  }

  .testimonial-content {
    margin-left: 116px;
    margin-top: 0;
  }

  .testimonial-author {
    margin-left: 116px;
  }
}

@media (max-width: 1200px) and (min-width: 1025px) {
  .testimonial-main {
    padding: 0 14px;
  }

  .google-rating-card {
    flex-basis: 290px;
    width: 290px;
  }

  .testimonial-content {
    margin-left: 80px;
    max-width: 650px;
  }

  .testimonial-author {
    margin-left: 80px;
  }

  .testimonial-card {
    flex-basis: 82%;
  }
}

@media (max-width: 1024px) {
  .testimonial-section {
    padding: 65px 8px 25px;
  }

  .testimonial-heading {
    margin-bottom: 48px;
  }

  .testimonial-label {
    font-size: 17px;
    margin-bottom: 22px;
    letter-spacing: 0.08em;
  }

  .testimonial-heading h2 {
    font-size: 36px;
    line-height: 110%;
  }

  .testimonial-main {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
  }

  .google-rating-card {
    width: 100%;
    height: 316px;
    flex: none;
  }

  .google-rating-top {
    min-height: 245px;
  }

  .rating-number {
    font-size: 70px;
  }

  .testimonial-slider-wrapper {
    width: 100%;
    height: 480px;
    flex: none;
  }

  .testimonial-slider {
    width: 100%;
    height: 480px;
  }

  .testimonial-track {
    gap: 0;
  }

  .testimonial-card {
    flex: 0 0 100%;
    width: 100%;
    height: 480px;
  }

  .testimonial-preview-overlay {
    display: none;
  }

  .testimonial-card-inner {
    position: relative;
    padding: 35px 25px 28px;
  }

  .testimonial-top {
    position: static;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .testimonial-number {
    position: static;
    font-size: 16px;
  }

  .testimonial-arrows {
    position: static;
    display: flex;
    align-items: center;
    gap: 22px;
  }

  .testimonial-content {
    margin: 38px 0 0 0;
    max-width: 100%;
    font-size: 21px;
    line-height: 36px;
  }

  .testimonial-author {
    margin-left: 0;
    padding-bottom: 0;
    margin-top: auto;
  }
}

@media (max-width: 768px) {
  .testimonial-section {
    padding: 55px 8px 20px;
  }

  .testimonial-heading {
    margin-bottom: 38px;
  }

  .testimonial-label {
    font-size: 16px;
  }

  .testimonial-heading h2 {
    font-size: 31px;
    line-height: 112%;
  }

  .google-rating-card {
    height: 300px;
  }

  .google-rating-top {
    min-height: 230px;
  }

  .rating-number {
    font-size: 64px;
  }

  .rating-stars span {
    font-size: 22px;
  }

  .testimonial-slider-wrapper,
  .testimonial-slider,
  .testimonial-card {
    height: 470px;
  }

  .testimonial-card-inner {
    padding: 30px 24px 25px;
  }

  .testimonial-content {
    margin-top: 35px;
    font-size: 20px;
    line-height: 34px;
  }

  .testimonial-arrows {
    gap: 20px;
  }
}

@media (max-width: 567px) {
  .testimonial-section {
    padding: 48px 7px 18px;
  }

  .testimonial-heading {
    margin-bottom: 30px;
  }

  .testimonial-label {
    font-size: 14px;
  }

  .testimonial-heading h2 {
    font-size: 26px;
    line-height: 115%;
  }

  .google-rating-card {
    height: 285px;
  }

  .google-rating-top {
    min-height: 215px;
  }

  .rating-number {
    font-size: 58px;
  }

  .rating-stars {
    gap: 3px;
  }

  .rating-stars span {
    font-size: 20px;
  }

  .rating-text {
    font-size: 15px;
    line-height: 21px;
  }

  .google-logo {
    height: 68px;
    font-size: 34px;
  }

  .testimonial-slider-wrapper,
  .testimonial-slider,
  .testimonial-card {
    height: 455px;
  }

  .testimonial-card-inner {
    padding: 27px 24px 23px;
  }

  .testimonial-number {
    font-size: 15px;
  }

  .testimonial-arrows {
    gap: 18px;
  }

  .testimonial-arrows button {
    width: 27px;
    height: 38px;
  }

  .testimonial-arrows button span {
    width: 15px;
    height: 15px;
  }

  .testimonial-content {
    margin-top: 32px;
    font-size: 18px;
    line-height: 31px;
  }

  .author-name {
    font-size: 16px;
  }

  .author-role {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .testimonial-section {
    padding: 40px 6px 40px;
  }

  .testimonial-label {
    font-size: 13px;
  }

  .testimonial-heading h2 {
    font-size: 22px;
    line-height: 118%;
  }

  .testimonial-heading {
    margin-bottom: 27px;
  }

  .google-rating-card {
    height: 270px;
  }

  .google-rating-top {
    min-height: 205px;
  }

  .rating-number {
    font-size: 53px;
  }

  .rating-stars span {
    font-size: 19px;
  }

  .rating-text {
    font-size: 14px;
    line-height: 20px;
  }

  .google-logo {
    height: 65px;
    font-size: 32px;
  }

  .testimonial-slider-wrapper,
  .testimonial-slider,
  .testimonial-card {
    height: 430px;
  }

  .testimonial-card-inner {
    padding: 25px 22px 22px;
  }

  .testimonial-number {
    font-size: 14px;
  }

  .testimonial-arrows {
    gap: 16px;
  }

  .testimonial-arrows button {
    width: 25px;
    height: 36px;
  }

  .testimonial-arrows button span {
    width: 14px;
    height: 14px;
  }

  .testimonial-content {
    margin-top: 30px;
    font-size: 17px;
    line-height: 29px;
  }

  .author-name {
    font-size: 15px;
  }

  .author-role {
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .testimonial-heading h2 {
    font-size: 20px;
  }

  .testimonial-content {
    font-size: 16px;
    line-height: 27px;
  }

  .testimonial-slider-wrapper,
  .testimonial-slider,
  .testimonial-card {
    height: 420px;
  }
}

/* =========================================================
   TENT CATEGORIES SECTION
========================================================= */
.tent-categories-section {
  padding: 0px 0 50px;
  width: 100%;
  background: #FFFFFF;
  overflow: hidden;
}

.tent-categories-intro {
  width: 100%;
  background: #EDEDED;
  text-align: center;
  padding: 40px 20px 40px;
  box-sizing: border-box;
}

.tent-categories-label {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 10%;
  text-align: center;
  text-transform: uppercase;
  color: #404093;
  margin: 0 0 20px;
}

.tent-categories-intro h2 {
  margin: 0;
  font-family: "Lora", serif;
  font-size: 42px;
  font-weight: 400;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  color: #18171C;
}

.tent-categories-intro p {
  width: 100%;
  max-width: 1100px;
  margin: 15px auto 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
  text-align: center;
  color: #18171C;
}

.tent-slider-section {
  width: 100%;
  background: #EDEDED;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
}

.tent-slider-viewport {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}

.tent-slider-track {
  display: flex;
  align-items: stretch;
  gap: 20px;
  width: max-content;
  will-change: transform;
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
}

.tent-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  flex: 0 0 calc((min(100vw, 1440px) - 40px) / 3);
  width: calc((min(100vw, 1440px) - 40px) / 3);
  height: 652px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-sizing: border-box;
}

.tent-card-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #DDDDDD;
}

.tent-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: opacity 0.9s ease, transform 1.2s ease;
}

.tent-image-normal {
  opacity: 1;
  z-index: 1;
}

.tent-image-hover {
  opacity: 0;
  z-index: 2;
  transform: scale(1.03);
}

.tent-card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 60%;
  z-index: 3;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.75s ease;
  pointer-events: none;
}

.tent-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  padding: 0 28px 40px;
  box-sizing: border-box;
  color: #FFFFFF;
  opacity: 0;
  transform: translateY(45px);
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.65s ease;
  pointer-events: none;
}

.tent-card-content h3 {
  margin: 0 0 7px;
  font-family: "Lora", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 110%;
  color: #FFFFFF;
}

.tent-card-content p {
  max-width: 330px;
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #FFFFFF;
}

.tent-card.is-center .tent-card-overlay {
  opacity: 1;
  transform: translateY(0);
}

.tent-card.is-center .tent-card-content {
  opacity: 1;
  transform: translateY(0);
}

.tent-card:hover .tent-image-normal,
.tent-card.is-hovered .tent-image-normal {
  opacity: 0;
}

.tent-card:hover .tent-image-hover,
.tent-card.is-hovered .tent-image-hover {
  opacity: 1;
  transform: scale(1);
}

.tent-card:hover .tent-card-overlay,
.tent-card.is-hovered .tent-card-overlay {
  opacity: 1;
  transform: translateY(0);
}

.tent-card:hover .tent-card-content,
.tent-card.is-hovered .tent-card-content {
  opacity: 1;
  transform: translateY(0);
}

.tent-card.is-center:hover .tent-image-normal,
.tent-card.is-center.is-hovered .tent-image-normal {
  opacity: 0;
}

.tent-card.is-center:hover .tent-image-hover,
.tent-card.is-center.is-hovered .tent-image-hover {
  opacity: 1;
}

.tent-slider-controls {
  width: 100%;
  margin-top: 35px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.tent-slider-btn {
  width: 50px;
  height: 50px;
  border: 0;
  background: #fff;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 50%;
  box-shadow: 4px 0px 10px -4px #626262;
}

.tent-slider-btn span {
  width: 18px;
  height: 18px;
  display: block;
  border-top: 2.5px solid #404093;
  border-left: 2.5px solid #404093;
}

.tent-slider-viewport::before {
  display: none;
}

.tent-slider-viewport::after {
  display: none;
}

.tent-slider-prev {
  left: max(20px, calc(5% - 50px));
}

.tent-slider-prev span {
  transform: rotate(-45deg);
}

.tent-slider-next {
  right: max(20px, calc(5% - 50px));
  box-shadow: -4px 0px 10px -4px #626262 !important;
}

.tent-slider-next span {
  transform: rotate(135deg);
}

.tent-slider-btn:hover {
  transform: translateY(-50%) scale(1.18);
}

.tent-view-all-btn {
  min-width: 211px;
  height: 56px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #CBAA6A;
  color: #FFFFFF;
  text-decoration: none;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border-radius: 30px;
}

.tent-view-all-btn::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease;
  border-radius: 50%;
  pointer-events: none;
}

.tent-view-all-btn:hover::before {
  transform: scale(1);
}

.tent-view-all-btn:hover {
  background: #b08b49 !important;
  box-shadow: 0 8px 30px rgba(203, 170, 106, 0.5), inset 0 2px 20px rgba(255, 255, 255, 0.2) !important;
}

@media (max-width: 1200px) and (min-width: 1024px) {
  .tent-card-content {
    padding: 0 25px 25px;
  }

  .tent-card-content h3 {
    font-size: 26px;
    line-height: 110%;
  }

  .tent-card-content p {
    max-width: 300px;
    font-size: 13px;
    line-height: 18px;
  }
}

@media (max-width: 1023px) and (min-width: 769px) {
  .tent-categories-intro {
    padding: 25px 20px 25px;
  }

  .tent-categories-label {
    font-size: 17px;
    margin-bottom: 18px;
  }

  .tent-categories-intro h2 {
    font-size: 36px;
    line-height: 108%;
  }

  .tent-categories-intro p {
    max-width: 850px;
    font-size: 13px;
    line-height: 22px;
    margin-top: 12px;
  }

  .tent-slider-track {
    gap: 20px;
  }

  .tent-card {
    flex: 0 0 calc((100vw - 60px) / 2);
    width: calc((100vw - 60px) / 2);
    height: 580px;
  }

  .tent-card-content {
    padding: 0 25px 25px;
  }

  .tent-card-content h3 {
    font-size: 23px;
  }

  .tent-slider-controls {
    height: auto;
    padding: 0 20px;
    justify-content: center;
  }

  .tent-slider-prev {
    left: 25px;
  }

  .tent-slider-next {
    right: 25px;
  }
}

@media (max-width: 768px) {
  .tent-categories-intro {
    padding: 45px 18px 28px;
  }

  .tent-categories-label {
    font-size: 15px;
    letter-spacing: 8%;
    margin-bottom: 17px;
  }

  .tent-categories-intro h2 {
    font-size: 29px;
    line-height: 112%;
  }

  .tent-categories-intro p {
    font-size: 13px;
    line-height: 21px;
    margin-top: 14px;
  }

  .tent-slider-track {
    gap: 0;
  }

  .tent-card {
    flex: 0 0 100vw;
    width: 100vw;
    height: 540px;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .tent-card-overlay {
    height: 52%;
  }

  .tent-card-content {
    padding: 0 24px 40px;
    text-align: center;
  }

  .tent-card-content h3 {
    font-size: 30px;
    text-align: center;
  }

  .tent-card-content p {
    font-size: 14px;
    line-height: 18px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .tent-slider-controls {
    height: auto;
    padding: 0 20px;
    margin-top: 25px;
    justify-content: center;
  }

  .tent-slider-btn {
    width: 40px;
    height: 40px;
  }

  .tent-slider-prev {
    left: 6px;
  }

  .tent-slider-next {
    right: 6px;
  }

  .tent-view-all-btn {
    min-width: 110px;
    height: 38px;
    font-size: 11px;
  }

  .tent-slider-btn span {
    width: 14px !important;
    height: 14px !important;
  }
}

@media (max-width: 567px) {
  .tent-categories-intro {
    padding: 40px 15px 25px;
  }

  .tent-categories-label {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .tent-categories-intro h2 {
    font-size: 25px;
  }

  .tent-categories-intro p {
    font-size: 12px;
    line-height: 20px;
  }

  .tent-card {
    height: 540px;
  }

  .tent-card-content {
    padding: 0 20px 22px;
  }

  .tent-card-content h3 {
    font-size: 21px;
  }

  .tent-card-content p {
    font-size: 11px;
    line-height: 17px;
  }

  .tent-categories-section {
    padding: 0 0 41px;
  }

  .tent-slider-controls {
    height: auto;
    padding: 0 15px;
    justify-content: center;
  }

  .tent-slider-prev {
    left: 10px;
  }

  .tent-slider-next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .tent-categories-intro {
    padding: 35px 14px 23px;
  }

  .tent-categories-label {
    font-size: 13px;
  }

  .tent-categories-intro h2 {
    font-size: 22px;
  }

  .tent-categories-intro p {
    font-size: 11px;
    line-height: 18px;
  }

  .tent-card {
    flex: 0 0 100vw;
    width: 100vw;
    height: 480px;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .tent-card-content h3 {
    font-size: 24px;
  }

  .tent-card-content p {
    font-size: 14px;
    line-height: 16px;
  }

  .tent-slider-controls {
    height: auto;
    margin-top: 20px;
    justify-content: center;
  }

  .tent-slider-prev {
    left: 8px;
  }

  .tent-slider-next {
    right: 8px;
  }

  .tent-view-all-btn {
    min-width: 105px;
    height: 36px;
    font-size: 10px;
  }
}

/* =========================================================
   GLOBAL PAGINATION STYLES (WordPress the_posts_pagination)
========================================================= */
.pagination-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px auto 70px auto;
  padding: 10px 20px;
  background: transparent;
  box-sizing: border-box;
}

.pagination-container .navigation.pagination {
  display: block;
  width: 100%;
}

.pagination-container .screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
  display: none !important;
}

.pagination-container .nav-links,
.pagination-container #numberWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.pagination-container .page-numbers,
.pagination-container .page-num,
.pagination-container .page-btn {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #18171C;
  text-decoration: none;
  min-width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: none;
  background: transparent;
  transition: all 0.25s ease;
  cursor: pointer;
  line-height: 1;
  user-select: none;
}

.pagination-container a.page-numbers:hover,
.pagination-container a.page-num:hover,
.pagination-container .page-btn:hover:not(:disabled) {
  color: #384282;
  background-color: #EEF1F8;
  transform: translateY(-1px);
}

.pagination-container .page-numbers.current,
.pagination-container span.current,
.pagination-container .page-num.active {
  background-color: #384282 !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(56, 66, 130, 0.25);
  cursor: default;
  transform: none !important;
}

.pagination-container .prev.page-numbers,
.pagination-container .next.page-numbers,
.pagination-container .arrow-btn {
  color: #384282;
  font-size: 22px;
  font-weight: 600;
  min-width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s ease;
}

.pagination-container .prev.page-numbers i,
.pagination-container .next.page-numbers i {
  font-size: 18px;
  display: inline-block;
  line-height: 1;
}

.pagination-container a.prev.page-numbers:hover,
.pagination-container a.next.page-numbers:hover {
  color: #283066;
  background-color: #EEF1F8;
  transform: scale(1.1);
}

.pagination-container .page-numbers.disabled,
.pagination-container span.prev,
.pagination-container span.next,
.pagination-container .arrow-btn:disabled {
  color: #C4C4C4 !important;
  cursor: not-allowed;
  pointer-events: none;
  background: transparent !important;
  transform: none !important;
}

.pagination-container .page-numbers.dots {
  color: #777777;
  font-size: 18px;
  min-width: 28px;
  cursor: default;
  background: transparent !important;
}

@media (max-width: 768px) {
  .pagination-container {
    margin: 40px auto 50px auto;
    padding: 5px 15px;
  }

  .pagination-container .nav-links,
  .pagination-container #numberWrapper {
    gap: 12px;
  }

  .pagination-container .page-numbers,
  .pagination-container .page-num,
  .pagination-container .page-btn {
    font-size: 17px;
    min-width: 38px;
    height: 38px;
  }

  .pagination-container .prev.page-numbers,
  .pagination-container .next.page-numbers,
  .pagination-container .arrow-btn {
    font-size: 18px;
    min-width: 38px;
    height: 38px;
  }
}

@media (max-width: 480px) {
  .pagination-container {
    margin: 30px auto 40px auto;
  }

  .pagination-container .nav-links,
  .pagination-container #numberWrapper {
    gap: 8px;
  }

  .pagination-container .page-numbers,
  .pagination-container .page-num,
  .pagination-container .page-btn {
    font-size: 15px;
    min-width: 34px;
    height: 34px;
  }

  .pagination-container .prev.page-numbers,
  .pagination-container .next.page-numbers {
    min-width: 34px;
    height: 34px;
    font-size: 16px;
  }
}

/* =========================================================
   FAQ SECTION COMPONENT (FIGMA DESIGN)
========================================================= */
.itm-faq-section {
  padding: 90px 20px 0px;
  background: #FFFFFF;
  width: 100%;
  box-sizing: border-box;
}

.itm-faq-container {
  max-width: 1035px;
  margin: 0 auto;
  width: 100%;
}

.itm-faq-header {
  text-align: center;
  margin-bottom: 45px;
}

.itm-faq-tag {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #404093;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.itm-faq-title {
  font-family: 'Lora', serif;
  font-weight: 400 !important;
  font-size: 38px;
  line-height: 1.25;
  color: #18171C;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.itm-faq-subtitle {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: #18171C;
  max-width: 820px;
  margin: 0 auto;
}

.itm-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.itm-faq-item {
  background: #F8F6FF;
  border: 1px solid #404093;
  border-radius: 2px;
  box-sizing: border-box;
  overflow: hidden;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.itm-faq-question {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.itm-faq-question-text {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.35;
  color: #18171C;
  margin: 0;
  flex: 1;
}

.itm-faq-icon {
  width: 24px;
  height: 24px;
  border: 1px solid #404093;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #404093;
  font-size: 11px;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.itm-faq-icon .icon-plus {
  display: inline-block;
}

.itm-faq-icon .icon-minus {
  display: none;
}

.itm-faq-item.active .itm-faq-icon .icon-plus {
  display: none;
}

.itm-faq-item.active .itm-faq-icon .icon-minus {
  display: inline-block;
}

.itm-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.itm-faq-answer-inner {
  padding: 0 30px 22px 30px;
  box-sizing: border-box;
}

.itm-faq-answer-inner p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: #18171C;
  margin: 0;
}

@media (max-width: 768px) {
  .itm-faq-section {
    padding: 60px 16px 70px;
  }

  .itm-faq-title {
    font-size: 28px;
  }

  .itm-faq-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .itm-faq-question {
    padding: 16px 18px;
    gap: 12px;
  }

  .itm-faq-question-text {
    font-size: 15px;
  }

  .itm-faq-answer-inner {
    padding: 0 18px 18px 18px;
  }

  .itm-faq-answer-inner p {
    font-size: 13px;
  }
}

/* =========================================================
   MASTER PRE-FOOTER EXPERTS CTA COMPONENT
========================================================= */
.experts-section,
.expert-banner {
  width: 100%;
  max-width: 1920px;
  margin: 80px auto 0;
  padding: 0px 50px;
  background: #D0C09E;
  box-sizing: border-box;
}

.experts-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  height: 475px;
  overflow: hidden;
}

.experts-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.experts-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .8s ease;
}

.experts-container:hover .experts-bg img {
  transform: scale(1.03);
}

.experts-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  width: 1000px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}

.experts-content,
.expert-card {
  width: min(1050px, 95%);
  padding: 55px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .12),
    inset 0 1px 0 rgba(255, 255, 255, .15);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  transition: .45s ease;
  background: linear-gradient(90deg,
      rgba(208, 192, 158, 0.35) 0%,
      rgba(208, 192, 158, 0.70) 49.52%,
      rgba(208, 192, 158, 0.35) 100%);
}

.experts-title,
.expert-card-title {
  font-size: 120px;
  line-height: 100%;
  font-weight: 300;
  letter-spacing: 2px;
  color: #51422E;
  margin-bottom: 14px;
  transition: .45s;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.experts-subtitle,
.expert-card-subtitle {
  font-weight: 300;
  display: block;
  font-size: 22.55px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #51422E;
  margin-bottom: 28px;
  transition: .4s;
  line-height: 100%;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.experts-container:hover .experts-subtitle {
  opacity: .9;
}

.experts-btn,
.expert-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 165px;
  height: 42px;
  padding: 0 24px;
  border: 1px solid rgba(62, 49, 40, .65);
  background: rgba(255, 255, 255, 0.08);
  color: #51422E;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .5px;
  transition: .35s;
  position: relative;
  overflow: hidden;
  font-family: 'Bricolage Grotesque', sans-serif;
  border-radius: 30px;
  cursor: pointer;
}

.experts-btn::before,
.expert-card-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .35),
      transparent);
  transition: .7s;
}

.experts-btn:hover::before,
.expert-card-btn:hover::before {
  left: 120%;
}

.experts-btn:hover,
.expert-card-btn:hover {
  background: #3E3128;
  border-color: #3E3128;
  color: #fff !important;
}

@media (max-width: 1024px) {

  .experts-section,
  .expert-banner {
    padding: 0px 40px;
    margin: 60px auto 0;
  }

  .experts-container {
    height: 340px;
  }

  .experts-content,
  .expert-card {
    width: min(640px, 92%);
    padding: 45px 35px;
  }

  .experts-title,
  .expert-card-title {
    font-size: clamp(60px, 7vw, 82px);
    margin-bottom: 12px;
  }

  .experts-subtitle,
  .expert-card-subtitle {
    font-size: 13px;
    letter-spacing: 5px;
    margin-bottom: 24px;
  }

  .experts-btn,
  .expert-card-btn {
    padding: 0 18px;
    min-width: 120px;
    height: 40px;
    font-size: 11px;
  }
}

@media (max-width: 991px) {

  .experts-section,
  .expert-banner {
    padding: 0px 40px;
    margin: 60px auto 0;
  }

  .experts-container {
    height: 248px;
  }

  .experts-overlay {
    width: 100%;
  }

  .experts-content,
  .expert-card {
    width: 70%;
    padding: 15px 20px;
  }

  .experts-title,
  .expert-card-title {
    font-size: 40px;
  }

  .experts-subtitle,
  .expert-card-subtitle {
    font-size: 13px;
    letter-spacing: 4px;
  }
}

@media (max-width: 767px) {

  .experts-section,
  .expert-banner {
    padding: 0px 20px;
    margin: 50px auto 0;
  }

  .experts-container {
    height: 300px;
  }

  .experts-content,
  .expert-card {
    width: 92%;
    padding: 25px 18px;
  }

  .experts-title,
  .expert-card-title {
    font-size: 42px;
  }

  .experts-subtitle,
  .expert-card-subtitle {
    font-size: 11px;
    letter-spacing: 3px;
    margin-bottom: 20px;
  }

  .experts-btn,
  .expert-card-btn {
    min-width: 145px;
    height: 38px;
    font-size: 10px;
    padding: 0 20px;
  }
}

@media (max-width: 576px) {

  .experts-section,
  .expert-banner {
    padding: 0px 15px;
    margin: 40px auto 0;
  }

  .experts-container {
    height: 235px;
  }

  .experts-content,
  .expert-card {
    width: 92%;
    padding: 20px 14px;
  }

  .experts-title,
  .expert-card-title {
    font-size: 32px;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }

  .experts-subtitle,
  .expert-card-subtitle {
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 14px;
  }

  .experts-btn,
  .expert-card-btn {
    min-width: 130px;
    height: 34px;
    padding: 0 16px;
    font-size: 11px;
  }
}

/* =========================================================
   GLOBAL MASTER BUTTON DESIGN ENFORCEMENT (30px Radius & 16px Font Size)
   ========================================================= */
.btn,
.hero-btn-contact,
.hero-btn-quote,
.about-custom-btn,
.custom-btn-new,
.hover-view-all,
.blog-story-btn,
.expert-card-btn,
.experts-btn,
.nav-btn,
.mobile-nav-btn,
.btn-know-more,
.btn-enquire-now,
.whatsapp-share-btn,
.about-btn,
.swati-btn,
.why-visit-button,
.contact-form button,
.contact-form input[type="submit"],
input.wpcf7-submit,
button[type="submit"],
.btn-animate {
  border-radius: 30px !important;
}

/* =========================================================
   MEDIA THEFT PROTECTION (Prevent dragging images)
   ========================================================= */
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}