/* ═══════════════════════════════════════════
   DESIGN TOKENS — UPGRADED PALETTE
═══════════════════════════════════════════ */
.nav-logo{
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img{
  width: 180px;
  height: auto;
  object-fit: contain;
}
:root {
  /* ── Brand ── */
  --red:        #CC1E1C;
  --red-vivid:  #E52320;
  --red-dark:   #A01614;
  --red-glow:   rgba(204,30,28,0.28);
  --red-subtle: rgba(204,30,28,0.07);

  --gold:       #D4963A;
  --gold-vivid: #E8A840;
  --gold-dim:   #B37D2C;
  --gold-light: rgba(212,150,58,0.13);
  --gold-glow:  rgba(212,150,58,0.35);

  --navy:       #0B1826;
  --navy2:      #111F32;
  --navy-mid:   #1A2E48;

  /* ── Light Mode Surfaces ── */
  --bg:         #F4F6F9;
  --bg2:        #FFFFFF;
  --bg3:        #EBEEf3;
  --surface:    #FFFFFF;
  --surface2:   #F0F3F8;
  --surface3:   #E4E9F2;

  /* ── Light Mode Ink ── */
  --border:     rgba(30,50,100,0.10);
  --border2:    rgba(30,50,100,0.18);
  --text:       #0D1B2E;
  --text2:      #2C3E55;
  --text3:      #5A6E88;

  /* ── Shadows (neutral-cool) ── */
  --shadow-sm:  0 2px 12px rgba(15,30,60,0.07);
  --shadow-md:  0 8px 36px rgba(15,30,60,0.12);
  --shadow-lg:  0 24px 64px rgba(15,30,60,0.18);

  --nav-bg:     rgba(244,246,249,0.95);
  --footer-bg:  #060D17;

  /* ── Gradients ── */
  --grad-red:   linear-gradient(135deg, #E52320 0%, #A01614 100%);
  --grad-gold:  linear-gradient(135deg, #E8A840 0%, #B37D2C 100%);
  --grad-navy:  linear-gradient(150deg, #1A2E48 0%, #0B1826 100%);
}

[data-theme="dark"] {
  --bg:         #060D18;
  --bg2:        #091422;
  --bg3:        #0C1829;
  --surface:    #0F1E30;
  --surface2:   #162638;
  --surface3:   #1D3048;

  --border:     rgba(120,170,255,0.10);
  --border2:    rgba(120,170,255,0.18);
  --text:       #E8EEF7;
  --text2:      #A8B8CC;
  --text3:      #7A93AE;

  --shadow-sm:  0 2px 14px rgba(0,0,0,0.45);
  --shadow-md:  0 8px 40px rgba(0,0,0,0.58);
  --shadow-lg:  0 24px 72px rgba(0,0,0,0.70);

  --nav-bg:     rgba(6,13,24,0.97);
  --footer-bg:  #030810;
  --grad-warm:  linear-gradient(135deg, #162638 0%, #091422 100%);
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  transition: background 0.4s ease, color 0.4s ease;
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 70px;
  background: var(--nav-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s, box-shadow 0.3s;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 48px);
}
#navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; flex-shrink: 0;
}
[data-theme="dark"] .logo-mark { background: var(--surface2); }
.logo-mark::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--red) 0%, transparent 60%);
  opacity: 0.6;
}
.logo-mark span {
  position: relative; z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700; font-size: 15px;
  color: white; letter-spacing: 1px;
}
.logo-name {
  font-size: 14px; font-weight: 600; line-height: 1.3;
  color: var(--text);
}
.logo-name em { color: var(--red); font-style: normal; }

.nav-menu {
  display: flex; align-items: center; gap: 2px;
  list-style: none;
}
.nav-menu li a {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 14px; border-radius: 8px;
  font-size: 13.5px; font-weight: 500;
  color: var(--text2);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-menu li a svg { width: 15px; height: 15px; opacity: 0.7; flex-shrink: 0; }
.nav-menu li a:hover { background: var(--surface2); color: var(--red); }
.nav-menu li a:hover svg { opacity: 1; }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::after {
  content: '';
  display: inline-block; width: 8px; height: 8px; margin-left: 2px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s;
}
.has-dropdown:hover > a::after { transform: rotate(225deg) translateY(2px); }
.dropdown-panel {
  display: none;
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--surface);
  border-radius: 14px; padding: 8px;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  z-index: 999;
}
.has-dropdown:hover .dropdown-panel { display: block; animation: dropDown 0.2s ease; }
@keyframes dropDown { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:none} }
.dropdown-panel a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 8px;
  font-size: 13px; color: var(--text2);
  transition: background 0.15s, color 0.15s;
}
.dropdown-panel a:hover { background: var(--surface2); color: var(--red); }
.dropdown-panel a svg { width: 14px; height: 14px; opacity: 0.6; }

.nav-actions { display: flex; align-items: center; gap: 10px; }

/* Theme Toggle */
.theme-toggle {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s;
  flex-shrink: 0;
}
.theme-toggle:hover { background: var(--surface); box-shadow: var(--shadow-sm); }
.theme-toggle svg { width: 18px; height: 18px; color: var(--text2); transition: transform 0.3s; }
.theme-toggle:hover svg { transform: rotate(20deg); color: var(--gold); }

