:root {
  --brand-maroon: #701212;
  /* Core Brand Color */
  --brand-green: #1a4325;
  /* Nature/Forest */
  --brand-gold: #c59d5f;
  /* Wood Accent */
  --text-dark: #111111;
  --text-gray: #555;
  --bg-light: #f9f7f2;
  /* Warm Off-White */
}

body {
  font-family: "Manrope", sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* --- 1. PRODUCT HERO SECTION (Premium Parallax) --- */
.product-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  /* Ek shandar marine/water-resistant theme wali image */
  background-image: url("https://images.unsplash.com/photo-1584622650111-993a426fbf0a?q=80&w=2070&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 10%;
}

.product-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    #000 0%,
    rgba(112, 18, 18, 0.8) 70%,
    transparent 100%
  );
}

.hero-content-box {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 650px;
}

.hero-badge {
  display: inline-block;
  background: var(--brand-gold);
  color: #000;
  padding: 6px 18px;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  border-radius: 2px;
}

/* Fixed Heading Visibility and Reduced Size */
.hero-title {
  font-family: "Syne", sans-serif;
  font-size: 2.8rem; /* Significantly reduced for a cleaner look */
  font-weight: 800;
  line-height: 1.1;
  /* margin-bottom: 15px; */
  text-transform: uppercase;
  color: #ffffff !important;
  display: block;
  opacity: 1;
  visibility: visible;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 400;
}

/* --- 2. PRODUCT OVERVIEW (Split Design) --- */
.overview-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.overview-img-wrap {
  position: relative;
  padding: 15px;
}

.overview-img-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  border: 3px solid var(--brand-gold);
  z-index: 1;
  transition: all 0.5s ease;
}

.overview-img {
  width: 100%;
  border-radius: 4px;
  position: relative;
  z-index: 2;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.overview-img-wrap:hover .overview-img {
  transform: translate(10px, -10px);
}

.overview-img-wrap:hover::before {
  width: 100%;
}

.section-label {
  font-size: 0.8rem;
  color: var(--brand-maroon);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 12px;
  display: inline-block;
}

.section-heading {
  font-family: "Syne", sans-serif;
  font-size: 2rem; /* Reduced from 2.5rem/3rem */
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.overview-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* --- 3. PREMIUM FEATURES GRID --- */
.features-section {
  padding: 80px 0;
  background-color: #fff;
}

.feature-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 40px 25px;
  text-align: center;
  border-radius: 6px;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--brand-maroon);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(112, 18, 18, 0.08);
  border-color: transparent;
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.f-icon-wrap {
  width: 65px;
  height: 65px;
  background: rgba(197, 157, 95, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--brand-gold);
  font-size: 2rem;
  transition: all 0.4s ease;
}

.feature-card:hover .f-icon-wrap {
  background: var(--brand-maroon);
  color: #fff;
  transform: rotateY(180deg);
}

.f-title {
  font-family: "Syne", sans-serif;
  font-size: 1.1rem; /* Reduced size */
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.f-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* --- 4. TECHNICAL SPECIFICATIONS (UPGRADED & COMPACT) --- */
.specs-section {
  padding: 80px 0;
  background-color: #0b0b0b;
  color: #fff;
  position: relative;
}

/* Much smaller background text */
.specs-bg-text {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: "Syne", sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.spec-list-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 10px 30px;
  margin-top: 30px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-name {
  color: var(--brand-gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 40%;
}

.spec-detail {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  width: 60%;
  text-align: right;
  font-family: "Syne", sans-serif;
}

/* --- 5. APPLICATIONS (IMAGE CARDS) --- */
.applications-section {
  padding: 80px 0;
  background-color: #fff;
}

.app-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  height: 300px; /* Reduced height */
  cursor: pointer;
}

.app-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.app-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(112, 18, 18, 0.9) 0%,
    transparent 60%
  );
  z-index: 1;
  opacity: 0.8;
  transition: opacity 0.4s ease;
}

.app-card:hover .app-img {
  transform: scale(1.1);
}
.app-card:hover::before {
  opacity: 1;
}

.app-content {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  z-index: 2;
  transition: transform 0.4s ease;
}

.app-card:hover .app-content {
  transform: translateY(-8px);
}

.app-title {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 5px;
}

.app-desc {
  color: var(--brand-gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.app-card:hover .app-desc {
  opacity: 1;
  transform: translateY(0);
}

/* --- 6. MODERN CTA STRIP (PARALLAX IMAGE & BLACK OVERLAY) --- */
.cta-strip {
  position: relative;
  padding: 100px 0;
  text-align: center;
  color: #fff;
  background-image: url("https://images.unsplash.com/photo-1600607686527-6fb886090705?q=80&w=2000&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.cta-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75); /* Dark black overlay for text visibility */
  z-index: 1;
}

.cta-strip .container {
  position: relative;
  z-index: 2; /* Ensure text and button are above overlay */
}

.cta-heading {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: #fff;
}

.btn-cta-gold {
  display: inline-block;
  padding: 14px 35px;
  background: var(--brand-gold);
  color: #000;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.btn-cta-gold:hover {
  background: #fff;
  color: var(--brand-maroon);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}

/* Responsive Fixes */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .product-hero {
    padding-left: 5%;
    justify-content: center;
    text-align: center;
  }
  .section-heading {
    font-size: 1.8rem;
  }
  .overview-img-wrap {
    margin-bottom: 40px;
  }
  .spec-row {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .spec-name {
    width: 100%;
    margin-bottom: 5px;
  }
  .spec-detail {
    width: 100%;
    text-align: left;
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }
  .section-heading {
    font-size: 1.6rem;
  }
  .feature-card {
    padding: 30px 20px;
  }
  .spec-list-wrapper {
    padding: 10px 15px;
  }
  .cta-strip {
    padding: 70px 0;
  }
}
