/* ================== GLOBAL VARIABLES ================== */
:root {
  --jd-red: #e31e24;
  --jd-red-dark: #b3151a;
  --jd-black: #0c0c0c;
  --jd-white: #ffffff;
  --jd-light: #faf9f6;
  --jd-gray: #7a7a7a;
  --jd-gold: #c5a059;
  --jd-transition-lux: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--jd-white);
  color: var(--jd-black);
  overflow-x: hidden;
  letter-spacing: -0.02em;
}

/* ================== PRODUCT HERO SECTION ================== */
.jd-product-hero {
  position: relative;
  padding: 160px 0 100px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  height: 80vh;

  /* Background Image */
  background: url("../images/banner/product-ban.jpeg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}

/* Black Overlay */
.jd-product-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.47);
  z-index: 1;
}

/* Content Above Overlay */
.jd-product-hero .container,
.jd-product-hero .row,
.jd-product-hero .col,
.jd-product-hero .jd-breadcrumb,
.jd-product-hero h1,
.jd-product-hero p {
  position: relative;
  z-index: 2;
}

/* Breadcrumb */
.jd-breadcrumb {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 25px;
  display: inline-block;
}

.jd-breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.jd-breadcrumb a:hover {
  color: var(--jd-red);
}

.jd-breadcrumb span {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.5);
}

/* Heading */
.jd-product-hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 15px;
}

/* Paragraph */
.jd-product-hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 991px) {
  .jd-product-hero {
    padding: 130px 0 80px;
    background-attachment: scroll;
  }

  .jd-product-hero h1 {
    font-size: 2.7rem;
  }
}

@media (max-width: 576px) {
  .jd-product-hero {
    padding: 110px 0 70px;
  }

  .jd-product-hero h1 {
    font-size: 2rem;
  }

  .jd-product-hero p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .jd-breadcrumb {
    font-size: 0.65rem;
    letter-spacing: 2px;
  }
}

/* ================== PRODUCT OVERVIEW SECTION ================== */
.jd-product-overview {
  padding: 100px 0;
  background-color: var(--jd-white);
}

/* Left Image Styling */
.jd-product-image-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
  transition: var(--jd-transition);
}

.jd-product-image-wrapper:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.jd-product-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.jd-product-badge-float {
  position: absolute;
  top: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--jd-red);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Right Content Styling */
.jd-product-info {
  padding-left: 40px;
}

.jd-product-info-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--jd-black);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.jd-product-info-desc {
  color: var(--jd-gray-text);
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 35px;
}

/* Features List */
.jd-feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 45px;
}

.jd-feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--jd-black);
}

.jd-feature-icon {
  width: 45px;
  height: 45px;
  background-color: var(--jd-gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jd-red);
  font-size: 1.1rem;
  margin-right: 20px;
  flex-shrink: 0;
  transition: var(--jd-transition);
}

.jd-feature-list li:hover .jd-feature-icon {
  background-color: var(--jd-red);
  color: var(--jd-white);
  transform: scale(1.1);
}

/* Action Buttons */
.jd-action-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.jd-btn-enquiry {
  background-color: var(--jd-red);
  color: var(--jd-white) !important;
  padding: 16px 35px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: var(--jd-transition);
  border: 2px solid var(--jd-red);
}

.jd-btn-enquiry i {
  margin-right: 12px;
  font-size: 1.1rem;
}

.jd-btn-enquiry:hover {
  background-color: transparent;
  color: var(--jd-red) !important;
}

.jd-btn-whatsapp {
  background-color: transparent;
  color: var(--jd-black) !important;
  padding: 16px 35px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: var(--jd-transition);
  border: 2px solid rgba(0, 0, 0, 0.1);
}

.jd-btn-whatsapp:hover {
  border: 1px solid var(--jd-red);
}

.jd-btn-whatsapp i {
  margin-right: 12px;
  font-size: 1.3rem;
  color: var(--jd-whatsapp);
  transition: transform 0.3s ease;
}

.jd-btn-whatsapp:hover {
  border-color: var(--jd-red);
  background-color: var(--jd-light);
  color: var(--jd-black) !important;
}

