/* -------------------------
   ROOT VARIABLES
-------------------------- */

:root {
  --dark: #111111;
  --gray: #6b7280;
  --gold: #c6a86d;
  --light: #f3f8f2;
  --primary: #e7d6ab;
  --bight-yellow: #f8c630;

  --heading-font: "Playfair Display", serif;
  --body-font: "Inter", sans-serif;

  --max-width: 1200px;
}

/* -------------------------
   GLOBAL RESET
-------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  color: var(--dark);
  line-height: 1.7;
  background: var(--light);
}

a {
  text-decoration: none;
  color: inherit;
}

.btn {
  border: 1px solid var(--dark);
  padding: 0.8rem 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  transition: 0.3s;
}

/* -------------------------
   SCROLL REVEAL ANIMATION
-------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.reveal:nth-child(3) {
  transition-delay: 0.2s;
}

.reveal:nth-child(4) {
  transition-delay: 0.3s;
}

/* -------------------------
   REVEAL FROM RIGHT (TESTIMONIALS)
-------------------------- */

.reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition:
    opacity 1s ease,
    transform 0.9s ease;
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* .testimonial-card.reveal-right {
  transition-delay: 0.15s;
} */

/* -------------------------
   LAYOUT
-------------------------- */

.container {
  max-width: var(--max-width);
  margin: auto;
  padding: 6rem 1rem;
}

/* =========================
   NAVBAR (MERGED & CLEAN)
========================= */

/* NAVBAR DEFAULT (TRANSPARENT) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: transparent;
  border-bottom: 1px solid transparent;

  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    border 0.35s ease;
}

.site-header:not(.scrolled) .nav-links a,
.site-header:not(.scrolled) .logo {
  color: #ffffff;
}

/* AFTER SCROLL */
.site-header.scrolled {
  background: #ffffffd0;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* After scroll text */
.site-header.scrolled .nav-links a,
.site-header.scrolled .logo {
  color: #111111;
}

.nav-container {
  max-width: var(--max-width);
  margin: auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--heading-font);
  font-size: 1rem;
  letter-spacing: 0.14em;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  font-weight: 500;
}

/* Hover underline */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Active navbar link */
.nav-links a.active,
.nav-links a:hover {
  color: var(--gold) !important;
}
.mobile-menu a.active {
  color: white;
}

.nav-links a.active::after {
  width: 100%;
}