.btn-quote {
  background: var(--red);
  color: white;
  padding: 9px 20px; border-radius: 9px;
  font-size: 13px; font-weight: 600;
  transition: all 0.2s; white-space: nowrap;
  display: flex; align-items: center; gap: 7px;
  box-shadow: 0 2px 12px rgba(204,30,28,0.28);
}
.btn-quote:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(204,30,28,0.28); }
.btn-quote svg { width: 14px; height: 14px; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 40px; height: 40px;
  border-radius: 10px; background: var(--surface2);
  align-items: center; cursor: pointer;
  border: 1px solid var(--border);
}
.hamburger span {
  display: block; width: 18px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed;
  top: 70px; left: 0; right: 0; bottom: 0;
  background: var(--bg); z-index: 999;
  overflow-y: auto; padding: 24px 20px 40px;
  flex-direction: column; gap: 8px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav.open { transform: none; }
.mobile-nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border-radius: 12px;
  font-size: 15px; font-weight: 500; color: var(--text2);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.mobile-nav a:hover { background: var(--surface2); color: var(--red); }
.mobile-nav a svg { width: 18px; height: 18px; }
.mobile-nav .m-cta {
  background: var(--red); color: white; border-color: var(--red);
  margin-top: 8px;
}

/* ═══════════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════════ */
#hero {
  position: relative; width: 100%; height: 100vh; min-height: 600px;
  overflow: hidden; margin-top: 70px;
}
.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: auto; }
.slide-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.slide.active .slide-img { transform: scale(1); }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,20,35,0.85) 0%,
    rgba(10,20,35,0.55) 50%,
    rgba(10,20,35,0.25) 100%
  );
}
.slide-content {
  position: relative; z-index: 2;
  height: 100%; display: flex; flex-direction: column;
  justify-content: center;
  padding: 0 clamp(24px, 8vw, 120px);
  max-width: 760px;
}
.slide-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(204,30,28,0.25);
  border: 1px solid rgba(200,32,30,0.5);
  color: #ff9997; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  padding: 6px 16px; border-radius: 20px;
  width: fit-content; margin-bottom: 28px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s 0.3s ease, transform 0.6s 0.3s ease;
}
.slide-badge::before { content: '●'; font-size: 7px; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1}50%{opacity:0.2} }
.slide.active .slide-badge { opacity: 1; transform: none; }
.slide-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 700; color: white; line-height: 1.05;
  margin-bottom: 22px;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s 0.5s ease, transform 0.7s 0.5s ease;
}
.slide.active .slide-title { opacity: 1; transform: none; }
.slide-title .gold { color: var(--gold); }
.slide-sub {
  font-size: clamp(14px, 1.8vw, 17px); font-weight: 300;
  color: rgba(255,255,255,0.75); line-height: 1.7;
  max-width: 500px; margin-bottom: 40px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s 0.7s ease, transform 0.7s 0.7s ease;
}
.slide.active .slide-sub { opacity: 1; transform: none; }
.slide-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: white;
  padding: 14px 32px; border-radius: 10px;
  font-size: 15px; font-weight: 600; width: fit-content;
  box-shadow: 0 6px 32px rgba(200,32,30,0.45);
  transition: all 0.25s;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s 0.9s ease, transform 0.6s 0.9s ease, background 0.25s, box-shadow 0.25s;
}
.slide.active .slide-cta { opacity: 1; transform: none; }
.slide-cta:hover { background: var(--red-dark); transform: translateY(-2px) !important; box-shadow: 0 12px 40px rgba(200,32,30,0.5); }
.slide-cta svg { width: 16px; height: 16px; }

/* Slider controls */
.slider-dots {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.dot {
  width: 8px; height: 8px; border-radius: 4px;
  background: rgba(255,255,255,0.3); cursor: pointer;
  transition: all 0.3s; border: 1px solid rgba(255,255,255,0.4);
}
.dot.active { width: 28px; background: white; }
.slider-prev, .slider-next {
  position: absolute; top: 50%; z-index: 10;
  transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.slider-prev { left: clamp(16px, 3vw, 40px); }
.slider-next { right: clamp(16px, 3vw, 40px); }
.slider-prev:hover, .slider-next:hover {
  background: rgba(200,32,30,0.6);
  border-color: var(--red);
  transform: translateY(-50%) scale(1.05);
}
.slider-prev svg, .slider-next svg { width: 20px; height: 20px; }

/* Stats bar */
.stats-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 5;
  background: rgba(10,20,35,0.7);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: center;
  padding: 24px clamp(16px, 4vw, 60px);
  gap: clamp(24px, 5vw, 80px);
}
.stat { text-align: center; }
.stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700; color: var(--gold);
  line-height: 1;
}
.stat-l { font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; }

/* ═══════════════════════════════════════════
   SECTION FRAMEWORK
═══════════════════════════════════════════ */
.section { padding: clamp(60px, 8vw, 110px) clamp(16px, 5vw, 64px); }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: clamp(40px, 5vw, 72px); }
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-light); color: var(--gold);
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; padding: 6px 18px; border-radius: 20px;
  margin-bottom: 18px; border: 1px solid rgba(201,150,58,0.2);
}
.tag::before { content: '◆'; font-size: 7px; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700; color: var(--text);
  line-height: 1.1; margin-bottom: 18px;
}
.section-title .r { color: var(--red); }
.section-title .g { color: var(--gold); }
.section-desc { font-size: 16px; color: var(--text3); line-height: 1.75; max-width: 580px; margin: 0 auto; }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════ */
#about { background: var(--bg2); }
[data-theme="dark"] #about { background: var(--bg3); }
.about-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 24px;
}
.about-card {
  background: var(--surface);
  border-radius: 20px; padding: 36px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.25s ease;
  text-align: center;
}
.about-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(204,30,28,0.28);
}
.about-icon {
  width: 64px; height: 64px; border-radius: 18px;
  background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  transition: background 0.3s;
}
.about-card:hover .about-icon { background: rgba(204,30,28,0.28); }
.about-icon svg { width: 28px; height: 28px; color: var(--red); }
.about-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700;
  color: var(--red); margin-bottom: 14px;
}
.about-card p { font-size: 14px; color: var(--text3); line-height: 1.8; }
.about-card p strong { color: var(--text); font-weight: 600; }

.about-row2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.about-card2 {
  background: var(--navy);
  border-radius: 20px; padding: 30px 26px;
  border: 1px solid rgba(120,170,255,0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
[data-theme="dark"] .about-card2 { background: var(--surface2); border-color: var(--border); }
.about-card2:hover { transform: translateY(-7px); box-shadow: 0 20px 48px rgba(0,0,0,0.32); }
.about-card2 h3 { color: var(--gold); font-size: 15px; font-weight: 700; margin-bottom: 10px; letter-spacing: 0.5px; }
.about-card2 p { color: rgba(200,220,255,0.72); font-size: 13.5px; line-height: 1.75; }
[data-theme="dark"] .about-card2 p { color: var(--text3); }

/* ═══════════════════════════════════════════
   MATERIALS
═══════════════════════════════════════════ */
#materials { background: var(--bg); }
[data-theme="dark"] #materials { background: var(--bg2); }

.cat-tabs {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 48px;
}
.cat-tab {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 50px;
  font-size: 13px; font-weight: 600;
  background: var(--surface); color: var(--text2);
  border: 1.5px solid var(--border); cursor: pointer;
  transition: all 0.22s;
  box-shadow: var(--shadow-sm);
}
.cat-tab svg { width: 15px; height: 15px; }
.cat-tab:hover {
  color: var(--red);
  border-color: rgba(204,30,28,0.35);
  background: var(--surface2);
  box-shadow: 0 4px 14px rgba(204,30,28,0.10);
}
.cat-tab.active {
  background: var(--red); color: white;
  border-color: var(--red);
  box-shadow: 0 4px 18px rgba(204,30,28,0.32);
}

.cat-panel { display: none; }
.cat-panel.active { display: block; animation: fadeUp 0.4s ease; }
@keyframes fadeUp { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:none} }

.cat-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 30px; padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.cat-header-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--red); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.cat-header-icon svg { width: 26px; height: 26px; color: white; }
.cat-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 700; color: var(--text);
}
.cat-header p { font-size: 13px; color: var(--text3); margin-top: 3px; }

