*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


:root {
  --blue: #0a84d0;
  --blue-dark: #0660a0;
  --blue-glow: rgba(10, 132, 208, 0.15);
  --accent: #f0a500;
  --text: #0d1b2a;
  --muted: #5a7080;
  --white: #ffffff;
  --bg: #f4f8fc;
  --bg2: #eaf3fa;
  --whatsapp: #25D366;
  --whatsapp-dark: #1da851;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(10, 132, 208, 0.10);
  --shadow-lg: 0 20px 60px rgba(10, 132, 208, 0.16);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Ubuntu', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 6px;
}

/* PRODUCT HERO */
.product-hero {
  display: grid !important;
  grid-template-columns: 1.1fr 0.9fr !important;
  min-height: 88vh !important;
  height: auto !important;
  padding: 0 !important;
  margin: -140px 0 0 0 !important;
  align-content: unset !important;
  align-items: unset !important;
  justify-items: unset !important;
  gap: 0 !important;
  background: none !important;
  position: relative !important;
  overflow-x: hidden;
}

.product-images {
  padding: 188px 40px 48px 64px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg);
  grid-column: 1;
  grid-row: 1 / 3;
  justify-content: end;
}

.main-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 300px;
  max-height: 620px;
  background: white;
  box-shadow: var(--shadow-lg);
}

.main-image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease, transform .5s ease;
}

.main-image-wrap:hover img {
  transform: scale(1.02);
}

.image-counter {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 12px;
  font-family: 'DM Mono', monospace;
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
}

.thumb-row {
  display: flex;
  gap: 12px;
}

.thumb {
  flex: 1;
  height: 88px;
  min-width: 0;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s, transform .2s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumb:hover,
.thumb.active {
  border-color: var(--blue);
  transform: translateY(-2px);
}

/* PRODUCT INFO */
.product-info-top {
  padding: 252px 64px 0 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  grid-column: 2;
  grid-row: 1;
}

.product-info-bottom {
  padding: 0 64px 32px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: var(--white);
  grid-column: 2;
  grid-row: 2;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-glow);
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  width: fit-content;
}

.product-info-top h1 {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 8px;
}

.product-info-top h1 span {
  color: var(--blue);
}

.product-tagline {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.cabin-sizes-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cabin-size-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
}

.cabin-size-label i {
  color: var(--blue);
  font-size: 14px;
}

.cabin-size-dot {
  color: #c0d0dc;
  font-size: 16px;
  font-weight: 300;
}

.cabin-panel {
  display: none;
}

.cabin-panel.active {
  display: block;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.price-main {
  font-size: 30px;
  font-weight: 800;
  color: var(--blue);
}

.price-tag {
  background: #fff3cd;
  color: #b45309;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

.price-note {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 18px;
}

.product-description-rich {
  background: linear-gradient(135deg, var(--blue-glow), var(--bg));
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  margin-bottom: 22px;
  border-left: 3px solid var(--blue);
}

.product-description-rich p {
  font-size: 16px !important;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 8px;
}

.product-description-rich p:last-child {
  margin-bottom: 0;
}

.product-description-rich strong {
  color: var(--text);
}

.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  flex: 1;
  background: var(--blue);
  color: #fff;
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .2s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 132, 208, 0.3);
}

.btn-outline {
  flex: 1;
  background: transparent;
  color: var(--blue);
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  border: 2px solid var(--blue);
  text-decoration: none;
  cursor: pointer;
  transition: all .2s;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--blue);
  color: #fff;
}

/* TRUST STRIP */
.trust-strip {
  background: var(--text);
  display: flex;
  justify-content: center;
  gap: 56px;
  padding: 36px 64px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 600;
}

.trust-item i {
  color: var(--accent);
  font-size: 26px;
}

/* CLIENTS */
.clients-section {
  background: var(--text);
  padding: 60px 64px;
  overflow: hidden;
}

.clients-header {
  text-align: center;
  margin-bottom: 28px;
}

.clients-header p {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}

.clients-track-wrap {
  overflow: hidden;
  position: relative;
}

.clients-track-wrap::before,
.clients-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}

.clients-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--text), transparent);
}

.clients-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--text), transparent);
}

.clients-track {
  display: flex;
  gap: 20px;
  align-items: center;
  width: max-content;
  animation: scrollClients 40s linear infinite;
}

.clients-track:hover {
  animation-play-state: paused;
}