.menu-btn {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* =========================
   MOBILE MENU
========================= */
.site-header:not(.scrolled) .mobile-menu {
  background: #ffffff;
  background: linear-gradient(90deg, #c6a86d 0%, #e6d4a3 35%, #ffffff 100%);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem;
  border-top: 1px solid #e5e7eb;
  background: linear-gradient(90deg, #c6a86d 0%, #e6d4a3 35%, #ffffff 100%);
}

.mobile-menu a {
  padding: 0.75rem 0;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* hero section */
.hero-full {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Slides */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* Image */
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

/* Text */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  color: #fff;
  padding: 0 1.5rem;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-content h1,.hero-content h2 {
  font-family: var(--heading-font);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.hero-content p {
  max-width: 520px;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-btn {
  border: 1px solid var(--dark);
  padding: 0.8rem 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  transition: 0.3s;
}

.hero-btn {
  background: var(--light);
  border-color: var(--light);
  color: #000000;
}

.hero-btn:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--gold);
}

/* Mobile */
@media (max-width: 768px) {
  .hero-full {
    height: 90vh;
  }
}

/* -------------------------
   FOOTER
-------------------------- */

.site-footer {
  border-top: 1px solid #e1e3e6;
  /* padding: 4rem 1rem 0; */
}

.footer-container {
  max-width: var(--max-width);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
}

.site-footer h3,
.site-footer h4 {
  font-family: var(--heading-font);
  margin-bottom: 1rem;
}

.site-footer p,
.site-footer a {
  font-size: 0.9rem;
  color: var(--gray);
}

.site-footer a {
  display: block;
  margin-bottom: 0.5rem;
}

.site-footer a:hover {
  color: var(--gold);
}

.copyright {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.8rem;
  color: var(--gray);
}

/* -------------------------
   RESPONSIVE (ONE PLACE ONLY)
-------------------------- */

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .mobile-menu.show {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-image img {
    height: 360px;
  }
}

/* -------------------------
   NUMBERS (DARK VARIANT)
-------------------------- */

.numbers.dark {
  margin-top: 8rem;
  margin-left: 6rem;
  margin-right: 6rem;
  padding: 5rem 1rem;
  background: #e7d6ab;
  color: #000000;
  border-radius: 33% 67% 31% 69% / 50% 37% 63% 50%;
}

.numbers-grid {
  max-width: var(--max-width);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  text-align: center;
}

.number-item::before {
  content: "_______";
  display: block;
  margin-bottom: 0rem;
  color: var(--gold);
  font-size: 1.5rem;
}

.number-item::after {
  content: "_______";
  display: block;
  margin-bottom: 0rem;
  color: var(--gold);
  font-size: 1.5rem;
}

.number {
  font-family: var(--heading-font);
  font-size: 3rem;
  display: block;
  margin-bottom: 0.5rem;
}

.label {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #000000;
}

.Highlight {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0rem;
  align-content: center;
}

/* Responsive */
@media (max-width: 768px) {
  .numbers-grid {
    grid-template-columns: 1fr;
  }
}

/* -------------------------
   ABOUT SECTION
-------------------------- */

.about {
  margin-top: 4rem;
}

.about-grid {
  display: grid;
  padding: 0rem 0rem;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  /* padding-bottom: 5rem; */
  margin: 5rem;
}

.about-content h2 {
  font-family: var(--heading-font);
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

/* .about-content h2::after {
   content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1rem auto 0;
  text-align: left;
} */

.about-content p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  max-width: 520px;
  line-height: 1.8;
  font-size: 14px;
  text-align: justify;
}

.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    margin: 1rem;
    gap: 1rem;
  }
  .numbers.dark {
    margin: auto;
    margin-top: 8rem;
    width: 80%;
  }
  .about-image img {
    height: 320px;
  }
}

/* -------------------------
   PORTFOLIO PREVIEW (CARD WITH BG)
-------------------------- */

.portfolio-preview {
  margin-top: 7rem;
  text-align: center;
  padding-bottom: 2rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin: 3rem 6rem;
}

/* Card */
.portfolio-card {
  /* background: #0000001c; */
  background: #e7d6ab;
  /* card background */
  border-radius: 1rem;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  display: block;
  text-align: left;
  padding: 1rem;
}

/* Subtle luxury hover */
.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* Image */
.portfolio-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
  border-radius: 12px;
}

/* Optional image zoom on hover */
.portfolio-card:hover img {
  transform: scale(1.04);
}

/* Text section */
.portfolio-content {
  padding: 10px;
  text-align: center;
}

.section-title {
  font-family: var(--heading-font);
  text-align: center;
  margin-bottom: 3rem;
}

.section-title .title-top {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.section-title .title-bottom {
  display: block;
  font-size: 2.2rem;
  line-height: 1.2;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1rem auto 0;
}

.portfolio-content h3 {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.portfolio-content p {
  font-size: 0.8rem;
  /* color: var(--gray); */
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  text-align: justify;
  /* font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
  /* text-transform: uppercase; */
}

.project-location {
  font-size: 0rem;
  color: var(--dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-image img {
    height: 220px;
  }
}

/* -------------------------
   FULL-WIDTH TESTIMONIAL SECTION
-------------------------- */

.testimonial-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 4rem 0rem;
  padding-top: 10rem;
  padding-bottom: 7rem;

  background: var(--primary);
}

.testimonial-title {
  font-family: var(--heading-font);
  font-size: 2rem;

  text-align: center;
  padding-top: 3rem;
  margin: 0 auto 2rem;
}

.testimonial-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1rem auto 0;
}

.testimonial-section::after {
  background:
    /* linear-gradient(to right,
      #F3F8F2, transparent 15%, transparent 85%, rgba(0,0,0,0.08)
    ), */ linear-gradient(
    to bottom,
    #f3f8f2,
    transparent 20%,
    transparent 80%,
    #f3f8f2
  );
}

/* .testimonial-card {
  max-width: 620px;
  margin: 3rem auto 0;
  padding: 3rem 2.5rem;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
} */

/* Review text */
.testimonial-text {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Stars */
.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.2em;
  margin-bottom: 0rem;
}

/* Customer info */
.testimonial-user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

/* Profile image */
.testimonial-user img {
  border-radius: 50%;
  object-fit: cover;
}

/* Name + location */
.testimonial-user-info {
  text-align: left;
}

.testimonial-user-info .name {
  font-size: 0.9rem;
  font-weight: 500;
}

.testimonial-user-info .location {
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
  /* .testimonial-card {
    padding: 2.2rem 1.8rem;
  } */

  .testimonial-text {
    font-size: 1.05rem;
  }
}

/* -------------------------
   INNER EDGE FADE (TESTIMONIALS)
-------------------------- */

.testimonial-section {
  position: relative;
  overflow: hidden;
}

/* Edge shadow overlay */
.testimonial-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;

  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.425) 0%,
    rgba(0, 0, 0, 0.425) 0%,
    rgba(0, 0, 0, 0.425) 0%,
    rgba(0, 0, 0, 0.425) 0%
  );
}