.jd-btn-whatsapp:hover i {
  color: var(--jd-red);
  transform: scale(1.1);
}

/* ================== FIXED BACKGROUND PARALLAX SPECS SECTION ================== */
.jd-parallax-section {
  position: relative;
  padding: 120px 0;
  background-image: url("../images/banner/text-ban-2.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* Parallax Magic */
}

/* Dark Premium Overlay */
.jd-parallax-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.85);
  /* Deep luxury matte tint */
}

.jd-parallax-section .container {
  position: relative;
  z-index: 2;
}

.jd-section-title-light {
  color: var(--jd-white);
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 50px;
  letter-spacing: -0.02em;
}

/* Sleek Specifications Table */
.jd-specs-table-wrapper {
  padding-right: 30px;
}

.jd-custom-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--jd-white);
}

.jd-custom-table th,
.jd-custom-table td {
  padding: 20px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.05rem;
}

.jd-custom-table th {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  width: 40%;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.jd-custom-table td {
  font-weight: 600;
}

.jd-custom-table tr:last-child th,
.jd-custom-table tr:last-child td {
  border-bottom: none;
}

/* Glassmorphic Info Card (Right Side) */
.jd-info-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 50px 40px;
  height: 100%;
}

.jd-card-title {
  color: var(--jd-white);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--jd-red);
  display: inline-block;
  padding-bottom: 10px;
}

.jd-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jd-card-list li {
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
}

.jd-card-list li i {
  color: var(--jd-red);
  font-size: 1.2rem;
  margin-right: 20px;
  margin-top: 5px;
}

.jd-card-list-content h4 {
  color: var(--jd-white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.jd-card-list-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
}

/* ================== CTA SECTION (Clean Minimal) ================== */
.jd-cta-minimal {
  padding: 100px 0;
  background-color: var(--jd-white);
  text-align: center;
  border-top: 5px solid var(--jd-red);
  border-bottom: 5px solid var(--jd-red);
}

.jd-cta-minimal h2 {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--jd-black);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.jd-cta-minimal p {
  font-size: 1.1rem;
  color: var(--jd-gray-text);
  font-weight: 300;
  margin-bottom: 40px;
}

.jd-link-arrow-btn {
  color: var(--jd-black);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid var(--jd-red);
  padding-bottom: 5px;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
}

.jd-link-arrow-btn i {
  font-size: 0.85rem;
  color: var(--jd-red);
  transition: transform 0.3s ease;
}

.jd-link-arrow-btn:hover {
  color: var(--jd-red);
}

.jd-link-arrow-btn:hover i {
  transform: translateX(6px);
}

/* ================== RESPONSIVE MEDIA QUERIES ================== */
@media (max-width: 1199px) {
  .jd-product-hero h1 {
    font-size: 3rem;
  }

  .jd-product-info-title {
    font-size: 2.2rem;
  }

  .jd-product-img {
    height: 500px;
  }

  .jd-section-title-light {
    font-size: 2.4rem;
  }
}

@media (max-width: 991px) {
  .jd-product-hero {
    padding: 120px 0 80px;
  }

  .jd-product-img {
    height: 450px;
    margin-bottom: 40px;
  }

  .jd-product-info {
    padding-left: 0;
  }

  .jd-action-buttons {
    flex-direction: column;
  }

  .jd-btn-enquiry,
  .jd-btn-whatsapp {
    justify-content: center;
    width: 100%;
  }

  .jd-specs-table-wrapper {
    padding-right: 0;
    margin-bottom: 50px;
  }

  .jd-parallax-section {
    background-attachment: scroll;
    padding: 80px 0;
  }

  /* Disable fixed on mobile for perf */
}

@media (max-width: 767px) {
  .jd-product-hero h1 {
    font-size: 2.2rem;
  }

  .jd-product-hero p {
    font-size: 1rem;
  }

  .jd-product-info-title {
    font-size: 1.8rem;
  }

  .jd-feature-list li {
    font-size: 0.95rem;
  }

  .jd-section-title-light {
    font-size: 1.8rem;
  }

  .jd-info-card {
    padding: 30px 20px;
  }

  .jd-cta-minimal h2 {
    font-size: 1.8rem;
  }
}
