/* ================== GLOBAL VARIABLES (LUXURY PALETTE) ================== */
:root {
  --jd-red: #e31e24;
  --jd-red-dark: #b3151a;
  --jd-black: #0c0c0c;
  --jd-black-light: #181818;
  --jd-white: #ffffff;
  --jd-light: #faf9f6;
  /* Premium Alabaster shade instead of grey */
  --jd-gray: #7a7a7a;
  --jd-gold: #c5a059;
  /* Soft Champagne Gold */
  --jd-transition-lux: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  /* Elegant iOS/Apple fluid timing */
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--jd-white);
  color: var(--jd-black);
  overflow-x: hidden;
  letter-spacing: -0.02em;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection Color */
::selection {
  background-color: var(--jd-red);
  color: var(--jd-white);
}

/* ================= FLOATING CONTACT BAR ================= */
.jd-floating-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
} /* Button Style */
.jd-float-btn {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
} /* Tooltip Text */
.jd-float-btn span {
  position: absolute;
  left: 75px;
  background: #111;
  color: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s ease;
} /* Hover */
.jd-float-btn:hover span {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.jd-float-btn:hover {
  transform: translateY(-5px) scale(1.08);
} /* Call Button */
.call-btn {
  background: linear-gradient(135deg, #007bff, #00c6ff);
} /* Email Button */
.mail-btn {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
} /* WhatsApp Button */
.whatsapp-btn {
  background: linear-gradient(135deg, #00c853, #00e676);
} /* Glow Effect */
.jd-float-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: 0.3s ease;
}
.jd-float-btn:hover::before {
  opacity: 1;
} /* Mobile Responsive */
@media (max-width: 768px) {
  .jd-floating-contact {
    right: 15px;
    bottom: 15px;
    gap: 12px;
  }
  .jd-float-btn {
    width: 52px;
    height: 52px;
    font-size: 1.1rem;
    border-radius: 16px;
  }
  .jd-float-btn span {
    display: none;
  }
}

/* ================== NAV SCROLL PROGRESS LINE ================== */
.jd-scroll-progress-line {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--jd-red) 0%, var(--jd-gold) 100%);
  z-index: 9999;
  transition: width 0.1s ease-out;
}

/* ================== LUXURY FLOATING NAVBAR ================== */
.jd-navbar {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  /* padding: 20px 0; */
  transition: var(--jd-transition-lux);
}

.jd-navbar.scrolled {
  padding: 0px 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.jd-logo-img {
  max-height: 100px;
  transition: var(--jd-transition-lux);
}

.jd-navbar.scrolled .jd-logo-img {
  max-height: 80px;
}

.jd-nav-link {
  color: var(--jd-black) !important;
  font-weight: 640;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 20px;
  position: relative;
  transition: var(--jd-transition-lux);
  padding: 10px 0 !important;
}

.jd-nav-link:hover,
.jd-nav-link.active {
  color: var(--jd-red) !important;
}

/* Elegant Split Line Hover Animation */
.jd-nav-link::before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 0%;
  height: 2px;
  background-color: var(--jd-red);
  transition: var(--jd-transition-lux);
  transform: translateX(-50%);
}

.jd-nav-link:hover::before,
.jd-nav-link.active::before {
  width: 100%;
}

/* Luxury Dropdown */
.jd-dropdown-menu {
  border: none;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 20px 0;
  min-width: 260px;
  margin-top: 15px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 2px solid rgb(250, 4, 4);
  animation: slideUpFade 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.jd-dropdown-item {
  padding: 12px 30px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--jd-black);
  transition: var(--jd-transition-lux);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.jd-dropdown-item i {
  color: var(--jd-red);
  font-size: 0.75rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--jd-transition-lux);
}

.jd-dropdown-item:hover {
  background-color: var(--jd-light);
  color: var(--jd-red);
  padding-left: 35px;
}

.jd-dropdown-item:hover i {
  opacity: 1;
  transform: translateX(0);
}

@media (min-width: 992px) {
  .nav-item.dropdown:hover .jd-dropdown-menu {
    display: block;
  }

  .jd-dropdown-menu {
    display: none;
    position: absolute;
  }
}