/* -------------------------
   BEFORE / AFTER (TESTIMONIAL)
-------------------------- */

.before-after {
  margin-bottom: 2.5rem;
}

.ba-wrapper {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 16px;
}

.ba-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-image.after {
  clip-path: inset(0 0 0 50%);
}

.ba-slider {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 2px;
  background: rgba(255, 255, 255, 0.9);
  cursor: ew-resize;
}

/* HANDLE (fully clickable) */
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: ew-resize;
}

/* Arrow icon */
.ba-arrows {
  font-size: 1.3rem;
  font-weight: 600;
  color: #111111;
  user-select: none;
}

/* Mobile */
@media (max-width: 768px) {
  .ba-wrapper {
    height: 240px;
  }
}

/* -------------------------
   TESTIMONIAL CENTER CAROUSEL
-------------------------- */

.testimonial-carousel {
  overflow: hidden;
  margin-top: 2rem;
}

.testimonial-track {
  display: flex;
  /* justify-content: center; */
  gap: 3rem;
  transition: transform 0.6s ease;
}

/* Override default single-card centering */
/* .testimonial-card {
  margin: 0;
  min-width: 620px;
  flex-shrink: 0;
  opacity: 0.35;
  transform: scale(0.9);
  transition: transform 0.6s ease, opacity 0.6s ease;
  cursor: pointer;
} */

/* Center card */
/* .testimonial-card.active {
  opacity: 1;
  transform: scale(1);
  cursor: default;
} */

/* Mobile */
@media (max-width: 768px) {
  /* .testimonial-card {
    min-width: 90%;
  } */
}

/* -------------------------
   OUR SERVICES (ICONS)
-------------------------- */

.services-section {
  padding: 5rem 1rem;
}

.services-grid {
  max-width: 1000px;
  margin: 4rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

/* Card as link */
.service-card {
  display: block;
  background: #ffffff;
  padding: 2.8rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Hover (very subtle) */
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.158);
  background: var(--primary);
}

/* Icon */
.service-icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  margin-bottom: 1.2rem;
  color: var(--gold);
}

.service-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.4;
}

