/* Decoral Studio Custom Core Stylesheet */


/* CSS Variables */
:root {
  --color-dark: #101010;
  --color-muted: #777777;
  --color-accent: #FFB25D;
  --color-accent-hover: #e59843;
  --color-bg-alt: #EBEFF2;
  --color-bg-main: #FFFFFF;
  --color-border: #DCE4E8;
  --color-shadow: rgba(16, 16, 16, 0.08);
  --color-overlay: rgba(0, 0, 0, 0.45);

  --font-base: 'Roboto', sans-serif;
  --font-title: 'Outfit', sans-serif;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s ease;

  --container-width: 1200px;
}

/* Custom Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  color: var(--color-dark);
  background-color: var(--color-bg-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  outline: none;
}

/* Typography elements */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.2rem;
}

/* Subtitles with gold left bar */
.section-subtitle {
  font-family: var(--font-base);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-dark);
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
}

.section-subtitle::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 16px;
  background-color: var(--color-accent);
  margin-right: 8px;
  border-radius: 2px;
}

/* Reusable Layout Wrappers */
.container {
  width: 100%;
  padding: 0 2.5rem;
}

.section {
  padding: 5.5rem 0;
}

.section-alt {
  background-color: var(--color-bg-alt);
}

.text-center {
  text-align: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  transition: var(--transition-normal);
}

.btn-primary {
  background-color: var(--color-accent);
  color: #FFFFFF;
  border: 1px solid var(--color-accent);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0px 5px 15px rgba(255, 178, 93, 0.3);
}

.btn-outline {
  border: 1.5px solid var(--color-dark);
  color: var(--color-dark);
}

.btn-outline:hover {
  background-color: var(--color-dark);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-text-icon {
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  color: var(--color-dark);
}

.btn-text-icon:hover {
  color: var(--color-accent);
}

.btn-text-icon::after {
  content: ' ›';
  font-size: 1.4rem;
  line-height: 1;
  margin-left: 6px;
  transition: transform var(--transition-fast);
}

.btn-text-icon:hover::after {
  transform: translateX(4px);
}

/* ===== NAVBAR / HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.30);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.35s ease, backdrop-filter 0.4s ease;
}



/* Scrolled / solid state */
.header.scrolled {
  background: rgba(255, 255, 255, 0.30);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(16, 16, 16, 0.09);

}

.header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Logo */
.logo {
  display: flex;
  align-items: center;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-dark);
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 2.5rem;
  margin-left: 2.5rem;
  transition: color 0.3s ease;
}

.logo img {
  height: 70px;
  width: 220px;
  margin-right: 18px;
  transition: filter 0.3s ease;
  transform: scale(1.2);
  transform-origin: left center;
}


/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  height: 100%;
  flex: 1;
  justify-content: flex-end;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: right;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 0.85rem;
  font-size: 1.0rem;
  font-weight: 600;
  letter-spacing: 0.7px;
  color: var(--color-dark);
  text-transform: uppercase;
  height: 100%;
  white-space: nowrap;
  transition: color 0.22s ease;
}

.nav-link:hover,
.nav-item.active .nav-link {
  color: var(--color-accent);
}



/* Dropdown Chevron Icon */
.nav-arrow {
  font-size: 0.58rem;
  margin-left: 2px;
  opacity: 0.6;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.nav-item.has-dropdown:hover .nav-arrow,
.nav-item.has-dropdown.open .nav-arrow {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #FFFFFF;
  min-width: 240px;
  border-top: 2px solid var(--color-accent);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.11), 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.25s ease;
  pointer-events: none;
}

.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.68rem 1.25rem;
  font-size: 0.875rem;
  color: var(--color-dark);
  font-weight: 400;
  transition: background 0.15s ease, color 0.15s ease, padding-left 0.15s ease;
}

.dropdown-link:hover {
  background: rgba(255, 178, 93, 0.09);
  color: var(--color-accent);
  padding-left: 1.55rem;
}

/* Dropdown item icon */
.dd-icon {
  width: 18px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-accent);
  flex-shrink: 0;
  opacity: 0.75;
  transition: opacity 0.15s ease;
}

.dropdown-link:hover .dd-icon {
  opacity: 1;
}

/* CTA Button */
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.35rem;
  background: #8B1A1A;
  color: #FFFFFF;
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  margin-left: 1.5rem;
  border: none;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.btn-nav-cta:hover {
  background: #6d1414;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(139, 26, 26, 0.35);
  color: #FFFFFF;
}

/* Burger Toggle */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  margin-left: 0.75rem;
  flex-shrink: 0;
  border-radius: 4px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-dark);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Main Hero Slide Layout */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  margin-top: 0;
  /* Transparent navbar overlays hero */
}



.slider-container {
  height: 100%;
  width: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity var(--transition-slow);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-overlay);
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 90%;
  max-width: 800px;
  text-align: center;
  color: #FFFFFF;
}

.slide-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s ease 0.2s;
}

