:root {
  --rich-gold: #9E8959;
  --soft-gold: #C1AB79;
  --dark-gold: #533F16;
  --cream: #E5D0A1;
  --white: #FFFFFF;
  --black: #120d05;
  --text-soft: #d9ceb4;
  --glass: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.14);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "Segoe UI", sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.section-padding {
  padding: 110px 0;
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: grid;
  place-items: center;
  text-align: center;
}

.loader-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 4px solid rgba(229, 208, 161, 0.18);
  border-top-color: var(--cream);
  animation: spin 1s linear infinite;
}

#preloader h4 {
  color: var(--cream);
  margin-top: 18px;
  font-size: 28px;
  letter-spacing: 6px;
}

#preloader p {
  color: var(--soft-gold);
  font-size: 14px;
  margin-top: -8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Navbar */
.Betolla-navbar {
  padding: 18px 0;
  background: rgba(18, 13, 5, 0.55);
  backdrop-filter: blur(18px);
  transition: 0.35s;
  border-bottom: 1px solid rgba(229, 208, 161, 0.08);
}

.Betolla-navbar.scrolled {
  padding: 10px 0;
  background: rgba(18, 13, 5, 0.96);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.navbar-brand:hover {
  color: var(--white);
}

.brand-mark {
  width: 48px;
  height: 48px;
  border: 1px solid var(--cream);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: rgba(229, 208, 161, 0.08);
}

.brand-logo {
  height: 72px;
  width: auto;
  object-fit: contain;
}

.Betolla-navbar.scrolled .brand-logo {
  height: 58px;
}

@media (max-width: 575px) {
  .brand-logo {
    height: 55px;
  }

  .Betolla-navbar.scrolled .brand-logo {
    height: 48px;
  }
}

.navbar-brand strong {
  display: block;
  color: var(--cream);
  font-size: 25px;
  letter-spacing: 3px;
  line-height: 1;
}

.navbar-brand span {
  display: block;
  color: var(--soft-gold);
  font-size: 13px;
  letter-spacing: 2px;
}

.nav-link {
  color: var(--white);
  margin-left: 24px;
  font-weight: 600;
}

.nav-link:hover {
  color: var(--cream);
}

.nav-btn {
  border: 1px solid var(--cream);
  border-radius: 50px;
  padding: 10px 22px !important;
  color: var(--cream);
}

.navbar-toggler {
  color: var(--cream);
  border: none;
  font-size: 24px;
}

.Betolla-navbar .nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 700;
  margin-left: 22px;
  transition: 0.3s ease;
}

.Betolla-navbar .nav-link i {
  color: #E5D0A1;
  font-size: 14px;
}

.Betolla-navbar .nav-link:hover,
.Betolla-navbar .nav-link.active {
  color: #E5D0A1;
}

.Betolla-navbar .nav-btn {
  padding: 12px 24px !important;
  border: 1px solid rgba(229, 208, 161, 0.45);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
}

.Betolla-navbar .nav-btn:hover {
  background: #E5D0A1;
  color: #533F16 !important;
}