.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--surface);
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.32s cubic-bezier(0.25,0.8,0.25,1),
              box-shadow 0.32s ease,
              border-color 0.28s ease;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(204,30,28,0.38);
}
[data-theme="dark"] .product-card:hover {
  border-color: rgba(204,30,28,0.45);
  box-shadow: 0 28px 72px rgba(0,0,0,0.7), 0 0 0 1px rgba(204,30,28,0.22);
}
.product-thumb {
  height: 196px; width: 100%;
  background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.3s;
}
.product-card:hover .product-thumb::after { opacity: 1; }
.product-thumb img {
  transition: transform 0.55s cubic-bezier(0.25,0.8,0.25,1);
}
.product-card:hover .product-thumb img { transform: scale(1.06) !important; }
.product-thumb svg { width: 52px; height: 52px; color: var(--text3); opacity: 0.4; transition: transform 0.3s; }
.product-card:hover .product-thumb svg { transform: scale(1.1); }

/* Unified body for all cards */
.product-body { padding: 20px 22px 22px; }
.product-body h3 {
  font-size: 15.5px; font-weight: 700;
  color: var(--text); margin-bottom: 7px;
  line-height: 1.35;
}
.product-body .desc {
  font-size: 13px; color: var(--text3);
  line-height: 1.65; margin-bottom: 14px;
}

/* Spec list */
.product-specs { display: flex; flex-direction: column; gap: 7px; }
.spec {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 12.5px;
  color: var(--text2);
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 5px 10px 5px 8px;
  line-height: 1.5;
  transition: background 0.2s, border-color 0.2s;
}
.product-card:hover .spec {
  background: var(--surface3);
  border-color: var(--border2);
}
.spec::before {
  content: ''; display: block;
  width: 5px; height: 5px; min-width: 5px;
  border-radius: 50%; background: var(--red);
  flex-shrink: 0; margin-top: 5.5px;
}
.spec strong { color: var(--gold); font-weight: 700; }

/* Dark-card: now just a slightly deeper surface, works in both modes */
.product-card.dark-card {
  background: var(--surface);
  border-color: var(--border);
}
[data-theme="dark"] .product-card.dark-card {
  background: var(--surface2);
  border-color: var(--border);
}
.product-card.dark-card .product-thumb {
  background: var(--surface2);
}
[data-theme="dark"] .product-card.dark-card .product-thumb {
  background: rgba(255,255,255,0.04);
}

/* Featured card accent */
.product-card.featured {
  grid-column: span 1;
  border-top: 3px solid var(--red);
  border-left: none;
}

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
#services { background: var(--navy); }
[data-theme="dark"] #services { background: var(--bg2); }
#services .section-title { color: white; }
[data-theme="dark"] #services .section-title { color: var(--text); }
#services .section-desc { color: rgba(255,255,255,0.55); }
[data-theme="dark"] #services .section-desc { color: var(--text3); }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 0 0 28px 0;
  position: relative; overflow: hidden;
  transition: transform 0.38s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.38s ease,
              background 0.3s ease;
}
[data-theme="dark"] .service-card {
  background: var(--surface);
  border-color: var(--border);
}
/* top gradient bar */
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.42s ease; z-index: 3;
}
/* inner glow halo on hover */
.service-card::after {
  content: ''; position: absolute; inset: 0; border-radius: 22px;
  background: radial-gradient(ellipse at 50% 0%, rgba(204,30,28,0.12) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.4s ease; pointer-events: none; z-index: 1;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 64px rgba(0,0,0,0.40), 0 0 0 1px rgba(204,30,28,0.20);
  background: rgba(255,255,255,0.07);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after  { opacity: 1; }
[data-theme="dark"] .service-card:hover {
  box-shadow: 0 22px 64px rgba(0,0,0,0.65), 0 0 0 1px rgba(204,30,28,0.25);
  background: var(--surface2);
}

/* ── Illustrated visual banner ─────────────────── */
.srv-visual {
  width: 100%; height: 190px;
  border-radius: 22px 22px 0 0;
  position: relative; overflow: hidden;
  background: var(--navy);
  transition: transform 0.42s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 2;
}
/* actual photo */
.srv-visual img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94),
              filter 0.55s ease;
  filter: brightness(0.78) saturate(1.1);
}
/* dark gradient scrim so text stays legible */
.srv-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6,13,24,0.10) 0%,
    rgba(6,13,24,0.18) 50%,
    rgba(6,13,24,0.58) 100%
  );
  transition: background 0.4s ease;
  pointer-events: none;
}
/* badge chip bottom-right */
.srv-visual-badge {
  position: absolute; bottom: 12px; right: 14px;
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(204,30,28,0.75);
  border: 1px solid rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  z-index: 3;
}
.srv-visual-badge svg {
  width: 16px; height: 16px;
  color: #fff; stroke: #fff;
}

/* hover: zoom photo + lighten + reveal glow */
.service-card:hover .srv-visual img {
  transform: scale(1.07);
  filter: brightness(0.92) saturate(1.2);
}
.service-card:hover .srv-visual-overlay {
  background: linear-gradient(
    180deg,
    rgba(6,13,24,0.06) 0%,
    rgba(6,13,24,0.12) 50%,
    rgba(6,13,24,0.52) 100%
  );
}
.service-card:hover .srv-visual-badge {
  background: rgba(204,30,28,0.95);
  transform: scale(1.15);
  box-shadow: 0 4px 16px rgba(204,30,28,0.5);
}

/* dark mode: slightly brighter baseline */
[data-theme="dark"] .srv-visual img { filter: brightness(0.72) saturate(1.05); }
[data-theme="dark"] .service-card:hover .srv-visual img { filter: brightness(0.88) saturate(1.15); }

/* card text area */
.service-card h3 {
  font-size: 17.5px; font-weight: 700; color: white;
  margin: 22px 26px 10px; line-height: 1.3;
}
[data-theme="dark"] .service-card h3 { color: var(--text); }
.service-card p {
  font-size: 13.5px; color: rgba(255,255,255,0.55);
  line-height: 1.75; margin: 0 26px;
}
[data-theme="dark"] .service-card p { color: var(--text3); }