/* Text */
.service-card h3 {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.service-card h4 {
  padding-top: 1rem;
  font-family: var(--heading-font);
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.service-icon {
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.service-card:hover .service-icon {
  transform: translateY(-4px);
  color: var(--dark);
}

/* -------------------------
   SERVICE CARD WITH IMAGE STRIP
-------------------------- */

.service-with-image {
  position: relative;
  overflow: hidden;
  padding: 0;
  /* handled inside */
}

/* Image strip (collapsed) */
.service-image {
  height: 44px;
  overflow: hidden;
  transition: height 0.45s ease;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content spacing */
.service-content {
  padding: 2.5rem;
  padding-top: 1.5rem;
}

/* Hover interaction */
.service-with-image:hover .service-image {
  height: 250px;
}

/* Keep your existing hover lift */
.service-with-image:hover {
  transform: translateY(-4px);
}

/* -------------------------
   CONTACT CTA
-------------------------- */

.contact-cta {
  margin: 5rem;
  padding: 3rem 1rem;
  text-align: center;
  background: #111111;
  color: #ffffff;
  border-radius: 50px;
  /* position: relative; */
}

.contact-cta h2 {
  font-family: var(--heading-font);
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.contact-cta p {
  color: cbd5e1;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.contact-cta .btn {
  border: 1px solid var(--dark);
  padding: 0.8rem 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  transition: 0.3s;
  /* color: var(--gold) !important; */
}

.contact-cta .btn {
  border-color: #ffffff;
  color: #ffffff;
}

.contact-cta .btn:hover {
  background: #ffffff;
  color: #111111;
}

/* Contact details (hidden initially) */
.contact-details {
  margin-top: 1.5rem;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  font-size: 0.9rem;
}

.contact-details a {
  color: var(--light);
  text-decoration: none;
}

.contact-details a:hover {
  color: var(--gold);
}

.contact-details .divider {
  margin: 0 0.6rem;
  color: var(--gray);
}

/* Reveal on hover */
.contact-cta:hover .contact-details {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   ABOUT PAGE
========================= */

.about-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 6rem 1rem;
}

/* Intro */
.about-intro {
  text-align: center;
  margin-bottom: 5rem;
}

.about-intro h1 {
  font-family: var(--heading-font);
  font-size: clamp(2.4rem, 4vw, 3rem);
  margin-bottom: 1.2rem;
}

.about-intro p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--gray);
  line-height: 1.8;
}

/* Sections */
.about-section {
  margin-bottom: 4rem;
}

.about-section h2 {
  font-family: var(--heading-font);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.about-section p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* CTA */
.about-cta {
  text-align: center;
  margin-top: 5rem;
}

.about-cta p {
  margin-bottom: 1.2rem;
  color: var(--gray);
}

/* Mobile */
@media (max-width: 768px) {
  .about-page {
    padding: 4rem 1rem;
  }
}

html,
body {
  overflow-x: hidden;
}

.floating-buttons {
  position: fixed;
  bottom: 0rem;
  left: 1rem;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-buttons .btn-sm-expand {
  width: 50px;
  height: 50px;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  font-size: 1px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  color: white;
  transition: all 0.3s ease;
  white-space: nowrap;
  border-radius: 6px;
  border: 1px solid var(--light);
  letter-spacing: 0.15em;
}

.floating-buttons .btn-sm-expand i {
  margin-left: 11px;
  flex-shrink: 0;
  transition: margin 0.3s ease;
  font-size: 28px;
  /* Increased icon size */
}

.floating-buttons .btn-sm-expand span {
  opacity: 0;
  margin-left: 0;
  transition: all 0.3s ease;
  font-size: 16px;
  color: black;
}

.floating-buttons .btn-sm-expand:hover {
  width: 160px;
  padding-left: 16px;
}

.floating-buttons .btn-sm-expand:hover span {
  opacity: 1;
  margin-left: 10px;
}

.btn-whatsapp i {
  color: #25d366;
}

.btn-facebook i {
  color: #1877f2;
}

.btn-instagram i {
  color: #e1306c;
}

.btn-youtube i {
  color: #ff0000;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}

/* When scrolled */
.site-header.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Change text color on scroll */
.site-header.scrolled .nav-links a,
.site-header.scrolled .logo {
  color: #111;
}

/* Default (transparent state text) */
.nav-links a,
.logo {
  color: #ffffff;
}

.indus-logo {
  height: 60px;
  width: auto;
}

.service-btn {
  border: 1px solid var(--dark);
  padding: 0.8rem 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  transition: 0.3s;
}

.service-btn:hover {
  background: var(--light);
  border-color: var(--light);
  color: #000000;
}

.service-btn {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--gold);
}

.cstm-about:hover {
  border-color: var(--dark);
}
/* ---------------------scroll to top ---------------------------------- */
#scrollTopBtn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  /* background: #ffffff;
  color: #111; */
  background: black;
  color: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scrollTopBtn:hover {
  background: var(--gold);
  color: black;
}

/* ----------------------  why choose us  -------------------------------------------*/
/* .why-choose-us {
  padding: 80px 20px;
  background: #f9f9f9;
} */

.why-choose-us .container {
  max-width: 1280px;
  margin: auto;
  text-align: center;
  padding: 1rem;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(198, 168, 109, 0.4);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.why-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #111;
  font-family: "Playfair Display";
}

.why-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  text-align: justify;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(198, 168, 109, 0.4);
}

/* Responsive */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .floating-buttons {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    transform: translateY(0);
  }
}

@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
  }
}
.why-icon {
  /* width: 56px; */
  height: 56px;
  margin-bottom: 18px;
  color: #111;
}

.why-icon svg {
  width: 100%;
  height: 100%;
}

.why-card {
  text-align: center;
}

.why-card:hover .why-icon {
  color: #000;
}

/* ------------------------ how it works ------------------------ */
.how-it-works {
  padding: 80px 20px;
  background: #ffffff;
}

.how-it-works .container {
  max-width: 1280px;
  margin: auto;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.step-card {
  background: #f9f9f9;
  padding: 35px 25px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
  font-size: 42px;
  font-weight: 700;
  color: #1f3c88;
  display: block;
  margin-bottom: 15px;
}

.step-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #111;
  font-family: "Playfair Display";
}

.step-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* Responsive */
@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-number {
    font-size: 36px;
  }
}

/* =========================
   MENU BUTTON (HAMBURGER)
========================= */
.menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: none; /* ❗ hidden by default (desktop) */
  align-items: center;
}