/* =========================
   Luxury Dropdown Menu
========================= */
.jd-dropdown-menu {
  min-width: 280px;
  padding: 14px 0;
  margin-top: 18px;

  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.1),
    0 8px 20px rgba(0, 0, 0, 0.06);

  backdrop-filter: blur(20px);
  overflow: hidden;

  animation: slideUpFade 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Small golden line on top */
.jd-dropdown-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--jd-red), #f8d86a, var(--jd-red));
}

/* =========================
   Dropdown Item
========================= */
.jd-dropdown-item {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 14px 26px;
  margin: 3px 10px;
  border-radius: 12px;

  color: #222;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.3px;

  transition: 0.35s ease;
}

/* Left Accent Bar */
.jd-dropdown-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;

  border-radius: 20px;
  background: var(--jd-red);

  transition: 0.35s;
}

/* Hover */
.jd-dropdown-item:hover {
  background: linear-gradient(90deg, #fff8e6, #fffdf8);
  color: #b8860b;

  transform: translateX(8px);
}

.jd-dropdown-item:hover::before {
  height: 65%;
}

/* Arrow/Icon */
.jd-dropdown-item i {
  font-size: 13px;
  opacity: 0.45;
  transition: 0.3s;
}

.jd-dropdown-item:hover i {
  transform: translateX(5px);
  opacity: 1;
  color: var(--jd-red);
}

/* Divider */
.jd-dropdown-item + .jd-dropdown-item {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Action Buttons */
.jd-btn-outline {
  color: var(--jd-light) !important;
  border: 1px solid rgb(200, 72, 72);
  padding: 12px 32px !important;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  transition: var(--jd-transition-lux);
  background: var(--jd-red);
}

.jd-btn-outline:hover {
  border-color: var(--jd-red);
  color: var(--jd-white) !important;
  background-color: var(--jd-red);
  box-shadow: 0 15px 30px rgba(227, 30, 36, 0.2);
  transform: translateY(-2px);
}

.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.jd-toggler-icon {
  font-size: 1.6rem;
  color: var(--jd-black);
  transition: var(--jd-transition-lux);
}

.navbar-toggler[aria-expanded="true"] .jd-toggler-icon {
  transform: rotate(90deg);
  color: var(--jd-red);
}

/* ================== HERO CINEMATIC CAROUSEL ================== */
.jd-hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background-color: var(--jd-black);
  margin-top: -120px;
  /* Merges behind transparent header beautifully */
}

.jd-carousel,
.carousel-inner,
.carousel-item {
  height: 100%;
}

.jd-hero-img-box {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Ultra-smooth Ken Burns Zoom Animation */
.jd-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  transition: transform 7.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-item.active .jd-hero-img {
  transform: scale(1.02);
}

/* Gradient premium overlay for visual depth */
.jd-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12, 12, 12, 0.95) 0%,
    rgba(12, 12, 12, 0.6) 40%,
    rgba(12, 12, 12, 0.2) 100%
  );
}

.jd-hero-caption {
  position: absolute;
  top: 55%;
  left: 10%;
  transform: translateY(-50%);
  text-align: left;
  max-width: 850px;
  z-index: 10;
}

.jd-hero-subtitle {
  color: var(--jd-red);
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(20px);
}

.jd-hero-title {
  color: var(--jd-white);
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  letter-spacing: -0.04em;
}

.jd-hero-title span {
  font-weight: 200;
  /* Sophisticated light-to-bold contrast */
}

.jd-hero-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(30px);
}

/* Luxury Solid Button */
.jd-btn-solid {
  background-color: var(--jd-red) !important;
  color: var(--jd-white) !important;
  padding: 18px 45px;
  border-radius: 100px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: var(--jd-transition-lux);
  box-shadow: 0 20px 40px rgba(227, 30, 36, 0.25);
  font-size: 0.85rem;
  transform: translateY(30px);
}

.jd-btn-solid i {
  margin-left: 12px;
  transition: var(--jd-transition-lux);
}