.client-logo {
  background: var(--white);
  border-radius: 14px;
  padding: 16px 26px;
  box-shadow: 0 2px 12px rgba(10, 132, 208, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  min-width: 150px;
  flex-shrink: 0;
  transition: box-shadow .2s, transform .2s;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  white-space: nowrap;
}

.client-logo:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  color: var(--blue);
}

@keyframes scrollClients {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* SECTION COMMON */
.section-tag {
  display: inline-block;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--blue);
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 580px;
}

/* GALLERY */
.gallery-section {
  padding: 60px 64px;
  background: var(--bg);
}

.gallery-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.gallery-section .section-sub {
  margin: 0 auto;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 18px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item .g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 30, 60, 0.6), transparent 50%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-item:hover .g-overlay {
  opacity: 1;
}

.gallery-item .g-overlay span {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

/* HOW IT'S MADE (informational) */
.made-section {
  padding: 60px 64px;
  background: var(--bg);
}

.made-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.made-section .section-sub {
  margin: 0 auto;
  text-align: center;
}

.made-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.made-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}

.made-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.made-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.made-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s;
}

.made-card:hover .made-img img {
  transform: scale(1.06);
}

.made-step-num {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 34px;
  height: 34px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(10, 30, 60, 0.25);
  z-index: 10;
}

.made-body {
  padding: 22px 24px 26px;
}

.made-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.made-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.made-body ul li {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}

.made-body ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--blue);
  font-size: 10px;
  position: absolute;
  left: 0;
  top: 4px;
}

.made-body ul li strong {
  color: var(--text);
}

/* SIZES TABLE */
.sizes-section {
  background: var(--white);
  padding: 60px 64px;
}

.sizes-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.sizes-section .section-sub {
  margin: 0 auto;
  text-align: center;
}

.sizes-table-wrap {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  /* box-shadow: var(--shadow-lg); */
  background: var(--white);
  /* border-top: 2px solid var(--blue-dark); */
  /* border-right: 2px solid var(--blue-dark); */
  /* border-bottom: 2px solid var(--blue-dark); */
  /* border-left: 2px solid var(--blue-dark); */
  border: 2px solid transparent;
  border-radius: 10px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--blue), var(--blue-dark)) border-box;
}

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

.sizes-table thead tr {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}

.sizes-table thead th {
  color: #fff;
  padding: 20px 16px;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
}

.sizes-table thead th:first-child {
  width: 22%;
}

.sizes-table thead th.popular-col {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
}

.popular-tag {
  position: absolute;
  top: -1px;
  right: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 0 0 6px 6px;
  letter-spacing: .5px;
}

.sizes-table tbody td {
  padding: 16px;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid #eef3f8;
}

.sizes-table tbody td:first-child {
  font-weight: 700;
  color: var(--text);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.sizes-table tbody tr:last-child td {
  border-bottom: none;
}

.sizes-table tbody tr:hover td {
  background: var(--bg2);
}

.sizes-table tbody td.popular-col {
  background: rgba(10, 132, 208, 0.04);
  font-weight: 600;
  color: var(--text);
}

.sizes-table .price-cell {
  color: var(--blue);
  font-weight: 700;
  font-size: 15px;
}

/* APPLICATIONS */
.applications {
  padding: 60px 64px;
  background: var(--bg);
}

.applications .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.applications .section-sub {
  margin: 0 auto;
  text-align: center;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  width: 100%;
}

.app-item {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid #eaf1f7;
  transition: all .25s;
  box-shadow: 0 4px 16px rgba(10, 132, 208, 0.05);
}

.app-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.app-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.app-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s;
}

.app-item:hover .app-img img {
  transform: scale(1.08);
}

.app-icon-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(10, 30, 60, 0.18);
}

.app-icon-badge i {
  color: var(--blue);
  font-size: 16px;
}

.app-text {
  padding: 18px 18px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.app-text h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}

.app-text p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* OUR WORK SECTION */
.our-work-section {
  padding: 60px 64px;
  background: var(--white);
}

.our-work-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.our-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.our-work-item {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid #eaf1f7;
  transition: all .25s;
  box-shadow: 0 4px 16px rgba(10, 132, 208, 0.05);
}

.our-work-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.our-work-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.our-work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s;
}

.our-work-item:hover .our-work-img img {
  transform: scale(1.08);
}

.our-work-text {
  padding: 16px;
  flex: 1;
}

.our-work-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* QUOTE GENERATOR (WhatsApp) */
.quote-gen {
  padding: 60px 64px;
  background: var(--bg);
}

.quote-gen .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.quote-gen .section-sub {
  margin: 0 auto;
  text-align: center;
}

