
:root {
  --blue: #0066CC;
  --blue-dark: #0052A3;
  --blue-light: #3385D6;
  --blue-glow: rgba(0,102,204,0.15);
  --bg: #F4F6F9;
  --bg2: #EEF1F6;
  --bg3: #E8EDF5;
  --bg4: #DFE6F0;
  --surface: #FFFFFF;
  --text: #1A2332;
  --text-muted: #6B7A99;
  --text-light: #3D4F6E;
  --border: rgba(0,102,204,0.12);
  --border-strong: rgba(0,102,204,0.25);
  --shadow: rgba(26,35,50,0.08);
  --shadow-strong: rgba(0,102,204,0.15);
}

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

html { overflow-x: hidden; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.custom-navbar {
  background: transparent;
  backdrop-filter: none;
  padding: 14px 0;
  border-bottom: 1px solid transparent;
  transition: background 0.4s, box-shadow 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  box-shadow: none;
}
.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.50rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: #fff !important;
}
.navbar-brand span { color: var(--blue); }
.navbar-nav .nav-link {
  color: rgba(255,255,255,0.88) !important;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-left: 10px;
  position: relative;
  transition: 0.3s;
}
.navbar-nav .nav-link::after {
  content: "";
  width: 0; height: 2px;
  background: #F5A623;
  position: absolute;
  left: 0; bottom: -4px;
  transition: 0.3s;
}
.navbar-nav .nav-link:hover { color: #F5A623 !important; }
.navbar-nav .nav-link:hover::after { width: 100%; }
.navbar-toggler { border-color: rgba(255,255,255,0.5); }
.navbar-toggler-icon { filter: invert(1); }
.scrolled {
  background: rgba(255,255,255,0.98) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border) !important;
  box-shadow: 0 4px 30px var(--shadow-strong);
}
.scrolled .navbar-brand { color: var(--text) !important; }
.scrolled .navbar-nav .nav-link { color: var(--text-muted) !important; }
.scrolled .navbar-nav .nav-link:hover { color: var(--blue) !important; }
.scrolled .navbar-nav .nav-link::after { background: var(--blue); }
.scrolled .navbar-toggler { border-color: var(--border); }
.scrolled .navbar-toggler-icon { filter: none; }
.scrolled .btn-blue { background: var(--blue); }

/* ===== HERO ===== */
.video-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Subtle vignette darkening at edges */
.video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 120% 100% at 50% 50%,
    transparent 30%,
    rgba(2, 6, 25, 0.60) 100%);
  z-index: 0;
  pointer-events: none;
}

/* Thin gold shimmer line at very bottom */
.video-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(245,166,35,0.25) 20%,
    #FFD700 45%,
    #F5A623 50%,
    #FFD700 55%,
    rgba(245,166,35,0.25) 80%,
    transparent 100%);
  z-index: 3;
  animation: shimmerLine 4s ease-in-out infinite;
}
@keyframes shimmerLine {
  0%,100% { opacity: 0.7; }
  50%      { opacity: 1; }
}

/* Video — slight cool grade */
.background-video {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  transform: translate(-50%,-50%);
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.65) saturate(0.75) contrast(1.05);
}

/* ── Deep navy overlay ── */
.overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 65% at 50% 42%,
      rgba(8, 30, 90, 0.38) 0%,
      transparent 60%),
    linear-gradient(180deg,
      rgba(2, 6, 28, 0.88) 0%,
      rgba(4, 14, 55, 0.72) 40%,
      rgba(4, 14, 55, 0.72) 60%,
      rgba(2, 6, 28, 0.92) 100%);
  z-index: -1;
}

/* ── Hero content — fully open, no card ── */
.hero-content {
  text-align: center;
  color: #fff;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  max-width: 860px;
  width: 100%;
  background: none;
  border: none;
  box-shadow: none;
}

/* Soft gold ambient glow floating behind title */
.hero-content::before {
  content: '';
  position: absolute;
  top: 38%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 340px;
  background: radial-gradient(ellipse,
    rgba(245, 166, 35, 0.10) 0%,
    rgba(245, 166, 35, 0.03) 45%,
    transparent 70%);
  pointer-events: none;
  z-index: -1;
  filter: blur(18px);
}

/* ── Eyebrow badge ── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 215, 115, 0.90);
  padding: 8px 22px;
  border-radius: 40px;
  margin-bottom: 22px;
  animation: fadeUp 0.8s ease both;
  background: rgba(245, 166, 35, 0.09);
  border: 1px solid rgba(245, 166, 35, 0.22);
}

.pulse-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #F5A623;
  display: inline-block;
  animation: pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.25; transform: scale(0.4); }
}

/* ── VALAKI ENTERPRISE — Gold gradient ── */
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6.5vw, 6.8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 8px;
  white-space: nowrap;
  background: linear-gradient(120deg,
    #FFF8DC 0%,
    #FFE566 15%,
    #F5A623 30%,
    #FFD700 46%,
    #FFFAAA 52%,
    #FFD700 58%,
    #F5A623 72%,
    #FFE566 86%,
    #FFF8DC 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroGradientShine 5s linear infinite, fadeUp 0.9s ease 0.15s both;
  filter: drop-shadow(0 2px 40px rgba(245,166,35,0.38));
  margin-bottom: 0;
}
@media (max-width: 640px) {
  .hero-title { font-size: clamp(2rem, 8vw, 3.4rem); letter-spacing: 4px; white-space: normal; }
  .hero-content { padding: 0 18px; }
}