.jd-btn-solid:hover {
  background-color: var(--jd-white);
  color: var(--jd-white) !important;
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.jd-btn-solid:hover i {
  transform: translateX(8px);
}

/* Carousel animation triggers */
.carousel-item.active .jd-hero-subtitle {
  animation: showHeroItem 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.carousel-item.active .jd-hero-title {
  animation: showHeroItem 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.carousel-item.active .jd-hero-desc {
  animation: showHeroItem 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

.carousel-item.active .jd-btn-solid {
  animation: showHeroItem 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

@keyframes showHeroItem {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Interactive Carousel Controls */
.jd-carousel-control {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--jd-transition-lux);
  margin: 0 40px;
  opacity: 0;
}

.jd-hero-section:hover .jd-carousel-control {
  opacity: 1;
}

.jd-carousel-control:hover {
  background: var(--jd-white);
  color: var(--jd-black);
  border-color: var(--jd-white);
  transform: translateY(-50%) scale(1.1);
}

/* Interactive active progress indicators at the bottom */
.jd-carousel-indicators {
  position: absolute;
  bottom: 40px;
  left: 10%;
  right: auto;
  display: flex;
  gap: 15px;
  z-index: 15;
  margin: 0;
  padding: 0;
  list-style: none;
}

.jd-carousel-indicator {
  width: 60px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  position: relative;
  transition: var(--jd-transition-lux);
  border-radius: 2px;
}

.jd-carousel-indicator-fill {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0%;
  background-color: var(--jd-red);
  border-radius: 2px;
}

.carousel-item.active .jd-carousel-indicator-fill {
  animation: progressIndicatorFill 6.5s linear forwards;
}

@keyframes progressIndicatorFill {
  to {
    width: 100%;
  }
}

/* Luxury Scroll Down Indicator */
.jd-scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 10%;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  cursor: pointer;
  transition: var(--jd-transition-lux);
}

.jd-scroll-indicator:hover {
  color: var(--jd-red);
}

.jd-scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  margin-top: 10px;
  position: relative;
}

.jd-scroll-mouse::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background-color: var(--jd-red);
  border-radius: 2px;
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% {
    top: 6px;
    opacity: 1;
  }

  100% {
    top: 22px;
    opacity: 0;
  }
}

/* ================== ABOUT US EDITORIAL SECTION ================== */
.jd-about-section {
  padding: 70px 0;
  background-color: var(--jd-white);
  position: relative;
}

.jd-section-subtitle {
  color: var(--jd-red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  display: inline-block;
}

.jd-section-title {
  font-size: 3rem;
  font-weight: 750;
  color: var(--jd-black);
  margin-bottom: 10px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.jd-section-title span {
  color: var(--jd-red);
}

.jd-section-title span.jd-gold {
  color: var(--jd-red);
  font-weight: 600;
}

.jd-about-text {
  color: var(--jd-gray);
  font-size: 1.2rem;
  line-height: 1.9;
  margin-bottom: 20px;
  font-weight: 500;
}

.jd-about-features {
  list-style: none;
  padding: 0;
  margin-bottom: 50px;
}

.jd-about-features li {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--jd-black);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}

.jd-about-features li i {
  color: var(--jd-red);
  margin-right: 20px;
  font-size: 1.1rem;
  background: rgba(227, 30, 36, 0.06);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Overlapping Asymmetrical 3D Photo Grid */
.jd-about-img-wrapper {
  position: relative;
  z-index: 1;
  padding-right: 60px;
  padding-bottom: 60px;
}

.jd-about-img-main {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 2;
  transition: var(--jd-transition-lux);
}

.jd-about-img-float {
  position: absolute;
  bottom: -30px;
  right: -10px;
  width: 60%;
  height: 380px;
  object-fit: cover;
  border-radius: 12px;
  border: 15px solid var(--jd-white);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
  z-index: 3;
  transition: var(--jd-transition-lux);
}

.jd-about-img-wrapper:hover .jd-about-img-main {
  transform: translateY(-10px) scale(1.02);
}

.jd-about-img-wrapper:hover .jd-about-img-float {
  transform: translate(-15px, -15px) scale(1.03);
  box-shadow: 0 50px 90px rgba(0, 0, 0, 0.18);
}

/* Glassmorphism Floating Experience badge */
.jd-exp-badge {
  position: absolute;
  top: 40px;
  left: -40px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--jd-black);
  padding: 30px;
  border-radius: 20px;
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 4;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  animation: slowFloat 4s infinite ease-in-out;
}

.jd-exp-years {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  color: var(--jd-red);
}

.jd-exp-text {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 5px;
  color: var(--jd-black);
}

@keyframes slowFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* ================== PREMIUM PRODUCTS CAROUSEL ================== */
.jd-products-section {
  padding: 70px 0;
  background-color: var(--jd-light);
}

.jd-products-header {
  text-align: left;
}

.jd-slider-container {
  position: relative;
}

.jd-products-wrapper {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 20px 5px 40px 5px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.jd-products-wrapper::-webkit-scrollbar {
  display: none;
}

.jd-product-card {
  flex: 0 0 calc(33.333% - 20px);
  scroll-snap-align: start;
  position: relative;
  height: 540px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.03);
  transition: var(--jd-transition-lux);
}

.jd-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Luxury Dark Overlay */
.jd-product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 12, 12, 0.95) 0%,
    rgba(12, 12, 12, 0.4) 40%,
    rgba(12, 12, 12, 0) 80%
  );
  transition: var(--jd-transition-lux);
}