.qg-wrap {
  max-width: 1040px;
  margin: 0 auto;
}

.qg-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  align-items: start;
}

.qg-left {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 20px;
  border: 1px solid #eef3f8;
  max-height: 640px;
  overflow-y: auto;
  scrollbar-gutter: stable;
}

.qg-left::-webkit-scrollbar {
  width: 6px;
}

.qg-left::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 6px;
}

.qg-right {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 20px;
  border: 1px solid #eef3f8;
  position: sticky;
  top: 96px;
  max-height: 640px;
  overflow-y: auto;
}

.qg-right-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.qg-right-title i {
  color: var(--blue);
}

.qg-right-sub {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.45;
}

.qg-field {
  margin-bottom: 7px;
}

.qg-field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}

.qg-field-value {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #e2edf5;
  background: var(--bg);
  font-size: 12px;
  font-weight: 600;
  color: #b7c4cf;
  transition: all .25s;
  min-height: 16px;
}

.qg-field-value.filled {
  color: var(--text);
  border-color: rgba(10, 132, 208, 0.3);
  background: var(--blue-glow);
}

.qg-field-value.filled::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--blue);
  font-size: 10px;
}

.qg-divider {
  height: 1px;
  background: #eef3f8;
  margin: 10px 0;
}

.qg-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.qg-chip {
  padding: 8px 12px;
  border-radius: 10px;
  border: 2px solid #e2edf5;
  background: var(--white);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: all .25s cubic-bezier(.2, .8, .2, 1);
  user-select: none;
  display: flex;
  align-items: center;
  gap: 7px;
  position: relative;
  overflow: visible;
}

.qg-chip i {
  font-size: 15px;
  color: var(--blue);
  transition: color .25s;
}

.qg-chip .qg-chip-sub {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 1px;
}

.qg-chip:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(10, 132, 208, 0.15);
}

.qg-chip.selected {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 8px 20px rgba(10, 132, 208, 0.3);
  transform: translateY(-2px);
}

.qg-chip.selected i {
  color: #fff;
}

.qg-chip.selected .qg-chip-sub {
  color: rgba(255, 255, 255, 0.8);
}

.qg-chip.selected::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.85);
}

.qg-progress-wrap {
  margin-bottom: 14px;
}

.qg-progress-bar {
  height: 6px;
  background: var(--bg2);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 8px;
}

.qg-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  width: 0%;
  transition: width .4s cubic-bezier(.2, .8, .2, 1);
  border-radius: 8px;
}

.qg-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 600;
}

.qg-progress-label span.qg-progress-pct {
  color: var(--blue);
  font-weight: 700;
}

.qg-step {
  margin-bottom: 10px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1.5px solid transparent;
  transition: all .3s;
  position: relative;
}

.qg-step.qg-step-done {
  border-color: rgba(10, 132, 208, 0.25);
  background: var(--blue-glow);
}

.qg-step-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  margin-right: 26px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.qg-step-label .qg-num {
  width: 21px;
  height: 21px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10.5px;
  flex-shrink: 0;
  font-weight: 700;
  transition: all .25s;
}

.qg-step-done .qg-num {
  background: var(--accent);
}

.qg-step-done .qg-num::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 11px;
}

/* INFO EYE ICON + TOOLTIP (per w3schools .tooltip pattern) */
.qg-info {
  position: absolute;
  top: 12px;
  right: 12px;
}

.qg-info .qg-info-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid #dce8f0;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  cursor: help;
  transition: all .2s;
}

.qg-info:hover .qg-info-icon {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.qg-info .qg-tooltiptext {
  visibility: hidden;
  opacity: 0;
  width: 230px;
  background: var(--text);
  color: #fff;
  text-align: left;
  border-radius: 10px;
  padding: 12px 14px;
  position: absolute;
  z-index: 20;
  top: 130%;
  right: 0;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.55;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transition: opacity .2s, visibility .2s;
  pointer-events: none;
}

.qg-info .qg-tooltiptext::after {
  content: "";
  position: absolute;
  bottom: 100%;
  right: 10px;
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent var(--text) transparent;
}

.qg-info:hover .qg-tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* Per-chip tooltip info icon (click-based, escapes card overflow via fixed positioning) */
.qg-chip {
  padding-right: 26px;
}

.qg-chip-name {
  font-size: 13.5px;
  font-weight: 700;
}

.qg-chip-eye {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(10, 132, 208, 0.12);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
  transition: all .2s;
  z-index: 2;
  font-style: normal;
}

.qg-chip.selected .qg-chip-eye {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.qg-chip-eye:hover,
.qg-chip-eye.qg-info-active {
  background: var(--blue);
  color: #fff;
}

.qg-chip-popover {
  display: none;
  position: fixed;
  z-index: 200;
  width: 220px;
  background: var(--text);
  color: #fff;
  text-align: left;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.qg-chip-popover.open {
  display: block;
}


.qg-chip-popover-close {
  position: absolute;
  top: 6px;
  right: 8px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  font-size: 11px;
}

.qg-chip-popover-close:hover {
  color: #fff;
}

.whatsapp-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 14px;
  font-size: 15.5px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}

.whatsapp-btn:hover {
  transform: scale(1.01);
}

.whatsapp-btn:active {
  transform: translateY(-1px) scale(0.99);
}

.whatsapp-btn i {
  font-size: 24px;
  animation: qgPulse 2s infinite;
}

@keyframes qgPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }
}

