/* 
  PRODUCT SINGLE PAGE (SEMI DELUXE / CUSTOM)
  Theme: Deep blue, metallic grey, white, subtle orange accents.
*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Montserrat:wght@400;500;600;700&display=swap");

:root {
  --primary-blue: #0a192f; /* Deep blue */
  --secondary-blue: #172a45;
  --accent-orange: #fcb522; /* Subtle orange / bold orange */
  --metallic-grey: #8892b0;
  --light-grey: #f4f6f8;
  --white: #ffffff;
  --text-dark: #333333;
  --text-light: #ccd6f6;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background-color: var(--light-grey);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--primary-blue);
}

/* Base Styles */
.section-pad {
  padding: 100px 0;
  overflow-x: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.text-center {
  text-align: center;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--accent-orange);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
  background-color: #e66000;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  color: var(--white);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  border: 2px solid var(--white);
  transition: var(--transition);
  text-decoration: none;
}
.btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary-blue);
}

/* 1. HERO BANNER */
.banner-jumbotron {
  background:
    linear-gradient(rgba(10, 25, 47, 0.75), rgba(10, 25, 47, 0.75)),
    url("../images/image 128.png") center center / cover no-repeat;
  padding: 160px 0 100px;
  text-align: center;
  color: var(--white);
}

.banner-jumbotron h1 {
  font-size: 48px;
  color: var(--white);
  margin: 0;
  letter-spacing: 1px;
}

.overview-section {
  padding: 100px 0;
  background-color: var(--white);
  position: relative;
  overflow-x: hidden;
}

.overview-heading {
  font-size: 32px;
  color: var(--primary-blue);
  margin-bottom: 25px;
  font-family: inherit;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.overview-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 4px;
  background-color: var(--accent-orange);
  border-radius: 2px;
}

.overview-row {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-top: 20px;
  margin-bottom: 70px;
  align-items: center;
}

.overview-col-text {
  flex: 1 1 50%;
}

.overview-col-text p {
  line-height: 1.85;
  color: #444;
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 400;
}

.overview-col-text p:last-child {
  margin-bottom: 0;
}

.overview-col-img {
  flex: 1 1 40%;
  position: relative;
}

.overview-col-img::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 4px solid rgba(255, 107, 0, 0.15);
  border-radius: var(--border-radius-lg);
  z-index: 0;
}

.overview-col-img img {
  width: 100%;
  position: relative;
  z-index: 1;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease;
}

.overview-col-img img:hover {
  transform: translateY(-5px);
}

.trade-enquiries {
  background: var(--light-grey);
  border-left: 5px solid var(--accent-orange);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.trade-enquiries-text {
  flex: 1 1 auto;
}

.trade-enquiries h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.trade-enquiries p {
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 0;
  font-size: 16px;
}

.trade-enquiries p strong {
  color: var(--primary-blue);
  display: inline-block;
  min-width: 100px;
}

.trade-enquiries-action {
  flex: 0 0 auto;
}

/* Image Grid Overrides */
.overview-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  align-items: stretch;
}

.overview-grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
}

.overview-grid-img.offset-img {
  transform: translateY(30px);
}

@media (max-width: 768px) {
  .overview-img-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .overview-grid-img.offset-img {
    transform: translateY(0);
  }
}