/* Glassmorphism Top Right Badge */
.jd-product-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  color: var(--jd-white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 10px 22px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  z-index: 2;
}

/* Card Content Area */
.jd-product-details {
  position: absolute;
  bottom: 45px;
  left: 40px;
  right: 40px;
  z-index: 2;
  transition: var(--jd-transition-lux);
}

.jd-product-sub {
  color: var(--jd-gold);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 10px;
}

.jd-product-title {
  color: var(--jd-white);
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* Custom Elegant Slide-Up Link */
.jd-product-readmore {
  display: inline-flex;
  align-items: center;
  color: var(--jd-white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 25px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--jd-transition-lux);
  text-decoration: none;
  border-bottom: 2px solid var(--jd-red);
  padding-bottom: 5px;
}

.jd-product-readmore i {
  margin-left: 10px;
  font-size: 0.8rem;
  color: var(--jd-red);
  transition: var(--jd-transition-lux);
}

/* Hover Interactive Micro-animations */
.jd-product-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 40px 80px rgba(12, 12, 12, 0.15);
}

.jd-product-card:hover .jd-product-img {
  transform: scale(1.08) rotate(1deg);
}

.jd-product-card:hover .jd-product-details {
  transform: translateY(-15px);
}

.jd-product-card:hover .jd-product-readmore {
  opacity: 1;
  transform: translateY(0);
}

.jd-product-card:hover .jd-product-readmore:hover i {
  transform: translateX(8px);
}

/* Modernized Minimalist Slider Navigation Arrows */
.jd-slider-arrow {
  width: 60px;
  height: 60px;
  background-color: var(--jd-red);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  color: var(--jd-light);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--jd-transition-lux);
}

.jd-slider-arrow:hover {
  background-color: var(--jd-light);
  color: var(--jd-red);
  border-color: var(--jd-red);
  box-shadow: 0 15px 35px rgba(227, 30, 36, 0.25);
  transform: translateY(-5px);
}

/* ================== PREMIUM FEATURES SECTION ================== */
.jd-features-section {
  padding: 70px 0;
  background-color: var(--jd-white);
  position: relative;
}

.jd-features-header {
  max-width: 1100px;
  margin: 0 auto 10px;
}

/* Sophisticated Single Line Header */
.jd-features-main-title {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--jd-black);
  /* margin-bottom: 25px; */
  white-space: nowrap;
  /* Rigidly forced into 1 line */
}

.jd-features-main-title span {
  color: var(--jd-red);
  font-weight: 600;
  /* Thin luxury weight */
}

.jd-features-desc-top {
  color: var(--jd-gray);
  font-size: 1.25rem;
  line-height: 1.8;
  margin-top: 25px;
  font-weight: 500;
}

/* Elegant capsule-masked card grids */
.jd-feature-card {
  padding: 25px;
  transition: var(--jd-transition-lux);
  border-radius: 20px;
}

.jd-feature-card:hover {
  background-color: var(--jd-light);
  transform: translateY(-10px);
}

/* iOS/Asymmetrical Luxury Mask Image Frame */
.jd-feature-img-wrapper {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 35px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
  transition: var(--jd-transition-lux);
  z-index: 1;
}

.jd-feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Spotlight interactive glow overlay */
.jd-feature-img-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(0, 0, 0, 0) 80%
  );
  opacity: 0;
  transition: var(--jd-transition-lux);
  z-index: 2;
}