/* SVG sizing */
.menu-btn svg {
  width: 22px;
  height: 22px;
}

/* Default icon states */
.icon-close {
  display: none;
}

/* Toggle icons when menu opens */
.menu-open .icon-menu {
  display: none;
}

.menu-open .icon-close {
  display: block;
}

/* =========================
   MOBILE MENU
========================= */
.mobile-menu {
  display: none;
  flex-direction: column;
}

/* Show mobile menu when open */
.mobile-menu.open {
  display: flex;
}

/* =========================
   MOBILE BREAKPOINT
========================= */
@media (max-width: 992px) {
  .menu-btn {
    display: flex;
  }
  .nav-links {
    display: none;
  }
  .portfolio-grid {
    gap: 1.5rem;
    margin: 2rem 1rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-cta {
    margin: 1rem;
  }
  .footer-container {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .portfolio-grid {
    gap: 1.5rem;
    margin: 2rem 1rem;
    grid-template-columns: repeat(1, 1fr);
  }
}

.copyright a {
  display: inline;
  color: var(--gold);
}
.copyright a:hover {
  color: white;
}
.copyright {
  padding: 10px 0;
  background-color: #000;
}

.footer-container {
  padding: 4rem 1rem 0;
}

/* ----------------- Testimonials --------------------------- */
/* WRAPPER */
.testimonial-wrapper {
  max-width: 1250px;
  margin: auto;
  margin-top: 60px;
  padding: 40px 40px;
  border: 1px solid gainsboro;
  border-radius: 20px;
  background-color: aliceblue;
}

/* MAIN CARD */
.testimonial-card {
  display: flex;
  gap: 40px;
  align-items: center;
  width: 100%;
  /* position: relative; */
  /* padding: 0 35px; */
}

/* LEFT VIDEO SECTION */
.video-section {
  position: relative;
  /* width: 55%; */
}

.content-section {
  width: 40%;
}

/* VIDEO HOLDER */
.video-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
  background: #000;
}

/* YOUTUBE IFRAME */
.video-container iframe {
  width: 100%;
  height: 100%;
  display: none;
  border-radius: 14px;
}

/* ACTIVE VIDEO */
.video-container iframe.active {
  display: block;
}

/* NAVIGATION ARROWS */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gold);
  color: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
}

.nav-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.05);
}

.nav-btn.prev {
  left: -25px;
}

.nav-btn.next {
  right: -25px;
}

.content-section .name {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}