/* ── Gold rule beneath title ── */
.hero-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 18px auto 20px;
  width: 320px;
  animation: fadeUp 1s ease 0.3s both;
}
.hero-rule__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,0.65));
}
.hero-rule__line--r {
  background: linear-gradient(90deg, rgba(245,166,35,0.65), transparent);
}
.hero-rule__diamond {
  width: 6px; height: 6px;
  background: #F5A623;
  transform: rotate(45deg);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(245,166,35,0.9), 0 0 18px rgba(245,166,35,0.4);
}
.hero-title-sub {
  display: block;
  font-size: 0.68em;
  letter-spacing: 14px;
  font-weight: 700;
  -webkit-text-fill-color: transparent;
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 0.78rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-top: 16px;
  animation: fadeUp 1s ease 0.35s both;
}
.tagline-line {
  display: inline-block;
  width: 40px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,166,35,0.7));
}
.tagline-line:last-child {
  background: linear-gradient(to left, transparent, rgba(245,166,35,0.7));
}
.hero-tagline {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #c9a84c;
  text-transform: uppercase;
  margin-bottom: 12px;
  animation: fadeUp 1s ease 0.38s both;
}
.hero-sub {
  font-size: 0.73rem;
  letter-spacing: 3.5px;
  color: rgba(255, 255, 255, 0.52);
  text-transform: uppercase;
  margin-top: 0;
  animation: fadeUp 1s ease 0.45s both;
}

/* ── Hero stats strip ── */
.hero-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: fadeUp 1s ease 0.85s both;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.hstrip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}
.hstrip-num {
  
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FFE566, #F5A623);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.hstrip-lbl {
  font-size: 0.56rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-top: 5px;
}
.hstrip-sep {
  width: 1px; height: 32px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .hstrip-item { padding: 0 16px; }
  .hstrip-num  { font-size: 1.2rem; }
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 36px;
  animation: fadeUp 1s ease 0.55s both;
}
.hstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}
.hstat-num {
  
  font-size: 1.7rem;
  font-weight: 800;
  color: #F5A623;
  line-height: 1;
}
.hstat-lbl {
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}
.hstat-div {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.18);
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.65s both;
}
.btn-blue {
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 34px;
  border-radius: 2px;
  border: none;
  transition: 0.3s;
  text-decoration: none;
  box-shadow: 0 4px 20px var(--blue-glow);
  cursor: pointer;
}
.btn-blue:hover {
  background: var(--blue-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,102,204,0.3);
}
.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.55);
  color: #fff;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 34px;
  border-radius: 2px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(6px);
  transition: 0.3s;
  cursor: pointer;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.85);
  transform: translateY(-3px);
}
.btn-outline-blue {
  border: 1.5px solid rgba(245, 166, 35, 0.70);
  color: rgba(255, 210, 100, 0.95);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 34px;
  border-radius: 2px;
  background: transparent;
  transition: 0.3s;
  text-decoration: none;
  cursor: pointer;
}
.btn-outline-blue:hover {
  background: rgba(245, 166, 35, 0.15);
  color: #FFD700;
  border-color: #F5A623;
  transform: translateY(-3px);
  box-shadow: 0 4px 24px rgba(245, 166, 35, 0.30);
}

.scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.45);
  font-size: 0.60rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fadeUp 1s ease 1s both;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, #F5A623, transparent);
  animation: scrollLine 2s ease infinite;
  box-shadow: 0 0 6px rgba(245, 166, 35, 0.5);
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes heroGradientShine {
  0% { background-position: 0% center; }
  100% { background-position: 300% center; }
}
@keyframes shine {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== VIDEO TAGLINE BAR (inside hero) ===== */
.video-tagline-bar {
  position: absolute;
  bottom: 70px;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(10,22,40,0.72) 20%, rgba(10,22,40,0.72) 80%, transparent 100%);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(245,166,35,0.18);
  border-bottom: 1px solid rgba(245,166,35,0.18);
  padding: 16px 0;
  z-index: 2;
  animation: fadeUp 1s ease 1.1s both;
}
.video-tagline-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

/* ===== TAGLINE STRIP ===== */
.tagline-strip {
  background: linear-gradient(90deg, #050A14 0%, #0a1628 50%, #050A14 100%);
  padding: 36px 0;
  overflow: hidden;
}
.tagline-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.ts-icon {
  font-size: 1.6rem;
  color: #F5A623;
  opacity: 0.85;
}
.ts-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.ts-main {

  font-size: clamp(1.2rem, 3vw, 1.9rem);
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #fff 0%, #F5A623 50%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shine 4s linear infinite;
}
.ts-sub {
  font-size: 0.68rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ===== ABOUT ===== */
.about-section {
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 100%);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: "VALAKI";
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 18vw;
  font-weight: 900;
  color: rgba(0,102,204,0.04);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}
.about-img-wrap {
  position: relative;
  display: inline-block;
}
.about-img {
  border-radius: 2px;
  transition: 0.5s;
  width: 100%;
  filter: brightness(0.98) saturate(0.85);
  box-shadow: 0 20px 60px var(--shadow);
}
.about-img:hover { transform: scale(1.02); filter: brightness(1) saturate(1); }
.about-img-wrap::before {
  content: "";
  position: absolute;
  top: -12px; left: -12px;
  right: 12px; bottom: 12px;
  border: 2px solid var(--border-strong);
  border-radius: 2px;
  z-index: 0;
}
.exp-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--blue);
  color: #fff;
  width: 105px; height: 105px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 10px 40px rgba(0,102,204,0.4);
  animation: float 3s ease-in-out infinite;
  z-index: 2;
}
.exp-badge .num { font-family: 'Playfair Display', serif; font-size: 1.8rem; line-height: 1; }
.exp-badge .lbl { font-size: 0.6rem; letter-spacing: 1px; text-transform: uppercase; text-align: center; }