.jd-feature-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--jd-red-dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.jd-feature-text {
  color: var(--jd-gray);
  font-size: 1rem;
  line-height: 1.5;
  transition: color 0.3s ease;
  font-weight: 500;
}

/* Hover Interactive Polish effects */
.jd-feature-card:hover .jd-feature-img-wrapper {
  box-shadow: 0 35px 70px rgba(227, 30, 36, 0.15);
  transform: scale(1.04);
}

.jd-feature-card:hover .jd-feature-img-wrapper::after {
  opacity: 1;
}

.jd-feature-card:hover .jd-feature-img {
  transform: scale(1.15);
}

.jd-feature-card:hover .jd-feature-title {
  color: var(--jd-red);
}

/* ================== PARALLAX BANNER SECTION ================== */
.jd-parallax-banner {
  height: 30vh;
  min-height: 280px;
  background-image: url("../images/backgrounds/paralox-bg.png");
  /* Hardwood architecture pattern */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.jd-parallax-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 12, 0.35);
  /* Elegant ambient dim overlay */
}

/* ================== QUALITY SERVICE INNOVATION SECTION ================== */
.jd-qsi-section {
  padding: 120px 0;
  background-color: var(--jd-black);
  /* Dark background matching the reference */
  color: var(--jd-white);
  position: relative;
}

.jd-qsi-header {
  text-align: center;
  margin-bottom: 60px;
}

.jd-qsi-title {
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--jd-white);
  margin-bottom: 25px;
}

.jd-qsi-divider {
  width: 80px;
  height: 3px;
  background-color: var(--jd-gold);
  /* Soft champagne gold line */
  margin: 0 auto;
}

.jd-qsi-content {
  max-width: 1100px;
  margin: 0 auto;
}

.jd-qsi-paragraph {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 35px;
  text-align: justify;
}

.jd-qsi-paragraph strong {
  color: var(--jd-white);
  font-weight: 600;
}

/* ================== PREMIUM GALLERY SECTION ================== */
.jd-gallery-section {
  padding: 70px 0;
  background-color: var(--jd-light);
  position: relative;
}

.jd-gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 60px;
}

.jd-gallery-btn {
  background-color: var(--jd-white);
  color: var(--jd-black);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 12px 30px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 100px;
  transition: var(--jd-transition-lux);
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
}

.jd-gallery-btn.active,
.jd-gallery-btn:hover {
  background-color: var(--jd-red);
  color: var(--jd-white);
  border-color: var(--jd-red);
  box-shadow: 0 15px 30px rgba(227, 30, 36, 0.2);
  transform: translateY(-3px);
}

.jd-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  transition: var(--jd-transition-lux);
}

.jd-gallery-item {
  position: relative;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
  transition: var(--jd-transition-lux);
}

.jd-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Clean Glass Hover Info Overlay */
.jd-gallery-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 12, 12, 0.9) 0%,
    rgba(12, 12, 12, 0.4) 50%,
    rgba(12, 12, 12, 0) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  opacity: 0;
  transition: var(--jd-transition-lux);
  z-index: 2;
}

.jd-gallery-item:hover .jd-gallery-img {
  transform: scale(1.08);
}

.jd-gallery-item:hover .jd-gallery-hover {
  opacity: 1;
}

.jd-gallery-category {
  color: var(--jd-gold);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 8px;
  transform: translateY(15px);
  transition: var(--jd-transition-lux);
}

.jd-gallery-title {
  color: var(--jd-white);
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0;
  transform: translateY(20px);
  transition: var(--jd-transition-lux);
}

.jd-gallery-item:hover .jd-gallery-category,
.jd-gallery-item:hover .jd-gallery-title {
  transform: translateY(0);
}

/* ================== PREMIUM TESTIMONIALS SECTION ================== */
.jd-testimonial-section {
  padding: 70px 0;
  background-color: var(--jd-white);
  position: relative;
  overflow: hidden;
}

/* Subtle abstract wood grain or circle watermark behind reviews */
.jd-testimonial-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28rem;
  font-weight: 900;
  color: rgba(227, 30, 36, 0.03);
  /* Soft red watermark */
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.jd-testimonial-slider {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.jd-testimonial-card {
  text-align: center;
  padding: 0 40px;
}

/* Editorial wood-star ratings layout */
.jd-testimonial-stars {
  color: var(--jd-gold);
  font-size: 1.1rem;
  margin-bottom: 35px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.jd-testimonial-quote {
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--jd-black);
  font-weight: 400;
  margin-bottom: 45px;
  letter-spacing: -0.02em;
}

.jd-testimonial-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.jd-testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--jd-white);
}