.content-section .designation {
  font-size: 14px;
  color: #777;
  margin-bottom: 14px;
}

.content-section .testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}
/* RESPONSIVE */
@media (max-width: 991px) {
  .testimonial-card {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
  }

  .content-section {
    width: 100%;
  }

  .content-section {
    margin-top: 25px;
  }

  .content-section {
    width: 100%;
  }
  /* .video-section {
    height: auto !important;
    width: 50%;
  } */
}
@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-wrapper {
    padding: 10px;
  }
  .content-section {
    width: 100%;
  }

  .content-section {
    margin-top: 20px;
  }
  .video-section {
    width: 100% !important;
    height: auto !important;
  }
  .video-container {
    width: 100% !important;
    height: auto !important;
  }
}

.profile-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  background: #eee;
}

@media (max-width: 991px) {
  .profile-row {
    justify-content: center;
    text-align: left;
  }
}

.contact-item a {
  display: block !important;
}

/* -----------------breadcrum --------------------------- */
/* Breadcrumb Section */
.breadcrumb-section {
  position: relative;
  background-image: url("../img/hero/H-16.jpg"); /* change image */
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  color: #fff;
}
.breadcrumb-kitchen-section {
  position: relative;
  background-image: url("../img/our_services/kitchen/HK-19.jpg"); /* change image */
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  color: #fff;
}
/* Dark overlay */
.breadcrumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* Content */
.breadcrumb-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  text-align: center;
  z-index: 1;
  padding: 80px 0px;
}

/* Title */
.breadcrumb-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* Breadcrumb nav */
.breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

/* Links */
.breadcrumb-nav a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
}

.breadcrumb-nav a:hover {
  text-decoration: underline;
}

/* Separator */
.separator {
  opacity: 0.7;
}

/* Current page */
.breadcrumb-nav .current {
  color: #f4d27a; /* accent color */
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .breadcrumb-title {
    font-size: 26px;
  }
  .living-container {
    padding: 1rem !important;
  }
}

/* -----------------------living-service -------------------------------------- */
.living-container {
  display: flex;
  justify-content: space-around;
  overflow-x: hidden;
}
.living-service {
  width: auto;
  /* height: 300px !important; */
  object-fit: cover;
  transition: transform 0.3s ease;
}
.img-box .overlay {
  pointer-events: none;
}

.living-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 0;
}

.img-box {
  position: relative;
  cursor: pointer;
  height: 300px; /* 🔥 FIXED HEIGHT FOR ALL */
  overflow: hidden; /* 🔥 Crop excess */
  border-radius: 8px;
}

.img-box img {
  width: 100%;
  height: 100%; /* 🔥 FORCE SAME HEIGHT */
  object-fit: cover; /* 🔥 MAINTAIN CROPPING */
  display: block;
}

/* Hover overlay */
.img-box .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
}

.img-box:hover .overlay {
  opacity: 1;
}
/* Lightbox base */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* When active */
.lightbox.show {
  opacity: 1;
  pointer-events: auto;
}

/* Zoom animation */
.lightbox-content {
  text-align: center;
  animation: zoomIn 0.35s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 6px;
}

/* Caption */
.lightbox-caption {
  color: #ddd;
  margin-top: 12px;
  font-size: 15px;
}

/* Close button */
.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
}

/* Navigation arrows */
.lightbox .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  user-select: none;
  z-index: 999;
}

.lightbox .prev {
  left: 30px;
}
.lightbox .next {
  right: 30px;
}

.eye-view {
  color: white;
  height: 30px !important;
  width: 30px !important;
}

img {
  content-visibility: auto;
}
/* -------------------------------  faqs  ------------------------------------------- */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0 30px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #111;
}

.faq-item:hover {
  background-color: white;
}

.faq-icon {
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 0 20px 0;
  color: #555;
  line-height: 1.7;
}

/* Active state */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-item.active {
  background-color: white;
  /* padding: 32px; */
}