.slide-content p {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 2rem;
  text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s ease 0.4s;
}

.slide-content .btn {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s ease 0.6s;
}

.slide.active .slide-content h1,
.slide.active .slide-content p,
.slide.active .slide-content .btn {
  transform: translateY(0);
  opacity: 1;
}

/* Slider Controls */
.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 5;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.active {
  background-color: var(--color-accent);
  transform: scale(1.25);
}

/* Cost Calculator Widget Panel */
.calc-panel {
  margin-top: -4.5rem;
  position: relative;
  z-index: 10;
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.calc-card {
  background-color: var(--color-bg-main);
  padding: 2.2rem 1.8rem;
  border-radius: 6px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--color-border);
  transition: var(--transition-normal);
  cursor: pointer;
}

.calc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--color-accent);
}

.calc-card-icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-bg-alt);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
  transition: var(--transition-fast);
}

.calc-card:hover .calc-card-icon {
  background-color: var(--color-accent);
  color: #FFFFFF;
}

.calc-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.calc-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* Service Offering Card */
.service-card {
  background-color: var(--color-bg-main);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--color-border);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
}

.service-card-body {
  padding: 2rem;
  flex-grow: 1;
}

.service-card-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.service-card-body p {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

/* Value Props Grid */
.val-prop {
  text-align: center;
  padding: 1.5rem 1rem;
}

.val-prop-icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-bg-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--color-accent);
  margin: 0 auto 1.25rem auto;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.04);
}

.val-prop h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.val-prop p {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* Inspirations Section (Masonry Grid) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
  background-size: cover;
  background-position: center;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent, rgba(16, 16, 16, 0.8));
  opacity: 0;
  transition: opacity var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #FFFFFF;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.gallery-overlay p {
  font-size: 0.85rem;
  color: var(--color-accent);
}

/* Google Reviews Slider (Testimonials) */
.testimonial-container {
  max-width: 800px;
  margin: 2.5rem auto 0 auto;
  position: relative;
}

.testimonial-track {
  overflow: hidden;
  position: relative;
}

.testimonial-slide {
  background-color: var(--color-bg-main);
  padding: 2.5rem 3rem;
  border-radius: 6px;
  border: 1px solid var(--color-border);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.03);
  text-align: center;
  display: none;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-stars {
  color: var(--color-accent);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.testimonial-source {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 0.25rem;
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 2.5rem auto 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
}

.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--color-dark);
  transition: var(--transition-fast);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--color-muted);
  transition: transform var(--transition-normal);
}

.faq-item:hover .faq-question {
  color: var(--color-accent);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--color-accent);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-answer {
  padding: 1rem 0 0.5rem 0;
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* Footer layout */
.footer {
  background-color: var(--color-dark);
  color: #DCE4E8;
  padding: 5.5rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo {
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--color-accent);
  transform: translateY(-3px);
}

.footer-title {
  font-family: var(--font-title);
  color: #FFFFFF;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-title::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--color-accent);
  margin-top: 8px;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--color-accent);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
  color: var(--color-accent);
  margin-right: 12px;
  margin-top: 3px;
}

.footer-contact a {
  color: inherit;
}

.footer-contact a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a {
  margin-left: 1.5rem;
  color: inherit;
}

.footer-bottom-links a:hover {
  color: var(--color-accent);
}

/* Founders Section Grid */
.founder-card {
  background-color: var(--color-bg-main);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--color-border);
  display: flex;
}

.founder-img {
  width: 40%;
  background-color: var(--color-bg-alt);
  background-size: cover;
  background-position: center;
}

.founder-body {
  width: 60%;
  padding: 2.2rem;
}

.founder-name {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.founder-role {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.founder-contact {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.85rem;
  color: var(--color-muted);
}

.founder-contact li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

/* Timeline Layout */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 3rem auto 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 31px;
  width: 2px;
  height: 100%;
  background-color: var(--color-border);
}

.timeline-item {
  position: relative;
  padding-left: 5.5rem;
  margin-bottom: 3.5rem;
}

.timeline-dot {
  position: absolute;
  left: 20px;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--color-bg-main);
  border: 4px solid var(--color-accent);
  z-index: 5;
}

.timeline-date {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.timeline-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* Interactive cost estimator / Form layout */
.estimator-form {
  background-color: var(--color-bg-main);
  padding: 3rem;
  border-radius: 6px;
  border: 1px solid var(--color-border);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.06);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.2rem;
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: var(--color-dark);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--color-accent);
  background-color: #FFFFFF;
}

.form-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.option-box {
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-normal);
}

.option-box:hover {
  border-color: var(--color-accent);
}

.option-box.selected {
  background-color: rgba(255, 178, 93, 0.1);
  border-color: var(--color-accent);
  color: var(--color-dark);
  font-weight: 500;
}

/* Contact detail list */
.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-meta-item {
  display: flex;
  align-items: flex-start;
}