.jd-testimonial-meta {
  text-align: left;
}

.jd-testimonial-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--jd-black);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.jd-testimonial-role {
  font-size: 0.8rem;
  color: var(--jd-gray);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  margin-top: 2px;
}

/* Customized Carousel Arrow buttons for Testimonials */
.jd-test-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 2rem;
  color: rgba(0, 0, 0, 0.15);
  transition: var(--jd-transition-lux);
  cursor: pointer;
}

.jd-test-arrow:hover {
  color: var(--jd-red);
  transform: translateY(-50%) scale(1.2);
}

.jd-test-prev {
  left: -80px;
}

.jd-test-next {
  right: -80px;
}

/* ================== PREMIUM ULTRA-MODERN FOOTER ================== */
.jd-footer {
  background-color: var(--jd-black);
  color: var(--jd-white);
  padding: 100px 0 0 0;
  font-weight: 300;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.jd-footer-logo {
  max-height: 120px;
  margin-bottom: 25px;
  transition: var(--jd-transition-lux);
  background-color: #ffff;
}

.jd-footer-about-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.jd-footer-social-links {
  display: flex;
  gap: 15px;
}

.jd-footer-social-icon {
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--jd-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--jd-transition-lux);
  text-decoration: none;
}

.jd-footer-social-icon:hover {
  background-color: var(--jd-red);
  border-color: var(--jd-red);
  color: var(--jd-white);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(227, 30, 36, 0.35);
}

.jd-footer-title {
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 12px;
  color: var(--jd-white);
}

.jd-footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--jd-red);
}

.jd-footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jd-footer-links-list li {
  margin-bottom: 15px;
}

.jd-footer-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--jd-transition-lux);
  display: inline-flex;
  align-items: center;
}

.jd-footer-link i {
  font-size: 0.75rem;
  margin-right: 10px;
  color: var(--jd-red);
  opacity: 0;
  transform: translateX(-5px);
  transition: var(--jd-transition-lux);
}

.jd-footer-link:hover {
  color: var(--jd-red);
  padding-left: 8px;
}

.jd-footer-link:hover i {
  opacity: 1;
  transform: translateX(0);
}

.jd-footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jd-footer-contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.6;
}

.jd-footer-contact-info li i {
  color: var(--jd-red);
  font-size: 1.1rem;
  margin-right: 15px;
  margin-top: 3px;
}

.jd-footer-contact-info li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--jd-transition-lux);
}

.jd-footer-contact-info li a:hover {
  color: var(--jd-red);
}

/* Glassmorphic Premium Newsletter input */
.jd-footer-newsletter-box {
  position: relative;
  margin-top: 25px;
}

.jd-footer-newsletter-input {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 15px 60px 15px 25px;
  color: var(--jd-white);
  font-size: 0.9rem;
  font-family: "Montserrat", sans-serif;
  transition: var(--jd-transition-lux);
}

.jd-footer-newsletter-input:focus {
  outline: none;
  border-color: var(--jd-red);
  background-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 20px rgba(227, 30, 36, 0.1);
}

.jd-footer-newsletter-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  width: 48px;
  height: 48px;
  background-color: var(--jd-red);
  border: none;
  border-radius: 50%;
  color: var(--jd-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--jd-transition-lux);
}

.jd-footer-newsletter-btn:hover {
  background-color: var(--jd-white);
  color: var(--jd-red);
  transform: scale(1.05);
}

/* Bottom Bar Copyrights */
.jd-footer-bottom {
  margin-top: 80px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.jd-footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.jd-footer-bottom-links {
  display: flex;
  gap: 30px;
}

.jd-footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: var(--jd-transition-lux);
}

.jd-footer-bottom-links a:hover {
  color: var(--jd-red);
}

/* Floating / Inline Back to Top button in footer bottom */
.jd-back-to-top-btn {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: var(--jd-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--jd-transition-lux);
  font-size: 0.9rem;
}