/* ------------------------------------contact ----------------------------------- */

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.form-group label {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  padding: 12px 14px;
  font-size: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  background: transparent;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group input:hover,
.form-group select:hover {
  border-color: var(--gold);
}

.btn-submit:hover {
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-form {
    padding: 0 10px;
  }
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

/* Left info */
.contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.contact-info p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.info-item strong {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #111;
}

.info-item p {
  margin-bottom: 0;
}

/* Form stays same */
.contact-form {
  width: 100%;
}

/* 🔥 Below 992px → Stack vertically */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }
  .cstm-map {
    padding: 1rem !important;
  }
  .project-info h4 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.info-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  margin-top: 3px;
}

.info-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--gold); /* matches your theme */
}

.info-content strong {
  display: block;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #111;
}

.info-content p,
.info-content a {
  color: #555;
  line-height: 1.6;
  text-decoration: none;
}

.info-content a:hover {
  text-decoration: underline;
}

.text-danger {
  color: red;
  font-size: 14px;
}

.form-group span {
  color: red;
}

.sending-msg {
  background: #fff8e1;
  color: #8a6d3b;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.success-msg {
  background: #e6f4ea;
  color: #137333;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.error-msg {
  background: #fce8e6;
  color: #c5221f;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

/* ------------------------------------------------- projects gallery ------------------------- -------------------------------*/
/* ===============================
   PROJECT GALLERY SECTION
================================ */

.project-gallery {
  padding: 80px 6%;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 500;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.project-card {
  background: #f7f7f7;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s ease;
}

.project-card:hover {
  transform: translateY(-6px);
}

.project-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.project-info {
  padding: 20px;
  margin-top: -8px;
  background-color: var(--gold);
  border-radius: 0 0 16px 16px;
  text-align: center;
}

.project-info h4 {
  margin-bottom: 6px;
  font-size: 18px;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-info p {
  font-size: 14px;
  opacity: 0.8;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* max 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
}

/* ===============================
   MODAL OVERLAY
================================ */

.gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.gallery-modal.active {
  display: flex;
}

.close-btn {
  position: absolute;
  top: 28px;
  right: 36px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
}

/* ===============================
   MODAL CONTENT
================================ */

.modal-content {
  background-color: white;
  display: flex;
  gap: 20px;
  width: 90%;
  max-width: 1100px;
  padding: 20px;
  border-radius: 14px;
  flex-wrap: wrap;
}

/* ===============================
   MAIN IMAGE AREA
================================ */

.modal-main {
  flex: 3;
  height: 520px;
  position: relative;
  overflow: hidden;
}

/* NAV ARROWS */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background-color: var(--gold);
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border-radius: 50%;
}

.prev {
  left: 12px;
}

.next {
  right: 12px;
}

/* ===============================
   THUMBNAILS PANEL
================================ */

.modal-thumbs {
  flex: 1;
  max-height: 520px; /* MATCH MAIN IMAGE */
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  padding-right: 6px;
  padding-left: 6px;
}

.modal-thumbs img,
.modal-thumbs video {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  /* opacity: 0.6; */
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.modal-thumbs img:hover,
.modal-thumbs video:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.modal-thumbs .active {
  opacity: 1;
  outline: 4px solid #c9a25f;
}

/* Subtle scrollbar */
.modal-thumbs::-webkit-scrollbar {
  width: 4px;
}

.modal-thumbs::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .modal-content {
    flex-direction: column;
  }

  .modal-main {
    height: 300px;
    min-height: 300px;
  }

  .modal-thumbs {
    max-height: 100px;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .modal-thumbs img,
  .modal-thumbs video {
    min-width: 80px;
    height: 80px;
  }
  .main-media {
    position: relative;
  }
}

.modal-main {
  flex: 3;
  height: 520px;
  position: relative;
  overflow: hidden;
  background: #000;
}

/* ===== MAIN MEDIA FIX ===== */

/* MAIN MEDIA WRAPPER */
.main-media {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
}

/* IMAGE FIX */
.main-media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}

/* YOUTUBE FIX */
.main-media iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
  aspect-ratio: 16 / 9;
}
#modal-txt {
  width: 100%;
  /* color: #fff; */
}

#modal-h1 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

#modal-p {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.4;
  text-align: justify;
}
.nav:hover {
  background: rgba(0, 0, 0, 0.65);
  color: white;
}

