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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top, rgba(200, 169, 106, 0.12), transparent 32%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.04), transparent 28%),
    linear-gradient(180deg, #080808 0%, #050505 45%, #040404 100%);
  color: #fff;
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.3px;
  font-weight: 600;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  padding-left: 20px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.container {
  position: relative;
  z-index: 1;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
  opacity: 0.12;
  z-index: 0;
}

body::before {
  top: -120px;
  left: -130px;
  background: rgba(200, 169, 106, 0.8);
}

body::after {
  right: -140px;
  bottom: -120px;
  background: rgba(255, 255, 255, 0.45);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 7, 7, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
}

.logo-image {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 10px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(200, 169, 106, 0.12);
  border: 1px solid rgba(200, 169, 106, 0.4);
  color: #e6c98f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.logo-text {
  font-size: 20px;
}

.logo-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.menu {
  display: flex;
  gap: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.menu a:hover {
  color: #fff;
}

.menu a {
  position: relative;
  transition: color 0.25s ease;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e6c98f, transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.menu a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(230, 201, 143, 0.26);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(8, 8, 8, 0.92);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.nav-toggle::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
  pointer-events: none;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f2e2bf, #b88b3d);
  transition: transform 0.25s ease, opacity 0.25s ease, width 0.25s ease;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.nav-toggle span:nth-child(1) {
  transform: translate(-50%, -50%) translateY(-6px);
}

.nav-toggle span:nth-child(2) {
  width: 12px;
}

.nav-toggle span:nth-child(3) {
  transform: translate(-50%, -50%) translateY(6px);
}

.nav-toggle:hover {
  border-color: rgba(230, 201, 143, 0.42);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(230, 201, 143, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.nav-toggle:active {
  transform: translateY(0);
}

.header.menu-open .nav-toggle span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.header.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.header.menu-open .nav-toggle span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 16px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: linear-gradient(135deg, #d8bb80, #b88b3d);
  color: #000;
  box-shadow: 0 10px 24px rgba(200, 169, 106, 0.22);
}

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(200, 169, 106, 0.3);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.btn-dark {
  background: linear-gradient(135deg, #111, #050505);
  color: #fff;
}

.btn-outline-dark {
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.35);
  color: #000;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible,
.nav-toggle:focus-visible,
.menu a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(230, 201, 143, 0.9);
  outline-offset: 3px;
}

.full-btn {
  width: 100%;
}

.hero {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=1600&q=80");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(200, 169, 106, 0.18), transparent 26%),
    linear-gradient(to bottom, rgba(0,0,0,0.34), rgba(0,0,0,0.78), #050505 96%);
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  padding: 108px 0 74px;
  align-items: center;
}

.hero-left,
.hero-card,
.section-head,
.featured-product,
.card,
.product-card,
.checkout-info,
.checkout-form,
.contact-box {
  animation: fadeUp 0.7s ease both;
}

.hero-card {
  animation-delay: 0.08s;
}

.section-head {
  animation-delay: 0.04s;
}

.tag {
  color: #e6c98f;
  text-transform: uppercase;
  letter-spacing: 3.6px;
  font-size: 13px;
  margin-bottom: 16px;
}

.dark-tag {
  color: rgba(0, 0, 0, 0.65);
}

.hero-left h2,
.page-banner h2,
.section-head h2,
.contact-box h2 {
  font-size: 44px;
  line-height: 1.06;
}

.hero-desc,
.page-desc {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  margin-top: 18px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  padding: 16px;
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.hero-card img {
  height: 425px;
  object-fit: contain;
  object-position: center top;
  border-radius: 22px;
  background: #0a0a0a;
  padding: 8px;
}

.hero-card-text {
  padding: 16px 6px 6px;
}

.hero-card-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  letter-spacing: 0.2px;
}

.featured-section {
  padding-top: 0;
  padding-bottom: 20px;
}

.featured-product {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
  background: linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 32px;
  padding: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  backdrop-filter: blur(16px);
}

.featured-media {
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-width: 300px;
  justify-self: start;
  background: #0f0f0f;
}

.featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  padding: 0;
}

.featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2px 0;
}

.featured-badge {
  align-self: flex-start;
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(200, 169, 106, 0.14);
  border: 1px solid rgba(200, 169, 106, 0.35);
  color: #e6c98f;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.featured-copy h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.featured-copy p {
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  font-size: 12px;
  line-height: 1.45;
}

.featured-points {
  list-style: none;
  padding-left: 0;
  margin: 10px 0 12px;
  display: grid;
  gap: 5px;
}

.featured-points li {
  position: relative;
  padding-left: 22px;
  color: rgba(255,255,255,0.84);
  font-size: 11px;
  line-height: 1.35;
}

.featured-section .hero-buttons {
  margin-top: 12px;
  gap: 10px;
}

.featured-section .btn {
  padding: 9px 14px;
  border-radius: 12px;
  font-size: 12px;
}

.featured-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c8a96a;
  box-shadow: 0 0 0 4px rgba(200, 169, 106, 0.16);
}

.small-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}

.page-banner {
  padding: 70px 0 30px;
}

.section {
  padding: 54px 0;
}

.hero + .section {
  padding-top: 24px;
}

.dark-section {
  background: linear-gradient(180deg, rgba(11,11,11,0.92), rgba(8,8,8,0.98));
}

.section-head {
  margin-bottom: 30px;
}

.section-head h2 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.8px;
}

.dark-section .section-head h2 {
  font-size: 26px;
}

.dark-section .section-head {
  margin-bottom: 22px;
}

.dark-section .tag {
  font-size: 12px;
  letter-spacing: 2.4px;
}

#services .container {
  background: rgba(255,255,255,0.03);
  padding: 40px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

.grid-3,
.grid-4,
.grid-6 {
  display: grid;
  gap: 24px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.dark-section .grid-6 {
  gap: 12px;
}

.card {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card img {
  height: 260px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.custom-fabrication-card .custom-fabrication-image {
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center center;
}

.corporate-rental-card {
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(10, 10, 10, 0.98));
}

.corporate-rental-media {
  padding: 14px 14px 0;
}

.corporate-rental-card .corporate-rental-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center center;
  border-radius: 20px;
  background: linear-gradient(180deg, #121212, #090909);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.event-tech-video {
  width: 100%;
  margin: 0;
  height: 240px;
  object-fit: contain;
  display: block;
  background: #0a0a0a;
}

.event-tech-card .event-tech-video {
  width: 100%;
  margin: 0;
  height: 210px;
  object-fit: contain;
  border-radius: 20px 20px 0 0;
  background: #0a0a0a;
}

.event-tech-card {
  grid-column: auto;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(230, 201, 143, 0.16);
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

.event-tech-card .card-body {
  padding: 20px;
}

.card:hover,
.product-card:hover,
.featured-product:hover,
.hero-card:hover,
.checkout-info:hover,
.checkout-form:hover,
.contact-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.26);
}

.card:hover img,
.product-card:hover img {
  transform: scale(1.02);
}

.card-body {
  padding: 20px 22px 22px;
}

.card-body h3 {
  margin-bottom: 8px;
}

.dark-section .card-body h3 {
  font-size: 14px;
  letter-spacing: 0.2px;
}

.card-body p {
  color: rgba(255,255,255,0.68);
}

.dark-section .card-body p {
  font-size: 11px;
  line-height: 1.45;
}

.dark-section .card-body {
  padding: 14px;
}

.dark-section .card {
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 14px 30px rgba(0,0,0,0.22);
}

.dark-section .card img {
  height: 185px;
}

.dark-section .event-tech-video {
  height: 185px;
}

.featured-card-label {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(200, 169, 106, 0.14);
  border: 1px solid rgba(200, 169, 106, 0.28);
  color: #e6c98f;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.img-center-focus {
  object-fit: cover;
  object-position: center;
}

.img-corporate-focus {
  object-fit: cover;
  object-position: center 5%;
}

.img-backdrop4-focus {
  object-fit: cover;
  object-position: center 28%;
}

.showcase-section .product-card-content {
  padding: 16px;
}

.showcase-section .product-card-content h3 {
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.showcase-section .product-category {
  font-size: 11px;
  letter-spacing: 0.2px;
  margin: 4px 0 10px;
}

.showcase-section .product-desc {
  font-size: 12px;
  line-height: 1.55;
  min-height: 52px;
  margin-top: 2px;
}

.showcase-section .product-footer .btn {
  padding: 8px 13px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1;
}

.filter-row {
  margin-bottom: 24px;
}

.filter-row input,
.checkout-form input,
.checkout-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: white;
  margin-bottom: 14px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.checkout-wrap,
.contact-page-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.checkout-info,
.checkout-form {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 28px;
  padding: 30px;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.checkout-info h2,
.checkout-form h3,
.checkout-info h3 {
  margin-bottom: 18px;
}

.checkout-info ul {
  margin-bottom: 24px;
}

.bank-box,
.cart-box {
  margin-top: 20px;
  padding: 20px;
  background: rgba(255,255,255,0.045);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.09);
  scroll-margin-top: 110px;
}

.checkout-sticky-bar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(18px);
  width: min(92%, 1120px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(230, 201, 143, 0.18);
  background:
    linear-gradient(135deg, rgba(16, 16, 16, 0.92), rgba(7, 7, 7, 0.94)),
    rgba(0, 0, 0, 0.55);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1100;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.checkout-sticky-bar.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.checkout-sticky-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.checkout-sticky-label {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #fff7e6;
  line-height: 1.2;
}

.checkout-sticky-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.checkout-sticky-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.checkout-sticky-btn {
  min-width: 128px;
  justify-content: center;
}

.rental-quick-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  margin: 18px 0 24px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  scroll-margin-top: 110px;
}

.quick-jump-btn,
.cart-checkout-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
}

#orderForm {
  scroll-margin-top: 110px;
}

.bank-box a {
  color: #e6c98f;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.bank-box a:hover {
  color: #fff3cf;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.social-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(230, 201, 143, 0.24);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 13px;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.social-chip:hover {
  transform: translateY(-1px);
  background: rgba(230, 201, 143, 0.12);
  border-color: rgba(230, 201, 143, 0.45);
}

.cart-total {
  margin-top: 16px;
  font-weight: bold;
  color: #e6c98f;
}

.cart-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.cart-item-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-remove-btn {
  border: 1px solid rgba(230, 201, 143, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(10, 10, 10, 0.72);
  color: #f5e7c4;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.cart-remove-btn:hover {
  transform: translateY(-1px);
  color: #fff8e8;
  background:
    linear-gradient(180deg, rgba(230, 201, 143, 0.18), rgba(230, 201, 143, 0.08)),
    rgba(10, 10, 10, 0.8);
  border-color: rgba(230, 201, 143, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 14px 28px rgba(0, 0, 0, 0.22);
}

.cart-remove-btn:focus-visible {
  outline: 2px solid rgba(230, 201, 143, 0.65);
  outline-offset: 2px;
}

.cart-empty-btn {
  border: 1px solid rgba(230, 201, 143, 0.35);
  background:
    linear-gradient(180deg, rgba(230, 201, 143, 0.14), rgba(230, 201, 143, 0.06)),
    rgba(10, 10, 10, 0.72);
  color: #fff3cf;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.16);
}

.cart-empty-btn:hover {
  background:
    linear-gradient(180deg, rgba(230, 201, 143, 0.22), rgba(230, 201, 143, 0.1)),
    rgba(10, 10, 10, 0.82);
}

.cart-empty-btn:focus-visible {
  outline: 2px solid rgba(230, 201, 143, 0.65);
  outline-offset: 2px;
}

.contact-section {
  background: linear-gradient(135deg, #916a2c, #e7d0a0 55%, #b89054);
  color: #000;
  padding: 30px 0;
}

.contact-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: rgba(255, 248, 231, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 28px;
  padding: 26px 28px;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
}

.contact-box > div:first-child {
  max-width: 640px;
}

.contact-box .tag {
  font-size: 12px;
  letter-spacing: 2.6px;
  margin-bottom: 12px;
}

.contact-box h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.contact-box p {
  color: rgba(0, 0, 0, 0.72);
  font-size: 14px;
}

.contact-box .hero-buttons {
  margin-top: 0;
}

.contact-box .btn-dark,
.contact-box .btn-outline-dark {
  border-radius: 14px;
  padding: 11px 18px;
}

.contact-box .btn-dark {
  background: #111;
  color: #fff;
}

.contact-box .btn-outline-dark {
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(0, 0, 0, 0.12);
}

.product-card {
  background: rgba(17,17,17,0.94);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0,0,0,0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card img {
  height: 260px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card-content {
  padding: 20px;
}

.product-card-content h3 {
  font-size: 20px;
}

.product-category {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  margin: 4px 0 12px;
}

.product-desc {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  min-height: 60px;
}

.rental-section .product-card-content {
  padding: 16px;
}

.rental-section .product-card-content h3 {
  font-size: 16px;
  line-height: 1.2;
}

.rental-section .product-category {
  font-size: 12px;
  margin: 3px 0 8px;
}

.rental-section .product-desc {
  font-size: 12px;
  line-height: 1.45;
  min-height: 50px;
}

.rental-section .product-footer .btn {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 12px;
}

.rental-section .product-card img {
  height: 190px;
}

.rental-section .qr-registration-card img {
  height: 190px;
  object-fit: contain;
  object-position: center center;
  background: #0e0e0e;
}

.rental-section .wooden-arch-card img {
  height: 180px;
  object-fit: contain;
  object-position: center top;
  background: #0e0e0e;
  padding: 0;
}

.rental-section .display-box-card img {
  height: 150px;
  object-fit: contain;
  object-position: center center;
  background: #0e0e0e;
  padding: 0;
}

.rental-section .platform-card img {
  height: 360px;
  object-fit: contain;
  object-position: center center;
  background: #0e0e0e;
  padding: 8px;
}

.product-footer {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.price {
  color: #e6c98f;
  font-weight: bold;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.page-banner {
  position: relative;
  overflow: hidden;
}

.page-banner::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230,201,143,0.7), transparent);
}

@media (max-width: 992px) {
  .hero-content,
  .checkout-wrap,
  .contact-page-grid,
  .grid-3,
  .grid-4,
  .grid-6,
  .contact-box {
    grid-template-columns: 1fr;
    display: grid;
  }

  .menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    margin: 0 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(8, 8, 8, 0.96));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px) scale(0.98);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 20;
  }

  .nav-toggle {
    display: inline-flex;
    flex-shrink: 0;
  }

  .header.menu-open .menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .header.menu-open .nav {
    align-items: center;
    position: relative;
    padding-bottom: 70px;
  }

  .menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.86);
    letter-spacing: 0.2px;
  }

  .menu a::after {
    bottom: auto;
    top: 50%;
    right: 16px;
    left: auto;
    width: 18px;
    height: 1px;
    opacity: 0.8;
    transform: translateY(-50%) scaleX(1);
    background: linear-gradient(90deg, #e6c98f, transparent);
  }

  .menu a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-toggle {
    width: 46px;
    height: 46px;
  }

  .hero-left h2,
  .page-banner h2,
  .section-head h2,
  .contact-box h2 {
    font-size: 36px;
  }

  .featured-product {
    grid-template-columns: 1fr;
  }

  .featured-media {
    max-width: 100%;
  }

  .featured-copy h3 {
    font-size: 18px;
  }

  .featured-section .hero-buttons {
    margin-top: 10px;
  }

  .event-tech-card {
    grid-column: auto;
  }

  .event-tech-video {
    height: 205px;
  }

  .event-tech-card {
    min-height: auto;
  }

  .event-tech-card .event-tech-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: 240px;
  }

  .event-tech-card .card-body {
    padding: 18px;
  }

  .contact-section {
    padding: 18px 0;
  }

  .contact-box {
    padding: 22px;
  }

  .contact-box .hero-buttons {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(90%, 1200px);
  }

  .nav {
    flex-direction: column;
    align-items: stretch;
    padding: 14px 0;
  }

  .logo-wrap {
    justify-content: center;
    text-align: left;
  }

  .menu {
    top: calc(100% + 10px);
    font-size: 14px;
    width: 100%;
  }

  .nav > .btn {
    width: 100%;
    text-align: center;
  }

  .rental-quick-actions {
    padding: 12px;
  }

  .quick-jump-btn,
  .cart-checkout-btn {
    width: 100%;
  }

  .checkout-sticky-bar {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    transform: translateY(18px);
    flex-direction: column;
    align-items: stretch;
  }

  .checkout-sticky-bar.is-visible {
    transform: translateY(0);
  }

  .checkout-sticky-actions {
    width: 100%;
    flex-direction: column;
  }

  .checkout-sticky-btn {
    width: 100%;
  }

  .hero-content {
    padding: 52px 0 30px;
    gap: 20px;
  }

  .hero-left h2,
  .page-banner h2,
  .section-head h2,
  .contact-box h2 {
    font-size: 28px;
  }

  .page-banner {
    padding: 44px 0 16px;
  }

  .section {
    padding: 26px 0;
  }

  .hero-card img {
    height: 240px;
    object-fit: cover;
    object-position: center 58%;
    padding: 0;
    background: transparent;
  }

  .hero-buttons {
    gap: 10px;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .featured-product {
    padding: 10px;
  }

  .featured-copy {
    padding: 4px 2px 2px;
  }

  .grid-3,
  .grid-4,
  .grid-6 {
    gap: 16px;
  }

  .card img,
  .dark-section .card img,
  .product-card img {
    height: 190px;
  }

  .corporate-rental-card .corporate-rental-media {
    padding: 12px 12px 0;
  }

  .corporate-rental-card .corporate-rental-media img {
    height: auto;
  }

  .dark-section .event-tech-video {
    height: 190px;
  }

  .event-tech-card .event-tech-video {
    height: 205px;
  }

  .rental-section .platform-card img {
    height: 240px;
    padding: 6px;
  }

  .checkout-info,
  .checkout-form,
  .contact-box {
    padding: 20px;
    border-radius: 24px;
  }

  .filter-row input,
  .checkout-form input,
  .checkout-form textarea {
    padding: 13px 14px;
    border-radius: 14px;
  }

  .product-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .product-footer .btn {
    width: 100%;
    text-align: center;
  }

  .contact-section {
    padding: 20px 0;
  }
}

@media (max-width: 576px) {
  .container {
    width: min(92%, 1200px);
  }

  .logo-image {
    width: 44px;
    height: 44px;
  }

  .logo-text {
    font-size: 18px;
  }

  .logo-sub {
    letter-spacing: 1.4px;
  }

  .menu {
    font-size: 13px;
    gap: 8px 12px;
  }

  .btn {
    padding: 11px 16px;
    border-radius: 12px;
  }

  .hero-content {
    padding: 42px 0 24px;
  }

  .hero-left h2,
  .page-banner h2,
  .section-head h2,
  .contact-box h2 {
    font-size: 24px;
  }

  .hero-desc,
  .page-desc {
    font-size: 14px;
  }

  .hero-card img {
    height: 240px;
    object-fit: cover;
    object-position: center 58%;
    padding: 0;
    background: transparent;
  }

  .hero-card-text {
    padding: 12px 4px 4px;
  }

  .featured-copy h3 {
    font-size: 16px;
  }

  .featured-media {
    aspect-ratio: auto;
    height: auto;
    max-width: 100%;
    justify-self: stretch;
  }

  .featured-media img {
    height: auto;
    object-fit: initial;
    object-position: initial;
    padding: 0;
  }

  .featured-points li {
    font-size: 10px;
  }

  .card,
  .product-card {
    border-radius: 20px;
  }

  .card img,
  .dark-section .card img,
  .product-card img {
    height: 160px;
  }

  .dark-section .lucky-draw-card img {
    height: auto;
    object-fit: contain;
    object-position: center center;
  }

  .dark-section .qr-registration-card img {
    height: auto;
    object-fit: contain;
    object-position: center center;
    background: #0a0a0a;
    padding: 0;
  }

  .dark-section .magazine-booth-card img {
    height: 220px;
    object-fit: cover;
    object-position: center center;
  }

  .custom-fabrication-card .custom-fabrication-image {
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center center;
  }

  .corporate-rental-card .corporate-rental-media {
    padding: 10px 10px 0;
  }

  .corporate-rental-card .corporate-rental-media img {
    height: auto;
  }

  .dark-section .event-tech-video {
    height: 160px;
  }

  .event-tech-card .event-tech-video {
    height: 190px;
  }

  .rental-section .platform-card img {
    height: 210px;
    padding: 4px;
  }

  .card-body,
  .product-card-content {
    padding: 16px;
  }

  .checkout-info,
  .checkout-form,
  .contact-box {
    padding: 16px;
    border-radius: 20px;
  }

  .checkout-info h2,
  .checkout-form h3,
  .checkout-info h3,
  .contact-box h2 {
    margin-bottom: 12px;
  }

  .bank-box,
  .cart-box {
    padding: 16px;
    border-radius: 16px;
  }

  .contact-box .hero-buttons {
    width: 100%;
  }

  .contact-box .hero-buttons .btn {
    width: 100%;
  }
}