.section-tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.section-h {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}
.section-h span { color: var(--blue); }
.about-para { color: var(--text-muted); line-height: 1.95; font-size: 0.93rem; }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; }
.check-list li {
  color: var(--text-light);
  font-size: 0.88rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.check-list li i { color: var(--blue); font-size: 0.8rem; }

/* ===== VISION / MISSION ===== */
.vm-section { padding: 110px 0; background: var(--surface); }
.vm-section.bg-alt { background: var(--bg2); }

.vm-img-wrap {
  position: relative;
  display: inline-block; /* shrinks to image width so border hugs image exactly */
  width: 70%;
  margin-top: 18px;
  margin-bottom: 18px;
}
/* Offset border frame — same size as image, shifted top-left */
.vm-img-wrap::before {
  content: "";
  position: absolute;
  top: -14px; left: -14px;
  width: 100%; height: 100%;
  border: 2.5px solid blue;
  border-radius: 10px;
  opacity: 0.50;
  z-index: 0;
  transition: opacity 0.4s, box-shadow 0.4s;
}
/* Glowing accent block — bottom-right corner */
.vm-img-wrap::after {
  content: "";
  position: absolute;
  bottom: -12px; right: -12px;
  width: 90px; height: 90px;
  background: blue;
  border-radius: 8px;
  opacity: 0.50;
  z-index: 0;
}
.vm-img-wrap:hover::before {
  opacity: 0.65;
  box-shadow: 0 0 24px var(--blue-glow);
}
.vm-img-wrap .vm-img {
  position: relative;
  display: block;
  width: 100%;
  height: 450px;
  object-fit: fill;
  border-radius: 8px !important;
  z-index: 1;
}

.vm-img {
  height: 450px;
  border-radius: 8px;
  width: 70%;
 
  transition: 0.4s;
  box-shadow: 0 20px 60px var(--shadow);
  filter: brightness(0.97) saturate(0.85);
}
.vm-img:hover { transform: scale(1.03); filter: brightness(1) saturate(1); }
.vm-tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.vm-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  color: var(--text);
}
.vm-heading::after {
  content: "";
  width: 60px; height: 3px;
  background: var(--blue);
  display: block;
  margin-top: 14px;
  box-shadow: 0 0 12px var(--blue-glow);
}
.vm-text { color: var(--text-muted); line-height: 1.95; font-size: 0.93rem; }

/* ===== PRODUCTS ===== */
.products-section {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.products-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0,102,204,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,102,204,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.prod-tag {
  font-size: 0.68rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  text-align: center;
  margin-bottom: 10px;
}
.prod-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  font-weight: 800;
  color: var(--text);
  text-align: center;
  margin-bottom: 60px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: 0.4s;
  position: relative;
  box-shadow: 0 4px 20px var(--shadow);
}
.product-card::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--blue);
  transition: 0.4s;
  box-shadow: 0 0 12px var(--blue-glow);
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px var(--shadow-strong);
  border-color: var(--border-strong);
}
.product-card:hover::after { width: 100%; }
.product-card img {
  width: 100%;
  height: 220px;
  object-fit: fill;
  transition: 0.5s;
  filter: saturate(0.85);
}
.product-card:hover img { transform: scale(1.06); filter: saturate(1); }
.product-card .card-body {
  padding: 22px;
  text-align: center;
}
.product-card h5 {
  color: var(--text);
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.product-card p { color: var(--text-muted); font-size: 0.84rem; }
.product-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--blue);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

/* ===== WHY CHOOSE ===== */
.why-section { padding: 100px 0; background: var(--bg2); }
.why-tag { font-size: 0.68rem; letter-spacing: 5px; text-transform: uppercase; color: var(--blue); display: block; text-align: center; margin-bottom: 10px; }
.why-heading { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 3vw, 2.9rem); font-weight: 800; color: var(--text); text-align: center; margin-bottom: 60px; }