/* ═══════════════════════════════════════════
   CATALOG BANNER
═══════════════════════════════════════════ */
#catalog { background: var(--bg3); }
.catalog-card {
  background: var(--navy);
  border-radius: 24px; padding: clamp(40px, 6vw, 70px) clamp(30px, 6vw, 80px);
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
  position: relative; overflow: hidden;
}
[data-theme="dark"] .catalog-card { background: var(--surface2); }
.catalog-card::before {
  content: 'CATALOG';
  position: absolute; right: -30px; top: 50%; transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 160px; font-weight: 700;
  color: rgba(255,255,255,0.03); white-space: nowrap; pointer-events: none;
  letter-spacing: 8px;
}
.catalog-card::after {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(204,30,28,0.12), transparent 70%);
  top: -200px; right: 100px; pointer-events: none;
}
.catalog-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 42px); font-weight: 700;
  color: white; margin-bottom: 14px; position: relative; z-index: 1;
}
[data-theme="dark"] .catalog-text h2 { color: var(--text); }
.catalog-text p { color: rgba(255,255,255,0.65); font-size: 15px; line-height: 1.7; max-width: 520px; position: relative; z-index: 1; }
[data-theme="dark"] .catalog-text p { color: var(--text3); }
.catalog-feats { display: flex; gap: 24px; margin-top: 24px; position: relative; z-index: 1; }
.catalog-feat { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.5); font-size: 13px; }
[data-theme="dark"] .catalog-feat { color: var(--text3); }
.catalog-feat svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.catalog-actions { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
.btn-primary-lg {
  background: var(--red); color: white;
  padding: 15px 32px; border-radius: 12px;
  font-size: 15px; font-weight: 600;
  display: flex; align-items: center; gap: 10px; white-space: nowrap;
  box-shadow: 0 4px 20px rgba(204,30,28,0.28); transition: all 0.25s;
}
.btn-primary-lg:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(204,30,28,0.28); }
.btn-ghost {
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.8);
  padding: 15px 32px; border-radius: 12px;
  font-size: 15px; font-weight: 500;
  display: flex; align-items: center; gap: 10px; white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.15); transition: all 0.25s;
}
[data-theme="dark"] .btn-ghost { background: var(--surface); color: var(--text2); border-color: var(--border); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-ghost svg, .btn-primary-lg svg { width: 16px; height: 16px; }

/* ═══════════════════════════════════════════
   QUOTE SECTION
═══════════════════════════════════════════ */
#quote { background: var(--red); padding: clamp(60px,8vw,100px) clamp(16px,5vw,64px); }
.quote-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; }
.quote-left h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px,4vw,50px); font-weight: 700; color: white; margin-bottom: 16px; }
.quote-left h2 span { color: rgba(255,255,255,0.4); }
.quote-left p { color: rgba(255,255,255,0.75); font-size: 15px; line-height: 1.7; }
.quote-form {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 24px; padding: 36px 32px;
}
.q-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.q-group { margin-bottom: 14px; }
.q-group label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.6); margin-bottom: 7px; }
.q-group input, .q-group select, .q-group textarea {
  width: 100%; background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 10px;
  padding: 12px 16px; color: white;
  font-family: 'Outfit', sans-serif; font-size: 14px;
  outline: none; transition: border-color 0.2s, background 0.2s;
}
.q-group input::placeholder, .q-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.q-group input:focus, .q-group select:focus, .q-group textarea:focus {
  border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.18);
}
.q-group select option { background: var(--navy); color: white; }
.q-group textarea { resize: vertical; min-height: 100px; }
.btn-submit-w {
  width: 100%; background: white; color: var(--red);
  padding: 15px; border-radius: 12px;
  font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all 0.25s; letter-spacing: 0.3px;
  border: none; margin-top: 6px;
}
.btn-submit-w:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
#contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; }
.contact-panel {
  background: var(--navy); border-radius: 24px;
  padding: 48px 40px; color: white;
  position: relative; overflow: hidden;
}
[data-theme="dark"] .contact-panel { background: var(--surface2); }
.contact-panel::before {
  content: ''; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(204,30,28,0.10), transparent 70%);
  bottom: -150px; right: -100px; pointer-events: none;
}
.cp-logo {
  width: 72px; height: 72px; background: var(--red);
  border-radius: 18px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.cp-logo span { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; color: white; letter-spacing: 1px; }
.contact-panel h2 { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 700; color: white; margin-bottom: 10px; }
[data-theme="dark"] .contact-panel h2 { color: var(--text); }
.contact-panel > p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.7; margin-bottom: 36px; }
[data-theme="dark"] .contact-panel > p { color: var(--text3); }
.cp-items { display: flex; flex-direction: column; gap: 22px; position: relative; z-index: 1; }
.cp-item { display: flex; gap: 16px; }
.cp-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(204,30,28,0.15); border: 1px solid rgba(204,30,28,0.30);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background 0.2s;
}
.cp-item:hover .cp-icon { background: rgba(204,30,28,0.25); }
.cp-icon svg { width: 18px; height: 18px; color: #FF9390; }
[data-theme="dark"] .cp-icon svg { color: var(--red); }
.cp-item-body h4 { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); margin-bottom: 4px; }
.cp-item-body p, .cp-item-body a {
  font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6;
  transition: color 0.2s;
}
[data-theme="dark"] .cp-item-body p, [data-theme="dark"] .cp-item-body a { color: var(--text2); }
.cp-item-body a:hover { color: var(--gold); }
.hours-box {
  background: rgba(212,150,58,0.10); border: 1px solid rgba(212,150,58,0.25);
  border-radius: 14px; padding: 18px 20px; margin-top: 28px; position: relative; z-index: 1;
}
.hours-box h4 { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); margin-bottom: 8px; }
.hours-box p { font-size: 13.5px; color: rgba(255,255,255,0.7); line-height: 1.7; }
[data-theme="dark"] .hours-box p { color: var(--text2); }
.hours-box .closed { color: var(--red); font-weight: 700; }

.contact-form-wrap {
  background: var(--surface); border-radius: 24px;
  padding: 48px 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h2 { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 700; color: var(--text); margin-bottom: 32px; }
.f-group { margin-bottom: 18px; }
.f-group label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text3); margin-bottom: 7px; }
.f-group input, .f-group select, .f-group textarea {
  width: 100%; padding: 13px 16px;
  background: var(--surface2); border: 1.5px solid var(--border);
  border-radius: 11px; color: var(--text);
  font-family: 'Outfit', sans-serif; font-size: 14px;
  outline: none; transition: border-color 0.25s, background 0.25s;
}
.f-group input:focus, .f-group select:focus, .f-group textarea:focus {
  border-color: var(--red); background: var(--surface);
}
.f-group textarea { resize: vertical; min-height: 120px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-send {
  width: 100%; background: var(--red); color: white;
  padding: 15px; border-radius: 12px;
  font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700;
  cursor: pointer; border: none; transition: all 0.25s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 6px; box-shadow: 0 4px 16px rgba(204,30,28,0.28);
}
.btn-send:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(204,30,28,0.28); }
.btn-send svg { width: 16px; height: 16px; }

/* MAP */
#map-section { background: var(--bg3); padding: 0 clamp(16px,5vw,64px) clamp(40px,5vw,60px); }
.map-wrapper {
  max-width: 1280px; margin: 0 auto;
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.map-wrapper iframe { display: block; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: var(--footer-bg); color: white;
  padding: clamp(50px,7vw,80px) clamp(16px,5vw,64px) 30px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: clamp(24px,4vw,56px); margin-bottom: 50px;
}
.footer-brand .fn { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand .fn span { font-size: 15px; font-weight: 600; }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 13px; line-height: 1.75; max-width: 280px; }
.footer-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color 0.2s; display: flex; align-items: center; gap: 8px; }
.footer-col ul li a::before { content: '›'; color: var(--red); font-size: 16px; }
.footer-col ul li a:hover { color: white; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin-bottom: 26px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,0.25); font-size: 12px; }

/* WHATSAPP */
.wa-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 998;
  display: flex; align-items: center; gap: 10px;
  background: #25d366; color: white;
  padding: 12px 22px; border-radius: 50px;
  font-size: 14px; font-weight: 600;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  transition: all 0.25s; text-decoration: none;
}
.wa-btn:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 12px 40px rgba(37,211,102,0.55); }
.wa-btn svg { width: 20px; height: 20px; }

