﻿:root {
  --brand-red: #d80f2f;
  --brand-red-dark: #b50d27;
  --brand-yellow: #f7c623;
  --brand-yellow-deep: #e8b800;
  --brand-green: #57b33e;
  --ink-900: #181818;
  --ink-700: #4a4a4a;
  --ink-500: #6a6a6a;
  --surface: #f2f3f5;
  --surface-2: #ffffff;
  --line: #e2e5ea;
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--ink-900);
  background: var(--surface);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.2px;
}

.py-lg-6 {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  transition: opacity 0.35s ease;
}

body.loaded #preloader {
  opacity: 0;
  pointer-events: none;
}

.loader-ring {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.25);
  border-top-color: #fff;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.cursor-glow {
  display: none;
}

.site-navbar {
  background: linear-gradient(90deg, var(--brand-red), var(--brand-red-dark));
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 0;
  transition: all 0.25s ease;
}

.site-navbar.scrolled {
  background: rgba(186, 13, 41, 0.96);
  backdrop-filter: blur(6px);
  padding: 0.55rem 0;
}

.brand-logo {
  width: 118%;
  height: 118%;
  display: block;
  object-fit: cover;
  object-position: center 34%;
  border-radius: 999px;
  background: transparent;
  padding: 0;
  position: absolute;
  left: 48%;
  top: 55%;
  z-index: 2;
  transform: translate(-50%, -56%);
}

.logo-shell {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(circle at 35% 35%, #fff8db 0%, #f3cd59 55%, #d7a812 100%);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22), 0 0 0 2px rgba(255, 255, 255, 0.32) inset;
}

.logo-shell::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(255, 227, 138, 0.75);
  box-shadow: 0 0 12px rgba(255, 226, 120, 0.5);
}

.brand-text {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

.navbar .nav-link {
  color: #fff;
  font-weight: 500;
  padding: 0.6rem 0.8rem;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: #ffe59b;
}

.btn-gold {
  background: linear-gradient(145deg, var(--brand-yellow), var(--brand-yellow-deep));
  color: #251b00;
  border: 0;
  font-weight: 700;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(247, 198, 35, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-gold:hover,
.btn-gold:focus {
  color: #251b00;
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(247, 198, 35, 0.42);
}

.section-dark {
  position: relative;
  background: var(--surface);
  color: var(--ink-900);
}

.section-light {
  background: var(--surface-2);
}

.hero-section {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 140px;
  display: flex;
  align-items: center;
  background: #f5f6f8;
}

.hero-section::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -80px;
  width: 520px;
  height: 460px;
  background: radial-gradient(circle at 40% 40%, #94d08f 0%, #69bf5a 55%, #4aa83b 100%);
  border-radius: 54% 46% 57% 43% / 40% 57% 43% 60%;
  opacity: 0.35;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e1e4ea;
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 0.77rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-title {
  color: #141414;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}

.hero-subtitle {
  color: #3f4653;
  font-size: 1.06rem;
  max-width: 650px;
  margin-bottom: 1.3rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.hero-badges span {
  background: #fff;
  border: 1px solid #dce2ec;
  color: #2d3748;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-badges i {
  color: var(--brand-red);
  margin-right: 6px;
}

.hero-cta .btn-outline-light {
  color: #2a2a2a;
  border-color: #cfd6e2;
  background: #fff;
}

.hero-cta .btn-outline-light:hover,
.hero-cta .btn-outline-light:focus {
  color: #fff;
  border-color: var(--brand-red);
  background: var(--brand-red);
}

.hero-media-wrap {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
}

.hero-media-main,
.hero-media-float {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #d7dce6;
  box-shadow: 0 20px 42px rgba(16, 22, 35, 0.14);
  background: #fff;
}

.hero-media-main {
  height: 460px;
}

.hero-media-main img,
.hero-media-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-media-float {
  position: absolute;
  width: 38%;
  height: 150px;
}

.float-one {
  left: 4%;
  bottom: 11%;
}

.float-two {
  right: -2%;
  top: 8%;
}

.floating-orb {
  display: none;
}

.ticker-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  background: linear-gradient(90deg, #c80f2c, #b20d27);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  z-index: 4;
}

.ticker-marquee {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: ticker 28s linear infinite;
}

.ticker-track {
  display: flex;
  flex-shrink: 0;
  gap: 34px;
  padding: 11px 18px;
  white-space: nowrap;
}

.ticker-track span {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 500;
}

.ticker-track i {
  color: #ffd95f;
  margin-right: 7px;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand-red);
  margin-bottom: 0.75rem;
}

.section-title {
  color: #151515;
  font-size: clamp(2rem, 4vw, 3.05rem);
  margin-bottom: 0.8rem;
}

.section-title-dark {
  color: #151515;
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-bottom: 0.8rem;
}

.section-subtitle {
  color: #4e5563;
  max-width: 760px;
  margin: 0 auto;
}

.section-copy {
  color: #525a69;
  font-size: 1.02rem;
  line-height: 1.8;
}

.image-panel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(18, 26, 40, 0.12);
}

.image-panel img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.image-panel-card {
  position: absolute;
  left: 16px;
  bottom: 16px;
  border-radius: 12px;
  padding: 14px;
  max-width: 300px;
  color: #fff;
  background: rgba(216, 15, 47, 0.92);
}

.image-panel-card h6 {
  margin-bottom: 0.3rem;
}

.image-panel-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #fff;
}

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

.stat-card {
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  text-align: center;
  padding: 14px 12px;
}

.stat-card h3 {
  color: var(--brand-red);
  margin-bottom: 2px;
  font-size: 2rem;
}

.stat-card p {
  margin: 0;
  color: #525a69;
  font-size: 0.82rem;
  font-weight: 600;
}

#products {
  background: #ffffff;
}

.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e3e7ee;
  background: #fff;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(24, 31, 46, 0.14);
}

.product-media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.product-card.wide .product-media {
  height: 250px;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.08);
}