.contact-meta-icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--color-accent);
  margin-right: 1.25rem;
  flex-shrink: 0;
}

.contact-meta-text h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.contact-meta-text p {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* Modal Core Setup */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: var(--color-bg-main);
  max-width: 600px;
  width: 90%;
  padding: 3rem;
  border-radius: 6px;
  position: relative;
  transform: translateY(-50px);
  transition: transform var(--transition-normal);
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 2rem;
  color: var(--color-muted);
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: var(--color-dark);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.3rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
  }

  .footer-grid>div:first-child {
    grid-column: span 3;
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  .header {
    height: 64px;
    padding: 0 1rem;
  }

  .header.scrolled {
    height: 64px;
  }

  .header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0;
  }

  .burger {
    display: flex;
    margin-left: 0;
    margin-right: 0.75rem;
    order: -1;
  }

  .logo {
    margin-left: 0;
    margin-right: auto;
    order: 0;
  }

  .logo img {
    height: 45px;
    width: 150px;
    transform: scale(1.1);
  }

  .btn-nav-cta {
    display: inline-flex;
    font-size: 0.65rem;
    padding: 0.5rem 0.85rem;
    margin-left: auto;
    order: 1;
  }

  .nav-menu {
    position: fixed;
    top: 64px;
    left: -100%;
    width: 85%;
    height: calc(100vh - 64px);
    background-color: var(--color-bg-main);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 1.25rem 1.5rem 2.5rem;
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.14);
    transition: left var(--transition-normal);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-item:last-child {
    border-bottom: none;
  }

  .nav-link {
    width: 100%;
    padding: 0.9rem 0;
    font-size: 0.85rem;
    justify-content: space-between;
    height: auto;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: 2px solid var(--color-accent);
    border-radius: 0;
    padding: 0.5rem 0 0.75rem 0.5rem;
    width: 100%;
    min-width: auto;
    display: none;
    pointer-events: auto;
  }

  .nav-item.has-dropdown.open .dropdown-menu {
    display: block;
  }

  .nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    pointer-events: none;
  }

  .nav-item.has-dropdown.open:hover .dropdown-menu {
    display: block;
    pointer-events: auto;
  }

  /* Burger Animation */
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 7px);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -7px);
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .calc-panel {
    margin-top: 1rem;
  }

  .founder-card {
    flex-direction: column;
  }

  .founder-img {
    width: 100%;
    height: 250px;
  }

  .founder-body {
    width: 100%;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    padding-left: 3.5rem;
  }

  .timeline-dot {
    left: 9px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid>div:first-child {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-bottom-links a {
    margin: 0 0.75rem;
  }

  .estimator-form {
    padding: 1.5rem;
  }

  .form-options-grid {
    grid-template-columns: 1fr;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: transform var(--transition-normal), background-color var(--transition-normal), box-shadow var(--transition-normal);
}

.whatsapp-float:hover {
  background-color: #20ba59;
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.35);
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
  }
}

/* ===== NEW HERO SLIDER ===== */
#hs-slider-wrap,
#hs-slider-wrap * {
  box-sizing: border-box !important;
}

#hs-slider-wrap .hs-hero {
  position: relative !important;
  width: 100% !important;
  height: 100vh !important;
  min-height: 520px !important;
  overflow: hidden !important;
  background: #111 !important;
}

#hs-slider-wrap .hs-slide {
  position: absolute !important;
  inset: 0 !important;
  opacity: 0 !important;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
  pointer-events: none !important;
}

#hs-slider-wrap .hs-slide.active {
  opacity: 1 !important;
  pointer-events: all !important;
}

#hs-slider-wrap .hs-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  max-width: none !important;
}

#hs-slider-wrap .hs-slide::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.28) 50%, rgba(0, 0, 0, 0.08) 100%) !important;
  pointer-events: none !important;
}

#hs-slider-wrap .hs-slide-content {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-end !important;
  padding: 0 20px 13vh !important;
  text-align: center !important;
}

#hs-slider-wrap .hs-slide-content h1 {
  font-family: 'Outfit', sans-serif !important;
  font-size: clamp(32px, 5.5vw, 78px) !important;
  font-weight: 900 !important;
  color: #fff !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 16px 0 !important;
  opacity: 0 !important;
  transform: translateY(28px) !important;
  transition: opacity 0.8s 0.3s ease, transform 0.8s 0.3s ease !important;
  max-width: 900px !important;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3) !important;
}

#hs-slider-wrap .hs-slide-content .hs-sub {
  font-family: 'Roboto', sans-serif !important;
  font-size: clamp(13px, 1.5vw, 18px) !important;
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: 400 !important;
  margin: 0 0 32px 0 !important;
  opacity: 0 !important;
  transform: translateY(20px) !important;
  transition: opacity 0.8s 0.5s ease, transform 0.8s 0.5s ease !important;
  display: block !important;
}