/* Scroll to top */
.scroll-top {
  position: fixed; bottom: 90px; right: 28px; z-index: 998;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.25s;
  opacity: 0; pointer-events: none; box-shadow: var(--shadow-sm);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--red); border-color: var(--red); }
.scroll-top svg { width: 18px; height: 18px; color: var(--text2); }
.scroll-top:hover svg { color: white; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .about-row2 { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .quote-inner { grid-template-columns: 1fr; gap: 40px; }
  .catalog-card { grid-template-columns: 1fr; }
  .catalog-actions { flex-direction: row; }
}
@media (max-width: 768px) {
  .nav-menu, .btn-quote { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  #hero { height: calc(100svh - 70px); }
  .stats-bar { gap: 20px; flex-wrap: wrap; justify-content: space-around; }
  .about-grid, .about-row2 { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .srv-visual { height: 160px; }
  .contact-grid { grid-template-columns: 1fr; }
  .q-row, .f-row { grid-template-columns: 1fr; }
  .catalog-actions { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .cat-tabs { gap: 8px; }
  .cat-tab { font-size: 12px; padding: 8px 14px; }
}

/* ═══════════════════════════════════════════
   MATERIALS OVERLAY (grid popup)
═══════════════════════════════════════════ */
.mat-overlay-backdrop {
  display: none; position: fixed; inset: 0; z-index: 1200;
  background: rgba(10,20,35,0.55);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  animation: fadeIn2 0.2s ease;
}
@keyframes fadeIn2 { from{opacity:0} to{opacity:1} }
.mat-overlay-backdrop.open { display: block; }

.mat-overlay {
  position: absolute;
  top: 70px; left: 50%; transform: translateX(-50%);
  background: var(--surface);
  border-radius: 20px; padding: 24px;
  width: min(620px, 95vw);
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  border: 1px solid var(--border);
  animation: slideDown 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes slideDown { from{opacity:0;transform:translateX(-50%) translateY(-20px)} to{opacity:1;transform:translateX(-50%) translateY(0)} }

.mat-overlay-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px; padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.mat-overlay-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 700; color: var(--text);
}
.mat-overlay-close {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--surface2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 16px; color: var(--text3);
  transition: all 0.2s;
}
.mat-overlay-close:hover { background: var(--red); color: white; border-color: var(--red); }

.mat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.mat-grid-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; padding: 18px 12px; border-radius: 14px;
  background: var(--surface2); border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none;
  transition: all 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.mat-grid-item:hover {
  background: var(--surface);
  border-color: rgba(204,30,28,0.30);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(204,30,28,0.12);
}
.mat-grid-item .mg-icon {
  font-size: 28px; line-height: 1;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg); border-radius: 14px;
  transition: transform 0.2s;
}
.mat-grid-item:hover .mg-icon { transform: scale(1.1); }
.mat-grid-item h4 { font-size: 14px; font-weight: 700; color: var(--text); margin: 0; }
.mat-grid-item p { font-size: 11.5px; color: var(--text3); text-align: center; line-height: 1.4; }

/* ═══════════════════════════════════════════
   CATALOG MODAL
═══════════════════════════════════════════ */
.modal-backdrop {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,20,35,0.7);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
}
.modal-backdrop.open { display: flex; animation: fadeIn2 0.25s ease; }

.catalog-modal-box {
  background: var(--surface); border-radius: 22px;
  width: min(560px, 95vw); max-height: 92vh;
  overflow-y: auto; padding: 32px;
  box-shadow: 0 32px 100px rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  position: relative;
  animation: scaleIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes scaleIn { from{opacity:0;transform:scale(0.9)} to{opacity:1;transform:scale(1)} }

.modal-close-btn {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 18px; color: var(--text3);
  transition: all 0.2s; line-height: 1;
}
.modal-close-btn:hover { background: var(--red); color: white; border-color: var(--red); }

.catalog-modal-box h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 700; color: var(--text);
  margin-bottom: 20px; text-align: center;
}
.catalog-img-wrap {
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border); margin-bottom: 22px;
}
.catalog-img-wrap img { width: 100%; display: block; }
.catalog-modal-actions {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.catalog-btn-view {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--surface2); color: var(--text);
  padding: 13px; border-radius: 12px; font-size: 14px; font-weight: 600;
  border: 1px solid var(--border); transition: all 0.2s;
}
.catalog-btn-view:hover { background: var(--surface); border-color: var(--red); color: var(--red); }
.catalog-btn-dl {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--navy); color: white;
  padding: 13px; border-radius: 12px; font-size: 14px; font-weight: 600;
  transition: all 0.2s;
}
[data-theme="dark"] .catalog-btn-dl { background: var(--surface2); }
.catalog-btn-dl:hover { background: var(--red); transform: translateY(-1px); }

/* ═══════════════════════════════════════════
   QUOTE MODAL
═══════════════════════════════════════════ */
.quote-modal-box {
  background: var(--navy); border-radius: 22px;
  width: min(600px, 96vw);
  padding: 36px 32px 32px;
  box-shadow: 0 32px 100px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  animation: scaleIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
[data-theme="dark"] .quote-modal-box { background: var(--surface2); }
.quote-modal-box h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 700; color: white;
  margin-bottom: 6px;
}
[data-theme="dark"] .quote-modal-box h2 { color: var(--text); }
.quote-modal-box p.qm-sub { color: rgba(255,255,255,0.55); font-size: 13px; margin-bottom: 24px; }
[data-theme="dark"] .quote-modal-box p.qm-sub { color: var(--text3); }
.qm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.qm-group label { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.45); margin-bottom: 6px; }
[data-theme="dark"] .qm-group label { color: var(--text3); }
.qm-group input, .qm-group select, .qm-group textarea {
  width: 100%; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 10px;
  padding: 12px 14px; color: white;
  font-family: 'Outfit', sans-serif; font-size: 14px;
  outline: none; transition: border-color 0.2s, background 0.2s;
}
[data-theme="dark"] .qm-group input, [data-theme="dark"] .qm-group select, [data-theme="dark"] .qm-group textarea {
  background: var(--surface); border-color: var(--border); color: var(--text);
}
.qm-group input::placeholder, .qm-group textarea::placeholder { color: rgba(255,255,255,0.3); }
[data-theme="dark"] .qm-group input::placeholder { color: var(--text3); }
.qm-group input:focus, .qm-group select:focus, .qm-group textarea:focus {
  border-color: rgba(200,32,30,0.6); background: rgba(255,255,255,0.12);
}
.qm-group select option { background: var(--navy); color: white; }
.qm-group textarea { resize: vertical; min-height: 90px; }
.qm-group { margin-bottom: 12px; }
.qm-submit {
  width: 100%; background: var(--red); color: white;
  padding: 14px; border-radius: 12px;
  font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700;
  cursor: pointer; border: none; transition: all 0.25s; margin-top: 6px;
  box-shadow: 0 4px 16px rgba(204,30,28,0.28);
}
.qm-submit:hover { background: var(--red-dark); transform: translateY(-2px); }