.feature-card {
  padding: 40px 28px;
  border: 1px solid var(--border);
  border-radius: 4px;
  text-align: center;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 4px 20px var(--shadow);
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,102,204,0.04), transparent);
  opacity: 0;
  transition: 0.4s;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px var(--shadow-strong);
  border-color: var(--border-strong);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--bg3), var(--bg4));
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  color: var(--blue);
  box-shadow: 0 4px 20px var(--blue-glow);
  transition: 0.4s;
}
.feature-card:hover .feature-icon {
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 0 30px rgba(0,102,204,0.2);
  background: var(--blue);
  color: #fff;
}
.feature-card h5 { font-family: 'Playfair Display', serif; font-size: 1.08rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.feature-card p { color: var(--text-muted); font-size: 0.86rem; line-height: 1.75; }

/* ===== STATS ===== */
.stats-section {
  background: var(--blue);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.stats-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.08) 0%, transparent 70%);
}
.stat-item { text-align: center; position: relative; z-index: 1; }
.stat-item + .stat-item::before {
  content: "";
  position: absolute;
  left: 0; top: 20%; height: 60%; width: 1px;
  background: rgba(255,255,255,0.2);
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: block;
  text-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.stat-label { color: rgba(255,255,255,0.75); font-size: 0.75rem; letter-spacing: 3.5px; text-transform: uppercase; margin-top: 10px; }

/* ===== OUR CUSTOMERS MARQUEE ===== */
.customers-section {
  padding: 80px 0 70px;
  background: var(--bg2);
  overflow: hidden;
}
.marquee-outer {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.logo-item {
  flex-shrink: 0;
  width: 170px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 14px 20px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  cursor: default;
}
.logo-item:hover {
  border-color: var(--blue);
  box-shadow: 0 6px 24px var(--blue-glow);
  transform: translateY(-4px);
}
.logo-item img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
 
  transition: filter 0.3s;
}
.logo-item:hover img { filter: grayscale(0%) opacity(1); }
.logo-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-align: center;
  width: 100%;
}
.logo-item:hover .logo-fallback { color: var(--blue); }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== FOOTER ===== */
.footer-section {
  background: var(--text);
  color: #fff;
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}
.footer-logo span { color: #5BA3E8; }
.footer-text { color: rgba(255,255,255,0.45); line-height: 1.9; font-size: 1rem; }
.footer-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}
.footer-title::after {
  content: "";
  width: 40px; height: 2px;
  background: var(--blue-light);
  position: absolute;
  left: 0; bottom: 0;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 1rem;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: #5BA3E8; padding-left: 4px; }
/* .footer-links a::before { content: "—"; font-size: 0.7rem; opacity: 0.3; } */
.contact-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.c-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #5BA3E8; font-size: 0.82rem;
  flex-shrink: 0;
}
.c-text strong { display: block; color: #fff; font-size: 0.8rem; margin-bottom: 2px; }
.c-text span { color: rgba(255,255,255,0.45); font-size: 0.8rem; }
.footer-map iframe { width: 100%; height: 200px; border-radius: 4px; border: 0; opacity: 0.85; filter: invert(0.15) hue-rotate(190deg) saturate(0.8); }
.footer-bottom {
  margin-top: 60px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.78rem; margin: 0; }

/* ===== FLOAT BUTTONS ===== */
.float-btn {
  position: fixed;
  right: 0;
  height: 48px;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 30px 0 0 30px;
  text-decoration: none;
  overflow: hidden;
  transition: width 0.3s ease;
  z-index: 999;
}
.float-btn i { min-width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; font-size: 16px; color: #fff; margin: 5px; }
.float-btn span { color: #fff; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; white-space: nowrap; opacity: 0; transition: 0.3s; }
.call-btn { bottom: 192px; background: var(--blue); }
.call-btn:hover { width: 130px; background: var(--blue-dark); }
.call-btn:hover span { opacity: 1; }
.whatsapp { bottom: 132px; background: #25D366; }
.whatsapp:hover { width: 130px; background: #1ebe5d; }
.whatsapp:hover span { opacity: 1; }
.scroll-top {
  bottom: 0px;
  background: var(--surface);
  border: 2px solid var(--blue);
  border-radius: 50%;
  width: 48px; height: 48px;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px var(--blue-glow);
}
.scroll-top i { color: var(--blue); }
.scroll-top:hover { width: 48px; background: rgba(0,102,204,0.08); }

/* ===== PRODUCTS DROPDOWN ===== */
.products-dropdown .products-menu {
  min-width: 300px;
  padding: 0.75rem;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  border: 1px solid var(--border);
  margin-top: 10px;
  background: #fff;
}
.products-dropdown .dropdown-item {
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  transition: all 0.2s ease;
}
.products-dropdown .dropdown-item:hover {
  background: #f0f6fe;
  transform: translateX(4px);
}
.dropdown-product-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dropdown-product-item img {
  width: 44px;
  height: 44px;

  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  flex-shrink: 0;
}
.dropdown-product-item span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .about-section::before { display: none; }
  .stat-item + .stat-item::before { display: none; }
  .footer-bottom { justify-content: center; text-align: center; }
}

[data-aos] { transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94) !important; }


/* ================================================================
   PRODUCT PAGES — Shared overrides
   Applied to: products-allen-cap.html + all Allen_cap detail pages
   Scoped under body.product-page to avoid conflicts with main site
   ================================================================ */

.product-page .custom-navbar {
 
  backdrop-filter: blur(3px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  border-bottom: none;
}
.product-page .btn-blue {
  background: #1a6fdc;
  color: white;
  padding: 10px 22px;
  border-radius: 2px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.76rem;
  letter-spacing: normal;
  text-transform: none;
  box-shadow: none;
}
.product-page .btn-blue:hover { background: #155bb5; color: #fff; transform: none; box-shadow: none; }

/* Product pages — Footer override */
.product-page .footer-section {
  background: #0a1f2e;
  color: #cbd5e6;
  padding: 60px 0 30px;
  border-top: none;
}
/* .product-page .footer-logo img {  height: 40px; }
.product-page .footer-text { font-size: 0.85rem; line-height: 1.5; margin-top: 15px; opacity: 0.7; color: #cbd5e6; }
.product-page .footer-title { font-family: 'DM Sans', sans-serif; color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; letter-spacing: 0.5px; padding-bottom: 0; }
.product-page .footer-title::after { display: none; }
.product-page .footer-links a { color: #cbd5e6; font-size: 0.85rem; }
.product-page .footer-links a:hover { color: #fff; padding-left: 5px; }
.product-page .contact-row { display: flex; gap: 12px; margin-bottom: 15px; align-items: flex-start; }
.product-page .c-icon { width: 30px; height: auto; background: transparent; border: none; color: #1a6fdc; font-size: 1rem; flex-shrink: 0; border-radius: 0; }
.product-page .c-text { font-size: 0.85rem; line-height: 1.4; }
.product-page .c-text strong { display: block; color: #fff; font-size: 0.8rem; margin-bottom: 0; }
.product-page .c-text span { color: #cbd5e6; font-size: 0.85rem; }
.product-page .footer-map iframe { width: 100%; height: 120px; border-radius: 12px; border: 0; opacity: 1; filter: none; }
.product-page .footer-bottom { border-top: 1px solid #1e3a4d; margin-top: 40px; padding-top: 20px; text-align: center; font-size: 0.75rem; opacity: 0.7; display: block; }
.product-page .footer-bottom p { color: #cbd5e6; font-size: 0.75rem; } */

/* Product pages — Float buttons override */
/* .product-page .float-btn {
  position: fixed;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 999;
  transition: 0.2s;
  font-size: 1.4rem;
  overflow: hidden;
  border: none;
  background: #25d366;
}
.product-page .float-btn i { min-width: auto; margin: 0; color: #fff; font-size: 1.4rem; }
.product-page .float-btn span { display: none; }
.product-page .float-btn.whatsapp { bottom: 90px; background: #25d366; }
.product-page .float-btn.call-btn { bottom: 150px; background: #1a6fdc; }
.product-page .float-btn.scroll-top { bottom: 30px; background: #0f172a; cursor: pointer; border: none; }
.product-page .float-btn:hover { transform: scale(1.07); width: auto; border-radius: 40px; padding: 0 16px; gap: 8px; }
.product-page .float-btn:hover span { display: inline-block; font-size: 0.8rem; font-weight: 600; } */


/* ================================================================
   PRODUCTS-ALLEN-CAP PAGE  (product/products-allen-cap.html)
   ================================================================ */

/* ── Page Hero (shared: products, about, contact) ── */
.page-hero {
  font-family: 'Playfair Display', serif;
  background: linear-gradient(135deg, #1A2332 0%, #0D1929 100%);
  padding: 150px 0 80px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
/* Blue grid overlay */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,102,204,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,102,204,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
/* Large watermark text */
.page-hero::after {
  content: attr(data-watermark);
  position: absolute;

  font-size: 17vw;
  font-weight: 900;
  color: rgba(255,255,255,0.028);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 6px;
  line-height: 1;
}
.page-hero .eyebrow {
  display: inline-block;
  font-size: 0.70rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #5BA3E8;
  border: 1px solid rgba(91,163,232,0.28);
  padding: 6px 18px;
  border-radius: 2px;
  margin-bottom: 20px;
  background: rgba(91,163,232,0.07);
}
.page-hero h1 {
  
  font-size: clamp(2.6rem, 5.5vw, 0.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.page-hero h1 span { color: #5BA3E8; }
.page-hero > .container > p,
.page-hero p.hero-desc {
  color: rgba(255,255,255,0.52);
  font-size: 0.97rem;
  max-width: 540px;
  line-height: 1.88;
  margin-bottom: 0;
}
/* Breadcrumb inside page-hero */
.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.breadcrumb-custom a {
  color: rgba(255,255,255,0.38);
  font-size: 0.74rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.25s;
}
.breadcrumb-custom a:hover { color: #5BA3E8; }
.breadcrumb-custom span { color: rgba(255,255,255,0.18); font-size: 0.74rem; }
.breadcrumb-custom .current {
  color: #5BA3E8;
  font-size: 0.74rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .page-hero { padding: 120px 0 60px; }
  .page-hero h1 { font-size: clamp(2rem, 7vw, 3rem); }
}

/* Products listing grid */
.products-page-section { padding: 80px 0 100px; }
.section-intro { text-align: center; margin-bottom: 50px; }
.section-intro h2 { font-size: 2.4rem; font-weight: 900; color: #0a1a2a; }
.section-intro h2 span { color: #1a6fdc; }

.prod-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #eef2f9;
  cursor: pointer;
}
.prod-card:hover { transform: translateY(-6px); box-shadow: 0 20px 35px rgba(26,111,220,0.12); border-color: #cde0fc; }

.prod-card-img {
  position: relative;
  overflow: hidden;
  background: #f5f8fe;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prod-card-img img { width: 100%; height: 100%; object-fit: fill; transition: transform 0.35s ease; display: block; }
.prod-card:hover .prod-card-img img { transform: scale(1.05); }

.prod-body { padding: 18px 18px 20px; }
.prod-body h5 { font-size: 1.1rem; font-weight: 800; color: #0f172a; margin-bottom: 8px; }
.prod-body p { font-size: 0.8rem; color: #64748b; line-height: 1.5; margin-bottom: 12px; }

.spec-chips { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px; }
.spec-chip { background: #f1f5fb; color: #1a6fdc; font-size: 0.65rem; font-weight: 600; padding: 3px 10px; border-radius: 20px; }

.prod-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid #f0f4fa; }

.btn-detail {
  background: #1a6fdc;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  transition: 0.2s;
}
.btn-detail:hover { background: #155bb5; color: #fff; }

.btn-wa {
  background: #e8fdf0;
  color: #16a34a;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: 0.2s;
}
.btn-wa:hover { background: #25d366; color: #fff; }


/* ================================================================
   ALLEN CAP DETAIL PAGES  (product/Allen_cap/*.html)
   All 9 pages: A4, A6, A7, 12.9, MS, SS, Zinc, Low_Head, Socket_Low_Head
   ================================================================ */

/* Breadcrumb */
.breadcrumb-bar { background: #0a2540; padding: 14px 0; margin-top: 68px; }
.breadcrumb-bar .breadcrumb { margin: 0; background: transparent; padding: 0; }
.breadcrumb-bar .breadcrumb-item a { color: #93c5fd; text-decoration: none; font-size: 0.8rem; }
.breadcrumb-bar .breadcrumb-item.active { color: #cbd5e1; font-size: 0.8rem; }
.breadcrumb-bar .breadcrumb-item + .breadcrumb-item::before { color: #64748b; }

/* Product detail hero area */
.product-detail { padding: 60px 0 80px; }

.prod-image-wrap {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  border: 1px solid #eef2f9;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}
.prod-image-wrap img { width: 100%; height: 380px;  display: block; }

.prod-info-col { padding-left: 30px; }

.prod-category-badge {
  display: inline-block;
  background: #eef2ff;
  color: #1a6fdc;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}
.prod-title { font-size: 2.2rem; font-weight: 900; color: #0a1a2a; margin-bottom: 10px; line-height: 1.2; }
.prod-subtitle { font-size: 1rem; color: #475569; margin-bottom: 22px; line-height: 1.6; }

/* Spec chips (detail page version — override listing page version) */
.product-detail .spec-chips { gap: 8px; margin-bottom: 24px; }
.product-detail .spec-chip { font-size: 0.72rem; font-weight: 700; padding: 6px 14px; border-radius: 20px; border: 1px solid #dbeafe; }
.spec-highlight { background: #0a2540 !important; color: #fff !important; border-color: #0a2540 !important; }

/* CTA buttons */
.prod-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 10px; }

.btn-enquire {
  background: #1a6fdc;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-enquire:hover { background: #155bb5; color: #fff; }

.btn-wa-large {
  background: #25d366;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s;
}
.btn-wa-large:hover { background: #128c7e; color: #fff; }

.btn-back {
  color: #1a6fdc;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  transition: 0.2s;
}
.btn-back:hover { color: #155bb5; }

/* Specifications table */
.specs-section { padding: 60px 0; background: #fff; }

.section-title { font-size: 1.9rem; font-weight: 900; color: #0a1a2a; margin-bottom: 8px; }
.section-title span { color: #1a6fdc; }
.section-sub { color: #64748b; font-size: 0.9rem; margin-bottom: 40px; }

.specs-table { border-radius: 14px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.specs-table table { margin: 0; }
.specs-table thead th { background: #0a2540; color: #fff; font-weight: 700; font-size: 0.85rem; padding: 14px 20px; border: none; }
.specs-table tbody td { padding: 13px 20px; font-size: 0.88rem; border-color: #f1f5f9; }
.specs-table tbody tr:nth-child(even) { background: #f8faff; }
.specs-table tbody tr:hover { background: #eef2ff; }
.td-label { font-weight: 700; color: #0a1a2a; width: 200px; }

/* Applications section */
.applications-section { padding: 60px 0; background: #f7f9fd; }

.app-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 22px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  border: 1px solid #eef2f9;
  text-align: center;
  height: 100%;
  transition: 0.3s;
}
.app-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(26,111,220,0.1); border-color: #cde0fc; }
.app-icon { font-size: 2rem; color: #1a6fdc; margin-bottom: 14px; }
.app-title { font-size: 0.95rem; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.app-desc { font-size: 0.8rem; color: #64748b; line-height: 1.5; margin: 0; }

/* Related products section */
.related-section { padding: 60px 0; background: #fff; }

.related-card {
  background: #f7f9fd;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #eef2f9;
  transition: 0.3s;
  text-decoration: none;
  display: block;
}
.related-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(26,111,220,0.1); border-color: #cde0fc; }
.related-card img { width: 100%; height: 160px; object-fit: fill; }
.related-card-body { padding: 16px; }
.related-card-body h6 { font-size: 0.92rem; font-weight: 800; color: #0f172a; margin-bottom: 4px; }
.related-card-body p { font-size: 0.75rem; color: #64748b; margin: 0; }

/* CTA banner */
.cta-banner { background: linear-gradient(135deg, #0a2540, #1a6fdc); padding: 70px 0; text-align: center; color: #fff; }
.cta-banner h2 { font-size: 2rem; font-weight: 900; margin-bottom: 12px; }
.cta-banner p { opacity: 0.85; margin-bottom: 30px; font-size: 1rem; }

/* ================================================================
   QUOTE MODAL
   ================================================================ */
.qm-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 40, 0.72);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(4px);
}
.qm-overlay.active { display: flex; }

.qm-box {
  background: #fff;
  border-radius: 8px;
  width: 100%;
  max-width: 620px;

  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  animation: qmSlideIn 0.28s ease;
}
@keyframes qmSlideIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.qm-header {
  background: linear-gradient(135deg, #0a2540, #0066CC);
  padding: 22px 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.qm-header-text h3 { color: #fff; font-size: 1.2rem; font-weight: 800; margin: 0 0 2px; }
.qm-header-text p  { color: rgba(255,255,255,0.65); font-size: 0.8rem; margin: 0; }
.qm-close {
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: 0.2s;
}
.qm-close:hover { background: rgba(255,255,255,0.25); }

.qm-body { padding: 28px 28px 24px; }

.qm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.qm-group { margin-bottom: 16px; }
.qm-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 6px;
}
.qm-input, .qm-select, .qm-textarea {
  width: 100%;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  font-size: 0.88rem;
  padding: 10px 14px;
  font-family: 'DM Sans', sans-serif;
  transition: 0.2s;
}
.qm-input:focus, .qm-select:focus, .qm-textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px var(--blue-glow);
}
.qm-textarea { resize: vertical; min-height: 90px; }

.qm-submit {
  width: 100%;
  padding: 14px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 4px;
}
.qm-submit:hover   { background: var(--blue-dark); transform: translateY(-2px); }
.qm-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

.qm-success {
  display: none;
  background: rgba(22,163,74,0.08);
  border: 1px solid rgba(22,163,74,0.3);
  border-radius: 4px;
  padding: 14px 18px;
  color: #166534;
  font-size: 0.88rem;
  margin-top: 14px;
}
.qm-error {
  display: none;
  background: rgba(220,38,38,0.07);
  border: 1px solid rgba(220,38,38,0.25);
  border-radius: 4px;
  padding: 14px 18px;
  color: #991B1B;
  font-size: 0.88rem;
  margin-top: 14px;
}

@media (max-width: 520px) {
  .qm-row { grid-template-columns: 1fr; gap: 0; }
  .qm-body { padding: 20px 18px; }
  .qm-header { padding: 18px 20px; }
}

/* ================================================================
   PRODUCT PAGES — Responsive
   ================================================================ */
@media (max-width: 768px) {
  .prod-info-col { padding-left: 0; margin-top: 30px; }
  .prod-title { font-size: 1.7rem; }
  .product-page .float-btn span { display: none; }
  .product-page .float-btn:hover { width: 48px; padding: 0; border-radius: 50%; }
  
}


/* ABOUT INTRO (existing styles keep) */
.about-intro { padding: 100px 0; background: var(--bg2); position: relative; overflow: hidden; }
.about-intro::before { content: "VALAKI"; position: absolute; font-family: 'Playfair Display', serif; font-size: 18vw; font-weight: 900; color: rgba(0,102,204,0.04); top: 50%; left: 50%; transform: translate(-50%, -50%); white-space: nowrap; pointer-events: none; }
.about-img-wrap { position: relative; display: inline-block; width: 100%; }
.about-img { border-radius: 2px; width: 100%; filter: brightness(0.98) saturate(0.85); box-shadow: 0 20px 60px var(--shadow); transition: 0.5s; }
.about-img:hover { transform: scale(1.02); filter: brightness(1) saturate(1); }
.about-img-wrap::before { content: ""; position: absolute; top: -12px; left: -12px; right: 12px; bottom: 12px; border: 2px solid var(--border-strong); border-radius: 2px; z-index: 0; }
.exp-badge { position: absolute; bottom: -20px; right: -20px; background: var(--blue); color: #fff; width: 105px; height: 105px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; font-weight: 700; box-shadow: 0 10px 40px rgba(0,102,204,0.4); animation: float 3s ease-in-out infinite; z-index: 2; }
.exp-badge .num { font-family: 'Playfair Display', serif; font-size: 1.8rem; line-height: 1; }
.exp-badge .lbl { font-size: 0.6rem; letter-spacing: 1px; text-transform: uppercase; text-align: center; }
.section-tag { display: inline-block; font-size: 0.68rem; letter-spacing: 5px; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.section-h { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 3.5vw, 2.9rem); font-weight: 800; line-height: 1.15; color: var(--text); margin-bottom: 20px; }
.section-h span { color: var(--blue); }
.about-para { color: var(--text-muted); line-height: 1.95; font-size: 0.93rem; }
.check-list { list-style: none; padding: 0; margin: 24px 0; }
.check-list li { color: var(--text-light); font-size: 0.88rem; padding: 9px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.check-list li i { color: var(--blue); font-size: 0.8rem; }

/* STATS BAR */
.stats-bar { background: var(--blue); padding: 60px 0; position: relative; overflow: hidden; }
.stats-bar::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px); background-size: 60px 60px; }
.stat-item { text-align: center; position: relative; z-index: 1; }
.stat-item + .stat-item::before { content: ""; position: absolute; left: 0; top: 20%; height: 60%; width: 1px; background: rgba(255,255,255,0.2); }
.stat-number { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 6vw, 5rem); font-weight: 900; color: #fff; line-height: 1; display: block; }
.stat-label { color: rgba(255,255,255,0.75); font-size: 0.75rem; letter-spacing: 3.5px; text-transform: uppercase; margin-top: 10px; }

/* VISION MISSION */
.vm-section { padding: 100px 0; }
.vm-section.bg-alt { background: var(--bg2); }
.vm-section.bg-white { background: var(--surface); }
.vm-img { border-radius: 2px; width: 100%; transition: 0.4s; box-shadow: 0 20px 60px var(--shadow); filter: brightness(0.97) saturate(0.85); }
.vm-img:hover { transform: scale(1.03); filter: brightness(1) saturate(1); }
.vm-tag { display: inline-block; font-size: 0.68rem; letter-spacing: 5px; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.vm-heading { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; margin-bottom: 20px; color: var(--text); position: relative; }
.vm-heading::after { content: ""; width: 60px; height: 3px; background: var(--blue); display: block; margin-top: 14px; box-shadow: 0 0 12px var(--blue-glow); }
.vm-text { color: var(--text-muted); line-height: 1.95; font-size: 0.93rem; }

/* VALUES */
.values-section { padding: 100px 0; background: var(--bg); }
.value-card { padding: 40px 30px; background: var(--surface); border: 1px solid var(--border); border-radius: 4px; text-align: center; transition: 0.4s; box-shadow: 0 4px 20px var(--shadow); position: relative; overflow: hidden; }
.value-card::after { content: ""; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--blue); transition: 0.4s; }
.value-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px var(--shadow-strong); border-color: var(--border-strong); }
.value-card:hover::after { width: 100%; }
.value-icon { width: 72px; height: 72px; background: linear-gradient(135deg, var(--bg3), var(--bg4)); border: 1px solid var(--border-strong); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.4rem; color: var(--blue); box-shadow: 0 4px 20px var(--blue-glow); transition: 0.4s; }
.value-card:hover .value-icon { background: var(--blue); color: #fff; transform: rotate(10deg) scale(1.1); }
.value-card h5 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.value-card p { color: var(--text-muted); font-size: 0.86rem; line-height: 1.75; }

/* ========== NEW GALLERY SECTION (Attractive & Animated) ========== */
.gallery-section {
  padding: 100px 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.gallery-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(0,102,204,0.02) 0%, transparent 70%);
  pointer-events: none;
}
.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}
.filter-btn {
  background: var(--bg2);
  border: none;
  padding: 8px 28px;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 40px;
  transition: all 0.4s ease;
  cursor: pointer;
  backdrop-filter: blur(2px);
}
.filter-btn:hover, .filter-btn.active-filter {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 20px var(--blue-glow);
  transform: translateY(-3px);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  background: var(--surface);
  transform: scale(1);
}
.gallery-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 50px var(--shadow-strong);
}
.img-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.4s ease;
  filter: brightness(0.98) saturate(1.02);
}
.gallery-item:hover .gallery-img {
  transform: scale(1.08);
  filter: brightness(1.02) saturate(1.1);
}
.overlay-gallery {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(3px);
}
.gallery-item:hover .overlay-gallery {
  opacity: 1;
}
.overlay-gallery i {
  font-size: 2.8rem;
  color: white;
  transform: scale(0.8) rotate(-10deg);
  transition: transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.gallery-item:hover .overlay-gallery i {
  transform: scale(1) rotate(0deg);
}
.gallery-caption {
  padding: 18px 20px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  transition: 0.3s;
}
.gallery-caption h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.gallery-caption p {
  font-size: 0.75rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}
/* Lightbox Modal (custom) */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 20, 30, 0.96);
  backdrop-filter: blur(16px);
  z-index: 1050;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox-modal.active {
  display: flex;
  opacity: 1;
}
.lightbox-content {
  max-width: 85vw;
  max-height: 85vh;
  position: relative;
  animation: zoomInScale 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.lightbox-img {
  width: auto;
  max-width: 100%;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 3px solid rgba(255,255,255,0.2);
}
.close-lightbox {
  position: absolute;
  top: -40px;
  right: -20px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  transition: 0.2s;
}
.close-lightbox:hover {
  background: var(--blue);
  transform: rotate(90deg);
}
.lightbox-caption {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  font-weight: 500;
  letter-spacing: 1px;
  background: rgba(0,0,0,0.5);
  padding: 8px 16px;
  border-radius: 40px;
  width: fit-content;
  margin: 0 auto;
  backdrop-filter: blur(4px);
}
@keyframes zoomInScale {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}
/* TIMELINE, TEAM, CTA, FOOTER styles remain as original */
.timeline-section { padding: 100px 0; background: var(--bg2); }
.timeline { position: relative; padding-left: 50px; }
.timeline::before { content: ""; position: absolute; left: 18px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--blue), var(--border)); }
.timeline-item { position: relative; margin-bottom: 50px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot { position: absolute; left: -41px; top: 4px; width: 16px; height: 16px; background: var(--blue); border-radius: 50%; border: 3px solid var(--bg2); box-shadow: 0 0 0 3px var(--blue-glow); }
.timeline-year { font-family: 'Playfair Display', serif; font-size: 0.75rem; letter-spacing: 3px; color: var(--blue); text-transform: uppercase; font-weight: 700; margin-bottom: 6px; }
.timeline-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.timeline-text { color: var(--text-muted); font-size: 0.88rem; line-height: 1.75; }
.team-section { padding: 100px 0; background: var(--surface); }
.team-card { background: var(--bg); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; transition: 0.4s; box-shadow: 0 4px 20px var(--shadow); }
.team-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px var(--shadow-strong); border-color: var(--border-strong); }
.team-img { width: 100%; height: 280px; object-fit: cover; filter: saturate(0.8); transition: 0.4s; }
.team-card:hover .team-img { filter: saturate(1); }
.team-body { padding: 22px; }
.team-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.team-role { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.team-bio { color: var(--text-muted); font-size: 0.86rem; line-height: 1.7; }
.cta-banner { background: var(--blue); padding: 80px 0; position: relative; overflow: hidden; }
.cta-banner::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px); background-size: 60px 60px; }
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: #fff; margin-bottom: 14px; position: relative; z-index: 1; }
.cta-banner p { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 34px; position: relative; z-index: 1; }
.btn-white { background: #fff; color: var(--blue); font-weight: 700; font-size: 0.82rem; letter-spacing: 1.5px; text-transform: uppercase; padding: 14px 34px; border-radius: 2px; transition: 0.3s; text-decoration: none; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.btn-white:hover { background: var(--bg); transform: translateY(-3px); color: var(--blue); }
.btn-outline-white { border: 1.5px solid rgba(255,255,255,0.5); color: #fff; font-weight: 600; font-size: 0.82rem; letter-spacing: 1.5px; text-transform: uppercase; padding: 14px 34px; border-radius: 2px; background: transparent; transition: 0.3s; text-decoration: none; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: #fff; }

/* ══════════════════════════
   MOBILE-ONLY NAVBAR REDESIGN
   (max-width: 991px)
══════════════════════════ */
@media (max-width: 991px) {

  /* Navbar base */
  .custom-navbar {
    height: 64px !important;
    padding: 0 16px !important;
    background: rgba(10, 18, 35, 0.97) !important;
    border-bottom: none !important;
    box-shadow: none !important;
    position: fixed !important;
  }
  .custom-navbar::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #c8860a 30%, #e8a020 50%, #c8860a 70%, transparent 100%);
  }
  .custom-navbar.scrolled {
    background: rgba(8, 14, 28, 0.99) !important;
  }

  /* Logo sizing */
  .custom-navbar .navbar-brand img {
    height: 36px;
  }

  /* ── Hamburger Button ── */
  .custom-navbar .navbar-toggler {
    border: 1px solid rgba(200,134,10,0.35) !important;
    background: rgba(200,134,10,0.08) !important;
    border-radius: 10px !important;
    width: 44px;
    height: 44px;
    padding: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  .custom-navbar .navbar-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
  }

  /* Top line */
  .custom-navbar .navbar-toggler::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: #e8a020;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* Middle short offset line */
  .custom-navbar .navbar-toggler::after {
    content: '';
    display: block;
    width: 14px;
    height: 2px;
    background: #e8a020;
    border-radius: 2px;
    align-self: flex-end;
    margin-right: 3px;
    transition: all 0.3s ease;
  }

  /* Bottom line — reuse the existing span */
  .custom-navbar .navbar-toggler-icon {
    display: block !important;
    width: 20px !important;
    height: 2px !important;
    background: #e8a020 !important;
    background-image: none !important;
    border-radius: 2px !important;
    transition: all 0.3s ease;
  }

  /* ── Drawer Panel ── */
  .custom-navbar .navbar-collapse {
    background: #0a1223;
    position: fixed !important;
    top: 64px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    border-bottom: 1px solid rgba(200,134,10,0.2);
    z-index: 9999;
    padding: 0 !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  }

  /* Drawer top label strip */
  .custom-navbar .navbar-collapse::before {
    content: '— Navigation';
    display: block;
    padding: 14px 20px 10px;
    font-size: 9px;
    letter-spacing: 3px;
    color: rgba(232,160,32,0.6);
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  /* ── Nav List ── */
  .custom-navbar .navbar-nav {
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 6px 0 !important;
    margin: 0 !important;
  }

  /* Each nav item */
  .custom-navbar .nav-item {
    border-bottom: 1px solid rgba(255,255,255,0.04);
    position: relative;
  }

  /* Left gold accent bar */
  .custom-navbar .nav-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 0;
    background: #e8a020;
    border-radius: 0 2px 2px 0;
    transition: width 0.2s ease;
  }
  .custom-navbar .nav-item:hover::before {
    width: 3px;
  }

  /* Nav link */
  .custom-navbar .nav-link {
    display: flex !important;
    align-items: center !important;
    padding: 15px 20px 15px 24px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 2.5px !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,0.7) !important;
    transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease !important;
  }
  .custom-navbar .nav-link:hover,
  .custom-navbar .nav-link.active {
    color: #e8a020 !important;
    background: rgba(200,134,10,0.07) !important;
    padding-left: 28px !important;
  }

  /* Right arrow indicator */
  .custom-navbar .nav-link::after {
    content: '›';
    margin-left: auto;
    font-size: 20px;
    color: rgba(255,255,255,0.15);
    font-weight: 300;
    line-height: 1;
    transition: color 0.2s ease;
  }
  .custom-navbar .nav-link:hover::after,
  .custom-navbar .nav-link.active::after {
    color: rgba(232,160,32,0.5);
  }

  /* ── Get Quote Button inside drawer ── */
  .custom-navbar .navbar-collapse .btn-blue {
    display: block !important;
    width: calc(100% - 40px) !important;
    margin: 14px 20px 20px !important;
    text-align: center !important;
    border-radius: 6px !important;
    padding: 14px !important;
    font-size: 11px !important;
    letter-spacing: 2px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
  }

  /* Hide the desktop Get Quote button on mobile */
  .custom-navbar .d-none.d-lg-inline-block {
    display: none !important;
  }

}