#hs-slider-wrap .hs-slide-content .hs-sub span {
  display: inline-block !important;
  margin: 0 4px !important;
  opacity: 0.7 !important;
  font-size: 0.75em !important;
  vertical-align: middle !important;
}

#hs-slider-wrap .hs-btn {
  display: inline-block !important;
  background: #8B1A1A !important;
  color: #fff !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: clamp(11px, 1.1vw, 14px) !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  padding: 16px 40px !important;
  border-radius: 4px !important;
  border: none !important;
  cursor: pointer !important;
  opacity: 0 !important;
  transform: translateY(16px) !important;
  transition: opacity 0.8s 0.7s ease, transform 0.8s 0.7s ease, background 0.25s ease !important;
  text-decoration: none !important;
}

#hs-slider-wrap .hs-btn:hover {
  background: #6d1414 !important;
  box-shadow: 0 8px 32px rgba(139, 26, 26, 0.45) !important;
  color: #fff !important;
}

#hs-slider-wrap .hs-slide.active .hs-slide-content h1,
#hs-slider-wrap .hs-slide.active .hs-slide-content .hs-sub,
#hs-slider-wrap .hs-slide.active .hs-btn {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

#hs-slider-wrap .hs-dots {
  position: absolute !important;
  bottom: 28px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 10 !important;
  display: flex !important;
  gap: 8px !important;
  list-style: none !important;
}

#hs-slider-wrap .hs-dot {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.38) !important;
  cursor: pointer !important;
  transition: background 0.3s, transform 0.3s !important;
  border: none !important;
  padding: 0 !important;
}

#hs-slider-wrap .hs-dot.active {
  background: #fff !important;
  transform: scale(1.3) !important;
}

/* ===== MARQUEE TRUST BAR ===== */
.marquee-section {
  width: 100%;
  background: #fff;
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-section::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%);
}

.marquee-section::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
  will-change: transform;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 56px;
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-item img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(100%) contrast(1.1);
}

.marquee-item .text-wrap .title {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.marquee-item .text-wrap .subtitle {
  font-size: 12.5px;
  color: #888;
  font-weight: 400;
  margin-top: 1px;
  line-height: 1.3;
}

.divider {
  width: 1px;
  height: 36px;
  background: #e0e0e0;
  flex-shrink: 0;
  margin: 0 8px;
}

@media (max-width: 768px) {
  .marquee-item {
    padding: 0 32px;
  }

  .marquee-section::before,
  .marquee-section::after {
    width: 60px;
  }
}

/* ===== EXPLORE SOLUTIONS CARDS ===== */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.4s ease;
}

.card-body {
  background: #f2eeee;
  padding: 28px 20px 30px;
  text-align: center;
}

.card-body h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 10px;
}

.card-body p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 25px;
}

.arrow-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e0dede;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 22px;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.card:hover img {
  transform: scale(1.05);
}

.card:hover .arrow-btn {
  background: #8B1A1A;
  color: #fff;
}