/* Fix about card2 for dark mode */
[data-theme="dark"] .about-card2 h3 { color: var(--gold); }
[data-theme="dark"] .about-card2 p { color: var(--text2); }

/* About card top border on hover */
.about-card { border-top: 3px solid transparent; }
.about-card:hover { border-top-color: var(--red); }

/* ════════════════════════════════════════════════════════
   ✦  COLOUR UPGRADE — ALL COMPONENTS
════════════════════════════════════════════════════════ */

/* ── Scrollbar ── */
::-webkit-scrollbar-track { background: var(--bg3); }
::-webkit-scrollbar-thumb { background: linear-gradient(to bottom, var(--red-vivid), var(--red-dark)); }

/* ── Navbar ── */
#navbar { border-bottom-color: var(--border2); }
#navbar.scrolled { box-shadow: 0 4px 28px rgba(15,30,60,0.12), 0 1px 0 var(--border2); }
.logo-mark {
  background: linear-gradient(150deg, #1A2E48 0%, #0B1826 100%);
  box-shadow: 0 4px 18px rgba(11,24,38,0.45);
}
.logo-mark::before { background: linear-gradient(135deg, var(--red-vivid) 0%, transparent 58%); opacity: 0.75; }
.logo-name em { color: var(--red-vivid); }
.nav-menu li a:hover { background: var(--red-subtle); color: var(--red-vivid); }
.btn-quote {
  background: linear-gradient(135deg, var(--red-vivid) 0%, var(--red-dark) 100%);
  box-shadow: 0 4px 18px rgba(204,30,28,0.28), inset 0 1px 0 rgba(255,255,255,0.14);
}
.btn-quote:hover { box-shadow: 0 10px 32px rgba(204,30,28,0.28); filter: brightness(1.08); }
.theme-toggle:hover { border-color: var(--gold); }
.theme-toggle:hover svg { color: var(--gold-vivid); }

/* ── Hero ── */
.slide-overlay {
  background: linear-gradient(110deg,
    rgba(6,12,22,0.90) 0%,
    rgba(11,24,38,0.62) 42%,
    rgba(6,12,22,0.18) 100%) !important;
}
.slide-badge {
  background: rgba(229,35,32,0.20);
  border-color: rgba(229,35,32,0.50);
  color: #FFB3B0;
  backdrop-filter: blur(10px);
}
.slide-badge::before { color: var(--red-vivid); }
.slide-title .gold { color: var(--gold-vivid); }
.slide-cta {
  background: linear-gradient(135deg, var(--red-vivid) 0%, var(--red-dark) 100%);
  box-shadow: 0 10px 40px rgba(204,30,28,0.55), inset 0 1px 0 rgba(255,255,255,0.15);
}
.slide-cta:hover { box-shadow: 0 18px 56px rgba(204,30,28,0.6) !important; filter: brightness(1.1); }
.slider-prev, .slider-next {
  background: rgba(11,24,38,0.6);
  border-color: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
}
.slider-prev:hover, .slider-next:hover { background: var(--red-vivid); border-color: var(--red-vivid); }
.dot.active { background: var(--gold-vivid); box-shadow: 0 0 12px var(--gold-glow); }

/* Stats bar */
.stats-bar {
  background: rgba(6,12,22,0.82);
  border-top-color: rgba(212,150,58,0.20);
  backdrop-filter: blur(28px);
}
.stat-n {
  background: linear-gradient(135deg, var(--gold-vivid), var(--gold-dim));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-sep { color: rgba(212,150,58,0.25); }

/* ── Tags & Section Heads ── */
.tag {
  background: var(--gold-light);
  color: var(--gold-vivid);
  border: 1px solid rgba(212,150,58,0.28);
  box-shadow: 0 2px 12px rgba(212,150,58,0.12);
}
.section-title .r { color: var(--red-vivid); }
.section-title .g { color: var(--gold-vivid); }

/* ── About Cards ── */
.about-card {
  border-color: var(--border);
  box-shadow: 0 2px 18px rgba(15,30,60,0.07);
}
.about-card::before { background: linear-gradient(90deg, var(--red-vivid), var(--gold-vivid)); height: 3px; }
.about-card:hover { border-color: rgba(204,30,28,0.25); box-shadow: 0 28px 60px rgba(15,30,60,0.16); }
.about-icon { background: var(--surface2); border: 1px solid var(--border2); }
.about-card:hover .about-icon { background: rgba(204,30,28,0.08); }
.about-icon svg { color: var(--red-vivid); }
.about-card h3 { color: var(--red-vivid); }

.about-card2 {
  background: var(--navy);
  border: 1px solid rgba(120,170,255,0.12);
  position: relative; overflow: hidden;
}
[data-theme="dark"] .about-card2 { background: var(--surface2); border-color: var(--border); }
.about-card2::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 140px; height: 140px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,150,58,0.10), transparent 70%);
  pointer-events: none;
}
.about-card2:hover { box-shadow: 0 24px 60px rgba(0,0,0,0.40), 0 0 0 1px rgba(212,150,58,0.22); }
.about-card2 h3 { color: var(--gold-vivid); }
.about-card2 p { color: rgba(200,220,255,0.68); }
[data-theme="dark"] .about-card2 h3 { color: var(--gold-vivid); }
[data-theme="dark"] .about-card2 p { color: var(--text2); }

/* About CTA */
.about-cta a, .about-cta button {
  background: linear-gradient(135deg, var(--red-vivid), var(--red-dark)) !important;
  box-shadow: 0 6px 28px rgba(204,30,28,0.28) !important;
}

/* ── Materials section ── */
.cat-tab.active {
  background: linear-gradient(135deg, var(--red-vivid), var(--red-dark));
}

.cat-header { border-bottom-color: var(--border2); }
.cat-header-icon {
  background: linear-gradient(135deg, var(--red-vivid), var(--red-dark));
  box-shadow: 0 6px 20px rgba(204,30,28,0.28);
}

/* Clean up any legacy dark-card overrides from previous upgrade pass */
.product-card.featured { border-top: 3px solid var(--red-vivid); border-left: none; }