.product-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.42));
  z-index: 1;
}

.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--brand-red);
  color: #fff;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 600;
}

.product-body {
  padding: 18px;
}

.product-body h5 {
  margin-bottom: 8px;
  color: #191919;
}

.product-body p {
  margin: 0;
  color: #5a6270;
}

#quality {
  background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
}

.quality-glass {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid #e3e7ef;
  padding: 18px;
}

.quality-item {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e7ebf2;
  border-radius: 11px;
  padding: 12px;
  color: #263147;
  font-weight: 500;
}

.quality-item i {
  color: var(--brand-green);
}

.process-wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  position: relative;
}

.process-wrap::before {
  content: "";
  position: absolute;
  left: 12.5%;
  right: 12.5%;
  top: 50%;
  transform: translateY(-50%);
  border-top: 2px dashed #e3c86e;
  z-index: 0;
}

.process-step {
  position: relative;
  border: 1px solid #e1e7f1;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  text-align: center;
  padding: 18px 16px 16px;
  box-shadow: 0 10px 22px rgba(24, 34, 56, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  overflow: visible;
  z-index: 1;
}

.process-step:hover {
  transform: translateY(-6px);
  border-color: #d9b75a;
  box-shadow: 0 18px 28px rgba(24, 34, 56, 0.12);
}

.process-step:not(:last-child)::after {
  display: none;
}

.step-index {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, var(--brand-yellow), var(--brand-yellow-deep));
  color: #241a00;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 0.84rem;
  box-shadow: 0 5px 12px rgba(232, 184, 0, 0.35);
}

.step-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 11px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #fff3ca 0%, #ffe195 100%);
  border: 1px solid #f0d28a;
  box-shadow: 0 10px 18px rgba(244, 194, 47, 0.24);
}

.step-icon i {
  color: #b30d28;
  font-size: 1.15rem;
}

.process-step h6 {
  color: #1d273c;
  margin-bottom: 5px;
  font-size: 1.15rem;
}

.process-step p {
  margin: 0;
  color: #5f6776;
  font-size: 0.9rem;
  min-height: 54px;
}

.process-step small {
  display: inline-flex;
  margin-top: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f0f4fb;
  color: #46526a;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

#markets {
  background: linear-gradient(145deg, #d40f2f 0%, #b30d28 100%);
  color: #fff;
}

.markets-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 84% 20%, rgba(105, 196, 92, 0.25), transparent 35%),
              radial-gradient(circle at 5% 95%, rgba(247, 198, 35, 0.2), transparent 34%);
  pointer-events: none;
}