.qg-btn-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.qg-btn-note i {
  color: var(--whatsapp);
}

/* ADVANTAGES */
.advantages {
  padding: 60px 64px;
  background: var(--white);
}

.advantages .section-header {
  text-align: center;
  margin-bottom: 56px;
}

.advantages .section-sub {
  margin: 0 auto;
  text-align: center;
}

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

.adv-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all .3s;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.adv-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left;
}

.adv-card:hover {
  transform: translateY(-10px);
  /* box-shadow: var(--shadow-lg); */
}

.adv-card:hover::after {
  transform: scaleX(1);
}

.adv-icon {
  width: 50px;
  height: 50px;
  background: var(--blue-glow);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}

.adv-card:hover .adv-icon {
  background: var(--blue);
}

.adv-icon i {
  font-size: 26px;
  color: var(--blue);
  transition: color .3s;
}

.adv-card:hover .adv-icon i {
  color: var(--white);
}

.adv-card h3 {
  font-size: 19px;
  font-weight: 700;
}

.adv-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.8;
}

/* TESTIMONIALS */
.testimonials-section {
  padding: 60px 64px;
  background: var(--white);
}

.testimonials-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-section .section-sub {
  margin: 0 auto;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 30px 26px;
  /* box-shadow: var(--shadow); */
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 6px 5px 18px -7px rgba(135, 135, 135, 0.12);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 3px;
}

.testimonial-text {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.testimonial-author h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.testimonial-author span {
  font-size: 12px;
  color: var(--muted);
}

/* WHAT IS PORTABLE OFFICE CABIN (informational, SEO/AEO/GEO) */
.whatis-section {
  padding: 60px 64px;
  background: var(--white);
}

.whatis-section .section-header {
  text-align: center;
  margin-bottom: 44px;
}

.whatis-section .section-sub {
  margin: 0 auto;
  text-align: center;
}

.whatis-wrap {
  max-width: 880px;
  margin: 0 auto;
}

.whatis-copy p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 18px;
  text-align: left;
}

.whatis-copy p strong {
  color: var(--text);
}

.whatis-copy h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin: 30px 0 12px;
  text-align: left;
}

.whatis-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.whatis-fact {
  background: var(--blue-glow);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  text-align: center;
}

.whatis-fact strong {
  display: block;
  font-size: 17px;
  color: var(--blue);
  margin-bottom: 4px;
}

.whatis-fact span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
  display: block;
}

/* CTA */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 60px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.cta-banner h2 {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
}

.cta-banner p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.btn-white {
  background: #fff;
  color: var(--blue);
  padding: 11px 26px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 13.5px;
  text-decoration: none;
  display: inline-block;
  transition: all .2s;
  position: relative;
  z-index: 1;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* WHY CHOOSE — compact */
.choose-compact {
  padding: 60px 64px;
  /* background: linear-gradient(180deg, var(--white), var(--bg) 100%); */
  background-color: var(--white);
}

.choose-compact-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.choose-left {
  text-align: left;
}

.choose-compact h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.choose-compact h2 span {
  color: var(--blue);
}

.choose-compact .intro {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 22px;
  text-align: left;
}

.choose-left .btn-primary {
  flex: none;
  width: fit-content;
}

.choose-bullets {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  width: 100%;
}

.choose-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  font-weight: 500;
  background: var(--bg);
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  /* border: 1px solid var(--muted); */
  /* box-shadow: var(--shadow-md); */
  transition: transform .25s, box-shadow .25s;
}

.choose-bullets li:hover {
  transform: translateY(-3px);
}

.choose-bullets li i {
  color: var(--blue);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 16px;
}