/* ── Services ── */
#services { background: linear-gradient(160deg, #0B1826 0%, #0E1E34 60%, #111F32 100%); }
[data-theme="dark"] #services { background: var(--bg2); }
.service-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--red-vivid), var(--gold-vivid));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(212,150,58,0.18);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}
[data-theme="dark"] .service-card { background: var(--surface); border-color: var(--border); }
[data-theme="dark"] .service-card:hover { background: var(--surface2); border-color: var(--border2); }
.srv-icon {
  background: rgba(204,30,28,0.15);
  border: 1px solid rgba(204,30,28,0.25);
}
.srv-icon svg { color: #FF8F8D; }
.service-card:hover .srv-icon {
  background: linear-gradient(135deg, var(--red-vivid), var(--red-dark));
  border-color: transparent;
}
.service-card:hover .srv-icon svg { color: white; }
[data-theme="dark"] .srv-icon svg { color: var(--red-vivid); }

/* ── Catalog Banner ── */
#catalog { background: var(--bg3); }
.catalog-card {
  background: linear-gradient(155deg, var(--navy-mid) 0%, var(--navy) 100%);
  border: 1px solid rgba(212,150,58,0.10);
}
[data-theme="dark"] .catalog-card { background: var(--surface2); border-color: var(--border2); }
.catalog-card::after {
  background: radial-gradient(circle, rgba(204,30,28,0.14), transparent 70%);
}
.catalog-feat svg { color: var(--gold-vivid); }
.btn-primary-lg {
  background: linear-gradient(135deg, var(--red-vivid), var(--red-dark));
  box-shadow: 0 6px 24px rgba(204,30,28,0.28), inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn-primary-lg:hover { filter: brightness(1.1); box-shadow: 0 14px 40px rgba(204,30,28,0.28); }
.btn-ghost {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.82);
}
.btn-ghost:hover { background: rgba(255,255,255,0.13); border-color: rgba(212,150,58,0.3); }

/* ── Quote Section ── */
#quote {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red-vivid) 50%, #C41A18 100%);
  position: relative; overflow: hidden;
}
#quote::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.quote-form {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.22);
  backdrop-filter: blur(24px);
}
.q-group input:focus, .q-group select:focus, .q-group textarea:focus {
  border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.20);
}
.btn-submit-w { color: var(--red-vivid); }
.btn-submit-w:hover { box-shadow: 0 10px 36px rgba(0,0,0,0.22); }