#markets .section-label,
#contact .section-label {
  color: #ffe28a;
}

#markets .section-title,
#contact .section-title {
  color: #fff;
}

#markets .section-subtitle,
#contact .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

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

.market-pill {
  text-align: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 15px 12px;
  color: #fff;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, background 0.2s ease;
}

.market-pill:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.16);
}

#why-us {
  background: #ffffff;
}

.why-card {
  border-radius: 14px;
  border: 1px solid #e5e9f0;
  background: #fff;
  padding: 22px;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(20, 30, 46, 0.1);
}

.why-card i {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff5cf;
  color: #b40d27;
  margin-bottom: 12px;
}

.why-card h6 {
  color: #19243a;
  margin-bottom: 8px;
}

.why-card p {
  color: #5e6776;
  margin: 0;
}

#contact {
  background: #1c1c1f;
}

.contact-points {
  display: grid;
  gap: 10px;
}

.contact-points div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.95);
}

.contact-points i {
  color: var(--brand-yellow);
}

.quote-form {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid #d9dee8;
  padding: 22px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.form-floating > .form-control,
.form-floating > .form-select {
  border: 1px solid #d3dbe8;
  height: calc(3.4rem + 2px);
  color: #1a2a43;
  background-color: #ffffff;
}

.quote-form .form-control,
.quote-form .form-select {
  color: #1a2a43;
}

.quote-form .form-control::placeholder,
.quote-form .form-select::placeholder {
  color: transparent;
}

.quote-form .form-floating > label {
  color: #5f6f89;
}

.quote-form .form-floating > .form-control:focus ~ label,
.quote-form .form-floating > .form-control:not(:placeholder-shown) ~ label,
.quote-form .form-floating > .form-select ~ label {
  color: #4e607d;
}

.quote-form .form-floating > .form-control:-webkit-autofill,
.quote-form .form-floating > .form-control:-webkit-autofill:hover,
.quote-form .form-floating > .form-control:-webkit-autofill:focus {
  -webkit-text-fill-color: #1a2a43;
  box-shadow: 0 0 0 1000px #fff inset;
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus,
textarea.form-control:focus {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 0.2rem rgba(216, 15, 47, 0.14);
}

.form-note {
  color: #5f6f89;
}

.site-footer {
  background: #111114;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #d7d7dc;
}

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

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

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }

@media (max-width: 1199.98px) {
  .hero-media-main {
    height: 420px;
  }

  .brand-text {
    font-size: 0.83rem;
  }
}

@media (max-width: 991.98px) {
  .site-navbar {
    background: rgba(184, 13, 41, 0.97);
  }

  .navbar .nav-link {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-section {
    min-height: auto;
    padding-bottom: 158px;
  }

  .hero-section::before {
    width: 360px;
    height: 330px;
    right: -90px;
    top: -40px;
  }

  .hero-media-main {
    height: 350px;
  }

  .float-one {
    left: 2%;
    bottom: -10%;
  }

  .float-two {
    right: 0;
    top: -8%;
  }

  .stats-grid,
  .quality-glass,
  .process-wrap,
  .market-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .process-wrap::before {
    display: none;
  }

  .py-lg-6 {
    padding-top: 4.7rem;
    padding-bottom: 4.7rem;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: clamp(2rem, 9vw, 2.9rem);
  }

  .hero-subtitle,
  .section-copy {
    font-size: 0.98rem;
  }

  .hero-badges span {
    font-size: 0.8rem;
  }

  .hero-media-main {
    height: 290px;
  }

  .hero-media-float {
    display: none;
  }

  .image-panel img {
    height: 340px;
  }

  .stats-grid,
  .quality-glass,
  .process-wrap,
  .market-grid {
    grid-template-columns: 1fr;
  }

  .process-step p {
    min-height: 0;
  }

  .quote-form {
    padding: 18px;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .ticker-track {
    gap: 24px;
    padding: 10px 12px;
  }

  .py-lg-6 {
    padding-top: 4.1rem;
    padding-bottom: 4.1rem;
  }
}