/* 3. KEY FEATURES SECTION */
.ps-features {
  padding: 100px 0;
  background-color: var(--light-grey);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .sub {
  color: var(--accent-orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-header h2 {
  font-size: 40px;
  margin-top: 10px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-bottom-color: var(--accent-orange);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 107, 0, 0.1);
  color: var(--accent-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 24px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--accent-orange);
  color: var(--white);
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}
.feature-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

/* 4. SPECIFICATIONS */
.ps-specs {
  padding: 100px 0;
  background-color: var(--primary-blue);
  color: var(--white);
}
.ps-specs .sub {
  color: var(--accent-orange);
}
.ps-specs h2 {
  color: var(--white);
}

.specs-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: var(--secondary-blue);
  padding: 50px;
  border-radius: var(--border-radius-xl);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.specs-table tr:last-child {
  border-bottom: none;
}
.specs-table td {
  padding: 20px 10px;
}
.specs-table td:first-child {
  font-weight: 600;
  color: var(--metallic-grey);
  width: 40%;
}
.specs-table td:last-child {
  font-weight: 500;
  color: var(--white);
  text-align: right;
}

.specs-image img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* 5. GALLERY */
.ps-gallery {
  padding: 100px 0;
  background: var(--light-grey);
  overflow-x: hidden;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 25, 47, 0.8), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 18px;
  transform: translateY(20px);
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* 6. PROCESS */
.ps-process {
  padding: 100px 0;
  background-color: var(--white);
  overflow-x: hidden;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1000px;
  margin: 60px auto 0;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: var(--light-grey);
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
  width: 250px;
}
.process-icon {
  width: 90px;
  height: 90px;
  background: var(--white);
  border: 2px dashed var(--metallic-grey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--primary-blue);
  margin: 0 auto 20px;
  transition: var(--transition);
}
.process-step:hover .process-icon {
  border-color: var(--accent-orange);
  background: var(--accent-orange);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(255, 107, 0, 0.3);
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.process-step p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* 7. WHY CHOOSE US */
.ps-why {
  padding: 100px 0;
  background: var(--light-grey);
  overflow-x: hidden;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .why-content h2 {
    font-size: 28px;
  }
}
.why-content p {
  color: #555;
  margin-bottom: 30px;
  line-height: 1.8;
}

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-box {
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.stat-box h4 {
  font-size: 40px;
  color: var(--accent-orange);
  margin-bottom: 10px;
}
.stat-box span {
  font-weight: 500;
  color: var(--primary-blue);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.why-image {
  position: relative;
}
.why-image img {
  width: 100%;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-hover);
}
.why-badge {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--accent-orange);
  color: var(--white);
  padding: 30px;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 15px 30px rgba(255, 107, 0, 0.4);
}
.why-badge strong {
  font-size: 32px;
  line-height: 1;
}
.why-badge span {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 5px;
}

/* 8. CTA SECTION */
.ps-cta {
  background:
    linear-gradient(rgba(10, 25, 47, 0.9), rgba(10, 25, 47, 0.9)),
    url("../images/image 128.png") center/cover fixed;
  padding: 120px 0;
  text-align: center;
  color: var(--white);
  overflow-x: hidden;
}
.ps-cta h2 {
  color: var(--white);
  font-size: 48px;
  margin-bottom: 24px;
}
.ps-cta p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .overview-row {
    flex-direction: column;
  }
  .ps-overview,
  .specs-container,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ps-overview {
    padding: 40px 20px;
    margin-top: 20px;
    border-radius: var(--border-radius-lg);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .process-steps::before {
    display: none;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .so-title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .banner-jumbotron {
    padding: 130px 0 70px;
  }
  .banner-jumbotron h1 {
    font-size: 36px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .features-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .ps-hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .why-stats {
    grid-template-columns: 1fr 1fr;
  }
  .stat-box {
    padding: 15px;
  }
  .stat-box h4 {
    font-size: 28px;
  }
  .ps-cta h2 {
    font-size: 32px;
  }
  .section-pad {
    padding: 60px 0;
  }
  .section-header {
    margin-bottom: 40px;
  }
  .section-header h2 {
    font-size: 32px;
  }
  .why-badge {
    width: 110px;
    height: 110px;
    bottom: -15px;
    left: -15px;
    padding: 20px;
  }
  .why-badge strong {
    font-size: 24px;
  }
  .ps-cta {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .why-stats {
    grid-template-columns: 1fr;
  }
  .so-title {
    font-size: 26px;
  }
  .ps-overview {
    padding: 30px 15px;
  }
  .specs-container {
    padding: 30px 20px;
  }
  .specs-table td {
    padding: 15px 5px;
  }
}
.gal-filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 44px;
}
.gal-filter-btn {
  padding: 10px 22px;
  border: 2px solid var(--light-gray);
  border-radius: 100px;
  background: var(--white);
  color: var(--body-text);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Inter", sans-serif;
}
.gal-filter-btn:hover,
.gal-filter-btn.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gal-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: linear-gradient(135deg, #0d1b3e, #1e3470);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.gal-item:hover {
  transform: scale(1.02);
}
.gal-item.tall {
  min-height: 460px;
}
.gal-item.normal {
  min-height: 280px;
}
.gal-item.wide {
  grid-column: span 2;
  min-height: 280px;
}
.gal-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gal-bg svg {
  width: 100%;
  height: 100%;
}
.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 27, 62, 0.92) 0%,
    rgba(13, 27, 62, 0.15) 60%,
    transparent 100%
  );
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  z-index: 2;
}
.gal-item:hover .gal-overlay {
  opacity: 1;
}
.gal-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 3;
}
.gal-overlay-title {
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 3px;
}
.gal-overlay-sub {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
}
.proc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.proc-card {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.proc-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), #f8c555);
}
.proc-num-bg {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
}
.proc-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.proc-card-title {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 7px;
  font-size: 1.02rem;
}
.proc-card-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.87rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
  .gal-item.wide {
    grid-column: span 1;
  }
  .gal-item.tall {
    min-height: 260px;
  }
  .proc-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .gallery-masonry {
    grid-template-columns: 1fr;
  }
}