.Betolla-navbar .nav-btn:hover i {
  color: #533F16;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 100px;
  background:
    radial-gradient(circle at 12% 20%, rgba(229, 208, 161, 0.28), transparent 32%),
    radial-gradient(circle at 88% 76%, rgba(193, 171, 121, 0.22), transparent 30%),
    linear-gradient(135deg, #120d05 0%, #533F16 54%, #9E8959 125%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black 45%, transparent 95%);
  opacity: 0.75;
}

.hero-row {
  position: relative;
  z-index: 2;
}

.gold-orb {
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.42;
}

.orb-1 {
  background: #E5D0A1;
  top: 14%;
  left: -130px;
}

.orb-2 {
  background: #C1AB79;
  right: -120px;
  bottom: 7%;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #E5D0A1;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(229, 208, 161, 0.35);
  padding: 11px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 26px;
}

.hero-content h1 {
  color: #FFFFFF;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -2px;
  margin-bottom: 26px;
}

.hero-content h1 span {
  display: block;
  background: linear-gradient(135deg, #FFFFFF, #E5D0A1, #C1AB79);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  max-width: 650px;
  color: #eadfca;
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.hero-btn {
  background: linear-gradient(135deg, #E5D0A1, #9E8959);
  color: #533F16;
  padding: 15px 32px;
  border-radius: 50px;
  border: none;
  font-weight: 900;
  box-shadow: 0 22px 55px rgba(158, 137, 89, 0.4);
  transition: 0.35s ease;
}

.hero-btn:hover {
  color: #533F16;
  transform: translateY(-5px);
}

.hero-btn-outline {
  color: #E5D0A1;
  border: 1px solid rgba(229, 208, 161, 0.45);
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 800;
  transition: 0.35s ease;
}

.hero-btn-outline:hover {
  background: #E5D0A1;
  color: #533F16;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-trust div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
}

.hero-trust i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #E5D0A1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(229, 208, 161, 0.22);
}

/* Visual */
.hero-visual {
  position: relative;
  height: 650px;
  display: grid;
  place-items: center;
}

.image-glow {
  position: absolute;
  width: 420px;
  height: 520px;
  border-radius: 230px 230px 50px 50px;
  background: linear-gradient(135deg, rgba(229, 208, 161, 0.42), rgba(158, 137, 89, 0.08));
  filter: blur(24px);
}

.main-image {
  position: relative;
  width: 430px;
  height: 550px;
  padding: 13px;
  border-radius: 230px 230px 46px 46px;
  background: linear-gradient(135deg, #E5D0A1, #9E8959);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
  animation: heroFloat 5s ease-in-out infinite;
  z-index: 3;
}

.main-image::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(229, 208, 161, 0.45);
  border-radius: 210px 210px 34px 34px;
  pointer-events: none;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 10px solid #120d05;
  border-radius: 220px 220px 36px 36px;
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

.floating-box {
  position: absolute;
  z-index: 5;
  min-width: 210px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(229, 208, 161, 0.26);
  backdrop-filter: blur(22px);
  border-radius: 22px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #FFFFFF;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  animation: boxFloat 4.5s ease-in-out infinite;
}

.floating-box i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #E5D0A1, #9E8959);
  color: #533F16;
  font-size: 18px;
}

.floating-box strong {
  display: block;
  font-size: 14px;
  font-weight: 900;
}

.floating-box small {
  display: block;
  color: #eadfca;
  font-size: 12px;
}

.box-1 {
  top: 130px;
  left: 8px;
}

.box-2 {
  right: -5px;
  top: 315px;
  animation-delay: 0.8s;
}

.box-3 {
  left: 55px;
  bottom: 90px;
  animation-delay: 1.3s;
}

@keyframes boxFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.gold-ring {
  position: absolute;
  border: 1px solid rgba(229, 208, 161, 0.28);
  border-radius: 50%;
  z-index: 1;
}

.ring-1 {
  width: 520px;
  height: 520px;
}

.ring-2 {
  width: 610px;
  height: 610px;
  opacity: 0.45;
}

/* Responsive */
@media (max-width: 991px) {
  .hero {
    padding-top: 120px;
    padding-bottom: 70px;
  }

  .hero-visual {
    height: 560px;
    margin-top: 40px;
  }

  .main-image {
    width: 340px;
    height: 450px;
  }

  .floating-box {
    min-width: 185px;
  }

  .box-1 {
    left: 0;
  }

  .box-2 {
    right: 0;
  }
}

@media (max-width: 575px) {
  .hero-content h1 {
    letter-spacing: -1px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-btn,
  .hero-btn-outline {
    width: 100%;
    text-align: center;
  }

  .hero-trust {
    gap: 14px;
  }

  .hero-visual {
    height: 440px;
  }

  .main-image {
    width: 280px;
    height: 370px;
  }

  .floating-box,
  .gold-ring,
  .image-glow {
    display: none;
  }
}


.products-showcase {
  background:
    radial-gradient(circle at top left, rgba(229, 208, 161, 0.18), transparent 30%),
    linear-gradient(135deg, #120d05, #533F16);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.products-head {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 55px;
}

.products-head h2 {
  font-size: 50px;
  font-weight: 950;
  margin-top: 14px;
}

.products-head p {
  color: #eadfca;
  line-height: 1.8;
  font-size: 17px;
  margin-bottom: 8px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-lux-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(229, 208, 161, 0.18);
  border-radius: 32px;
  overflow: hidden;
  transition: 0.45s ease;
  position: relative;
}

.product-lux-card:hover {
  transform: translateY(-14px);
  border-color: rgba(229, 208, 161, 0.55);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
}

.product-img {
  height: 280px;
  overflow: hidden;
  background: #fffaf0;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.55s ease;
}

.product-lux-card:hover .product-img img {
  transform: scale(1.08);
}

.product-info {
  padding: 26px;
}

.product-info span {
  display: inline-block;
  color: #E5D0A1;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.product-info h4 {
  color: #fff;
  font-weight: 900;
  margin-bottom: 12px;
}

.product-info p {
  color: #d9ceb4;
  line-height: 1.7;
  min-height: 82px;
}

.product-info a {
  color: #E5D0A1;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-info a i {
  transition: 0.3s;
}

.product-info a:hover i {
  transform: translateX(6px);
}

@media (max-width: 991px) {
  .products-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .products-head h2 {
    font-size: 36px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-img {
    height: 240px;
  }
}

/* =========================
   PARALLAX SECTIONS
========================= */

.parallax-banner,
.support-parallax {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.parallax-banner {
  background-image: url("/assets/Image/p1.jpeg");
}

.support-parallax {
  background-image: url("/assets/Image/p2.jpeg");
}

.parallax-banner .overlay,
.support-parallax .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(18, 13, 5, 0.395),
      rgba(18, 13, 5, 0.75));
}

.parallax-content,
.support-parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
  margin: auto;
  color: #fff;
}

.parallax-content span,
.support-parallax-content span {
  color: #E5D0A1;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 900;
  font-size: 14px;
}

.parallax-content h2,
.support-parallax-content h2 {
  font-size: 54px;
  font-weight: 950;
  margin: 20px 0;
  line-height: 1.1;
}

.parallax-content p,
.support-parallax-content p {
  color: #f1e6cf;
  font-size: 18px;
  line-height: 1.9;
  max-width: 720px;
  margin: auto;
}

/* Mobile */

@media (max-width: 991px) {

  .parallax-banner,
  .support-parallax {
    min-height: 420px;
    background-attachment: scroll;
  }

  .parallax-content h2,
  .support-parallax-content h2 {
    font-size: 38px;
  }
}

@media (max-width: 575px) {

  .parallax-content h2,
  .support-parallax-content h2 {
    font-size: 30px;
  }

  .parallax-content p,
  .support-parallax-content p {
    font-size: 16px;
  }
}

/* =========================
   OUR PRODUCTS MOVING LINE
========================= */

.products-marquee {
  background:
    radial-gradient(circle at top left, rgba(229, 208, 161, 0.15), transparent 30%),
    linear-gradient(135deg, #120d05, #533F16);
  overflow: hidden;
  position: relative;
}

.products-track-wrapper {
  width: 100%;
  overflow: hidden;
  margin-top: 60px;
  position: relative;
}

.products-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  animation: marqueeMove 35s linear infinite;
}

.products-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee-product {
  min-width: 280px;
  max-width: 280px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(229, 208, 161, 0.18);
  border-radius: 30px;
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: 0.4s ease;
}

.marquee-product:hover {
  transform: translateY(-10px);
  border-color: rgba(229, 208, 161, 0.45);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.marquee-product img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  margin-bottom: 20px;
}

.marquee-product h4 {
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 10px;
}

.marquee-product p {
  color: #e5d0a1;
  font-size: 15px;
  margin: 0;
}

/* Mobile */

@media (max-width: 768px) {
  .marquee-product {
    min-width: 230px;
    max-width: 230px;
  }

  .marquee-product img {
    height: 180px;
  }

  .products-track {
    gap: 18px;
    animation-duration: 28s;
  }
}

/* Footer */
.footer {
  background: #0c0803;
  padding: 70px 0 25px;
}

.footer h3 {
  color: var(--cream);
  font-weight: 950;
  letter-spacing: 2px;
}

.footer h3 span,
.footer h5 {
  color: var(--soft-gold);
}

.footer p,
.footer a {
  color: var(--text-soft);
}

.footer a {
  display: block;
  margin-bottom: 10px;
}

.footer a:hover {
  color: var(--cream);
}

.social {
  display: flex;
  gap: 12px;
}

.social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  margin-top: 42px;
  color: var(--text-soft);
  text-align: center;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
  .hero h1 {
    font-size: 50px;
  }

  .hero-visual {
    height: 530px;
  }

  .main-image {
    width: 330px;
    height: 430px;
  }

  .luxury-panel h2,
  .section-title h2,
  .support h2,
  .cta-box h2 {
    font-size: 34px;
  }

  .nav-link {
    margin-left: 0;
    padding: 12px 0;
  }
}

@media (max-width: 575px) {
  .section-padding {
    padding: 75px 0;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-visual {
    display: none;
  }

  .luxury-panel,
  .vision-card,
  .support-box {
    padding: 32px;
  }

  .cta-box h2 {
    font-size: 32px;
  }
}

/* =========================
   Betolla SMART CHATBOT
========================= */

.Betolla-chatbot {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 9999;
}

.chat-toggle {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #E5D0A1, #9E8959);
  color: #533F16;
  font-size: 28px;
  box-shadow: 0 18px 45px rgba(83, 63, 22, 0.35);
  cursor: pointer;
}

.chat-pulse {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(229, 208, 161, 0.55);
  animation: chatPulse 1.8s infinite;
}

@keyframes chatPulse {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.chat-window {
  position: absolute;
  right: 0;
  bottom: 90px;
  width: 380px;
  max-width: calc(100vw - 30px);
  background: #120d05;
  border: 1px solid rgba(229, 208, 161, 0.28);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
}

.chat-window.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

.chat-header {
  padding: 18px;
  background: linear-gradient(135deg, #533F16, #9E8959);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(229, 208, 161, 0.18);
  border: 1px solid rgba(229, 208, 161, 0.45);
  color: #E5D0A1;
  display: grid;
  place-items: center;
}

.chat-brand h4 {
  color: #fff;
  font-size: 16px;
  margin: 0;
  font-weight: 900;
}

.chat-brand span {
  color: #f1e6cf;
  font-size: 12px;
}

.chat-header button {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 20px;
}

.chat-body {
  height: 390px;
  padding: 18px;
  overflow-y: auto;
  background:
    radial-gradient(circle at top left, rgba(229, 208, 161, 0.12), transparent 35%),
    #120d05;
}

.chat-message {
  max-width: 88%;
  padding: 13px 15px;
  border-radius: 18px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.7;
  animation: chatFade 0.35s ease;
}

@keyframes chatFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bot-message {
  background: rgba(255, 255, 255, 0.08);
  color: #f7ead0;
  border: 1px solid rgba(229, 208, 161, 0.16);
}

.user-message {
  background: linear-gradient(135deg, #E5D0A1, #9E8959);
  color: #533F16;
  margin-left: auto;
  font-weight: 700;
}

.chat-footer {
  padding: 15px;
  background: #0c0803;
  border-top: 1px solid rgba(229, 208, 161, 0.14);
}

.chat-input-row {
  display: flex;
  gap: 8px;
}

.chat-input-row input {
  flex: 1;
  border: 1px solid rgba(229, 208, 161, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 50px;
  padding: 12px 15px;
  outline: none;
}

.chat-input-row input::placeholder {
  color: #d9ceb4;
}

.chat-input-row button,
.chat-option {
  border: none;
  background: linear-gradient(135deg, #E5D0A1, #9E8959);
  color: #533F16;
  font-weight: 900;
  border-radius: 50px;
  padding: 11px 17px;
  cursor: pointer;
}

.chat-options {
  display: grid;
  gap: 9px;
}

.chat-option {
  width: 100%;
  text-align: left;
}

.chat-option i {
  margin-right: 8px;
}

@media (max-width: 575px) {
  .Betolla-chatbot {
    right: 15px;
    bottom: 15px;
  }

  .chat-window {
    width: calc(100vw - 30px);
  }

  .chat-body {
    height: 360px;
  }
}

.language-dropdown .dropdown-toggle::after {
  margin-left: 8px;
  color: #E5D0A1;
}

.language-menu {
  background: rgba(18, 13, 5, 0.96);
  border: 1px solid rgba(229, 208, 161, 0.25);
  border-radius: 18px;
  padding: 10px;
  min-width: 190px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.language-menu .dropdown-item {
  color: #f5ead1;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 700;
  transition: 0.3s ease;
}

.language-menu .dropdown-item:hover {
  background: linear-gradient(135deg, #E5D0A1, #9E8959);
  color: #533F16;
}

/* =========================
   GLOBAL RESPONSIVE FIXES
========================= */

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(100% - 30px, 1320px);
}

/* Laptop / Normal Desktop */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: clamp(42px, 5vw, 64px);
  }

  .main-image {
    width: 380px;
    height: 500px;
  }

  .hero-visual {
    height: 580px;
  }

  .floating-box {
    min-width: 190px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .Betolla-navbar {
    background: rgba(18, 13, 5, 0.98);
  }

  .navbar-collapse {
    margin-top: 15px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(18, 13, 5, 0.98);
    border: 1px solid rgba(229, 208, 161, 0.16);
  }

  .Betolla-navbar .nav-link {
    margin-left: 0;
    padding: 12px 0;
  }

  .hero {
    padding-top: 130px;
    text-align: center;
  }

  .hero-content p {
    margin-inline: auto;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    height: 500px;
  }

  .main-image {
    width: 320px;
    height: 420px;
  }

  .floating-box {
    display: none;
  }

  .gold-ring {
    display: none;
  }

  .parallax-banner,
  .support-parallax {
    background-attachment: scroll;
  }

  .footer {
    text-align: center;
  }

  .social {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .section-padding {
    padding: 70px 0;
  }

  .brand-logo {
    height: 52px;
  }

  .hero {
    min-height: auto;
    padding-top: 115px;
    padding-bottom: 70px;
  }

  .hero-content h1 {
    font-size: 38px;
    line-height: 1.1;
  }

  .hero-content p {
    font-size: 15.5px;
    line-height: 1.8;
  }

  .hero-trust {
    flex-direction: column;
    align-items: center;
  }

  .hero-visual {
    display: block;
    height: auto;
    margin-top: 35px;
  }

  .main-image {
    width: min(100%, 280px);
    height: 360px;
    margin: auto;
  }

  .image-glow,
  .floating-box,
  .gold-ring {
    display: none;
  }

  .parallax-banner,
  .support-parallax {
    min-height: 360px;
    padding: 70px 0;
  }

  .parallax-content h2,
  .support-parallax-content h2,
  .section-title h2 {
    font-size: 30px;
  }

  .parallax-content p,
  .support-parallax-content p,
  .section-title p {
    font-size: 15.5px;
  }

  .marquee-product {
    min-width: 210px;
    max-width: 210px;
    padding: 18px;
  }

  .marquee-product img {
    height: 160px;
  }

  .products-track {
    gap: 16px;
    animation-duration: 24s;
  }

  .chat-toggle {
    width: 62px;
    height: 62px;
    font-size: 24px;
  }

  .chat-window {
    right: -5px;
    bottom: 78px;
    width: calc(100vw - 25px);
    border-radius: 22px;
  }

  .chat-body {
    height: 330px;
  }
}

/* Very Small Mobile */
@media (max-width: 390px) {
  .hero-content h1 {
    font-size: 33px;
  }

  .main-image {
    width: 245px;
    height: 325px;
  }

  .marquee-product {
    min-width: 190px;
    max-width: 190px;
  }

  .marquee-product img {
    height: 140px;
  }

  .chat-body {
    height: 300px;
  }
}

/* Large Screens / TV */
@media (min-width: 1600px) {
  .container {
    max-width: 1500px;
  }

  .hero-content h1 {
    font-size: 88px;
  }

  .hero-content p {
    font-size: 21px;
    max-width: 760px;
  }

  .main-image {
    width: 500px;
    height: 650px;
  }

  .hero-visual {
    height: 760px;
  }

  .parallax-banner,
  .support-parallax {
    min-height: 620px;
  }

  .parallax-content h2,
  .support-parallax-content h2 {
    font-size: 68px;
  }

  .marquee-product {
    min-width: 330px;
    max-width: 330px;
  }

  .marquee-product img {
    height: 300px;
  }
}

/* Product golden glow */
.marquee-product {
    cursor: pointer;
    position: relative;
}

.marquee-product::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 32px;
    background: linear-gradient(135deg, #E5D0A1, #9E8959, #fff3c4);
    opacity: 0;
    z-index: -1;
    filter: blur(18px);
    transition: 0.35s ease;
}

.marquee-product:hover,
.marquee-product:active {
    transform: translateY(-10px) scale(1.03);
    border-color: rgba(229, 208, 161, 0.85);
    box-shadow:
        0 0 0 1px rgba(229,208,161,0.45),
        0 0 35px rgba(229,208,161,0.45),
        0 30px 80px rgba(0,0,0,0.35);
}

.marquee-product:hover::before,
.marquee-product:active::before {
    opacity: 1;
}

/* Product modal */
.product-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-modal.active {
    display: flex;
}

.product-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 13, 5, 0.78);
    backdrop-filter: blur(10px);
}

.product-modal-box {
    position: relative;
    z-index: 2;
    width: min(920px, 100%);
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
    background:
        radial-gradient(circle at top left, rgba(229,208,161,0.16), transparent 35%),
        #120d05;
    border: 1px solid rgba(229,208,161,0.35);
    border-radius: 34px;
    padding: 28px;
    box-shadow: 0 35px 120px rgba(0,0,0,0.55);
    animation: modalIn 0.35s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(25px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.product-modal-close {
    position: absolute;
    right: 18px;
    top: 18px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #E5D0A1, #9E8959);
    color: #533F16;
    font-size: 18px;
    z-index: 3;
}

.product-modal-image {
    background: #fffaf0;
    border-radius: 28px;
    display: grid;
    place-items: center;
    padding: 25px;
}

.product-modal-image img {
    width: 100%;
    max-height: 390px;
    object-fit: contain;
}

.product-modal-content {
    padding: 20px 10px;
}

.product-modal-content span {
    color: #E5D0A1;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
    font-size: 13px;
}

.product-modal-content h3 {
    color: #fff;
    font-size: 42px;
    font-weight: 950;
    margin: 14px 0;
}

.product-modal-content p {
    color: #eadfca;
    line-height: 1.8;
    font-size: 17px;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 28px;
}

.product-features span {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(229,208,161,0.22);
    color: #E5D0A1;
    padding: 9px 14px;
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 0;
    text-transform: none;
}

.product-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #E5D0A1, #9E8959);
    color: #533F16;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 900;
}

.product-more-btn:hover {
    color: #533F16;
    transform: translateY(-3px);
}

/* Mobile modal */
@media (max-width: 768px) {
    .product-modal-box {
        grid-template-columns: 1fr;
        max-height: 90vh;
        overflow-y: auto;
        padding: 22px;
    }

    .product-modal-content h3 {
        font-size: 30px;
    }

    .product-modal-image img {
        max-height: 260px;
    }
}
/* =========================
   HORIZONTAL LUXURY PROCESS
   SIDE BY SIDE + CONNECTING LINE
========================= */

.process-wrapper {
    position: relative;
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

/* Main connecting line */
.process-wrapper::before {
    content: "";
    position: absolute;
    top: 58px;
    left: 12%;
    width: 76%;
    height: 3px;
    background: linear-gradient(
        to right,
        var(--cream),
        var(--soft-gold),
        var(--rich-gold)
    );
    z-index: 1;
    border-radius: 50px;
    opacity: 0.8;
}

.process-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fffaf5;
    border: 1px solid rgba(158, 137, 89, 0.18);
    border-radius: 30px;
    padding: 90px 30px 35px;
    transition: 0.4s ease;
    overflow: hidden;
    z-index: 2;
}

/* Golden glow layer */
.process-step::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 32px;
    background: linear-gradient(
        135deg,
        var(--cream),
        var(--soft-gold),
        var(--rich-gold)
    );
    opacity: 0;
    z-index: 0;
    filter: blur(20px);
    transition: 0.4s ease;
}

.process-step::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 29px;
    background: #fffaf5;
    z-index: 1;
}

.process-step > * {
    position: relative;
    z-index: 2;
}

/* Remove old vertical line */
.process-line {
    display: none;
}

.process-icon {
    position: absolute;
    top: 20px;
    width: 76px;
    height: 76px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    background: linear-gradient(
        135deg,
        var(--cream),
        var(--soft-gold)
    );
    color: var(--dark-gold);
    font-size: 28px;
    box-shadow: 0 18px 40px rgba(158, 137, 89, 0.22);
    border: 4px solid var(--white);
}

.process-content span {
    color: var(--rich-gold);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.process-content h3 {
    font-size: 28px;
    font-weight: 950;
    margin: 14px 0;
    color: var(--black);
}

.process-content p {
    color: var(--dark-gold);
    line-height: 1.8;
    font-size: 15.5px;
    margin: 0;
}

/* Active step */
.process-step.active-step {
    transform: translateY(-12px);
    border-color: rgba(229, 208, 161, 0.65);
    box-shadow:
        0 0 0 1px rgba(229, 208, 161, 0.45),
        0 0 40px rgba(229, 208, 161, 0.35),
        0 30px 80px rgba(83, 63, 22, 0.12);
}

.process-step.active-step::before {
    opacity: 1;
}

.process-step.active-step .process-icon {
    animation: iconPulse 1.5s infinite;
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(193, 171, 121, 0.45);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 0 0 18px rgba(193, 171, 121, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(193, 171, 121, 0);
    }
}

/* Hover */
.process-step:hover {
    transform: translateY(-8px);
}

/* Tablet */
@media (max-width: 991px) {
    .process-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .process-wrapper::before {
        display: none;
    }

    .process-step {
        padding-top: 85px;
    }

    .process-icon {
        position: absolute;
        top: 18px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .process-content h3 {
        font-size: 22px;
    }

    .process-content p {
        font-size: 14.5px;
    }

    .process-step {
        padding: 80px 20px 28px;
    }
}