.jd-back-to-top-btn:hover {
  background-color: var(--jd-red);
  border-color: var(--jd-red);
  color: var(--jd-white);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(227, 30, 36, 0.25);
}

/* ================== RESPONSIVE MEDIA QUERIES ================== */
@media (max-width: 1399px) {
  .jd-features-main-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 1199px) {
  .jd-hero-title {
    font-size: 3.5rem;
  }

  .jd-section-title {
    font-size: 2.8rem;
  }

  .jd-features-main-title {
    font-size: 2.3rem;
    white-space: normal;
  }

  .jd-about-img-main {
    height: 450px;
  }

  .jd-about-img-float {
    height: 320px;
  }

  .jd-product-title {
    font-size: 1.7rem;
  }

  .jd-feature-img-wrapper {
    width: 190px;
    height: 190px;
  }

  .jd-qsi-title {
    font-size: 2.5rem;
  }

  .jd-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .jd-testimonial-quote {
    font-size: 1.6rem;
  }
}

@media (max-width: 991px) {
  .jd-navbar {
    padding: 15px 0;
    background-color: var(--jd-white);
  }

  .jd-nav-link {
    margin: 10px 0;
  }

  .jd-hero-section {
    margin-top: 0;
    height: 90vh;
    min-height: 550px;
  }

  .jd-hero-title {
    font-size: 3.1rem;
  }

  .jd-hero-caption {
    left: 5%;
    right: 5%;
    text-align: center;
  }

  .jd-hero-overlay {
    background: linear-gradient(
      135deg,
      rgba(12, 12, 12, 0.95) 0%,
      rgba(12, 12, 12, 0.8) 50%,
      rgba(12, 12, 12, 0.4) 100%
    );
  }

  .jd-btn-outline {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }

  .jd-nav-link::before {
    display: none;
  }

  .jd-dropdown-menu {
    border: none;
    box-shadow: none;
    background: var(--jd-light);
    margin-top: 0;
  }

  .jd-about-section {
    padding: 100px 0;
  }

  .jd-section-title {
    font-size: 2.5rem;
  }

  .jd-about-img-wrapper {
    margin-top: 70px;
    padding-right: 30px;
    padding-bottom: 30px;
  }

  .jd-exp-badge {
    top: -30px;
    left: -10px;
    width: 130px;
    height: 130px;
    padding: 20px;
  }

  .jd-exp-years {
    font-size: 2.2rem;
  }

  .jd-exp-text {
    font-size: 0.65rem;
  }

  /* Grid transformations on tablets */
  .jd-product-card {
    flex: 0 0 calc(50% - 15px);
    height: 460px;
  }

  .jd-features-main-title {
    white-space: normal;
    text-align: center;
  }

  /* Disable fixed background attachment on mobile for smooth rendering */
  .jd-parallax-banner {
    background-attachment: scroll;
  }

  .jd-qsi-section {
    padding: 80px 0;
  }

  .jd-qsi-paragraph {
    text-align: left;
    font-size: 1.05rem;
  }

  .jd-gallery-section {
    padding: 100px 0;
  }

  .jd-testimonial-section {
    padding: 100px 0;
  }

  .jd-test-arrow {
    display: none;
  }

  /* Hide arrow navigation triggers on tablets for clean viewport swipe */

  .jd-footer {
    padding: 80px 0 0 0;
  }

  .jd-footer-bottom {
    margin-top: 60px;
  }

  .jd-footer-bottom-flex {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .jd-hero-title {
    font-size: 2.8rem;
  }

  .jd-hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 4px;
  }

  .jd-hero-desc {
    font-size: 1.1rem;
  }

  .jd-product-card {
    flex: 0 0 100%;
    height: 420px;
  }

  .jd-features-main-title {
    font-size: 1.9rem;
  }

  .jd-features-section {
    padding: 100px 0;
  }

  .jd-feature-img-wrapper {
    width: 170px;
    height: 170px;
  }

  .jd-scroll-indicator {
    display: none;
  }

  .jd-qsi-title {
    font-size: 2rem;
  }

  .jd-gallery-grid {
    grid-template-columns: 1fr;
  }

  .jd-testimonial-quote {
    font-size: 1.3rem;
  }

  .jd-footer-bottom-links {
    flex-direction: column;
    gap: 10px;
  }
}