.gallery-btn {
  border: 1px solid var(--dark);
  padding: 0.8rem 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  transition: 0.3s;
  cursor: pointer;
  background: var(--dark);
  border-color: var(--dark);
  color: var(--gold);
  margin-top: 10px;
}

.gallery-btn:hover {
  background: var(--light);
  border-color: var(--light);
  color: #000000;
}
@media (max-width: 768px) {
  .modal-content {
    flex-direction: column;
  }

  .modal-main {
    height: 300px;
    min-height: 300px;
  }

  .main-media {
    position: relative;
  }

  .modal-thumbs {
    max-height: 100px;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .modal-thumbs img,
  .modal-thumbs video {
    min-width: 80px;
    height: 80px;
  }
}
/* MAIN MEDIA WRAPPER */
.main-media {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}

/* ALL MEDIA TYPES */
.main-media img,
.main-media video,
.main-media iframe {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}
.nav {
  z-index: 5;
}

@media (max-width: 768px) {
  .nav {
    width: 38px;
    height: 38px;
  }

  .prev {
    left: 6px;
  }

  .next {
    right: 6px;
  }
}
@media (max-width: 768px) {
  .modal-content {
    flex-direction: column;
    max-height: 90vh;
    overflow: hidden;
  }

  .modal-main {
    height: 260px;
    min-height: 260px;
    position: relative;
  }

  .main-media {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .main-media img,
  .main-media video,
  .main-media iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .nav {
    width: 38px;
    height: 38px;
    z-index: 5;
  }

  .prev {
    left: 6px;
  }
  .next {
    right: 6px;
  }

  .modal-thumbs {
    max-height: 90px;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .modal-thumbs img,
  .modal-thumbs video {
    min-width: 80px;
    height: 80px;
  }
}
@media (max-width: 768px) {
  .modal-content,
  .modal-main,
  .modal-thumbs {
    display: inline-block !important;
    width: 100vw;
  }
  #modal-p {
    margin-bottom: 1rem;
  }
  #modal-h1 {
    line-height: normal;
  }
  .modal-content {
    flex-direction: column !important;
    max-height: 90vh !important;
    overflow: hidden !important;
    padding: 16px;
  }

  #modal-txt {
    order: 1 !important;
    width: 100% !important;
  }

  .modal-main {
    order: 2 !important;
    width: 100% !important;
    flex: none !important;
    height: 260px !important;
    min-height: 260px !important;
    position: relative !important;
  }

  .modal-thumbs {
    order: 3 !important;
    width: 100% !important;
    flex: none !important;
    max-height: 90px !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding-top: 10px !important;
  }

  .modal-thumbs img,
  .modal-thumbs video {
    width: auto !important;
    min-width: 80px !important;
    height: 80px !important;
  }
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.modal-header #modal-h1 {
  flex: 1;
}

/* CLOSE BUTTON (INSIDE MODAL) */
.close-btn {
  position: static; /* IMPORTANT */
  background: transparent;
  border: none;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  /* color: #000; */
  padding: 10px;
  /* border: 1px solid black; */
  border-radius: 6px;
  background-color: var(--gold);
}
.close-btn:hover {
  /* color: white !important; */
  /* background-color: red; */
  background: rgba(0, 0, 0, 0.65);
}

/* -----------------------------------------  modal scrollbar  - --------------------------------------------- */
.modal-content {
  /* background: #fff; */
  /* max-height: 80vh; */
  /* overflow-y: auto; */

  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: #3d3c3c #e5e5e5;
}

/* Chrome, Edge, Safari */
.modal-content::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-track {
  background-color: #cfcdcd; /* light gray track */
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
  background-color: #302e2e; /* black thumb */
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background-color: #222;
}

/* @media (max-width: 768px) {
  .h1like {
    font-size: 38px;
  }
}

@media (min-width: 769px) and (min-width: 991px) {
  .h1like {
    font-size: 48px;
  }
}
@media (min-width: 992px) and (min-width: 1199px) {
  .h1like {
    font-size: 54px;
  }
}
@media (min-width: 1200px) {
  .h1like {
    font-size: 57px;
  }
} */