@media (max-width: 1024px) {
  .explore-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .explore-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose {
  padding: 80px 20px;
  background-color: #ffffff;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.why-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--color-accent, #FFB25D);
  margin: 15px auto 0;
  border-radius: 2px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.why-card {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--color-accent, #FFB25D);
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  background: rgba(255, 178, 93, 0.1);
  color: var(--color-accent, #FFB25D);
}

.why-card:hover .why-icon {
  background: var(--color-accent, #FFB25D);
  color: #ffffff;
}

.why-card-title {
  margin-bottom: 12px;
}

.why-card-text {
  font-family: var(--font-base);
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* Cards horizontally scrollable on mobile – no visible scrollbar */
@media (max-width: 767px) {
  .why-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 15px;
    padding-left: 5px;
    padding-right: 5px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .why-grid::-webkit-scrollbar {
    display: none;
  }

  .why-card {
    flex: 0 0 82%;
    max-width: 290px;
  }
}

/* ───────────────────────────────────────────────
   Horizontal Timeline – WordPress friendly
   ─────────────────────────────────────────────── */
.premium-horizontal-timeline-wrapper {
  position: relative;
  padding: 40px 0 60px;
  overflow: hidden;
  background: transparent;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.timeline-progress-container {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 8px;
  background: #d1d5db;
  margin-bottom: 32px;
  border-radius: 4px;
  overflow: hidden;
}

.timeline-progress-bar {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899);
  transform: scaleX(var(--progress, 0));
  transform-origin: left;
  transition: transform 0.4s ease-out;
}

.premium-horizontal-timeline {
  display: flex;
  flex-direction: row;
  gap: 32px;
  padding: 0 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.premium-horizontal-timeline::-webkit-scrollbar {
  display: none;
}

.timeline-event {
  flex: 0 0 340px;
  scroll-snap-align: start;
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}

.event-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #6b7280;
  color: white;
  font-size: 1.0rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.35s ease;
  z-index: 2;
}

.timeline-event:hover .event-badge {
  transform: scale(1.12) translateY(-3px);
}

.event-badge.primary {
  background: #6366f1;
}

.event-badge.success {
  background: #10b981;
}

.event-badge.info {
  background: #3b82f6;
}

.event-badge.warning {
  background: #f59e0b;
}

.event-badge.danger {
  background: #ef4444;
}

.event-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
  border: 1px solid #e5e7eb;
  transition: all 0.35s ease;
}

.timeline-event:hover .event-card {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.11);
}

.event-date {
  font-size: 0.95rem;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.event-title {
  margin: 0 0 16px;
}

.event-content p {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
}

/* ==================== MOBILE FIX ==================== */
@media (max-width: 768px) {
  .timeline-event {
    flex: 0 0 calc(100% - 32px);
    min-width: 280px;
  }

  .premium-horizontal-timeline {
    gap: 20px;
    padding: 0 12px 20px;
  }

  .event-card {
    padding: 24px 20px;
  }

}

@media (max-width: 360px) {
  .timeline-event {
    flex: 0 0 calc(100% - 24px);
  }
}

/* ───────────────────────────────────────────────
   Before-After Image Slider Styles
   ─────────────────────────────────────────────── */
.before-after-container {
  width: 100%;
  height: 500px;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
}

.ba-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ba-slider img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.image-after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.img-before-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.image-before {
  width: 100%;
  height: 100%;
  max-width: none;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #8B1A1A;
  z-index: 3;
  cursor: ew-resize;
  transform: translateX(-50%);
}

.ba-handle-line {
  width: 100%;
  height: 100%;
  background: #8B1A1A;
}

.ba-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: #8B1A1A;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.ba-label {
  position: absolute;
  bottom: 20px;
  padding: 6px 14px;
  background: #8B1A1A;
  color: #ffffff;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: 0.5px;
  z-index: 4;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ba-label-before {
  left: 20px;
}

.ba-label-after {
  right: 20px;
}

@media (max-width: 768px) {
  .before-after-container {
    height: 350px;
  }
}

/* ====== FAQ NEW SECTION ====== */
.faq-section-new {
  padding: 80px 20px;
  background-color: #ffffff;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 60px;
  align-items: flex-start;
}

.faq-left {
  position: sticky;
  top: 120px;
}

.faq-main-title {
  margin-bottom: 24px;
}

.faq-main-title strong {
  font-weight: 700;
  display: block;
  margin-top: 4px;
}

.faq-description {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  color: #666666;
  line-height: 1.6;
}

.faq-right {
  display: flex;
  flex-direction: column;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.faq-accordion-item {
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
  transition: all 0.25s ease;
}

.faq-accordion-item:last-child {
  border-bottom: none;
}

.faq-accordion-item.active {
  background: #fdfdfd;
}

.faq-accordion-header {
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  transition: all 0.25s ease;
}

.faq-accordion-header:hover {
  color: #8B1A1A;
}

.faq-accordion-item.active .faq-accordion-header {
  color: #111111;
  padding-bottom: 12px;
}

.faq-caret {
  font-size: 14px;
  color: #4b5563;
  transition: transform 0.25s ease;
}

.faq-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-accordion-content {
  padding: 0 28px 22px 28px;
}

.faq-accordion-body p {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 14.5px;
  line-height: 1.6;
  color: #4b5563;
}

@media (max-width: 1024px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-left {
    position: static;
  }

  .faq-main-title {
    font-size: 32px;
  }

  .faq-main-title strong {
    font-size: 36px;
  }
}

/* ====== CTA BANNER STYLES ====== */
.cta-banner {
  padding: 80px 20px;
  background-color: #ffffff;
  text-align: center;
}

.cta-container-card {
  max-width: 1100px;
  margin: 0 auto;
  background-color: var(--color-bg-alt, #EBEFF2);
  border: 1px dashed rgba(139, 26, 26, 0.25);
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.cta-banner h2 {
  margin-bottom: 15px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner p {
  font-family: 'Roboto', sans-serif;
  font-size: 15.5px;
  color: var(--color-muted, #777777);
  max-width: 650px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.cta-btn-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-banner .btn-primary-cta {
  background-color: #8B1A1A;
  color: #ffffff;
  border: 1.5px solid #8B1A1A;
  display: inline-block;
  padding: 0.85rem 1.8rem;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  transition: var(--transition-normal);
}

.cta-banner .btn-primary-cta:hover {
  background-color: #6d1414;
  border-color: #6d1414;
  transform: translateY(-2px);
  box-shadow: 0px 5px 15px rgba(139, 26, 26, 0.3);
}

.cta-banner .btn-outline-cta {
  background-color: transparent;
  color: var(--color-dark, #101010);
  border: 1.5px solid var(--color-dark, #101010);
  display: inline-block;
  padding: 0.85rem 1.8rem;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  transition: var(--transition-normal);
}

.cta-banner .btn-outline-cta:hover {
  background-color: var(--color-dark, #101010);
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 40px 15px;
  }

  .cta-container-card {
    padding: 40px 20px;
    border-radius: 16px;
  }

  .cta-banner h2 {
    font-size: 26px;
  }
}

/* ===== INTERIOR HERO SECTION ===== */
.interior-hero {
  margin-top: 80px;
  padding: 6rem 0;
  background-color: var(--color-bg-alt);
  position: relative;
  overflow: hidden;
}

.interior-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.interior-hero-text h1 {
  font-family: var(--font-title);
  font-size: 3.2rem;
  line-height: 1.15;
  color: var(--color-dark);
  margin: 0.75rem 0 1.5rem 0;
}

.interior-hero-text h1 .accent-text {
  color: var(--color-accent);
  position: relative;
}

.interior-hero-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-muted);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.interior-hero-actions {
  display: flex;
  gap: 1.5rem;
}

.interior-hero-visual {
  position: relative;
  height: 480px;
}

.visual-collage {
  position: relative;
  width: 100%;
  height: 100%;
}

.collage-img {
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  position: absolute;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.collage-img-main {
  width: 75%;
  height: 80%;
  top: 0;
  left: 0;
  z-index: 1;
}

.collage-img-sub {
  width: 55%;
  height: 60%;
  bottom: 0;
  right: 0;
  z-index: 2;
  border: 4px solid var(--color-bg-main);
}

.collage-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.collage-badge {
  position: absolute;
  bottom: 20%;
  left: -20px;
  background: var(--color-bg-main);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
  border-left: 4px solid var(--color-accent);
}

.badge-num {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1;
}

.badge-lbl {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-muted);
  margin-top: 4px;
  font-weight: 500;
}

@media (max-width: 991px) {
  .interior-hero-text h1 {
    font-size: 2.6rem;
  }

  .interior-hero-visual {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .interior-hero {
    padding: 4rem 0;
  }

  .interior-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .interior-hero-text {
    text-align: center;
  }

  .interior-hero-desc {
    margin: 0 auto 2rem auto;
  }

  .interior-hero-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .interior-hero-visual {
    height: 350px;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .collage-badge {
    left: 10px;
    bottom: 10px;
  }
}

/* ===== CONCEPT A: EDITORIAL MAGAZINE GRID ===== */
.hero-concept-a {
  margin-top: 80px;
  padding: 6.5rem 0;
  background: radial-gradient(circle at 85% 50%, rgba(255, 178, 93, 0.1) 0%, var(--color-bg-alt) 80%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.hero-concept-a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(var(--color-border) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.25;
  pointer-events: none;
}

.concept-a-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: center;
}

.concept-a-visual {
  position: relative;
  height: 520px;
}

.collage-3 {
  position: relative;
  width: 100%;
  height: 100%;
}

.c3-img {
  position: absolute;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
  border: 4px solid var(--color-bg-main);
  overflow: hidden;
}

.c3-img:hover {
  transform: scale(1.03) translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  z-index: 5;
}

.c3-img-1 {
  width: 48%;
  height: 90%;
  left: 0;
  top: 5%;
  z-index: 1;
}

.c3-img-2 {
  width: 48%;
  height: 44%;
  right: 0;
  top: 5%;
  z-index: 2;
}

.c3-img-3 {
  width: 48%;
  height: 42%;
  right: 4%;
  bottom: 5%;
  z-index: 3;
}

.collage-tag {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(16, 16, 16, 0.75);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ===== CONCEPT B: INTERACTIVE SPLIT SHOWCASE ===== */
.hero-concept-b {
  margin-top: 80px;
  background-color: var(--color-bg-main);
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.concept-b-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.concept-b-text {
  padding: 6.5rem 10% 6.5rem 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--color-bg-alt);
}

.concept-b-visual {
  position: relative;
  overflow: hidden;
}

.showcase-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 450px;
}

.showcase-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
}

.showcase-slide.active {
  opacity: 1;
  visibility: visible;
}

.slider-nav-overlay {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.slider-project-info {
  display: flex;
  flex-direction: column;
}

.slider-project-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-dark);
}

.slider-project-loc {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 2px;
}

.slider-controls {
  display: flex;
  gap: 0.75rem;
}

.slider-dot-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-muted);
  transition: all 0.3s ease;
}

.slider-dot-btn.active,
.slider-dot-btn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

@media (max-width: 991px) {
  .concept-a-grid {
    gap: 3rem;
  }

  .concept-a-visual {
    height: 420px;
  }

  .concept-b-grid {
    min-height: 500px;
  }
}

@media (max-width: 768px) {
  .hero-concept-a {
    padding: 4.5rem 0;
  }

  .concept-a-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .concept-a-visual {
    height: 380px;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-concept-b .container-fluid {
    padding: 0;
  }

  .concept-b-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .concept-b-text {
    padding: 4rem 20px;
    text-align: center;
  }

  .concept-b-text .interior-hero-actions {
    justify-content: center;
  }

  .concept-b-visual {
    height: 400px;
  }

  .slider-nav-overlay {
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 1rem;
  }
}

/* ===== DEMO 3 (STYLE 1: 3-CARD LAYOUT) ===== */
.hero-style-1 {
  margin-top: 80px;
  padding: 5rem 0;
  background-color: var(--color-bg-main);
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.hero-style-1 h1 {
  font-family: var(--font-title);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0.5rem 0 1.5rem;
}

.hero-style-1 h1 .serif-italic {
  font-style: italic;
  font-family: 'Roboto Serif', Georgia, serif;
  color: #ff6b6b;
  font-weight: 300;
}

.style-1-sub {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: var(--color-muted);
}

.style-1-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.style-1-tab {
  background: #f4f7f6;
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.style-1-tab.active,
.style-1-tab:hover {
  background: rgba(255, 107, 107, 0.1);
  color: #ff6b6b;
}

.style-1-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.style-1-card {
  border-radius: 20px;
  overflow: hidden;
  height: 280px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--color-border);
}

.style-1-card-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.style-1-card:hover .style-1-card-img {
  transform: scale(1.05);
}

/* ===== DEMO 4 (STYLE 2: FOREST GREEN BACKDROP) ===== */
.hero-style-2 {
  margin-top: 80px;
  background: linear-gradient(135deg, rgba(20, 50, 30, 0.95), rgba(10, 30, 15, 0.98)), url('../assets/hero_living.png');
  background-size: cover;
  background-position: center;
  padding: 7.5rem 0;
  color: #fff;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.hero-style-2 h1 {
  font-family: var(--font-title);
  font-size: 3.2rem;
  font-weight: 700;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.hero-style-2 h1 .serif-italic {
  font-style: italic;
  font-family: 'Roboto Serif', Georgia, serif;
  color: #ffffff;
  font-weight: 300;
}

.style-2-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.style-2-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.style-2-actions .btn-primary {
  background-color: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.style-2-actions .btn-outline {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
}

.style-2-actions .btn-outline:hover {
  background-color: #fff;
  color: var(--color-dark);
}

/* ===== DEMO 5 (STYLE 3: FLOATING CARD WITH STEPS) ===== */
.hero-style-3 {
  margin-top: 80px;
  padding: 5.5rem 0;
  background: #f0f4f7;
  border-bottom: 1px solid var(--color-border);
}

.style-3-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.style-3-card h1 {
  font-family: var(--font-title);
  font-size: 2.8rem;
  color: var(--color-dark);
  margin: 0.5rem 0 1.5rem;
  line-height: 1.2;
}

.style-3-card h1 .serif-italic {
  font-style: italic;
  font-family: 'Roboto Serif', Georgia, serif;
  color: var(--color-dark);
  font-weight: 300;
}

.style-3-arch {
  width: 280px;
  height: 340px;
  border-radius: 140px 140px 0 0;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  background-size: cover;
  background-position: center;
}

.style-3-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 3.5rem auto 0 auto;
}

.style-3-step {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.style-3-step-num {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-accent);
  background: rgba(255, 178, 93, 0.12);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.style-3-step-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-dark);
  line-height: 1.3;
}

/* ===== DEMO 6 (STYLE 4: HORIZONTAL visual WITH BOTTOM BAR) ===== */
.hero-style-4 {
  margin-top: 80px;
  padding: 5rem 0 3rem 0;
  background-color: var(--color-bg-main);
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.hero-style-4 h1 {
  font-family: var(--font-title);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.style-4-desc {
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 650px;
  margin: 0 auto 2.5rem;
}

.style-4-banner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  height: 420px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.style-4-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.style-4-badge {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background: rgba(16, 16, 16, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 30px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  font-size: 0.8rem;
}

.style-4-meta {
  background: #101010;
  color: #fff;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: -10px auto 0 auto;
  border-radius: 0 0 16px 16px;
  position: relative;
  z-index: 10;
}

.style-4-meta-left {
  display: flex;
  gap: 3.5rem;
}

.style-4-meta-item {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.style-4-meta-lbl {
  font-size: 0.7rem;
  color: #777777;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.style-4-meta-val {
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 3px;
}

@media (max-width: 991px) {

  .hero-style-1 h1,
  .hero-style-2 h1,
  .hero-style-4 h1 {
    font-size: 2.6rem;
  }

  .style-3-card h1 {
    font-size: 2.2rem;
  }

  .style-3-card {
    padding: 3rem;
    gap: 2rem;
  }

  .style-1-grid {
    gap: 1rem;
  }

  .style-3-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .style-4-banner {
    height: 340px;
  }
}

@media (max-width: 768px) {
  .style-1-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .style-3-card {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem;
    text-align: center;
  }

  .style-3-steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 2.5rem auto 0 auto;
  }

  .style-4-banner {
    height: 280px;
  }

  .style-4-meta {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .style-4-meta-left {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    align-items: center;
  }

  .style-4-meta-item {
    text-align: center;
  }
}

/* ===== DWELLUXE HERO SECTION STYLE ===== */
.hero-dwelluxe {
  background-color: #FFFFFF;
  padding: 8rem 0 5rem 0;
  overflow: hidden;
  position: relative;
}

.dwelluxe-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.25fr;
  gap: 5rem;
  align-items: center;
}

/* Left Content */
.dwelluxe-content {
  display: flex;
  flex-direction: column;
}

.dwelluxe-title {
  font-family: 'Roboto Serif', Georgia, serif;
  font-weight: 400;
  font-size: 4.8rem;
  line-height: 1.05;
  color: #101010;
  margin-bottom: 2rem;
  letter-spacing: -1.5px;
}

.dwelluxe-desc {
  font-family: var(--font-base);
  font-size: 1.05rem;
  color: #555555;
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.6;
}

.dwelluxe-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-dwelluxe-primary {
  background-color: #ECA654;
  color: #FFFFFF;
  border: 1px solid #ECA654;
  border-radius: 50px;
  padding: 0.95rem 2rem;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  text-align: center;
}

.btn-dwelluxe-primary:hover {
  background-color: #d89343;
  border-color: #d89343;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(236, 166, 84, 0.25);
  color: #FFFFFF;
}

.btn-dwelluxe-outline {
  background-color: transparent;
  color: #101010;
  border: 1.5px solid #101010;
  border-radius: 50px;
  padding: 0.95rem 2rem;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  text-align: center;
}

.btn-dwelluxe-outline:hover {
  background-color: #101010;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Social Proof */
.dwelluxe-social-proof {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.dwelluxe-avatars {
  display: flex;
  align-items: center;
}

.dwelluxe-avatars img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  margin-left: -12px;
  object-fit: cover;
}

.dwelluxe-avatars img:first-child {
  margin-left: 0;
}

.dwelluxe-customers-text {
  display: flex;
  flex-direction: column;
}

.dwelluxe-customers-num {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.4rem;
  color: #101010;
  line-height: 1.2;
}

.dwelluxe-customers-lbl {
  font-size: 0.85rem;
  color: #777777;
}

/* Right Collage */
.dwelluxe-visual {
  position: relative;
  width: 100%;
}

.dwelluxe-collage-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 1.5rem;
  position: relative;
}

.collage-item {
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(16, 16, 16, 0.05);
  display: flex;
  background-color: #f7f7f7;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.collage-item:hover img {
  transform: scale(1.05);
}

/* Living Room (Main) */
.c-living {
  grid-row: span 2;
  height: 380px;
  border-radius: 100px 20px 100px 100px;
}

/* Side Stack */
.collage-side-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Red Chair (Top right) */
.c-red-chair {
  height: 200px;
  border-radius: 20px 100px 20px 100px;
}

/* Dining Room (Bottom right) */
.c-dining {
  height: 165px;
  border-radius: 100px 20px 100px 20px;
}

/* Bottom Left (Gray Chair) */
.c-gray-chair {
  grid-column: 1;
  height: 250px;
  margin-top: 1.5rem;
  border-radius: 20px 20px 100px 100px;
}

/* Stats Widget */
.dwelluxe-stats-widget {
  position: absolute;
  bottom: 0px;
  right: 0px;
  background-color: #FFFFFF;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  z-index: 10;
  border: 1px solid rgba(16, 16, 16, 0.03);
}

.stat-group {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.6rem;
  color: #101010;
  line-height: 1.2;
}

.stat-lbl {
  font-size: 0.8rem;
  color: #777777;
  white-space: nowrap;
}

.stat-connector {
  display: flex;
  align-items: center;
}

/* Header customization for Dwelluxe styling */
.logo-dwelluxe {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.btn-nav-cta-dwelluxe {
  background-color: #ECA654;
  color: #FFFFFF;
  border-radius: 50px;
  padding: 0.65rem 1.5rem;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.2px;
  transition: all 0.3s ease;
  margin-left: 1.5rem;
}

.btn-nav-cta-dwelluxe:hover {
  background-color: #d89343;
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(236, 166, 84, 0.2);
  color: #FFFFFF;
}


/* Responsive Styles */
@media (max-width: 991px) {
  .dwelluxe-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .dwelluxe-title {
    font-size: 3.5rem;
    text-align: center;
  }

  .dwelluxe-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .dwelluxe-actions {
    justify-content: center;
  }

  .dwelluxe-social-proof {
    justify-content: center;
  }

  .dwelluxe-stats-widget {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 2rem;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .dwelluxe-collage-grid {
    grid-template-columns: 1fr;
  }

  .c-living,
  .c-red-chair,
  .c-dining,
  .c-gray-chair {
    height: 260px;
    border-radius: 20px;
  }

  .collage-side-stack {
    gap: 1rem;
  }

  .c-gray-chair {
    grid-column: auto;
    margin-top: 0;
  }
}