/* ── Contact Panel ── */
#contact { background: var(--bg2); }
.contact-panel {
  background: linear-gradient(150deg, var(--navy-mid) 0%, var(--navy) 100%);
  border: 1px solid rgba(212,150,58,0.08);
}
[data-theme="dark"] .contact-panel { background: var(--surface2); border-color: var(--border); }
.contact-panel::before {
  background: radial-gradient(circle, rgba(204,30,28,0.12), transparent 70%);
}
.cp-logo { background: linear-gradient(135deg, var(--red-vivid), var(--red-dark)); box-shadow: 0 6px 22px rgba(204,30,28,0.28); }
.cp-icon {
  background: rgba(204,30,28,0.14);
  border-color: rgba(204,30,28,0.28);
}
.cp-item:hover .cp-icon { background: rgba(204,30,28,0.26); }
.cp-icon svg { color: #FF9390; }
.cp-item-body h4 { color: var(--gold-vivid); }
.cp-item-body a:hover { color: var(--gold-vivid); }
.hours-box {
  background: rgba(212,150,58,0.09);
  border-color: rgba(212,150,58,0.28);
}
.hours-box h4 { color: var(--gold-vivid); }
.hours-box .closed { color: #FF8F8D; }

.contact-form-wrap {
  background: var(--surface);
  border-color: var(--border2);
  box-shadow: 0 8px 40px rgba(15,30,60,0.10);
}
.f-group input:focus, .f-group select:focus, .f-group textarea:focus {
  border-color: var(--red-vivid); background: var(--bg2);
  box-shadow: 0 0 0 3px rgba(204,30,28,0.10);
}
.btn-send {
  background: linear-gradient(135deg, var(--red-vivid), var(--red-dark));
  box-shadow: 0 6px 24px rgba(204,30,28,0.28);
}
.btn-send:hover { filter: brightness(1.1); box-shadow: 0 14px 36px rgba(204,30,28,0.28); }

/* ── Footer ── */
footer { background: var(--footer-bg); border-top: 1px solid rgba(212,150,58,0.08); }
.footer-col h4 { color: var(--gold-vivid); }
.footer-col ul li a::before { color: var(--red-vivid); }
.footer-col ul li a:hover { color: var(--gold-vivid); }
.footer-divider { border-top-color: rgba(255,255,255,0.05); }

/* ── Scroll to top ── */
.scroll-top:hover { background: linear-gradient(135deg, var(--red-vivid), var(--red-dark)); border-color: transparent; }

/* ── Materials Overlay ── */
.mat-overlay-backdrop { background: rgba(6,12,22,0.62); }
.mat-overlay { background: var(--surface); border-color: var(--border2); box-shadow: 0 32px 90px rgba(0,0,0,0.30); }
.mat-overlay-header { border-bottom-color: var(--border2); }
.mat-overlay-close:hover { background: linear-gradient(135deg, var(--red-vivid), var(--red-dark)); border-color: transparent; }
.mat-grid-item { background: var(--surface2); border-color: transparent; }
.mat-grid-item:hover { background: var(--surface); border-color: rgba(204,30,28,0.28); box-shadow: 0 10px 32px rgba(204,30,28,0.14); }
.mat-grid-item .mg-icon { background: var(--bg3); }
.mat-grid-item h4 { color: var(--text); }

/* ── Catalog Modal ── */
.catalog-modal-box { background: var(--surface); border-color: var(--border2); }
.catalog-btn-view { background: var(--surface2); border-color: var(--border2); }
.catalog-btn-view:hover { border-color: var(--red-vivid); color: var(--red-vivid); background: var(--red-subtle); }
.catalog-btn-dl { background: linear-gradient(135deg, var(--navy-mid), var(--navy)); }
[data-theme="dark"] .catalog-btn-dl { background: var(--surface3); }
.catalog-btn-dl:hover { background: linear-gradient(135deg, var(--red-vivid), var(--red-dark)); }
.modal-close-btn { background: var(--surface2); border-color: var(--border2); color: var(--text3); }
.modal-close-btn:hover { background: linear-gradient(135deg, var(--red-vivid), var(--red-dark)); border-color: transparent; color: white; }

/* ── Quote Modal ── */
.quote-modal-box {
  background: linear-gradient(155deg, var(--navy-mid) 0%, var(--navy) 100%);
  border: 1px solid rgba(212,150,58,0.10);
}
[data-theme="dark"] .quote-modal-box { background: var(--surface2); }
.qm-group input:focus, .qm-group select:focus, .qm-group textarea:focus {
  border-color: rgba(229,35,32,0.6); background: rgba(255,255,255,0.14);
}
.qm-submit {
  background: linear-gradient(135deg, var(--red-vivid), var(--red-dark));
  box-shadow: 0 6px 24px rgba(204,30,28,0.28);
}
.qm-submit:hover { filter: brightness(1.1); box-shadow: 0 14px 40px rgba(204,30,28,0.28); }

/* ── Toast ── */
.toast { background: var(--navy); border-left-color: var(--gold-vivid) !important; }
[data-theme="dark"] .toast { background: var(--surface3); }

/* ── Mobile nav ── */
.mobile-nav a:hover { background: var(--red-subtle); color: var(--red-vivid); }
.mobile-nav .m-cta { background: linear-gradient(135deg, var(--red-vivid), var(--red-dark)); border-color: transparent; }

/* ── Reveal underline on section titles ── */
.section-title { position: relative; display: inline-block; }

/* ── Map border ── */
.map-wrapper { border-color: var(--border2); box-shadow: 0 12px 48px rgba(15,30,60,0.12); }

/* Notification toast */
.toast {
  position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--navy); color: white;
  padding: 14px 28px; border-radius: 12px;
  font-size: 14px; font-weight: 500;
  box-shadow: var(--shadow-lg); z-index: 9999;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  white-space: nowrap;
}
[data-theme="dark"] .toast { background: var(--surface2); }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.success { border-left: 4px solid #177239; }

/* ════════════════════════════════════════════════
   CARD HOVER OVERLAY  (injected via JS)
════════════════════════════════════════════════ */
.pc-view-overlay {
  position: absolute; inset: 0; z-index: 4;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 16px;
  background: linear-gradient(to top, rgba(5,12,25,0.88) 0%, rgba(5,12,25,0.22) 55%, transparent 100%);
  opacity: 0; transition: opacity 0.28s ease;
  pointer-events: none;
}
.product-card:hover .pc-view-overlay { opacity: 1; }
.pc-view-overlay span {
  display: inline-flex; align-items: center; gap: 6px;
  color: white; font-size: 11px; font-weight: 700; letter-spacing: 0.9px;
  text-transform: uppercase;
  background: rgba(204,30,28,0.88);
  border: 1px solid rgba(255,120,120,0.4);
  border-radius: 22px; padding: 7px 16px;
  box-shadow: 0 4px 16px rgba(204,30,28,0.42);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}

/* ════════════════════════════════════════════════
   PRODUCT DETAIL MODAL
════════════════════════════════════════════════ */
.pmod-bd {
  position: fixed; inset: 0; z-index: 9900;
  background: rgba(4,8,18,0.78);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.pmod-bd.open { opacity: 1; pointer-events: all; }

.pmod-box {
  position: relative;
  background: linear-gradient(148deg, #0e1828 0%, #080f1a 100%);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 26px;
  max-width: 860px; width: 100%;
  max-height: 90vh;
  display: grid; grid-template-columns: 310px 1fr;
  overflow: hidden;
  box-shadow:
    0 50px 120px rgba(0,0,0,0.75),
    0 0 0 1px rgba(204,30,28,0.12),
    inset 0 1px 0 rgba(255,255,255,0.06);
  transform: scale(0.88) translateY(28px);
  opacity: 0;
  transition: transform 0.46s cubic-bezier(0.34,1.45,0.64,1), opacity 0.35s ease;
}
.pmod-bd.open .pmod-box { transform: scale(1) translateY(0); opacity: 1; }

.pmod-close {
  position: absolute; top: 15px; right: 15px; z-index: 20;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  color: rgba(255,255,255,0.65);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.22s;
}
.pmod-close:hover {
  background: rgba(204,30,28,0.75);
  border-color: var(--red); color: white;
  transform: rotate(90deg) scale(1.1);
}

/* Image / visual side */
.pmod-visual {
  position: relative; overflow: hidden;
  background: #070d18; min-height: 320px;
}
.pmod-img {
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.82; display: block;
  transform: scale(1.06);
  transition: transform 0.7s ease;
}
.pmod-bd.open .pmod-img { transform: scale(1); }
.pmod-img-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, transparent 55%, #0e1828 100%),
    linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 45%);
  pointer-events: none;
}

/* Lock badge */
.pmod-lock {
  position: absolute; bottom: 18px; left: 14px;
  display: flex; align-items: center; gap: 9px;
  background: rgba(5,12,25,0.88);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 13px; padding: 8px 15px;
  color: rgba(255,255,255,0.4);
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.7px;
  text-transform: uppercase;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.4s, transform 0.4s, color 0.45s 0.55s,
              border-color 0.45s 0.55s, box-shadow 0.45s 0.55s;
}
.pmod-bd.open .pmod-lock { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.pmod-lock.unlocked {
  color: var(--gold) !important;
  border-color: rgba(201,150,58,0.45) !important;
  box-shadow: 0 0 22px rgba(201,150,58,0.22), 0 4px 14px rgba(0,0,0,0.45) !important;
}

.lock-icons {
  position: relative; width: 18px; height: 18px; flex-shrink: 0;
}
.lock-icons svg {
  width: 18px; height: 18px;
  position: absolute; top: 0; left: 0;
  transition: opacity 0.35s, transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
}
.li-locked  { opacity: 1; transform: scale(1) rotate(0deg); }
.li-unlocked { opacity: 0; transform: scale(0.55) rotate(-25deg); }
.pmod-lock.unlocked .li-locked  { opacity: 0; transform: scale(0.55) rotate(15deg); }
.pmod-lock.unlocked .li-unlocked { opacity: 1; transform: scale(1) rotate(0deg); }

/* Content side */
.pmod-content {
  padding: 38px 32px 32px;
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 16px;
  scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.1) transparent;
}
.pmod-badge {
  display: inline-block; align-self: flex-start;
  background: rgba(204,30,28,0.14); color: var(--red);
  border: 1px solid rgba(204,30,28,0.3);
  border-radius: 20px; padding: 4px 14px;
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.9px; text-transform: uppercase;
}
.pmod-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 27px; font-weight: 700;
  color: white; line-height: 1.25; margin: 0;
}
.pmod-pdesc { font-size: 14px; color: rgba(255,255,255,0.58); line-height: 1.75; margin: 0; }

.pmod-specs {
  list-style: none; margin: 0; padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
}
.pmod-specs li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.62); line-height: 1.55;
}
.pmod-specs li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); flex-shrink: 0; margin-top: 5px;
}
.pmod-specs li strong { color: var(--gold); font-weight: 700; }

.pmod-actions {
  display: flex; gap: 10px; margin-top: auto; padding-top: 6px; flex-wrap: wrap;
}
.pmod-cta {
  flex: 1; min-width: 140px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--red); color: white;
  border: none; border-radius: 13px; padding: 13px 20px;
  font-family: inherit; font-size: 14px; font-weight: 700; cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 22px rgba(204,30,28,0.38);
}
.pmod-cta:hover {
  background: #e01e1c;
  box-shadow: 0 8px 30px rgba(204,30,28,0.55);
  transform: translateY(-2px);
}
.pmod-ghost {
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.11); border-radius: 13px;
  padding: 13px 22px; font-family: inherit;
  font-size: 14px; font-weight: 600; cursor: pointer;
  transition: all 0.2s;
}
.pmod-ghost:hover { background: rgba(255,255,255,0.11); color: white; }

/* Mobile */
@media (max-width: 680px) {
  .pmod-box { grid-template-columns: 1fr; max-height: 94vh; }
  .pmod-visual { height: 210px; min-height: unset; }
  .pmod-img-overlay { background: linear-gradient(to top, rgba(8,15,26,0.7) 0%, transparent 60%); }
  .pmod-content { padding: 22px 18px 24px; gap: 13px; }
  .pmod-title { font-size: 22px; }
}