/* FAQ */
.faq-section {
  padding: 60px 64px;
  background: var(--white);
}

.faq-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-section .section-sub {
  margin: 0 auto;
  text-align: center;
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1.5px solid #eaf1f7;
  overflow: hidden;
  transition: border-color .2s;
}

.faq-item.open {
  border-color: rgba(10, 132, 208, 0.3);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: none;
  padding: 20px 24px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.faq-q i {
  color: var(--blue);
  font-size: 14px;
  flex-shrink: 0;
  transition: transform .3s;
}

.faq-item.open .faq-q i {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-a p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

/* QUOTE */
.quote {
  padding: 60px 64px;
  background: var(--bg);
}

.quote .section-header {
  text-align: center;
  margin-bottom: 56px;
}

.quote .section-sub {
  margin: 0 auto;
  text-align: center;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
}

.quote-form input,
.quote-form textarea {
  padding: 16px 18px;
  border: 1.5px solid #dce8f0;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

.quote-form textarea,
input::placeholder {
  font-size: 16px;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-glow);
}

.quote-form textarea {
  height: 130px;
  resize: vertical;
  grid-column: 1 / -1;
}

.quote-form button {
  grid-column: 1 / -1;
  background: var(--blue);
  color: #fff;
  padding: 17px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all .2s;
}

.quote-form button:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 132, 208, 0.3);
}

/* COMPANY / FOOTER */
.company {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding: 60px 64px;
  background: var(--text);
}

.col-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  margin-bottom: 18px;
  display: block;
  background: white;
  padding: 6px 10px;
  border-radius: 8px;
}

.col-logo p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
}

.company h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 18px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.contact-item i {
  color: var(--blue);
  margin-top: 3px;
  font-size: 14px;
  flex-shrink: 0;
}

.contact-item span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}


.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}


@media (min-width:361px) and (max-width:575px) {

  .banner-section.product-hero {
    height: auto !important;
  }

}

@media (max-width: 1440px) and (min-width: 901px) {
  .product-info-bottom {
    grid-column: 1 / -1;
    grid-row: 2;
    padding: 32px 64px 48px 64px;
  }

  .product-images {
    grid-row: 1;
  }
}

@media (max-width: 1200px) and (min-width: 901px) {

  .app-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .our-work-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {

  .made-grid {
    grid-template-columns: 1fr;
  }

}

@media (min-width:600px) and (max-width: 900px) {

  .made-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .product-hero {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    margin-top: 0 !important;
  }

  .btn-primary,
  .btn-outline {
    font-size: 18px;
    padding: 11px 14px;
  }

  .reveal-left {
    order: 2;
  }

  .product-images {
    padding: 90px 20px 28px 20px;
    grid-column: 1;
    grid-row: 1;
  }

  .product-info-top {
    padding: 28px 20px 0 20px;
    grid-column: 1;
    grid-row: 2;
  }

  .product-info-bottom {
    padding: 0 20px 28px 20px;
    grid-column: 1;
    grid-row: 3;
  }

  .product-description-rich {
    padding: 16px 18px;
  }

  .main-image-wrap {
    min-height: 240px;
  }

  .thumb {
    height: 72px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }

  .gallery-item .g-overlay {
    padding: 12px;
  }

  .sizes-table-wrap {
    overflow-x: auto;
  }

  .sizes-table {
    min-width: 600px;
  }

  .app-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .our-work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .app-text {
    padding: 14px 14px 18px;
  }

  .choose-bullets {
    grid-template-columns: 1fr;
  }

  .clients-section {
    padding: 36px 0;
  }

  .client-logo {
    height: 65px;
    min-width: 120px;
  }

  .faq-section {
    padding: 56px 20px;
  }

  .faq-q {
    padding: 16px 18px;
    font-size: 14px;
  }

  .faq-a p {
    padding: 0 18px 16px;
  }

  .company {
    grid-template-columns: 1fr;
    padding: 48px 20px;
  }

  .quote {
    padding: 56px 20px;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    gap: 24px;
    padding: 20px;
  }

  .sizes-section,
  .gallery-section,
  .applications,
  .quote-gen,
  .advantages,
  .choose-compact,
  .made-section,
  .testimonials-section,
  .whatis-section {
    padding: 56px 20px;
  }

  .whatis-facts {
    grid-template-columns: 1fr 1fr;
  }

  .whatis-fact {
    padding: 14px 12px;
  }

  .cta-banner {
    padding: 32px 20px;
  }

  .qg-wrap {
    padding: 0;
  }

  .qg-grid {
    grid-template-columns: 1fr;
  }

  .qg-left,
  .qg-right {
    padding: 18px;
    max-height: 500px;
    overflow: scroll;
  }

  .qg-right {
    position: static;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    margin-top: -10px;
  }

  .qg-right-title,
  .qg-right-sub,
  .qg-field,
  .qg-divider {
    display: none !important;
  }

  .qg-info .qg-tooltiptext {
    width: 190px;
    right: -8px;
  }

  .qg-chip-tooltip {
    width: 160px;
  }


  .made-body {
    padding: 18px 20px 22px;
  }

  .made-card {
    overflow: visible;
  }

  .adv-card {
    padding: 20px 14px;
  }

  .adv-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .testimonial-card {
    padding: 24px 22px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .choose-compact-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .choose-bullets li {
    padding: 14px;
  }
}

/* =============================================
   RESPONSIVE FONT SIZING — TABLET (max 900px)
   ============================================= */
@media (max-width: 900px) {
  .product-info h1 {
    font-size: 30px;
  }

  .price-main {
    font-size: 26px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-sub {
    font-size: 14px;
  }

  .trust-item {
    font-size: 14px;
  }

  .trust-item i {
    font-size: 22px;
  }

  .adv-card h3 {
    font-size: 17px;
  }

  .adv-card p {
    font-size: 13.5px;
  }

  .choose-compact h2 {
    font-size: 28px;
  }

  .choose-compact .intro {
    font-size: 13.5px;
  }

  .whatis-copy p {
    font-size: 14px;
  }

  .whatis-copy h3 {
    font-size: 17px;
  }

  .whatis-fact strong {
    font-size: 15px;
  }

  .whatis-fact span {
    font-size: 11px;
  }

  .cta-banner h2 {
    font-size: 22px;
  }

  .cta-banner p {
    font-size: 13px;
  }

  .made-body h3 {
    font-size: 16px;
  }

  .made-body ul li {
    font-size: 13px;
  }

  .testimonial-text {
    font-size: 13.5px;
  }

  .testimonial-author h5 {
    font-size: 13px;
  }

  .testimonial-stars {
    font-size: 13px;
  }

  .faq-q {
    font-size: 14.5px;
  }

  .faq-a p {
    font-size: 13px;
  }

  .app-text h4 {
    font-size: 14px;
  }

  .app-text p {
    font-size: 12px;
  }

  .sizes-table thead th {
    font-size: 13px;
    padding: 16px 12px;
  }

  .sizes-table tbody td {
    font-size: 12.5px;
    padding: 12px;
  }

  .sizes-table tbody td:first-child {
    font-size: 12px;
  }

  .sizes-table .price-cell {
    font-size: 13px;
  }

  .qg-chip {
    font-size: 12.5px;
    padding: 7px 10px;
  }

  .qg-chip-name {
    font-size: 12.5px;
  }

  .qg-chip .qg-chip-sub {
    font-size: 9.5px;
  }

  .qg-step-label {
    font-size: 12.5px;
  }

  .qg-right-title {
    font-size: 14px;
  }

  .qg-right-sub {
    font-size: 10.5px;
  }

  .qg-field-value {
    font-size: 11.5px;
  }

  .whatsapp-btn {
    font-size: 14px;
    padding: 13px;
  }

  .whatsapp-btn i {
    font-size: 20px;
  }

  .btn-primary,
  .btn-outline {
    font-size: 13px;
    padding: 12px 16px;
  }

  .choose-bullets li {
    font-size: 13px;
    padding: 14px 14px;
  }

  .product-tagline {
    font-size: 13px;
  }

  .product-description-rich p {
    font-size: 13px;
  }

  .price-note {
    font-size: 11px;
  }

  .cabin-size-label {
    font-size: 12.5px;
  }

  .clients-header p {
    font-size: 12px;
  }

  .client-logo {
    font-size: 12px;
    min-width: 120px;
    height: 65px;
  }

  .quote-form input,
  .quote-form textarea {
    font-size: 13px;
    padding: 14px 16px;
  }

  .quote-form button {
    font-size: 14px;
    padding: 15px;
  }

  .col-logo p {
    font-size: 13px;
  }

  .contact-item span {
    font-size: 12px;
  }

  .company h4 {
    font-size: 12px;
  }

  .btn-white {
    font-size: 12.5px;
    padding: 10px 22px;
  }

  .qg-btn-note {
    font-size: 11px;
  }
}

/* =============================================
   RESPONSIVE FONT SIZING — MOBILE (max 575px)
   ============================================= */
@media (max-width: 575px) {
  .product-images {
    padding: 60px 14px q8px 14px;
  }

  .main-image-wrap {
    min-height: 200px;
  }

  .thumb {
    height: 58px;
  }

  .thumb-row {
    gap: 8px;
  }

  .product-info {
    padding: 20px 14px;
  }

  .product-info h1 {
    font-size: 24px;
    line-height: 1.2;
  }

  .product-description-rich {
    padding: 14px 14px;
  }

  .price-main {
    font-size: 22px;
  }

  .price-tag {
    font-size: 10px;
  }

  .section-title {
    font-size: 22px;
  }

  .section-sub {
    font-size: 13px;
  }

  .section-tag {
    font-size: 10px;
  }

  .product-badge {
    font-size: 10px;
    padding: 5px 12px;
  }

  .product-tagline {
    font-size: 12px;
  }

  .cabin-size-label {
    font-size: 11.5px;
  }

  .cabin-size-label i {
    font-size: 12px;
  }

  .product-description-rich p {
    font-size: 12px;
  }

  .price-note {
    font-size: 10.5px;
  }

  .trust-strip {
    gap: 14px;
    padding: 16px 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .trust-item {
    font-size: 11px;
    gap: 8px;
  }

  .trust-item i {
    font-size: 16px;
  }

  .clients-section {
    padding: 28px 0;
  }

  .client-logo {
    font-size: 11px;
    min-width: 100px;
    height: 55px;
    padding: 10px 16px;
  }

  .clients-header {
    margin-bottom: 18px;
  }

  .clients-header p {
    font-size: 10px;
  }

  .gallery-section {
    padding: 40px 14px;
  }

  .gallery-grid {
    gap: 10px;
    grid-auto-rows: 140px;
  }

  .gallery-item .g-overlay {
    padding: 10px;
  }

  .gallery-item .g-overlay span {
    font-size: 11px;
  }

  .sizes-section {
    padding: 40px 14px;
  }

  .sizes-table-wrap {
    border-radius: var(--radius-sm);
  }

  .sizes-table thead th {
    font-size: 11.5px;
    padding: 14px 10px;
  }

  .sizes-table tbody td {
    font-size: 11.5px;
    padding: 10px;
  }

  .sizes-table tbody td:first-child {
    font-size: 11px;
  }

  .sizes-table .price-cell {
    font-size: 12px;
  }

  .applications {
    padding: 40px 14px;
  }

  .our-work-section {
    padding: 40px 14px;
  }

  .app-grid {
    gap: 12px;
  }

  .our-work-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .app-text {
    padding: 12px 12px 16px;
  }

  .app-text h4 {
    font-size: 13px;
  }

  .app-text p {
    font-size: 11px;
  }

  .app-icon-badge {
    width: 32px;
    height: 32px;
  }

  .app-icon-badge i {
    font-size: 14px;
  }

  .quote-gen {
    padding: 40px 14px;
  }

  .qg-left,
  .qg-right {
    padding: 14px;
  }

  .qg-chip {
    font-size: 11.5px;
    padding: 6px 8px;
  }

  .qg-chip-name {
    font-size: 11.5px;
  }

  .qg-chip .qg-chip-sub {
    font-size: 9px;
  }

  .qg-chip i {
    font-size: 13px;
  }

  .qg-step {
    padding: 10px 12px;
  }

  .qg-step-label {
    font-size: 11.5px;
  }

  .qg-step-label .qg-num {
    width: 18px;
    height: 18px;
    font-size: 9.5px;
  }

  .qg-right-title {
    font-size: 13px;
  }

  .qg-right-sub {
    font-size: 10px;
  }

  .qg-field label {
    font-size: 9px;
  }

  .qg-field-value {
    font-size: 11px;
    padding: 6px 10px;
  }

  .qg-progress-label {
    font-size: 10.5px;
  }

  .qg-info .qg-info-icon {
    width: 20px;
    height: 20px;
    font-size: 9px;
  }

  .qg-info .qg-tooltiptext {
    font-size: 10.5px;
    padding: 10px 12px;
    width: 170px;
  }

  .whatsapp-btn {
    font-size: 13px;
    padding: 12px;
    gap: 10px;
  }

  .whatsapp-btn i {
    font-size: 18px;
  }

  .qg-btn-note {
    font-size: 10.5px;
  }

  .advantages {
    padding: 40px 14px;
  }

  .adv-grid {
    gap: 14px;
  }

  .adv-card {
    padding: 24px 20px;
  }

  .adv-card h3 {
    font-size: 15px;
  }

  .adv-card p {
    font-size: 12.5px;
  }

  .adv-icon {
    width: 48px;
    height: 48px;
  }

  .adv-icon i {
    font-size: 20px;
  }

  .testimonials-section {
    padding: 40px 14px;
  }

  .testimonials-grid {
    gap: 14px;
  }

  .testimonial-card {
    padding: 20px 18px;
  }

  .testimonial-text {
    font-size: 12.5px;
  }

  .testimonial-author h5 {
    font-size: 12px;
  }

  .testimonial-stars {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .testimonial-avatar {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .made-section {
    padding: 40px 14px;
  }

  .made-body {
    padding: 16px 16px 20px;
  }

  .made-body h3 {
    font-size: 15px;
  }

  .made-body ul li {
    font-size: 12px;
  }

  .made-step-num {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }

  .whatis-section {
    padding: 40px 14px;
  }

  .whatis-copy p {
    font-size: 13px;
  }

  .whatis-copy h3 {
    font-size: 15px;
  }

  .whatis-facts {
    gap: 10px;
    margin-top: 24px;
  }

  .whatis-fact {
    padding: 12px 10px;
  }

  .whatis-fact strong {
    font-size: 14px;
  }

  .whatis-fact span {
    font-size: 10.5px;
  }

  .choose-compact {
    padding: 40px 14px;
  }

  .choose-compact h2 {
    font-size: 22px;
  }

  .choose-compact .intro {
    font-size: 12.5px;
  }

  .choose-bullets li {
    font-size: 12px;
    padding: 12px;
    gap: 10px;
  }

  .choose-bullets li i {
    font-size: 14px;
  }

  .cta-banner {
    padding: 28px 14px;
  }

  .cta-banner h2 {
    font-size: 19px;
  }

  .cta-banner p {
    font-size: 12px;
  }

  .faq-section {
    padding: 40px 14px;
  }

  .faq-q {
    font-size: 13.5px;
    padding: 14px 16px;
  }

  .faq-a p {
    font-size: 12px;
    padding: 0 16px 14px;
  }

  .quote {
    padding: 40px 14px;
  }

  .quote-form input,
  .quote-form textarea {
    font-size: 12px;
    padding: 12px 14px;
  }

  .quote-form button {
    font-size: 13px;
    padding: 13px;
  }

  .company {
    padding: 36px 14px;
  }

  .col-logo p {
    font-size: 12px;
  }

  .contact-item span {
    font-size: 11px;
  }

  .contact-item i {
    font-size: 12px;
  }

  .company h4 {
    font-size: 11px;
  }



  .image-counter {
    font-size: 10px;
    padding: 4px 10px;
  }

  .thumb {
    height: 65px;
  }


  .btn-primary,
  .btn-outline {
    font-size: 13px;
    padding: 11px 14px;
  }
}

.logo img {
  height: 42px;
}

/* Matching Contact Form Sizing for Sections */
@media screen and (min-width: 1200px) {

  .sizes-section>*,
  .quote-gen>*,
  .advantages>*,
  .applications>*,
  .our-work-section>*,
  .whatis-section>*,
  .made-section>*,
  .choose-compact>*,
  .faq-section>*,
  .testimonials-section>*,
  .gallery-section>* {
    max-width: 1300px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1439px) {

  .sizes-section>*,
  .quote-gen>*,
  .advantages>*,
  .applications>*,
  .our-work-section>*,
  .whatis-section>*,
  .made-section>*,
  .choose-compact>*,
  .faq-section>*,
  .testimonials-section>*,
  .gallery-section>* {
    max-width: 1100px !important;
  }
}

.btn-primary,
.btn-outline {
  font-size: 18px;
  padding: 11px 14px;
}

.btn-white {
  font-size: 18px;
  padding: 9px 18px;
}

@media (max-width: 768px) {

  /* Hide the quote generator selection steps on mobile */
  .quote-gen .qg-left {
    display: none !important;
  }

  .btn-primary,
  .btn-outline {
    font-size: 15px;
    padding: 11px 14px;
  }

  /* Hide the fields and titles on the right side, keeping only the WhatsApp button */
  .quote-gen .qg-right .qg-right-title,
  .quote-gen .qg-right .qg-right-sub,
  .quote-gen .qg-right .qg-field,
  .quote-gen .qg-right .qg-divider {
    display: none !important;
  }

  .quote-gen .qg-right {
    padding: 10px;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .quote-gen .qg-wrap {
    background: transparent;
    padding: 0;
  }
}